-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1a-DOI_outputs.txt
1514 lines (1514 loc) · 845 KB
/
1a-DOI_outputs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0|sucess-download|Martinez, L.; He, L. Detection of Mycotoxins in Food Using Surface-Enhanced Raman Spectroscopy: A Review. ACS applied bio materials. 2022. https://doi.org/10.1021/acsabm.0c01349.
1|failed-download|Li, Y.; Liu, Y.; Ren, Y.; Su, L.; Li, A.; An, Y.; Rotello, V.; Zhang, Z.; Wang, Y.; Liu, Y.; Liu, S.; Liu, J.; Laman, J. D.; Shi, L.; van der Mei, H. C.; Busscher, H. J. Coating of a Novel Antimicrobial Nanoparticle with a Macrophage Membrane for the Selective Entry into Infected Macrophages and Killing of Intracellular Staphylococci. Advanced functional materials. 2021. https://doi.org/10.1002/adfm.202004942.
2|shorty-download|Lim, H.; Wells, C. S. Applied psychological measurement. 2021. https://doi.org/10.1177/0146621620921247.
3|sucess-download|Bowen, L.; von Biela, V. R.; McCormick, S. D.; Regish, A. M.; Waters, S. C.; Durbin-Johnson, B.; Britton, M.; Settles, M. L.; Donnelly, D. S.; Laske, S. M.; Carey, M. P.; Brown, R. J.; Zimmerman, C. E. Transcriptomic response to elevated water temperatures in adult migrating Yukon River Chinook salmon ( Conservation physiology. 2021. https://doi.org/10.1093/conphys/coaa084.
4|sucess-download|Andey, T.; Attah, M. M.; Akwaaba-Reynolds, N. A.; Cheema, S.; Parvin-Nejad, S.; Acquaah-Mensah, G. K. Enhanced immortalization, Gene: X. 2020. https://doi.org/10.1016/j.gene.2020.100030.
5|sucess-download|Barron, I.; Freitas, F.; Bosch, C. A. Pilot Randomized Control Trial: Efficacy of a Group-Based Psychosocial Program for Youth with PTSD in the Brazilian Favelas. Journal of child & adolescent trauma. 2021. https://doi.org/10.1007/s40653-020-00328-8.
6|shorty-download|Deryugina, T.; Molitor, D. Does When You Die Depend on Where You Live? Evidence from Hurricane Katrina. The American economic review. 2021. https://doi.org/10.1257/aer.20181026.
7|sucess-download|Hong, Y.; McCormick, S. A.; Deater-Deckard, K.; Calkins, S. D.; Bell, M. A. Household Chaos, Parental Responses to Emotion, and Child Emotion Regulation in Middle Childhood. Social development (Oxford, England). 2021. https://doi.org/10.1111/sode.12500.
8|shorty-download|Courtney, J. B.; Nuss, K.; Lyden, K.; Harrall, K. K.; Glueck, D. H.; Villalobos, A.; Hamman, R. F.; Hebert, J. R.; Hurley, T. G.; Leiferman, J.; Li, K.; Alaimo, K.; Litt, J. S. Comparing the activPAL software's Primary Time in Bed Algorithm against Self-Report and van der Berg's Algorithm. Measurement in physical education and exercise science. 2021. https://doi.org/10.1080/1091367x.2020.1867146.
9|sucess-download|Lane, J. N.; Ganguli, I.; Gaule, P.; Guinan, E.; Lakhani, K. R. Engineering serendipity: When does knowledge sharing lead to knowledge production? Strategic management journal. 2021. https://doi.org/10.1002/smj.3256.
10|sucess-download|Zhuang, J.; Thayumanavan, S. Triblock-Diblock Composite Nanoassemblies with Sequentially Addressable Host-Guest Properties for Hydrophobics and Hydrophilics. ACS macro letters. 2021. https://doi.org/10.1021/acsmacrolett.0c00290.
11|sucess-download|Pietromonaco, P. R.; Overall, N. C.; Beck, L. A.; Powers, S. I. Is Low Power Associated with Submission During Marital Conflict? Moderating Roles of Gender and Traditional Gender Role Beliefs. Social psychological and personality science. 2021. https://doi.org/10.1177/1948550620904609.
12|sucess-download|Lin, J.; Ouyang, Z. Large-scale analysis of the position-dependent binding and regulation of human RNA binding proteins. Quantitative biology (Beijing, China). 2021. https://doi.org/10.1007/s40484-020-0206-5.
13|sucess-download|Tian, Q.; Bagheri, Y.; Keshri, P.; Wu, R.; Ren, K.; Yu, Q.; Zhao, B.; You, M. Efficient and selective DNA modification on bacterial membranes. Chemical science. 2021. https://doi.org/10.1039/d0sc06630c.
14|sucess-download|Zhao, B.; Li, N.; Xie, T.; Bagheri, Y.; Liang, C.; Keshri, P.; Sun, Y.; You, M. Quantifying tensile forces at cell-cell junctions with a DNA-based fluorescent probe. Chemical science. 2021. https://doi.org/10.1039/d0sc01455a.
15|sucess-download|Geng, Y.; Hardie, J.; Landis, R. F.; Mas-Rosario, J. A.; Chattopadhyay, A. N.; Keshri, P.; Sun, J.; Rizzo, E. M.; Gopalakrishnan, S.; Farkas, M. E.; Rotello, V. M. High-content and high-throughput identification of macrophage polarization phenotypes. Chemical science. 2021. https://doi.org/10.1039/d0sc02792h.
16|sucess-download|Smith, C. J.; Perfetti, T. A.; Berry, S. C.; Brash, D. E.; Bus, J.; Calabrese, E.; Clemens, R. A.; Fowle, J. R.; Greim, H.; MacGregor, J. T.; Maronpot, R.; Pressman, P.; Zeiger, E.; Hayes, A. W. Bruce Nathan Ames - Paradigm shifts inside the cancer research revolution. Mutation research. Reviews in mutation research. 2021. https://doi.org/10.1016/j.mrrev.2020.108363.
17|sucess-download|Bishop, J. L.; Gross, C.; Danielsen, J.; Parente, M.; Murchie, S. L.; Horgan, B.; Wray, J. J.; Viviano, C.; Seelos, F. P. Multiple mineral horizons in layered outcrops at Mawrth Vallis, Mars, signify changing geochemical environments on early Mars. Icarus. 2021. https://doi.org/10.1016/j.icarus.2020.113634.
18|sucess-download|Lee, D. Y.; Lee, S. Y.; Kang, H. J.; Park, Y.; Hur, S. J. Development of effective heparin extraction method from pig by-products and analysis of their bioavailability. Journal of animal science and technology. 2021. https://doi.org/10.5187/jast.2020.62.6.933.
19|sucess-download|Westling, T.; Gilbert, P.; Carone, M. Causal Isotonic Regression. Journal of the Royal Statistical Society. Series B, Statistical methodology. 2021. https://doi.org/10.1111/rssb.12372.
20|sucess-download|Nabawy, A.; Makabenta, J. M.; Li, C. H.; Park, J.; Chattopadhyay, A. N.; Schmidt-Malan, S.; Gupta, A.; Patel, R.; Rotello, V. M. Activity of Biodegradable Polymeric Nanosponges against Dual-Species Bacterial Biofilms. ACS biomaterials science & engineering. 2021. https://doi.org/10.1021/acsbiomaterials.0c01433.
21|sucess-download|Ufuktepe, D. K.; Palaniappan, K.; Elmali, M.; Baskin, T. I. RTIP: A FULLY AUTOMATED ROOT TIP TRACKER FOR MEASURING PLANT GROWTH WITH INTERMITTENT PERTURBATIONS. Proceedings. International Conference on Image Processing. 2021. https://doi.org/10.1109/icip40778.2020.9191008.
22|sucess-download|Demeneix, B.; Vandenberg, L. N.; Ivell, R.; Zoeller, R. T. Thresholds and Endocrine Disruptors: An Endocrine Society Policy Perspective. Journal of the Endocrine Society. 2021. https://doi.org/10.1210/jendso/bvaa085.
23|shorty-download|Hyönä, J.; Pollatsek, A.; Koski, M.; Olkoniemi, H. An eye-tracking study of reading long and short novel and lexicalized compound words. Journal of eye movement research. 2021. https://doi.org/10.16910/jemr.13.4.3.
24|sucess-download|Jones, B. J.; Spencer, R. M. Role of Napping for Learning across the Lifespan. Current sleep medicine reports. 2021. https://doi.org/10.1007/s40675-020-00193-9.
25|sucess-download|Kaminska, B.; Caballero, J. P.; Moorman, D. E. Integration of value and action in medial prefrontal neural systems. International review of neurobiology. 2021. https://doi.org/10.1016/bs.irn.2020.11.007.
26|sucess-download|McAndrew, T.; Wattanachit, N.; Gibson, G. C.; Reich, N. G. Aggregating predictions from experts: a review of statistical methods, experiments, and applications. Wiley interdisciplinary reviews. Computational statistics. 2021. https://doi.org/10.1002/wics.1514.
27|sucess-download|Mather, M. A.; Ready, R. E. Greater negative affect and mixed emotions during spontaneous reactions to sad films in older than younger adults. European journal of ageing. 2021. https://doi.org/10.1007/s10433-020-00565-8.
28|sucess-download|Selby, N. M.; Korrodi-Gregório, L.; Casula, A.; Kolhe, N. V.; Arbonés, D. R.; Bukieda, K. D.; Sahu, D.; Rao, C.; Basadonna, G. Randomized Controlled Trial Evidence of Cost-Effectiveness of a Multifaceted AKI Intervention Approach. Kidney international reports. 2021. https://doi.org/10.1016/j.ekir.2020.12.004.
29|sucess-download|Gopalakrishnan, S.; Xu, J.; Zhong, F.; Rotello, V. M. Strategies for Fabricating Protein Films for Biomaterials Applications. Advanced sustainable systems. 2021. https://doi.org/10.1002/adsu.202000167.
30|sucess-download|Cashen, K. K.; Grotevant, H. D.; Battalen, A. W.; Sellers, C. M.; McRoy, R. G. Tech-Mediated and Traditional Communication Modes in Adult Adoptees' Contact With Birth Parents. Family relations. 2021. https://doi.org/10.1111/fare.12477.
31|sucess-download|Helfer, K. S.; Jesse, A. Hearing and speech processing in midlife. Hearing research. 2021. https://doi.org/10.1016/j.heares.2020.108097.
32|shorty-download|La Barbera, F.; Ajzen, I. Understanding Support for European Integration Across Generations: A Study Guided by the Theory of Planned Behavior. Europe's journal of psychology. 2021. https://doi.org/10.5964/ejop.v16i3.1844.
33|shorty-download|La Barbera, F.; Ajzen, I. Control Interactions in the Theory of Planned Behavior: Rethinking the Role of Subjective Norm. Europe's journal of psychology. 2021. https://doi.org/10.5964/ejop.v16i3.2056.
34|shorty-download|Bosnjak, M.; Ajzen, I.; Schmidt, P. The Theory of Planned Behavior: Selected Recent Advances and Applications. Europe's journal of psychology. 2021. https://doi.org/10.5964/ejop.v16i3.3107.
35|shorty-download|Stival, C.; Graf, C. B.; Visconti, P. E.; Krapf, D. Quantification of Protein Kinase A (PKA) Activity by an Bio-protocol. 2021. https://doi.org/10.21769/BioProtoc.3658.
36|sucess-download|Sislioglu, K.; Gumus, C. E.; Koo, C. K.; Karabulut, I.; McClements, D. J. In vitro digestion of edible nanostructured lipid carriers: Impact of a Candelilla wax gelator on performance. Food research international (Ottawa, Ont.). 2021. https://doi.org/10.1016/j.foodres.2020.110060.
37|sucess-download|Mundo, J. L.; Zhou, H.; Tan, Y.; Liu, J.; McClements, D. J. Enhancing emulsion functionality using multilayer technology: Coating lipid droplets with saponin-polypeptide-polysaccharide layers by electrostatic deposition. Food research international (Ottawa, Ont.). 2021. https://doi.org/10.1016/j.foodres.2020.109864.
38|shorty-download|Spencer, R. M. The role of naps in memory and executive functioning in early childhood. Advances in child development and behavior. 2021. https://doi.org/10.1016/bs.acdb.2020.08.004.
39|sucess-download|Simmons, W. P.; Menjívar, C.; Valdez, E. S. The Gendered Effects of Local Immigration Enforcement: Latinas' Social Isolation in Chicago, Houston, Los Angeles, and Phoenix. The International migration review. 2021. https://doi.org/10.1177/0197918320905504.
40|sucess-download|Syropoulos, S.; Markowitz, E. M. Prosocial responses to COVID-19: Examining the role of gratitude, fairness and legacy motives. Personality and individual differences. 2021. https://doi.org/10.1016/j.paid.2020.110488.
41|sucess-download|Hagler, G.; Birkett, D.; Henry, R. C.; Peltier, R. E. Three Years of High Time-resolution Air Pollution Monitoring in the Complex Multi-source Harbor of New York and New Jersey. Aerosol and air quality research. 2021. https://doi.org/10.4209/aaqr.2020.02.0069.
42|shorty-download|Jagannatha, A.; Yu, H. Calibrating Structured Output Predictors for Natural Language Processing. Proceedings of the conference. Association for Computational Linguistics. Meeting. 2021. https://doi.org/10.18653/v1/2020.acl-main.188.
43|sucess-download|Horgan, F. G.; Arida, A.; Ardestani, G.; Almazan, M. L. Positive and negative interspecific interactions between coexisting rice planthoppers neutralise the effects of elevated temperatures. Functional ecology. 2021. https://doi.org/10.1111/1365-2435.13683.
44|sucess-download|Hickey, M. E.; He, L. SERS imaging analyses of bacteria cells among plant tissues. Talanta. 2021. https://doi.org/10.1016/j.talanta.2020.122008.
45|sucess-download|Udali, S.; De Santis, D.; Mazzi, F.; Moruzzi, S.; Ruzzenente, A.; Castagna, A.; Pattini, P.; Beschin, G.; Franceschi, A.; Guglielmi, A.; Martinelli, N.; Pizzolo, F.; Ambrosani, F.; Olivieri, O.; Choi, S. W.; Friso, S. Trace Elements Status and Metallothioneins DNA Methylation Influence Human Hepatocellular Carcinoma Survival Rate. Frontiers in oncology. 2021. https://doi.org/10.3389/fonc.2020.596040.
46|sucess-download|Lin, J.; Chen, Y.; Zhang, Y.; Ouyang, Z. Identification and analysis of RNA structural disruptions induced by single nucleotide variants using Riprap and RiboSNitchDB. NAR genomics and bioinformatics. 2021. https://doi.org/10.1093/nargab/lqaa057.
47|shorty-download|Hyngstrom, A. S.; Cho, C. C.; Barillas, R. B.; Joshi, M.; Rowley, T. W.; Keenan, K. G.; Staudenmayer, J.; Swartz, A. M.; Strath, S. J. Identification of Latent Classes of Motor Performance in a Heterogenous Population of Adults. Archives of rehabilitation research and clinical translation. 2021. https://doi.org/10.1016/j.arrct.2020.100080.
48|sucess-download|Park, S.; Caldwell, G. E. Muscular activity patterns in 1-legged vs. 2-legged pedaling. Journal of sport and health science. 2021. https://doi.org/10.1016/j.jshs.2020.01.003.
49|sucess-download|Zhong, Y.; Yang, L.; McClements, D. J.; Wang, X.; Ye, J.; Liu, C. Spray drying and rehydration of macadamia oil-in-water emulsions: Impact of macadamia protein isolate to chitosan hydrochloride ratio. Food chemistry. 2021. https://doi.org/10.1016/j.foodchem.2020.128380.
50|shorty-download|Yang, Z.; Yu, H. Generating Accurate Electronic Health Assessment from Medical Graph. Proceedings of the Conference on Empirical Methods in Natural Language Processing. Conference on Empirical Methods in Natural Language Processing. 2021. https://doi.org/10.18653/v1/2020.findings-emnlp.336.
51|shorty-download|Liu, S.; Li, J.; Zhang, Y.; Liu, N.; Viljoen, A.; Mostert, D.; Zuo, C.; Hu, C.; Bi, F.; Gao, H.; Sheng, O.; Deng, G.; Yang, Q.; Dong, T.; Dou, T.; Yi, G.; Ma, L. J.; Li, C. Erratum. The New phytologist. 2021. https://doi.org/10.1111/nph.16718.
52|sucess-download|Gunther, L. K.; Rohde, J. A.; Tang, W.; Cirilo, J. A.; Marang, C. P.; Scott, B. D.; Thomas, D. D.; Debold, E. P.; Yengo, C. M. FRET and optical trapping reveal mechanisms of actin activation of the power stroke and phosphate release in myosin V. The Journal of biological chemistry. 2021. https://doi.org/10.1074/jbc.RA120.015632.
53|sucess-download|Blocher McTigue, W. C.; Perry, S. L. Incorporation of proteins into complex coacervates. Methods in enzymology. 2021. https://doi.org/10.1016/bs.mie.2020.06.006.
54|sucess-download|Cao, X.; Ma, C.; Chen, F.; Luo, X.; Musante, C.; White, J. C.; Zhao, X.; Wang, Z.; Xing, B. New insight into the mechanism of graphene oxide-enhanced phytotoxicity of arsenic species. Journal of hazardous materials. 2021. https://doi.org/10.1016/j.jhazmat.2020.124959.
55|shorty-download|Aad, G.; Abbott, B.; Abbott, D. C.; Abed Abud, A.; Abeling, K.; Abhayasinghe, D. K.; Abidi, S. H.; AbouZeid, O. S.; Abraham, N. L.; Abramowicz, H.; Abreu, H.; Abulaiti, Y.; Acharya, B. S.; Achkar, B.; Adam, L.; Adam Bourdarios, C.; Adamczyk, L.; Adamek, L.; Adelman, J.; Adiguzel, A.; Adorni, S.; Adye, T.; Affolder, A. A.; Afik, Y.; Agapopoulou, C.; Agaras, M. N.; Aggarwal, A.; Agheorghiesei, C.; Aguilar-Saavedra, J. A.; Ahmad, A.; Ahmadov, F.; Ahmed, W. S.; Ai, X.; Aielli, G.; Akatsuka, S.; Akbiyik, M.; Åkesson, T. P.; Akilli, E.; Akimov, A. V.; Al Khoury, K.; Alberghi, G. L.; Albert, J.; Alconada Verzini, M. J.; Alderweireldt, S.; Aleksa, M.; Aleksandrov, I. N.; Alexa, C.; Alexopoulos, T.; Alfonsi, A.; Alfonsi, F.; Alhroob, M.; Ali, B.; Ali, S.; Aliev, M.; Alimonti, G.; Allaire, C.; Allbrooke, B. M.; Allen, B. W.; Allport, P. P.; Aloisio, A.; Alonso, F.; Alpigiani, C.; Alunno Camelia, E.; Alvarez Estevez, M.; Alviggi, M. G.; Amaral Coutinho, Y.; Ambler, A.; Ambroz, L.; Amelung, C.; Amidei, D.; Amor Dos Santos, S. P.; Amoroso, S.; Amrouche, C. S.; An, F.; Anastopoulos, C.; Andari, N.; Andeen, T.; Anders, J. K.; Andrean, S. Y.; Andreazza, A.; Andrei, V.; Anelli, C. R.; Angelidakis, S.; Angerami, A.; Anisenkov, A. V.; Annovi, A.; Antel, C.; Anthony, M. T.; Antipov, E.; Antonelli, M.; Antrim, D. J.; Anulli, F.; Aoki, M.; Aparisi Pozo, J. A.; Aparo, M. A.; Aperio Bella, L.; Aranzabal, N.; Araujo Ferraz, V.; Araujo Pereira, R.; Arcangeletti, C.; Arce, A. T.; Arguin, J. F.; Argyropoulos, S.; Arling, J. H.; Armbruster, A. J.; Armstrong, A.; Arnaez, O.; Arnold, H.; Arrubarrena Tame, Z. P.; Artoni, G.; Asada, H.; Asai, K.; Asai, S.; Asawatavonvanich, T.; Asbah, N.; Asimakopoulou, E. M.; Asquith, L.; Assahsah, J.; Assamagan, K.; Astalos, R.; Atkin, R. J.; Atkinson, M.; Atlay, N. B.; Atmani, H.; Atmasiddha, P. A.; Augsten, K.; Austrup, V. A.; Avolio, G.; Ayoub, M. K.; Azuelos, G.; Babal, D.; Bachacou, H.; Bachas, K.; Backman, F.; Bagnaia, P.; Bahmani, M.; Bahrasemani, H.; Bailey, A. J.; Bailey, V. R.; Baines, J. T.; Bakalis, C.; Baker, O. K.; Bakker, P. J.; Bakos, E.; Bakshi Gupta, D.; Balaji, S.; Balasubramanian, R.; Baldin, E. M.; Balek, P.; Balli, F.; Balunas, W. K.; Balz, J.; Banas, E.; Bandieramonte, M.; Bandyopadhyay, A.; Banerjee, S.; Barak, L.; Barbe, W. M.; Barberio, E. L.; Barberis, D.; Barbero, M.; Barbour, G.; Barillari, T.; Barisits, M. S.; Barkeloo, J.; Barklow, T.; Barnea, R.; Barnett, B. M.; Barnett, R. M.; Barnovska-Blenessy, Z.; Baroncelli, A.; Barone, G.; Barr, A. J.; Barranco Navarro, L.; Barreiro, F.; Barreiro Guimarães da Costa, J.; Barron, U.; Barsov, S.; Bartels, F.; Bartoldus, R.; Bartolini, G.; Barton, A. E.; Bartos, P.; Basalaev, A.; Basan, A.; Bassalat, A.; Basso, M. J.; Bates, R. L.; Batlamous, S.; Batley, J. R.; Batool, B.; Battaglia, M.; Bauce, M.; Bauer, F.; Bauer, P.; Bawa, H. S.; Bayirli, A.; Beacham, J. B.; Beau, T.; Beauchemin, P. H.; Becherer, F.; Bechtle, P.; Beck, H. C.; Beck, H. P.; Becker, K.; Becot, C.; Beddall, A.; Beddall, A. J.; Bednyakov, V. A.; Bedognetti, M.; Bee, C. P.; Beermann, T. A.; Begalli, M.; Begel, M.; Behera, A.; Behr, J. K.; Beisiegel, F.; Belfkir, M.; Bell, A. S.; Bella, G.; Bellagamba, L.; Bellerive, A.; Bellos, P.; Beloborodov, K.; Belotskiy, K.; Belyaev, N. L.; Benchekroun, D.; Benekos, N.; Benhammou, Y.; Benjamin, D. P.; Benoit, M.; Bensinger, J. R.; Bentvelsen, S.; Beresford, L.; Beretta, M.; Berge, D.; Bergeaas Kuutmann, E.; Berger, N.; Bergmann, B.; Bergsten, L. J.; Beringer, J.; Berlendis, S.; Bernardi, G.; Bernius, C.; Bernlochner, F. U.; Berry, T.; Berta, P.; Berthold, A.; Bertram, I. A.; Bessidskaia Bylund, O.; Besson, N.; Bethke, S.; Betti, A.; Bevan, A. J.; Beyer, J.; Bhatta, S.; Bhattacharya, D. S.; Bhattarai, P.; Bhopatkar, V. S.; Bi, R.; Bianchi, R. M.; Biebel, O.; Biedermann, D.; Bielski, R.; Bierwagen, K.; Biesuz, N. V.; Biglietti, M.; Billoud, T. R.; Bindi, M.; Bingul, A.; Bini, C.; Biondi, S.; Birch-Sykes, C. J.; Birman, M.; Bisanz, T.; Biswal, J. P.; Biswas, D.; Bitadze, A.; Bittrich, C.; Bjørke, K.; Blazek, T.; Bloch, I.; Blocker, C.; Blue, A.; Blumenschein, U.; Bobbink, G. J.; Bobrovnikov, V. S.; Bocchetta, S. S.; Bogavac, D.; Bogdanchikov, A. G.; Bohm, C.; Boisvert, V.; Bokan, P.; Bold, T.; Bolz, A. E.; Bomben, M.; Bona, M.; Bonilla, J. S.; Boonekamp, M.; Booth, C. D.; Borbély, A. G.; Borecka-Bielska, H. M.; Borgna, L. S.; Borisov, A.; Borissov, G.; Bortoletto, D.; Boscherini, D.; Bosman, M.; Bossio Sola, J. D.; Bouaouda, K.; Boudreau, J.; Bouhova-Thacker, E. V.; Boumediene, D.; Boveia, A.; Boyd, J.; Boye, D.; Boyko, I. R.; Bozson, A. J.; Bracinik, J.; Brahimi, N.; Brandt, G.; Brandt, O.; Braren, F.; Brau, B.; Brau, J. E.; Breaden Madden, W. D.; Brendlinger, K.; Brener, R.; Brenner, L.; Brenner, R.; Bressler, S.; Brickwedde, B.; Briglin, D. L.; Britton, D.; Britzger, D.; Brock, I.; Brock, R.; Brooijmans, G.; Brooks, W. K.; Brost, E.; Bruckman de Renstrom, P. A.; Brüers, B.; Bruncko, D.; Bruni, A.; Bruni, G.; Bruschi, M.; Bruscino, N.; Bryngemark, L.; Buanes, T.; Buat, Q.; Buchholz, P.; Buckley, A. G.; Budagov, I. A.; Bugge, M. K.; Bulekov, O.; Bullard, B. A.; Burch, T. J.; Burdin, S.; Burgard, C. D.; Burger, A. M.; Burghgrave, B.; Burr, J. T.; Burton, C. D.; Burzynski, J. C.; Büscher, V.; Buschmann, E.; Bussey, P. J.; Butler, J. M.; Buttar, C. M.; Butterworth, J. M.; Butti, P.; Buttinger, W.; Buxo Vazquez, C. J.; Buzatu, A.; Buzykaev, A. R.; Cabras, G.; Cabrera Urbán, S.; Caforio, D.; Cai, H.; Cairo, V. M.; Cakir, O.; Calace, N.; Calafiura, P.; Calderini, G.; Calfayan, P.; Callea, G.; Caloba, L. P.; Caltabiano, A.; Calvente Lopez, S.; Calvet, D.; Calvet, S.; Calvet, T. P.; Calvetti, M.; Camacho Toro, R.; Camarda, S.; Camarero Munoz, D.; Camarri, P.; Camerlingo, M. T.; Cameron, D.; Camincher, C.; Campana, S.; Campanelli, M.; Camplani, A.; Canale, V.; Canesse, A.; Cano Bret, M.; Cantero, J.; Cao, T.; Cao, Y.; Capua, M.; Cardarelli, R.; Cardillo, F.; Carducci, G.; Carli, I.; Carli, T.; Carlino, G.; Carlson, B. T.; Carlson, E. M.; Carminati, L.; Carney, R. M.; Caron, S.; Carquin, E.; Carrá, S.; Carratta, G.; Carter, J. W.; Carter, T. M.; Casado, M. P.; Casha, A. F.; Castiglia, E. G.; Castillo, F. L.; Castillo Garcia, L.; Castillo Gimenez, V.; Castro, N. F.; Catinaccio, A.; Catmore, J. R.; Cattai, A.; Cavaliere, V.; Cavasinni, V.; Celebi, E.; Celli, F.; Cerny, K.; Cerqueira, A. S.; Cerri, A.; Cerrito, L.; Cerutti, F.; Cervelli, A.; Cetin, S. A.; Chadi, Z.; Chakraborty, D.; Chan, J.; Chan, W. S.; Chan, W. Y.; Chapman, J. D.; Chargeishvili, B.; Charlton, D. G.; Charman, T. P.; Chatterjee, M.; Chau, C. C.; Che, S.; Chekanov, S.; Chekulaev, S. V.; Chelkov, G. A.; Chen, B.; Chen, C.; Chen, C. H.; Chen, H.; Chen, H.; Chen, J.; Chen, J.; Chen, J.; Chen, S.; Chen, S. J.; Chen, X.; Chen, Y.; Chen, Y. H.; Cheng, H. C.; Cheng, H. J.; Cheplakov, A.; Cheremushkina, E.; Cherkaoui El Moursli, R.; Cheu, E.; Cheung, K.; Chevalérias, T. J.; Chevalier, L.; Chiarella, V.; Chiarelli, G.; Chiodini, G.; Chisholm, A. S.; Chitan, A.; Chiu, I.; Chiu, Y. H.; Chizhov, M. V.; Choi, K.; Chomont, A. R.; Chou, Y.; Chow, Y. S.; Christopher, L. D.; Chu, M. C.; Chu, X.; Chudoba, J.; Chwastowski, J. J.; Chytka, L.; Cieri, D.; Ciesla, K. M.; Cindro, V.; Cioară, I. A.; Ciocio, A.; Cirotto, F.; Citron, Z. H.; Citterio, M.; Ciubotaru, D. A.; Ciungu, B. M.; Clark, A.; Clark, P. J.; Clawson, S. E.; Clement, C.; Clissa, L.; Coadou, Y.; Cobal, M.; Coccaro, A.; Cochran, J.; Coelho Lopes De Sa, R.; Cohen, H.; Coimbra, A. E.; Cole, B.; Colijn, A. P.; Collot, J.; Conde Muiño, P.; Connell, S. H.; Connelly, I. A.; Constantinescu, S.; Conventi, F.; Cooper-Sarkar, A. M.; Cormier, F.; Cormier, K. J.; Corpe, L. D.; Corradi, M.; Corrigan, E. E.; Corriveau, F.; Costa, M. J.; Costanza, F.; Costanzo, D.; Cowan, G.; Cowley, J. W.; Crane, J.; Cranmer, K.; Creager, R. A.; Crépé-Renaudin, S.; Crescioli, F.; Cristinziani, M.; Croft, V.; Crosetti, G.; Cueto, A.; Cuhadar Donszelmann, T.; Cui, H.; Cukierman, A. R.; Cunningham, W. R.; Czekierda, S.; Czodrowski, P.; Czurylo, M. M.; Da Cunha Sargedas De Sousa, M. J.; Da Fonseca Pinto, J. V.; Da Via, C.; Dabrowski, W.; Dachs, F.; Dado, T.; Dahbi, S.; Dai, T.; Dallapiccola, C.; Dam, M.; D'amen, G.; D'Amico, V.; Damp, J.; Dandoy, J. R.; Daneri, M. F.; Danninger, M.; Dao, V.; Darbo, G.; Dartsi, O.; Dattagupta, A.; Daubney, T.; D'Auria, S.; David, C.; Davidek, T.; Davis, D. R.; Dawson, I.; De, K.; De Asmundis, R.; De Beurs, M.; De Castro, S.; De Groot, N.; de Jong, P.; De la Torre, H.; De Maria, A.; De Pedis, D.; De Salvo, A.; De Sanctis, U.; De Santis, M.; De Santo, A.; De Vivie De Regie, J. B.; Dedovich, D. V.; Deiana, A. M.; Del Peso, J.; Delabat Diaz, Y.; Delgove, D.; Deliot, F.; Delitzsch, C. M.; Della Pietra, M.; Della Volpe, D.; Dell'Acqua, A.; Dell'Asta, L.; Delmastro, M.; Delporte, C.; Delsart, P. A.; Demers, S.; Demichev, M.; Demontigny, G.; Denisov, S. P.; D'Eramo, L.; Derendarz, D.; Derkaoui, J. E.; Derue, F.; Dervan, P.; Desch, K.; Dette, K.; Deutsch, C.; Devesa, M. R.; Deviveiros, P. O.; Di Bello, F. A.; Di Ciaccio, A.; Di Ciaccio, L.; Di Clemente, W. K.; Di Donato, C.; Di Girolamo, A.; Di Gregorio, G.; Di Luca, A.; Di Micco, B.; Di Nardo, R.; Di Petrillo, K. F.; Di Sipio, R.; Diaconu, C.; Dias, F. A.; Dias Do Vale, T.; Diaz, M. A.; Diaz Capriles, F. G.; Dickinson, J.; Didenko, M.; Diehl, E. B.; Dietrich, J.; Díez Cornell, S.; Diez Pardos, C.; Dimitrievska, A.; Ding, W.; Dingfelder, J.; Dittmeier, S. J.; Dittus, F.; Djama, F.; Djobava, T.; Djuvsland, J. I.; Do Vale, M. A.; Dobre, M.; Dodsworth, D.; Doglioni, C.; Dolejsi, J.; Dolezal, Z.; Donadelli, M.; Dong, B.; Donini, J.; D'onofrio, A.; D'Onofrio, M.; Dopke, J.; Doria, A.; Dova, M. T.; Doyle, A. T.; Drechsler, E.; Dreyer, E.; Dreyer, T.; Drobac, A. S.; Du, D.; du Pree, T. A.; Duan, Y.; Dubinin, F.; Dubovsky, M.; Dubreuil, A.; Duchovni, E.; Duckeck, G.; Ducu, O. A.; Duda, D.; Dudarev, A.; Dudder, A. C.; Duffield, E. M.; D'uffizi, M.; Duflot, L.; Dührssen, M.; Dülsen, C.; Dumancic, M.; Dumitriu, A. E.; Dunford, M.; Dungs, S.; Duperrin, A.; Duran Yildiz, H.; Düren, M.; Durglishvili, A.; Duschinger, D.; Dutta, B.; Duvnjak, D.; Dyckes, G. I.; Dyndal, M.; Dysch, S.; Dziedzic, B. S.; Eggleston, M. G.; Eifert, T.; Eigen, G.; Einsweiler, K.; Ekelof, T.; El Jarrari, H.; Ellajosyula, V.; Ellert, M.; Ellinghaus, F.; Elliot, A. A.; Ellis, N.; Elmsheuser, J.; Elsing, M.; Emeliyanov, D.; Emerman, A.; Enari, Y.; Epland, M. B.; Erdmann, J.; Ereditato, A.; Erland, P. A.; Errenst, M.; Escalier, M.; Escobar, C.; Estrada Pastor, O.; Etzion, E.; Evans, G. E.; Evans, H.; Evans, M. O.; Ezhilov, A.; Fabbri, F.; Fabbri, L.; Fabiani, V.; Facini, G.; Fakhrutdinov, R. M.; Falciano, S.; Falke, P. J.; Falke, S.; Faltova, J.; Fang, Y.; Fang, Y.; Fanourakis, G.; Fanti, M.; Faraj, M.; Farbin, A.; Farilla, A.; Farina, E. M.; Farooque, T.; Farrington, S. M.; Farthouat, P.; Fassi, F.; Fassnacht, P.; Fassouliotis, D.; Faucci Giannelli, M.; Fawcett, W. J.; Fayard, L.; Fedin, O. L.; Fedorko, W.; Fehr, A.; Feickert, M.; Feligioni, L.; Fell, A.; Feng, C.; Feng, M.; Fenton, M. J.; Fenyuk, A. B.; Ferguson, S. W.; Ferrando, J.; Ferrari, A.; Ferrari, P.; Ferrari, R.; Ferreira de Lima, D. E.; Ferrer, A.; Ferrere, D.; Ferretti, C.; Fiedler, F.; Filipčič, A.; Filthaut, F.; Finelli, K. D.; Fiolhais, M. C.; Fiorini, L.; Fischer, F.; Fischer, J.; Fisher, W. C.; Fitschen, T.; Fleck, I.; Fleischmann, P.; Flick, T.; Flierl, B. M.; Flores, L.; Flores Castillo, L. R.; Follega, F. M.; Fomin, N.; Foo, J. H.; Forcolin, G. T.; Forland, B. C.; Formica, A.; Förster, F. A.; Forti, A. C.; Fortin, E.; Foti, M. G.; Fournier, D.; Fox, H.; Francavilla, P.; Francescato, S.; Franchini, M.; Franchino, S.; Francis, D.; Franco, L.; Franconi, L.; Franklin, M.; Frattari, G.; Fray, A. N.; Freeman, P. M.; Freund, B.; Freund, W. S.; Freundlich, E. M.; Frizzell, D. C.; Froidevaux, D.; Frost, J. A.; Fujimoto, M.; Fukunaga, C.; Fullana Torregrosa, E.; Fusayasu, T.; Fuster, J.; Gabrielli, A.; Gabrielli, A.; Gadatsch, S.; Gadow, P.; Gagliardi, G.; Gagnon, L. G.; Gallardo, G. E.; Gallas, E. J.; Gallop, B. J.; Gamboa Goni, R.; Gan, K. K.; Ganguly, S.; Gao, J.; Gao, Y.; Gao, Y. S.; Garay Walls, F. M.; García, C.; García Navarro, J. E.; García Pascual, J. A.; Garcia-Argos, C.; Garcia-Sciveres, M.; Gardner, R. W.; Garelli, N.; Gargiulo, S.; Garner, C. A.; Garonne, V.; Gasiorowski, S. J.; Gaspar, P.; Gaudiello, A.; Gaudio, G.; Gauzzi, P.; Gavrilenko, I. L.; Gavrilyuk, A.; Gay, C.; Gaycken, G.; Gazis, E. N.; Geanta, A. A.; Gee, C. M.; Gee, C. N.; Geisen, J.; Geisen, M.; Gemme, C.; Genest, M. H.; Geng, C.; Gentile, S.; George, S.; Geralis, T.; Gerlach, L. O.; Gessinger-Befurt, P.; Gessner, G.; Ghasemi Bostanabad, M.; Ghneimat, M.; Ghosh, A.; Ghosh, A.; Giacobbe, B.; Giagu, S.; Giangiacomi, N.; Giannetti, P.; Giannini, A.; Giannini, G.; Gibson, S. M.; Gignac, M.; Gil, D. T.; Gilbert, B. J.; Gillberg, D.; Gilles, G.; Gillwald, N. E.; Gingrich, D. M.; Giordani, M. P.; Giraud, P. F.; Giugliarelli, G.; Giugni, D.; Giuli, F.; Gkaitatzis, S.; Gkialas, I.; Gkougkousis, E. L.; Gkountoumis, P.; Gladilin, L. K.; Glasman, C.; Glatzer, J.; Glaysher, P. C.; Glazov, A.; Gledhill, G. R.; Gnesi, I.; Goblirsch-Kolb, M.; Godin, D.; Goldfarb, S.; Golling, T.; Golubkov, D.; Gomes, A.; Goncalves Gama, R.; Gonçalo, R.; Gonella, G.; Gonella, L.; Gongadze, A.; Gonnella, F.; Gonski, J. L.; González de la Hoz, S.; Gonzalez Fernandez, S.; Gonzalez Lopez, R.; Gonzalez Renteria, C.; Gonzalez Suarez, R.; Gonzalez-Sevilla, S.; Gonzalvo Rodriguez, G. R.; Goossens, L.; Gorasia, N. A.; Gorbounov, P. A.; Gordon, H. A.; Gorini, B.; Gorini, E.; Gorišek, A.; Goshaw, A. T.; Gostkin, M. I.; Gottardo, C. A.; Gouighri, M.; Goussiou, A. G.; Govender, N.; Goy, C.; Grabowska-Bold, I.; Graham, E. C.; Gramling, J.; Gramstad, E.; Grancagnolo, S.; Grandi, M.; Gratchev, V.; Gravila, P. M.; Gravili, F. G.; Gray, C.; Gray, H. M.; Grefe, C.; Gregersen, K.; Gregor, I. M.; Grenier, P.; Grevtsov, K.; Grieco, C.; Grieser, N. A.; Grillo, A. A.; Grimm, K.; Grinstein, S.; Grivaz, J. F.; Groh, S.; Gross, E.; Grosse-Knetter, J.; Grout, Z. J.; Grud, C.; Grummer, A.; Grundy, J. C.; Guan, L.; Guan, W.; Gubbels, C.; Guenther, J.; Guerguichon, A.; Guerrero Rojas, J. G.; Guescini, F.; Guest, D.; Gugel, R.; Guida, A.; Guillemin, T.; Guindon, S.; Guo, J.; Guo, W.; Guo, Y.; Guo, Z.; Gupta, R.; Gurbuz, S.; Gustavino, G.; Guth, M.; Gutierrez, P.; Gutschow, C.; Guyot, C.; Gwenlan, C.; Gwilliam, C. B.; Haaland, E. S.; Haas, A.; Haber, C.; Hadavand, H. K.; Hadef, A.; Haleem, M.; Haley, J.; Hall, J. J.; Halladjian, G.; Hallewell, G. D.; Hamano, K.; Hamdaoui, H.; Hamer, M.; Hamity, G. N.; Han, K.; Han, L.; Han, L.; Han, S.; Han, Y. F.; Hanagaki, K.; Hance, M.; Handl, D. M.; Hank, M. D.; Hankache, R.; Hansen, E.; Hansen, J. B.; Hansen, J. D.; Hansen, M. C.; Hansen, P. H.; Hanson, E. C.; Hara, K.; Harenberg, T.; Harkusha, S.; Harrison, P. F.; Hartman, N. M.; Hartmann, N. M.; Hasegawa, Y.; Hasib, A.; Hassani, S.; Haug, S.; Hauser, R.; Havranek, M.; Hawkes, C. M.; Hawkings, R. J.; Hayashida, S.; Hayden, D.; Hayes, C.; Hayes, R. L.; Hays, C. P.; Hays, J. M.; Hayward, H. S.; Haywood, S. J.; He, F.; He, Y.; Heath, M. P.; Hedberg, V.; Heggelund, A. L.; Hehir, N. D.; Heidegger, C.; Heidegger, K. K.; Heidorn, W. D.; Heilman, J.; Heim, S.; Heim, T.; Heinemann, B.; Heinlein, J. G.; Heinrich, J. J.; Heinrich, L.; Hejbal, J.; Helary, L.; Held, A.; Hellesund, S.; Helling, C. M.; Hellman, S.; Helsens, C.; Henderson, R. C.; Henkelmann, L.; Henriques Correia, A. M.; Herde, H.; Hernández Jiménez, Y.; Herr, H.; Herrmann, M. G.; Herrmann, T.; Herten, G.; Hertenberger, R.; Hervas, L.; Hesketh, G. G.; Hessey, N. P.; Hibi, H.; Higashino, S.; Higón-Rodriguez, E.; Hildebrand, K.; Hill, J. C.; Hill, K. K.; Hiller, K. H.; Hillier, S. J.; Hils, M.; Hinchliffe, I.; Hinterkeuser, F.; Hirose, M.; Hirose, S.; Hirschbuehl, D.; Hiti, B.; Hladik, O.; Hobbs, J.; Hobincu, R.; Hod, N.; Hodgkinson, M. C.; Hoecker, A.; Hohn, D.; Hohov, D.; Holm, T.; Holmes, T. R.; Holzbock, M.; Hommels, L. B.; Hong, T. M.; Honig, J. C.; Hönle, A.; Hooberman, B. H.; Hopkins, W. H.; Horii, Y.; Horn, P.; Horyn, L. A.; Hou, S.; Hoummada, A.; Howarth, J.; Hoya, J.; Hrabovsky, M.; Hrivnac, J.; Hrynevich, A.; Hryn'ova, T.; Hsu, P. J.; Hsu, S. C.; Hu, Q.; Hu, S.; Hu, Y. F.; Huang, D. P.; Huang, X.; Huang, Y.; Huang, Y.; Hubacek, Z.; Hubaut, F.; Huebner, M.; Huegging, F.; Huffman, T. B.; Huhtinen, M.; Hulsken, R.; Hunter, R. F.; Huseynov, N.; Huston, J.; Huth, J.; Hyneman, R.; Hyrych, S.; Iacobucci, G.; Iakovidis, G.; Ibragimov, I.; Iconomidou-Fayard, L.; Iengo, P.; Ignazzi, R.; Iguchi, R.; Iizawa, T.; Ikegami, Y.; Ikeno, M.; Ilic, N.; Iltzsche, F.; Imam, H.; Introzzi, G.; Iodice, M.; Iordanidou, K.; Ippolito, V.; Isacson, M. F.; Ishino, M.; Islam, W.; Issever, C.; Istin, S.; Iturbe Ponce, J. M.; Iuppa, R.; Ivina, A.; Izen, J. M.; Izzo, V.; Jacka, P.; Jackson, P.; Jacobs, R. M.; Jaeger, B. P.; Jain, V.; Jäkel, G.; Jakobi, K. B.; Jakobs, K.; Jakoubek, T.; Jamieson, J.; Janas, K. W.; Jansky, R.; Janus, M.; Janus, P. A.; Jarlskog, G.; Jaspan, A. E.; Javadov, N.; Javůrek, T.; Javurkova, M.; Jeanneau, F.; Jeanty, L.; Jejelava, J.; Jenni, P.; Jeong, N.; Jézéquel, S.; Jia, J.; Jia, Z.; Jiang, H.; Jiang, Y.; Jiang, Z.; Jiggins, S.; Jimenez Morales, F. A.; Jimenez Pena, J.; Jin, S.; Jinaru, A.; Jinnouchi, O.; Jivan, H.; Johansson, P.; Johns, K. A.; Johnson, C. A.; Jones, E.; Jones, R. W.; Jones, S. D.; Jones, T. J.; Jovicevic, J.; Ju, X.; Junggeburth, J. J.; Juste Rozas, A.; Kaczmarska, A.; Kado, M.; Kagan, H.; Kagan, M.; Kahn, A.; Kahra, C.; Kaji, T.; Kajomovitz, E.; Kalderon, C. W.; Kaluza, A.; Kamenshchikov, A.; Kaneda, M.; Kang, N. J.; Kang, S.; Kano, Y.; Kanzaki, J.; Kaplan, L. S.; Kar, D.; Karava, K.; Kareem, M. J.; Karkanias, I.; Karpov, S. N.; Karpova, Z. M.; Kartvelishvili, V.; Karyukhin, A. N.; Kasimi, E.; Kastanas, A.; Kato, C.; Katzy, J.; Kawade, K.; Kawagoe, K.; Kawaguchi, T.; Kawamoto, T.; Kawamura, G.; Kay, E. F.; Kaya, F. I.; Kazakos, S.; Kazanin, V. F.; Keaveney, J. M.; Keeler, R.; Keller, J. S.; Kellermann, E.; Kelsey, D.; Kempster, J. J.; Kendrick, J.; Kennedy, K. E.; Kepka, O.; Kersten, S.; Kerševan, B. P.; Ketabchi Haghighat, S.; Khalil-Zada, F.; Khandoga, M.; Khanov, A.; Kharlamov, A. G.; Kharlamova, T.; Khoda, E. E.; Khoo, T. J.; Khoriauli, G.; Khramov, E.; Khubua, J.; Kido, S.; Kiehn, M.; Kim, E.; Kim, Y. K.; Kimura, N.; Kirchhoff, A.; Kirchmeier, D.; Kirk, J.; Kiryunin, A. E.; Kishimoto, T.; Kisliuk, D. P.; Kitali, V.; Kitsaki, C.; Kivernyk, O.; Klapdor-Kleingrothaus, T.; Klassen, M.; Klein, C.; Klein, M. H.; Klein, M.; Klein, U.; Kleinknecht, K.; Klimek, P.; Klimentov, A.; Klimpel, F.; Klingl, T.; Klioutchnikova, T.; Klitzner, F. F.; Kluit, P.; Kluth, S.; Kneringer, E.; Knoops, E. B.; Knue, A.; Kobayashi, D.; Kobel, M.; Kocian, M.; Kodama, T.; Kodys, P.; Koeck, D. M.; Koenig, P. T.; Koffas, T.; Köhler, N. M.; Kolb, M.; Koletsou, I.; Komarek, T.; Kondo, T.; Köneke, K.; Kong, A. X.; König, A. C.; Kono, T.; Konstantinides, V.; Konstantinidis, N.; Konya, B.; Kopeliansky, R.; Koperny, S.; Korcyl, K.; Kordas, K.; Koren, G.; Korn, A.; Korolkov, I.; Korolkova, E. V.; Korotkova, N.; Kortner, O.; Kortner, S.; Kostyukhin, V. V.; Kotsokechagia, A.; Kotwal, A.; Koulouris, A.; Kourkoumeli-Charalampidi, A.; Kourkoumelis, C.; Kourlitis, E.; Kouskoura, V.; Kowalewski, R.; Kozanecki, W.; Kozhin, A. S.; Kramarenko, V. A.; Kramberger, G.; Krasnopevtsev, D.; Krasny, M. W.; Krasznahorkay, A.; Krauss, D.; Kremer, J. A.; Kretzschmar, J.; Kreul, K.; Krieger, P.; Krieter, F.; Krishnamurthy, S.; Krishnan, A.; Krivos, M.; Krizka, K.; Kroeninger, K.; Kroha, H.; Kroll, J.; Kroll, J.; Krowpman, K. S.; Kruchonak, U.; Krüger, H.; Krumnack, N.; Kruse, M. C.; Krzysiak, J. A.; Kubota, A.; Kuchinskaia, O.; Kuday, S.; Kuechler, D.; Kuechler, J. T.; Kuehn, S.; Kuhl, T.; Kukhtin, V.; Kulchitsky, Y.; Kuleshov, S.; Kulinich, Y. P.; Kuna, M.; Kupco, A.; Kupfer, T.; Kuprash, O.; Kurashige, H.; Kurchaninov, L. L.; Kurochkin, Y. A.; Kurova, A.; Kurth, M. G.; Kuwertz, E. S.; Kuze, M.; Kvam, A. K.; Kvita, J.; Kwan, T.; Lacasta, C.; Lacava, F.; Lack, D. P.; Lacker, H.; Lacour, D.; Ladygin, E.; Lafaye, R.; Laforge, B.; Lagouri, T.; Lai, S.; Lakomiec, I. K.; Lambert, J. E.; Lammers, S.; Lampl, W.; Lampoudis, C.; Lançon, E.; Landgraf, U.; Landon, M. P.; Lang, V. S.; Lange, J. C.; Langenberg, R. J.; Lankford, A. J.; Lanni, F.; Lantzsch, K.; Lanza, A.; Lapertosa, A.; Laporte, J. F.; Lari, T.; Lasagni Manghi, F.; Lassnig, M.; Latonova, V.; Lau, T. S.; Laudrain, A.; Laurier, A.; Lavorgna, M.; Lawlor, S. D.; Lazzaroni, M.; Le, B.; Le Guirriec, E.; Lebedev, A.; LeBlanc, M.; LeCompte, T.; Ledroit-Guillon, F.; Lee, A. C.; Lee, C. A.; Lee, G. R.; Lee, L.; Lee, S. C.; Lee, S.; Lefebvre, B.; Lefebvre, H. P.; Lefebvre, M.; Leggett, C.; Lehmann, K.; Lehmann, N.; Lehmann Miotto, G.; Leight, W. A.; Leisos, A.; Leite, M. A.; Leitgeb, C. E.; Leitner, R.; Leney, K. J.; Lenz, T.; Leone, S.; Leonidopoulos, C.; Leopold, A.; Leroy, C.; Les, R.; Lester, C. G.; Levchenko, M.; Levêque, J.; Levin, D.; Levinson, L. J.; Lewis, D. J.; Li, B.; Li, B.; Li, C. Q.; Li, F.; Li, H.; Li, H.; Li, J.; Li, K.; Li, L.; Li, M.; Li, Q. Y.; Li, S.; Li, X.; Li, Y.; Li, Z.; Li, Z.; Li, Z.; Li, Z.; Liang, Z.; Liberatore, M.; Liberti, B.; Lie, K.; Lim, S.; Lin, C. Y.; Lin, K.; Linck, R. A.; Lindley, R. E.; Lindon, J. H.; Linss, A.; Lionti, A. L.; Lipeles, E.; Lipniacka, A.; Liss, T. M.; Lister, A.; Little, J. D.; Liu, B.; Liu, B. X.; Liu, H. B.; Liu, J. B.; Liu, J. K.; Liu, K.; Liu, M.; Liu, M. Y.; Liu, P.; Liu, X.; Liu, Y.; Liu, Y.; Liu, Y. L.; Liu, Y. W.; Livan, M.; Lleres, A.; Llorente Merino, J.; Lloyd, S. L.; Lo, C. Y.; Lobodzinska, E. M.; Loch, P.; Loffredo, S.; Lohse, T.; Lohwasser, K.; Lokajicek, M.; Long, J. D.; Long, R. E.; Longarini, I.; Longo, L.; Lopez Paz, I.; Lopez Solis, A.; Lorenz, J.; Lorenzo Martinez, N.; Lory, A. M.; Lösle, A.; Lou, X.; Lou, X.; Lounis, A.; Love, J.; Love, P. A.; Lozano Bahilo, J. J.; Lu, M.; Lu, Y. J.; Lubatti, H. J.; Luci, C.; Lucio Alves, F. L.; Lucotte, A.; Luehring, F.; Luise, I.; Luminari, L.; Lund-Jensen, B.; Luongo, N. A.; Lutz, M. S.; Lynn, D.; Lyons, H.; Lysak, R.; Lytken, E.; Lyu, F.; Lyubushkin, V.; Lyubushkina, T.; Ma, H.; Ma, L. L.; Ma, Y.; Mac Donell, D. M.; Maccarrone, G.; Macdonald, C. M.; MacDonald, J. C.; Machado Miguens, J.; Madar, R.; Mader, W. F.; Madugoda Ralalage Don, M.; Madysa, N.; Maeda, J.; Maeno, T.; Maerker, M.; Magerl, V.; Magini, N.; Magro, J.; Mahon, D. J.; Maidantchik, C.; Maio, A.; Maj, K.; Majersky, O.; Majewski, S.; Makida, Y.; Makovec, N.; Malaescu, B.; Malecki, P.; Maleev, V. P.; Malek, F.; Malito, D.; Mallik, U.; Malone, C.; Maltezos, S.; Malyukov, S.; Mamuzic, J.; Mancini, G.; Mandalia, J. P.; Mandić, I.; Manhaes de Andrade Filho, L.; Maniatis, I. M.; Manjarres Ramos, J.; Mankinen, K. H.; Mann, A.; Manousos, A.; Mansoulie, B.; Manthos, I.; Manzoni, S.; Marantis, A.; Marceca, G.; Marchese, L.; Marchiori, G.; Marcisovsky, M.; Marcoccia, L.; Marcon, C.; Marjanovic, M.; Marshall, Z.; Martensson, M. U.; Marti-Garcia, S.; Martin, C. B.; Martin, T. A.; Martin, V. J.; Martin Dit Latour, B.; Martinelli, L.; Martinez, M.; Martinez Agullo, P.; Martinez Outschoorn, V. I.; Martin-Haugh, S.; Martoiu, V. S.; Martyniuk, A. C.; Marzin, A.; Maschek, S. R.; Masetti, L.; Mashimo, T.; Mashinistov, R.; Masik, J.; Maslennikov, A. L.; Massa, L.; Massarotti, P.; Mastrandrea, P.; Mastroberardino, A.; Masubuchi, T.; Matakias, D.; Matic, A.; Matsuzawa, N.; Mättig, P.; Maurer, J.; Maček, B.; Maximov, D. A.; Mazini, R.; Maznas, I.; Mazza, S. M.; Mc Gowan, J. P.; Mc Kee, S. P.; McCarthy, T. G.; McCormack, W. P.; McDonald, E. F.; McDougall, A. E.; Mcfayden, J. A.; Mchedlidze, G.; McKay, M. A.; McLean, K. D.; McMahon, S. J.; McNamara, P. C.; McNicol, C. J.; McPherson, R. A.; Mdhluli, J. E.; Meadows, Z. A.; Meehan, S.; Megy, T.; Mehlhase, S.; Mehta, A.; Meirose, B.; Melini, D.; Mellado Garcia, B. R.; Mellenthin, J. D.; Melo, M.; Meloni, F.; Melzer, A.; Mendes Gouveia, E. D.; Mendes Jacques Da Costa, A. M.; Meng, H. Y.; Meng, L.; Meng, X. T.; Menke, S.; Meoni, E.; Mergelmeyer, S.; Merkt, S. A.; Merlassino, C.; Mermod, P.; Merola, L.; Meroni, C.; Merz, G.; Meshkov, O.; Meshreki, J. K.; Metcalfe, J.; Mete, A. S.; Meyer, C.; Meyer, J. P.; Michetti, M.; Middleton, R. P.; Mijović, L.; Mikenberg, G.; Mikestikova, M.; Mikuž, M.; Mildner, H.; Milic, A.; Milke, C. D.; Miller, D. W.; Miller, L. S.; Milov, A.; Milstead, D. A.; Minaenko, A. A.; Minashvili, I. A.; Mince, L.; Mincer, A. I.; Mindur, B.; Mineev, M.; Minegishi, Y.; Mino, Y.; Mir, L. M.; Mironova, M.; Mitani, T.; Mitrevski, J.; Mitsou, V. A.; Mittal, M.; Miu, O.; Miucci, A.; Miyagawa, P. S.; Mizukami, A.; Mjörnmark, J. U.; Mkrtchyan, T.; Mlynarikova, M.; Moa, T.; Mobius, S.; Mochizuki, K.; Moder, P.; Mogg, P.; Mohapatra, S.; Moles-Valls, R.; Mönig, K.; Monnier, E.; Montalbano, A.; Montejo Berlingen, J.; Montella, M.; Monticelli, F.; Monzani, S.; Morange, N.; Moreira De Carvalho, A. L.; Moreno, D.; Moreno Llácer, M.; Moreno Martinez, C.; Morettini, P.; Morgenstern, M.; Morgenstern, S.; Mori, D.; Morii, M.; Morinaga, M.; Morisbak, V.; Morley, A. K.; Mornacchi, G.; Morris, A. P.; Morvaj, L.; Moschovakos, P.; Moser, B.; Mosidze, M.; Moskalets, T.; Moskvitina, P.; Moss, J.; Moyse, E. J.; Muanza, S.; Mueller, J.; Mueller, R. S.; Muenstermann, D.; Mullier, G. A.; Mungo, D. P.; Munoz Martinez, J. L.; Munoz Sanchez, F. J.; Murin, P.; Murray, W. J.; Murrone, A.; Muse, J. M.; Muškinja, M.; Mwewa, C.; Myagkov, A. G.; Myers, A. A.; Myers, G.; Myers, J.; Myska, M.; Nachman, B. P.; Nackenhorst, O.; Nag, A. N.; Nagai, K.; Nagano, K.; Nagasaka, Y.; Nagle, J. L.; Nagy, E.; Nairz, A. M.; Nakahama, Y.; Nakamura, K.; Nakamura, T.; Nanjo, H.; Napolitano, F.; Naranjo Garcia, R. F.; Narayan, R.; Naryshkin, I.; Naseri, M.; Naumann, T.; Navarro, G.; Nechaeva, P. Y.; Nechansky, F.; Neep, T. J.; Negri, A.; Negrini, M.; Nellist, C.; Nelson, C.; Nelson, M. E.; Nemecek, S.; Nessi, M.; Neubauer, M. S.; Neuhaus, F.; Neumann, M.; Newhouse, R.; Newman, P. R.; Ng, C. W.; Ng, Y. S.; Ng, Y. W.; Ngair, B.; Nguyen, H. D.; Nguyen Manh, T.; Nibigira, E.; Nickerson, R. B.; Nicolaidou, R.; Nielsen, D. S.; Nielsen, J.; Niemeyer, M.; Nikiforou, N.; Nikolaenko, V.; Nikolic-Audit, I.; Nikolopoulos, K.; Nilsson, P.; Nindhito, H. R.; Nisati, A.; Nishu, N.; Nisius, R.; Nitsche, I.; Nitta, T.; Nobe, T.; Noel, D. L.; Noguchi, Y.; Nomidis, I.; Nomura, M. A.; Nordberg, M.; Novak, J.; Novak, T.; Novgorodova, O.; Novotny, R.; Nozka, L.; Ntekas, K.; Nurse, E.; Oakham, F. G.; Ocariz, J.; Ochi, A.; Ochoa, I.; Ochoa-Ricoux, J. P.; O'Connor, K.; Oda, S.; Odaka, S.; Oerdek, S.; Ogrodnik, A.; Oh, A.; Ohm, C. C.; Oide, H.; Oishi, R.; Ojeda, M. L.; Okawa, H.; Okazaki, Y.; O'Keefe, M. W.; Okumura, Y.; Olariu, A.; Oleiro Seabra, L. F.; Olivares Pino, S. A.; Oliveira Damazio, D.; Oliver, J. L.; Olsson, M. J.; Olszewski, A.; Olszowska, J.; Öncel, Ö. O.; O'Neil, D. C.; O'neill, A. P.; Onofre, A.; Onyisi, P. U.; Oppen, H.; Oreamuno Madriz, R. G.; Oreglia, M. J.; Orellana, G. E.; Orestano, D.; Orlando, N.; Orr, R. S.; O'Shea, V.; Ospanov, R.; Otero Y Garzon, G.; Otono, H.; Ott, P. S.; Ottino, G. J.; Ouchrif, M.; Ouellette, J.; Ould-Saada, F.; Ouraou, A.; Ouyang, Q.; Owen, M.; Owen, R. E.; Ozcan, V. E.; Ozturk, N.; Pacalt, J.; Pacey, H. A.; Pachal, K.; Pacheco Pages, A.; Padilla Aranda, C.; Pagan Griso, S.; Palacino, G.; Palazzo, S.; Palestini, S.; Palka, M.; Palni, P.; Pandini, C. E.; Panduro Vazquez, J. G.; Pani, P.; Panizzo, G.; Paolozzi, L.; Papadatos, C.; Papageorgiou, K.; Parajuli, S.; Paramonov, A.; Paraskevopoulos, C.; Paredes Hernandez, D.; Paredes Saenz, S. R.; Parida, B.; Park, T. H.; Parker, A. J.; Parker, M. A.; Parodi, F.; Parrish, E. W.; Parsons, J. A.; Parzefall, U.; Pascual Dominguez, L.; Pascuzzi, V. R.; Pasner, J. M.; Pasquali, F.; Pasqualucci, E.; Passaggio, S.; Pastore, F.; Pasuwan, P.; Pataraia, S.; Pater, J. R.; Pathak, A.; Patton, J.; Pauly, T.; Pearkes, J.; Pedersen, M.; Pedraza Diaz, L.; Pedro, R.; Peiffer, T.; Peleganchuk, S. V.; Penc, O.; Peng, C.; Peng, H.; Peralva, B. S.; Perego, M. M.; Pereira Peixoto, A. P.; Pereira Sanchez, L.; Perepelitsa, D. V.; Perez Codina, E.; Perini, L.; Pernegger, H.; Perrella, S.; Perrevoort, A.; Peters, K.; Peters, R. F.; Petersen, B. A.; Petersen, T. C.; Petit, E.; Petousis, V.; Petridou, C.; Petrucci, F.; Pettee, M.; Pettersson, N. E.; Petukhova, K.; Peyaud, A.; Pezoa, R.; Pezzotti, L.; Pham, T.; Phillips, P. W.; Phipps, M. W.; Piacquadio, G.; Pianori, E.; Picazio, A.; Pickles, R. H.; Piegaia, R.; Pietreanu, D.; Pilcher, J. E.; Pilkington, A. D.; Pinamonti, M.; Pinfold, J. L.; Pitman Donaldson, C.; Pitt, M.; Pizzimento, L.; Pizzini, A.; Pleier, M. A.; Plesanovs, V.; Pleskot, V.; Plotnikova, E.; Podberezko, P.; Poettgen, R.; Poggi, R.; Poggioli, L.; Pogrebnyak, I.; Pohl, D.; Pokharel, I.; Polesello, G.; Poley, A.; Policicchio, A.; Polifka, R.; Polini, A.; Pollard, C. S.; Polychronakos, V.; Ponomarenko, D.; Pontecorvo, L.; Popa, S.; Popeneciu, G. A.; Portales, L.; Portillo Quintero, D. M.; Pospisil, S.; Potamianos, K.; Potrap, I. N.; Potter, C. J.; Potti, H.; Poulsen, T.; Poveda, J.; Powell, T. D.; Pownall, G.; Pozo Astigarraga, M. E.; Prades Ibanez, A.; Pralavorio, P.; Prapa, M. M.; Prell, S.; Price, D.; Primavera, M.; Proffitt, M. L.; Proklova, N.; Prokofiev, K.; Prokoshin, F.; Protopopescu, S.; Proudfoot, J.; Przybycien, M.; Pudzha, D.; Puri, A.; Puzo, P.; Pyatiizbyantseva, D.; Qian, J.; Qin, Y.; Quadt, A.; Queitsch-Maitland, M.; Rabanal Bolanos, G.; Racko, M.; Ragusa, F.; Rahal, G.; Raine, J. A.; Rajagopalan, S.; Ramirez Morales, A.; Ran, K.; Rassloff, D. F.; Rauch, D. M.; Rauscher, F.; Rave, S.; Ravina, B.; Ravinovich, I.; Rawling, J. H.; Raymond, M.; Read, A. L.; Readioff, N. P.; Reale, M.; Rebuzzi, D. M.; Redlinger, G.; Reeves, K.; Reikher, D.; Reiss, A.; Rej, A.; Rembser, C.; Renardi, A.; Renda, M.; Rendel, M. B.; Rennie, A. G.; Resconi, S.; Resseguie, E. D.; Rettie, S.; Reynolds, B.; Reynolds, E.; Rezanova, O. L.; Reznicek, P.; Ricci, E.; Richter, R.; Richter, S.; Richter-Was, E.; Ridel, M.; Rieck, P.; Rifki, O.; Rijssenbeek, M.; Rimoldi, A.; Rimoldi, M.; Rinaldi, L.; Rinn, T. T.; Ripellino, G.; Riu, I.; Rivadeneira, P.; Rivera Vergara, J. C.; Rizatdinova, F.; Rizvi, E.; Rizzi, C.; Robertson, S. H.; Robin, M.; Robinson, D.; Robles Gajardo, C. M.; Robles Manzano, M.; Robson, A.; Rocchi, A.; Roda, C.; Rodriguez Bosca, S.; Rodriguez Rodriguez, A.; Rodríguez Vera, A. M.; Roe, S.; Roggel, J.; Røhne, O.; Röhrig, R.; Rojas, R. A.; Roland, B.; Roland, C. P.; Roloff, J.; Romaniouk, A.; Romano, M.; Rompotis, N.; Ronzani, M.; Roos, L.; Rosati, S.; Rosin, G.; Rosser, B. J.; Rossi, E.; Rossi, E.; Rossi, E.; Rossi, L. P.; Rossini, L.; Rosten, R.; Rotaru, M.; Rottler, B.; Rousseau, D.; Rovelli, G.; Roy, A.; Roy, D.; Rozanov, A.; Rozen, Y.; Ruan, X.; Ruggeri, T. A.; Rühr, F.; Ruiz-Martinez, A.; Rummler, A.; Rurikova, Z.; Rusakovich, N. A.; Russell, H. L.; Rustige, L.; Rutherfoord, J. P.; Rüttinger, E. M.; Rybar, M.; Rybkin, G.; Rye, E. B.; Ryzhov, A.; Sabater Iglesias, J. A.; Sabatini, P.; Sabetta, L.; Sacerdoti, S.; Sadrozinski, H. F.; Sadykov, R.; Safai Tehrani, F.; Safarzadeh Samani, B.; Safdari, M.; Saha, P.; Saha, S.; Sahinsoy, M.; Sahu, A.; Saimpert, M.; Saito, M.; Saito, T.; Sakamoto, H.; Salamani, D.; Salamanna, G.; Salnikov, A.; Salt, J.; Salvador Salas, A.; Salvatore, D.; Salvatore, F.; Salvucci, A.; Salzburger, A.; Samarati, J.; Sammel, D.; Sampsonidis, D.; Sampsonidou, D.; Sánchez, J.; Sanchez Pineda, A.; Sandaker, H.; Sander, C. O.; Sanderswood, I. G.; Sandhoff, M.; Sandoval, C.; Sankey, D. P.; Sannino, M.; Sano, Y.; Sansoni, A.; Santoni, C.; Santos, H.; Santpur, S. N.; Santra, A.; Saoucha, K. A.; Sapronov, A.; Saraiva, J. G.; Sasaki, O.; Sato, K.; Sauerburger, F.; Sauvan, E.; Savard, P.; Sawada, R.; Sawyer, C.; Sawyer, L.; Sayago Galvan, I.; Sbarra, C.; Sbrizzi, A.; Scanlon, T.; Schaarschmidt, J.; Schacht, P.; Schaefer, D.; Schaefer, L.; Schäfer, U.; Schaffer, A. C.; Schaile, D.; Schamberger, R. D.; Schanet, E.; Scharf, C.; Scharmberg, N.; Schegelsky, V. A.; Scheirich, D.; Schenck, F.; Schernau, M.; Schiavi, C.; Schildgen, L. K.; Schillaci, Z. M.; Schioppa, E. J.; Schioppa, M.; Schleicher, K. E.; Schlenker, S.; Schmidt-Sommerfeld, K. R.; Schmieden, K.; Schmitt, C.; Schmitt, S.; Schoeffel, L.; Schoening, A.; Scholer, P. G.; Schopf, E.; Schott, M.; Schouwenberg, J. F.; Schovancova, J.; Schramm, S.; Schroeder, F.; Schulte, A.; Schultz-Coulon, H. C.; Schumacher, M.; Schumm, B. A.; Schune, P.; Schwartzman, A.; Schwarz, T. A.; Schwemling, P.; Schwienhorst, R.; Sciandra, A.; Sciolla, G.; Scuri, F.; Scutti, F.; Scyboz, L. M.; Sebastiani, C. D.; Sedlaczek, K.; Seema, P.; Seidel, S. C.; Seiden, A.; Seidlitz, B. D.; Seiss, T.; Seitz, C.; Seixas, J. M.; Sekhniaidze, G.; Sekula, S. J.; Semprini-Cesari, N.; Sen, S.; Serfon, C.; Serin, L.; Serkin, L.; Sessa, M.; Severini, H.; Sevova, S.; Sforza, F.; Sfyrla, A.; Shabalina, E.; Shahinian, J. D.; Shaikh, N. W.; Shaked Renous, D.; Shan, L. Y.; Shapiro, M.; Sharma, A.; Sharma, A. S.; Shatalov, P. B.; Shaw, K.; Shaw, S. M.; Shehade, M.; Shen, Y.; Sherman, A. D.; Sherwood, P.; Shi, L.; Shimmin, C. O.; Shimogama, Y.; Shimojima, M.; Shinner, J. D.; Shipsey, I. P.; Shirabe, S.; Shiyakova, M.; Shlomi, J.; Shmeleva, A.; Shochet, M. J.; Shojaii, J.; Shope, D. R.; Shrestha, S.; Shrif, E. M.; Shroff, M. J.; Shulga, E.; Sicho, P.; Sickles, A. M.; Sideras Haddad, E.; Sidiropoulou, O.; Sidoti, A.; Siegert, F.; Sijacki, D.; Silva, M.; Silva Oliveira, M. V.; Silverstein, S. B.; Simion, S.; Simoniello, R.; Simpson-Allsop, C. J.; Simsek, S.; Sinervo, P.; Sinetckii, V.; Singh, S.; Sinha, S.; Sioli, M.; Siral, I.; Sivoklokov, S. Y.; Sjölin, J.; Skaf, A.; Skorda, E.; Skubic, P.; Slawinska, M.; Sliwa, K.; Smakhtin, V.; Smart, B. H.; Smiesko, J.; Smirnov, N.; Smirnov, S. Y.; Smirnov, Y.; Smirnova, L. N.; Smirnova, O.; Smith, E. A.; Smith, H. A.; Smizanska, M.; Smolek, K.; Smykiewicz, A.; Snesarev, A. A.; Snoek, H. L.; Snyder, I. M.; Snyder, S.; Sobie, R.; Soffer, A.; Søgaard, A.; Sohns, F.; Solans Sanchez, C. A.; Soldatov, E. Y.; Soldevila, U.; Solodkov, A. A.; Soloshenko, A.; Solovyanov, O. V.; Solovyev, V.; Sommer, P.; Son, H.; Sonay, A.; Song, W.; Song, W. Y.; Sopczak, A.; Sopio, A. L.; Sopkova, F.; Sottocornola, S.; Soualah, R.; Soukharev, A. M.; South, D.; Spagnolo, S.; Spalla, M.; Spangenberg, M.; Spanò, F.; Sperlich, D.; Spieker, T. M.; Spigo, G.; Spina, M.; Spiteri, D. P.; Spousta, M.; Stabile, A.; Stamas, B. L.; Stamen, R.; Stamenkovic, M.; Stampekis, A.; Stanecka, E.; Stanislaus, B.; Stanitzki, M. M.; Stankaityte, M.; Stapf, B.; Starchenko, E. A.; Stark, G. H.; Stark, J.; Staroba, P.; Starovoitov, P.; Stärz, S.; Staszewski, R.; Stavropoulos, G.; Stegler, M.; Steinberg, P.; Steinhebel, A. L.; Stelzer, B.; Stelzer, H. J.; Stelzer-Chilton, O.; Stenzel, H.; Stevenson, T. J.; Stewart, G. A.; Stockton, M. C.; Stoicea, G.; Stolarski, M.; Stonjek, S.; Straessner, A.; Strandberg, J.; Strandberg, S.; Strauss, M.; Strebler, T.; Strizenec, P.; Ströhmer, R.; Strom, D. M.; Stroynowski, R.; Strubig, A.; Stucci, S. A.; Stugu, B.; Stupak, J.; Styles, N. A.; Su, D.; Su, W.; Su, X.; Suarez, N. B.; Sulin, V. V.; Sullivan, M. J.; Sultan, D. M.; Sultansoy, S.; Sumida, T.; Sun, S.; Sun, X.; Suster, C. J.; Sutton, M. R.; Suzuki, S.; Svatos, M.; Swiatlowski, M.; Swift, S. P.; Swirski, T.; Sydorenko, A.; Sykora, I.; Sykora, M.; Sykora, T.; Ta, D.; Tackmann, K.; Taenzer, J.; Taffard, A.; Tafirout, R.; Tagiev, E.; Taibah, R. H.; Takashima, R.; Takeda, K.; Takeshita, T.; Takeva, E. P.; Takubo, Y.; Talby, M.; Talyshev, A. A.; Tam, K. C.; Tamir, N. M.; Tanaka, J.; Tanaka, R.; Tapia Araya, S.; Tapprogge, S.; Tarek Abouelfadl Mohamed, A.; Tarem, S.; Tariq, K.; Tarna, G.; Tartarelli, G. F.; Tas, P.; Tasevsky, M.; Tassi, E.; Tateno, G.; Tavares Delgado, A.; Tayalati, Y.; Taylor, A. J.; Taylor, G. N.; Taylor, W.; Teagle, H.; Tee, A. S.; Teixeira De Lima, R.; Teixeira-Dias, P.; Ten Kate, H.; Teoh, J. J.; Terashi, K.; Terron, J.; Terzo, S.; Testa, M.; Teuscher, R. J.; Themistokleous, N.; Theveneaux-Pelzer, T.; Thomas, D. W.; Thomas, J. P.; Thompson, E. A.; Thompson, P. D.; Thomson, E.; Thorpe, E. J.; Tikhomirov, V. O.; Tikhonov, Y. A.; Timoshenko, S.; Tipton, P.; Tisserant, S.; Todome, K.; Todorova-Nova, S.; Todt, S.; Tojo, J.; Tokár, S.; Tokushuku, K.; Tolley, E.; Tombs, R.; Tomiwa, K. G.; Tomoto, M.; Tompkins, L.; Tornambe, P.; Torrence, E.; Torres, H.; Torró Pastor, E.; Toscani, M.; Tosciri, C.; Toth, J.; Tovey, D. R.; Traeet, A.; Treado, C. J.; Trefzger, T.; Tresoldi, F.; Tricoli, A.; Trigger, I. M.; Trincaz-Duvoid, S.; Trischuk, D. A.; Trischuk, W.; Trocmé, B.; Trofymov, A.; Troncon, C.; Trovato, F.; Truong, L.; Trzebinski, M.; Trzupek, A.; Tsai, F.; Tsiareshka, P. V.; Tsirigotis, A.; Tsiskaridze, V.; Tskhadadze, E. G.; Tsopoulou, M.; Tsukerman, I. I.; Tsulaia, V.; Tsuno, S.; Tsybychev, D.; Tu, Y.; Tudorache, A.; Tudorache, V.; Tuna, A. N.; Turchikhin, S.; Turgeman, D.; Turk Cakir, I.; Turner, R. J.; Turra, R.; Tuts, P. M.; Tzamarias, S.; Tzovara, E.; Uchida, K.; Ukegawa, F.; Unal, G.; Unal, M.; Undrus, A.; Unel, G.; Ungaro, F. C.; Unno, Y.; Uno, K.; Urban, J.; Urquijo, P.; Usai, G.; Uysal, Z.; Vacek, V.; Vachon, B.; Vadla, K. O.; Vafeiadis, T.; Vaidya, A.; Valderanis, C.; Valdes Santurio, E.; Valente, M.; Valentinetti, S.; Valero, A.; Valéry, L.; Vallance, R. A.; Vallier, A.; Valls Ferrer, J. A.; Van Daalen, T. R.; Van Gemmeren, P.; Van Stroud, S.; Van Vulpen, I.; Vanadia, M.; Vandelli, W.; Vandenbroucke, M.; Vandewall, E. R.; Vannicola, D.; Vari, R.; Varnes, E. W.; Varni, C.; Varol, T.; Varouchas, D.; Varvell, K. E.; Vasile, M. E.; Vasquez, G. A.; Vazeille, F.; Vazquez Furelos, D.; Vazquez Schroeder, T.; Veatch, J.; Vecchio, V.; Veen, M. J.; Veloce, L. M.; Veloso, F.; Veneziano, S.; Ventura, A.; Verbytskyi, A.; Vercesi, V.; Verducci, M.; Vergel Infante, C. M.; Vergis, C.; Verkerke, W.; Vermeulen, A. T.; Vermeulen, J. C.; Vernieri, C.; Verschuuren, P. J.; Vetterli, M. C.; Viaux Maira, N.; Vickey, T.; Vickey Boeriu, O. E.; Viehhauser, G. H.; Vigani, L.; Villa, M.; Villaplana Perez, M.; Villhauer, E. M.; Vilucchi, E.; Vincter, M. G.; Virdee, G. S.; Vishwakarma, A.; Vittori, C.; Vivarelli, I.; Vogel, M.; Vokac, P.; Von Ahnen, J.; von Buddenbrock, S. E.; Von Toerne, E.; Vorobel, V.; Vorobev, K.; Vos, M.; Vossebeld, J. H.; Vozak, M.; Vranjes, N.; Vranjes Milosavljevic, M.; Vrba, V.; Vreeswijk, M.; Vu, N. K.; Vuillermet, R.; Vukotic, I.; Wada, S.; Wagner, P.; Wagner, W.; Wagner-Kuhr, J.; Wahdan, S.; Wahlberg, H.; Wakasa, R.; Walbrecht, V. M.; Walder, J.; Walker, R.; Walker, S. D.; Walkowiak, W.; Wallangen, V.; Wang, A. M.; Wang, A. Z.; Wang, C.; Wang, C.; Wang, H.; Wang, H.; Wang, J.; Wang, P.; Wang, Q.; Wang, R. J.; Wang, R.; Wang, R.; Wang, S. M.; Wang, W. T.; Wang, W.; Wang, W. X.; Wang, Y.; Wang, Z.; Wanotayaroj, C.; Warburton, A.; Ward, C. P.; Ward, R. J.; Warrack, N.; Watson, A. T.; Watson, M. F.; Watts, G.; Waugh, B. M.; Webb, A. F.; Weber, C.; Weber, M. S.; Weber, S. A.; Weber, S. M.; Wei, Y.; Weidberg, A. R.; Weingarten, J.; Weirich, M.; Weiser, C.; Wells, P. S.; Wenaus, T.; Wendland, B.; Wengler, T.; Wenig, S.; Wermes, N.; Wessels, M.; Weston, T. D.; Whalen, K.; Wharton, A. M.; White, A. S.; White, A.; White, M. J.; Whiteson, D.; Whitmore, B. W.; Wiedenmann, W.; Wiel, C.; Wielers, M.; Wieseotte, N.; Wiglesworth, C.; Wiik-Fuchs, L. A.; Wilkens, H. G.; Wilkins, L. J.; Williams, D. M.; Williams, H. H.; Williams, S.; Willocq, S.; Windischhofer, P. J.; Wingerter-Seez, I.; Winkels, E.; Winklmeier, F.; Winter, B. T.; Wittgen, M.; Wobisch, M.; Wolf, A.; Wölker, R.; Wollrath, J.; Wolter, M. W.; Wolters, H.; Wong, V. W.; Wongel, A. F.; Woods, N. L.; Worm, S. D.; Wosiek, B. K.; Woźniak, K. W.; Wraight, K.; Wu, S. L.; Wu, X.; Wu, Y.; Wuerzinger, J.; Wyatt, T. R.; Wynne, B. M.; Xella, S.; Xia, L.; Xiang, J.; Xiao, X.; Xie, X.; Xiotidis, I.; Xu, D.; Xu, H.; Xu, H.; Xu, L.; Xu, R.; Xu, T.; Xu, W.; Xu, Y.; Xu, Z.; Xu, Z.; Yabsley, B.; Yacoob, S.; Yallup, D. P.; Yamaguchi, N.; Yamaguchi, Y.; Yamamoto, A.; Yamatani, M.; Yamazaki, T.; Yamazaki, Y.; Yan, J.; Yan, Z.; Yang, H. J.; Yang, H. T.; Yang, S.; Yang, T.; Yang, X.; Yang, X.; Yang, Y.; Yang, Z.; Yao, W. M.; Yap, Y. C.; Ye, H.; Ye, J.; Ye, S.; Yeletskikh, I.; Yexley, M. R.; Yigitbasi, E.; Yin, P.; Yorita, K.; Yoshihara, K.; Young, C. J.; Young, C.; Yu, J.; Yuan, R.; Yue, X.; Zaazoua, M.; Zabinski, B.; Zacharis, G.; Zaffaroni, E.; Zahreddine, J.; Zaitsev, A. M.; Zakareishvili, T.; Zakharchuk, N.; Zambito, S.; Zanzi, D.; Zeißner, S. V.; Zeitnitz, C.; Zemaityte, G.; Zeng, J. C.; Zenin, O.; Ženiš, T.; Zerwas, D.; Zgubič, M.; Zhang, B.; Zhang, D. F.; Zhang, G.; Zhang, J.; Zhang, K.; Zhang, L.; Zhang, L.; Zhang, M.; Zhang, R.; Zhang, S.; Zhang, X.; Zhang, X.; Zhang, Y.; Zhang, Z.; Zhang, Z.; Zhao, P.; Zhao, Y.; Zhao, Z.; Zhemchugov, A.; Zheng, Z.; Zhong, D.; Zhou, B.; Zhou, C.; Zhou, H.; Zhou, M.; Zhou, N.; Zhou, Y.; Zhu, C. G.; Zhu, C.; Zhu, H. L.; Zhu, H.; Zhu, J.; Zhu, Y.; Zhuang, X.; Zhukov, K.; Zhulanov, V.; Zieminska, D.; Zimine, N. I.; Zimmermann, S.; Zinonos, Z.; Ziolkowski, M.; Živković, L.; Zobernig, G.; Zoccoli, A.; Zoch, K.; Zorbas, T. G.; Zou, R.; Zwalinski, L. Observation and Measurement of Forward Proton Scattering in Association with Lepton Pairs Produced via the Photon Fusion Mechanism at ATLAS. Physical review letters. 2021. https://doi.org/10.1103/PhysRevLett.125.261801.
56|shorty-download|Agrawal, U.; Gopalakrishnan, S.; Vasseur, R. Quantum Criticality in the 2D Quasiperiodic Potts Model. Physical review letters. 2021. https://doi.org/10.1103/PhysRevLett.125.265702.
57|sucess-download|Rana, J.; Oldroyd, J.; Islam, M. M.; Tarazona-Meza, C. E.; Islam, R. M. Prevalence of hypertension and controlled hypertension among United States adults: Evidence from NHANES 2017-18 survey. International Journal of Cardiology. Hypertension. 2021. https://doi.org/10.1016/j.ijchy.2020.100061.
58|sucess-download|Dixon-Gordon, K. L.; Fitzpatrick, S.; Haliczer, L. A. Emotion regulation and borderline personality features in daily life: The role of social context. Journal of affective disorders. 2021. https://doi.org/10.1016/j.jad.2020.12.125.
59|sucess-download|Zhao, S.; Ge, W.; Watanabe, A.; Fortwendel, J. R.; Gibbons, J. G. Genome-Wide Association for Itraconazole Sensitivity in Non-resistant Clinical Isolates of Frontiers in fungal biology. 2021. https://doi.org/10.3389/ffunb.2020.617338.
60|sucess-download|Sani, M. A.; Tavassoli, M.; Hamishehkar, H.; McClements, D. J. Carbohydrate-based films containing pH-sensitive red barberry anthocyanins: Application as biodegradable smart food packaging materials. Carbohydrate polymers. 2021. https://doi.org/10.1016/j.carbpol.2020.117488.
61|sucess-download|Wu, C.; McClements, D. J.; He, M.; Zheng, L.; Tian, T.; Teng, F.; Li, Y. Preparation and characterization of okara nanocellulose fabricated using sonication or high-pressure homogenization treatments. Carbohydrate polymers. 2021. https://doi.org/10.1016/j.carbpol.2020.117364.
62|sucess-download|Tarullo, A. R.; Tuladhar, C. T.; Kao, K.; Drury, E. B.; Meyer, J. Cortisol and socioeconomic status in early childhood: A multidimensional assessment. Development and psychopathology. 2021. https://doi.org/10.1017/S0954579420001315.
63|sucess-download|Morin, E. L.; Howell, B. R.; Feczko, E.; Earl, E.; Pincus, M.; Reding, K.; Kovacs-Balint, Z. A.; Meyer, J. S.; Styner, M.; Fair, D.; Sanchez, M. M. Developmental outcomes of early adverse care on amygdala functional connectivity in nonhuman primates. Development and psychopathology. 2021. https://doi.org/10.1017/S0954579420001133.
64|sucess-download|Stein, B. P.; Boyer, K. A. Impact of parity on biomechanical risk factors for knee OA initiation. Gait & posture. 2021. https://doi.org/10.1016/j.gaitpost.2020.12.024.
65|shorty-download|Aad, G.; Abbott, B.; Abbott, D. C.; Abed Abud, A.; Abeling, K.; Abhayasinghe, D. K.; Abidi, S. H.; AbouZeid, O. S.; Abraham, N. L.; Abramowicz, H.; Abreu, H.; Abulaiti, Y.; Acharya, B. S.; Achkar, B.; Adam, L.; Adam Bourdarios, C.; Adamczyk, L.; Adamek, L.; Adelman, J.; Adersberger, M.; Adiguzel, A.; Adorni, S.; Adye, T.; Affolder, A. A.; Afik, Y.; Agapopoulou, C.; Agaras, M. N.; Aggarwal, A.; Agheorghiesei, C.; Aguilar-Saavedra, J. A.; Ahmad, A.; Ahmadov, F.; Ahmed, W. S.; Ai, X.; Aielli, G.; Akatsuka, S.; Akbiyik, M.; Åkesson, T. P.; Akilli, E.; Akimov, A. V.; Al Khoury, K.; Alberghi, G. L.; Albert, J.; Alconada Verzini, M. J.; Alderweireldt, S.; Aleksa, M.; Aleksandrov, I. N.; Alexa, C.; Alexopoulos, T.; Alfonsi, A.; Alfonsi, F.; Alhroob, M.; Ali, B.; Ali, S.; Aliev, M.; Alimonti, G.; Allaire, C.; Allbrooke, B. M.; Allen, B. W.; Allport, P. P.; Aloisio, A.; Alonso, F.; Alpigiani, C.; Alunno Camelia, E.; Alvarez Estevez, M.; Alviggi, M. G.; Amaral Coutinho, Y.; Ambler, A.; Ambroz, L.; Amelung, C.; Amidei, D.; Amor Dos Santos, S. P.; Amoroso, S.; Amrouche, C. S.; An, F.; Anastopoulos, C.; Andari, N.; Andeen, T.; Anders, J. K.; Andrean, S. Y.; Andreazza, A.; Andrei, V.; Anelli, C. R.; Angelidakis, S.; Angerami, A.; Anisenkov, A. V.; Annovi, A.; Antel, C.; Anthony, M. T.; Antipov, E.; Antonelli, M.; Antrim, D. J.; Anulli, F.; Aoki, M.; Aparisi Pozo, J. A.; Aparo, M. A.; Aperio Bella, L.; Aranzabal, N.; Araujo Ferraz, V.; Araujo Pereira, R.; Arcangeletti, C.; Arce, A. T.; Arduh, F. A.; Arguin, J. F.; Argyropoulos, S.; Arling, J. H.; Armbruster, A. J.; Armstrong, A.; Arnaez, O.; Arnold, H.; Arrubarrena Tame, Z. P.; Artoni, G.; Asada, H.; Asai, K.; Asai, S.; Asawatavonvanich, T.; Asbah, N.; Asimakopoulou, E. M.; Asquith, L.; Assahsah, J.; Assamagan, K.; Astalos, R.; Atkin, R. J.; Atkinson, M.; Atlay, N. B.; Atmani, H.; Augsten, K.; Austrup, V. A.; Avolio, G.; Ayoub, M. K.; Azuelos, G.; Bachacou, H.; Bachas, K.; Backes, M.; Backman, F.; Bagnaia, P.; Bahmani, M.; Bahrasemani, H.; Bailey, A. J.; Bailey, V. R.; Baines, J. T.; Bakalis, C.; Baker, O. K.; Bakker, P. J.; Bakos, E.; Bakshi Gupta, D.; Balaji, S.; Balasubramanian, R.; Baldin, E. M.; Balek, P.; Balli, F.; Balunas, W. K.; Balz, J.; Banas, E.; Bandieramonte, M.; Bandyopadhyay, A.; Banerjee, S.; Barak, L.; Barbe, W. M.; Barberio, E. L.; Barberis, D.; Barbero, M.; Barbour, G.; Barillari, T.; Barisits, M. S.; Barkeloo, J.; Barklow, T.; Barnea, R.; Barnett, B. M.; Barnett, R. M.; Barnovska-Blenessy, Z.; Baroncelli, A.; Barone, G.; Barr, A. J.; Barranco Navarro, L.; Barreiro, F.; Barreiro Guimarães da Costa, J.; Barron, U.; Barsov, S.; Bartels, F.; Bartoldus, R.; Bartolini, G.; Barton, A. E.; Bartos, P.; Basalaev, A.; Basan, A.; Bassalat, A.; Basso, M. J.; Bates, R. L.; Batlamous, S.; Batley, J. R.; Batool, B.; Battaglia, M.; Bauce, M.; Bauer, F.; Bauer, P.; Bawa, H. S.; Bayirli, A.; Beacham, J. B.; Beau, T.; Beauchemin, P. H.; Becherer, F.; Bechtle, P.; Beck, H. C.; Beck, H. P.; Becker, K.; Becot, C.; Beddall, A.; Beddall, A. J.; Bednyakov, V. A.; Bedognetti, M.; Bee, C. P.; Beermann, T. A.; Begalli, M.; Begel, M.; Behera, A.; Behr, J. K.; Beisiegel, F.; Belfkir, M.; Bell, A. S.; Bella, G.; Bellagamba, L.; Bellerive, A.; Bellos, P.; Beloborodov, K.; Belotskiy, K.; Belyaev, N. L.; Benchekroun, D.; Benekos, N.; Benhammou, Y.; Benjamin, D. P.; Benoit, M.; Bensinger, J. R.; Bentvelsen, S.; Beresford, L.; Beretta, M.; Berge, D.; Bergeaas Kuutmann, E.; Berger, N.; Bergmann, B.; Bergsten, L. J.; Beringer, J.; Berlendis, S.; Bernardi, G.; Bernius, C.; Bernlochner, F. U.; Berry, T.; Berta, P.; Berthold, A.; Bertram, I. A.; Bessidskaia Bylund, O.; Besson, N.; Bethani, A.; Bethke, S.; Betti, A.; Bevan, A. J.; Beyer, J.; Bhattacharya, D. S.; Bhattarai, P.; Bhopatkar, V. S.; Bi, R.; Bianchi, R. M.; Biebel, O.; Biedermann, D.; Bielski, R.; Bierwagen, K.; Biesuz, N. V.; Biglietti, M.; Billoud, T. R.; Bindi, M.; Bingul, A.; Bini, C.; Biondi, S.; Birch-Sykes, C. J.; Birman, M.; Bisanz, T.; Biswal, J. P.; Biswas, D.; Bitadze, A.; Bittrich, C.; Bjørke, K.; Blazek, T.; Bloch, I.; Blocker, C.; Blue, A.; Blumenschein, U.; Bobbink, G. J.; Bobrovnikov, V. S.; Bocchetta, S. S.; Bogavac, D.; Bogdanchikov, A. G.; Bohm, C.; Boisvert, V.; Bokan, P.; Bold, T.; Bolz, A. E.; Bomben, M.; Bona, M.; Bonilla, J. S.; Boonekamp, M.; Booth, C. D.; Borbély, A. G.; Borecka-Bielska, H. M.; Borgna, L. S.; Borisov, A.; Borissov, G.; Bortoletto, D.; Boscherini, D.; Bosman, M.; Bossio Sola, J. D.; Bouaouda, K.; Boudreau, J.; Bouhova-Thacker, E. V.; Boumediene, D.; Boveia, A.; Boyd, J.; Boye, D.; Boyko, I. R.; Bozson, A. J.; Bracinik, J.; Brahimi, N.; Brandt, G.; Brandt, O.; Braren, F.; Brau, B.; Brau, J. E.; Breaden Madden, W. D.; Brendlinger, K.; Brener, R.; Brenner, L.; Brenner, R.; Bressler, S.; Brickwedde, B.; Briglin, D. L.; Britton, D.; Britzger, D.; Brock, I.; Brock, R.; Brooijmans, G.; Brooks, W. K.; Brost, E.; Bruckman de Renstrom, P. A.; Brüers, B.; Bruncko, D.; Bruni, A.; Bruni, G.; Bruschi, M.; Bruscino, N.; Bryngemark, L.; Buanes, T.; Buat, Q.; Buchholz, P.; Buckley, A. G.; Budagov, I. A.; Bugge, M. K.; Bührer, F.; Bulekov, O.; Bullard, B. A.; Burch, T. J.; Burdin, S.; Burgard, C. D.; Burger, A. M.; Burghgrave, B.; Burr, J. T.; Burton, C. D.; Burzynski, J. C.; Büscher, V.; Buschmann, E.; Bussey, P. J.; Butler, J. M.; Buttar, C. M.; Butterworth, J. M.; Butti, P.; Buttinger, W.; Buxo Vazquez, C. J.; Buzatu, A.; Buzykaev, A. R.; Cabras, G.; Cabrera Urbán, S.; Caforio, D.; Cai, H.; Cairo, V. M.; Cakir, O.; Calace, N.; Calafiura, P.; Calderini, G.; Calfayan, P.; Callea, G.; Caloba, L. P.; Caltabiano, A.; Calvente Lopez, S.; Calvet, D.; Calvet, S.; Calvet, T. P.; Calvetti, M.; Camacho Toro, R.; Camarda, S.; Camarero Munoz, D.; Camarri, P.; Camerlingo, M. T.; Cameron, D.; Camincher, C.; Campana, S.; Campanelli, M.; Camplani, A.; Canale, V.; Canesse, A.; Cano Bret, M.; Cantero, J.; Cao, T.; Cao, Y.; Capeans Garrido, M. D.; Capua, M.; Cardarelli, R.; Cardillo, F.; Carducci, G.; Carli, I.; Carli, T.; Carlino, G.; Carlson, B. T.; Carlson, E. M.; Carminati, L.; Carney, R. M.; Caron, S.; Carquin, E.; Carrá, S.; Carratta, G.; Carter, J. W.; Carter, T. M.; Casado, M. P.; Casha, A. F.; Castiglia, E. G.; Castillo, F. L.; Castillo Garcia, L.; Castillo Gimenez, V.; Castro, N. F.; Catinaccio, A.; Catmore, J. R.; Cattai, A.; Cavaliere, V.; Cavasinni, V.; Celebi, E.; Celli, F.; Cerny, K.; Cerqueira, A. S.; Cerri, A.; Cerrito, L.; Cerutti, F.; Cervelli, A.; Cetin, S. A.; Chadi, Z.; Chakraborty, D.; Chan, J.; Chan, W. S.; Chan, W. Y.; Chapman, J. D.; Chargeishvili, B.; Charlton, D. G.; Charman, T. P.; Chatterjee, M.; Chau, C. C.; Che, S.; Chekanov, S.; Chekulaev, S. V.; Chelkov, G. A.; Chen, B.; Chen, C.; Chen, C. H.; Chen, H.; Chen, H.; Chen, J.; Chen, J.; Chen, J.; Chen, S.; Chen, S. J.; Chen, X.; Chen, Y.; Chen, Y. H.; Cheng, H. C.; Cheng, H. J.; Cheplakov, A.; Cheremushkina, E.; Cherkaoui El Moursli, R.; Cheu, E.; Cheung, K.; Chevalérias, T. J.; Chevalier, L.; Chiarella, V.; Chiarelli, G.; Chiodini, G.; Chisholm, A. S.; Chitan, A.; Chiu, I.; Chiu, Y. H.; Chizhov, M. V.; Choi, K.; Chomont, A. R.; Chow, Y. S.; Christopher, L. D.; Chu, M. C.; Chu, X.; Chudoba, J.; Chwastowski, J. J.; Chytka, L.; Cieri, D.; Ciesla, K. M.; Cindro, V.; Cioară, I. A.; Ciocio, A.; Cirotto, F.; Citron, Z. H.; Citterio, M.; Ciubotaru, D. A.; Ciungu, B. M.; Clark, A.; Clark, M. R.; Clark, P. J.; Clawson, S. E.; Clement, C.; Coadou, Y.; Cobal, M.; Coccaro, A.; Cochran, J.; Coelho Lopes De Sa, R.; Cohen, H.; Coimbra, A. E.; Cole, B.; Colijn, A. P.; Collot, J.; Conde Muiño, P.; Connell, S. H.; Connelly, I. A.; Constantinescu, S.; Conventi, F.; Cooper-Sarkar, A. M.; Cormier, F.; Cormier, K. J.; Corpe, L. D.; Corradi, M.; Corrigan, E. E.; Corriveau, F.; Costa, M. J.; Costanza, F.; Costanzo, D.; Cowan, G.; Cowley, J. W.; Crane, J.; Cranmer, K.; Creager, R. A.; Crépé-Renaudin, S.; Crescioli, F.; Cristinziani, M.; Croft, V.; Crosetti, G.; Cueto, A.; Cuhadar Donszelmann, T.; Cui, H.; Cukierman, A. R.; Cunningham, W. R.; Czekierda, S.; Czodrowski, P.; Czurylo, M. M.; Da Cunha Sargedas De Sousa, M. J.; Da Fonseca Pinto, J. V.; Da Via, C.; Dabrowski, W.; Dachs, F.; Dado, T.; Dahbi, S.; Dai, T.; Dallapiccola, C.; Dam, M.; D'amen, G.; D'Amico, V.; Damp, J.; Dandoy, J. R.; Daneri, M. F.; Danninger, M.; Dao, V.; Darbo, G.; Dartsi, O.; Dattagupta, A.; Daubney, T.; D'Auria, S.; David, C.; Davidek, T.; Davis, D. R.; Dawson, I.; De, K.; De Asmundis, R.; De Beurs, M.; De Castro, S.; De Groot, N.; de Jong, P.; De la Torre, H.; De Maria, A.; De Pedis, D.; De Salvo, A.; De Sanctis, U.; De Santis, M.; De Santo, A.; De Vivie De Regie, J. B.; Dedovich, D. V.; Deiana, A. M.; Del Peso, J.; Delabat Diaz, Y.; Delgove, D.; Deliot, F.; Delitzsch, C. M.; Della Pietra, M.; Della Volpe, D.; Dell'Acqua, A.; Dell'Asta, L.; Delmastro, M.; Delporte, C.; Delsart, P. A.; DeMarco, D. A.; Demers, S.; Demichev, M.; Demontigny, G.; Denisov, S. P.; D'Eramo, L.; Derendarz, D.; Derkaoui, J. E.; Derue, F.; Dervan, P.; Desch, K.; Dette, K.; Deutsch, C.; Devesa, M. R.; Deviveiros, P. O.; Di Bello, F. A.; Di Ciaccio, A.; Di Ciaccio, L.; Di Clemente, W. K.; Di Donato, C.; Di Girolamo, A.; Di Gregorio, G.; Di Micco, B.; Di Nardo, R.; Di Petrillo, K. F.; Di Sipio, R.; Diaconu, C.; Dias, F. A.; Dias Do Vale, T.; Diaz, M. A.; Diaz Capriles, F. G.; Dickinson, J.; Didenko, M.; Diehl, E. B.; Dietrich, J.; Díez Cornell, S.; Diez Pardos, C.; Dimitrievska, A.; Ding, W.; Dingfelder, J.; Dittmeier, S. J.; Dittus, F.; Djama, F.; Djobava, T.; Djuvsland, J. I.; Do Vale, M. A.; Dobre, M.; Dodsworth, D.; Doglioni, C.; Dolejsi, J.; Dolezal, Z.; Donadelli, M.; Dong, B.; Donini, J.; D'onofrio, A.; D'Onofrio, M.; Dopke, J.; Doria, A.; Dova, M. T.; Doyle, A. T.; Drechsler, E.; Dreyer, E.; Dreyer, T.; Drobac, A. S.; Du, D.; du Pree, T. A.; Duan, Y.; Dubinin, F.; Dubovsky, M.; Dubreuil, A.; Duchovni, E.; Duckeck, G.; Ducu, O. A.; Duda, D.; Dudarev, A.; Dudder, A. C.; Duffield, E. M.; D'uffizi, M.; Duflot, L.; Dührssen, M.; Dülsen, C.; Dumancic, M.; Dumitriu, A. E.; Dunford, M.; Duperrin, A.; Duran Yildiz, H.; Düren, M.; Durglishvili, A.; Duschinger, D.; Dutta, B.; Duvnjak, D.; Dyckes, G. I.; Dyndal, M.; Dysch, S.; Dziedzic, B. S.; Eggleston, M. G.; Eifert, T.; Eigen, G.; Einsweiler, K.; Ekelof, T.; El Jarrari, H.; Ellajosyula, V.; Ellert, M.; Ellinghaus, F.; Elliot, A. A.; Ellis, N.; Elmsheuser, J.; Elsing, M.; Emeliyanov, D.; Emerman, A.; Enari, Y.; Epland, M. B.; Erdmann, J.; Ereditato, A.; Erland, P. A.; Errenst, M.; Escalier, M.; Escobar, C.; Estrada Pastor, O.; Etzion, E.; Evans, G. E.; Evans, H.; Evans, M. O.; Ezhilov, A.; Fabbri, F.; Fabbri, L.; Fabiani, V.; Facini, G.; Fakhrutdinov, R. M.; Falciano, S.; Falke, P. J.; Falke, S.; Faltova, J.; Fang, Y.; Fang, Y.; Fanourakis, G.; Fanti, M.; Faraj, M.; Farbin, A.; Farilla, A.; Farina, E. M.; Farooque, T.; Farrington, S. M.; Farthouat, P.; Fassi, F.; Fassnacht, P.; Fassouliotis, D.; Faucci Giannelli, M.; Fawcett, W. J.; Fayard, L.; Fedin, O. L.; Fedorko, W.; Fehr, A.; Feickert, M.; Feligioni, L.; Fell, A.; Feng, C.; Feng, M.; Fenton, M. J.; Fenyuk, A. B.; Ferguson, S. W.; Ferrando, J.; Ferrante, A.; Ferrari, A.; Ferrari, P.; Ferrari, R.; Ferreira de Lima, D. E.; Ferrer, A.; Ferrere, D.; Ferretti, C.; Fiedler, F.; Filipčič, A.; Filthaut, F.; Finelli, K. D.; Fiolhais, M. C.; Fiorini, L.; Fischer, F.; Fischer, J.; Fisher, W. C.; Fitschen, T.; Fleck, I.; Fleischmann, P.; Flick, T.; Flierl, B. M.; Flores, L.; Flores Castillo, L. R.; Follega, F. M.; Fomin, N.; Foo, J. H.; Forcolin, G. T.; Forland, B. C.; Formica, A.; Förster, F. A.; Forti, A. C.; Fortin, E.; Foti, M. G.; Fournier, D.; Fox, H.; Francavilla, P.; Francescato, S.; Franchini, M.; Franchino, S.; Francis, D.; Franco, L.; Franconi, L.; Franklin, M.; Frattari, G.; Fray, A. N.; Freeman, P. M.; Freund, B.; Freund, W. S.; Freundlich, E. M.; Frizzell, D. C.; Froidevaux, D.; Frost, J. A.; Fujimoto, M.; Fukunaga, C.; Fullana Torregrosa, E.; Fusayasu, T.; Fuster, J.; Gabrielli, A.; Gabrielli, A.; Gadatsch, S.; Gadow, P.; Gagliardi, G.; Gagnon, L. G.; Gallardo, G. E.; Gallas, E. J.; Gallop, B. J.; Gamboa Goni, R.; Gan, K. K.; Ganguly, S.; Gao, J.; Gao, Y.; Gao, Y. S.; Garay Walls, F. M.; García, C.; García Navarro, J. E.; García Pascual, J. A.; Garcia-Argos, C.; Garcia-Sciveres, M.; Gardner, R. W.; Garelli, N.; Gargiulo, S.; Garner, C. A.; Garonne, V.; Gasiorowski, S. J.; Gaspar, P.; Gaudiello, A.; Gaudio, G.; Gauzzi, P.; Gavrilenko, I. L.; Gavrilyuk, A.; Gay, C.; Gaycken, G.; Gazis, E. N.; Geanta, A. A.; Gee, C. M.; Gee, C. N.; Geisen, J.; Geisen, M.; Gemme, C.; Genest, M. H.; Geng, C.; Gentile, S.; George, S.; Geralis, T.; Gerlach, L. O.; Gessinger-Befurt, P.; Gessner, G.; Ghasemi, S.; Ghasemi Bostanabad, M.; Ghneimat, M.; Ghosh, A.; Ghosh, A.; Giacobbe, B.; Giagu, S.; Giangiacomi, N.; Giannetti, P.; Giannini, A.; Giannini, G.; Gibson, S. M.; Gignac, M.; Gil, D. T.; Gilbert, B. J.; Gillberg, D.; Gilles, G.; Gillwald, N. E.; Gingrich, D. M.; Giordani, M. P.; Giraud, P. F.; Giugliarelli, G.; Giugni, D.; Giuli, F.; Gkaitatzis, S.; Gkialas, I.; Gkougkousis, E. L.; Gkountoumis, P.; Gladilin, L. K.; Glasman, C.; Glatzer, J.; Glaysher, P. C.; Glazov, A.; Gledhill, G. R.; Gnesi, I.; Goblirsch-Kolb, M.; Godin, D.; Goldfarb, S.; Golling, T.; Golubkov, D.; Gomes, A.; Goncalves Gama, R.; Gonçalo, R.; Gonella, G.; Gonella, L.; Gongadze, A.; Gonnella, F.; Gonski, J. L.; González de la Hoz, S.; Gonzalez Fernandez, S.; Gonzalez Lopez, R.; Gonzalez Renteria, C.; Gonzalez Suarez, R.; Gonzalez-Sevilla, S.; Gonzalvo Rodriguez, G. R.; Goossens, L.; Gorasia, N. A.; Gorbounov, P. A.; Gordon, H. A.; Gorini, B.; Gorini, E.; Gorišek, A.; Goshaw, A. T.; Gostkin, M. I.; Gottardo, C. A.; Gouighri, M.; Goussiou, A. G.; Govender, N.; Goy, C.; Grabowska-Bold, I.; Graham, E. C.; Gramling, J.; Gramstad, E.; Grancagnolo, S.; Grandi, M.; Gratchev, V.; Gravila, P. M.; Gravili, F. G.; Gray, C.; Gray, H. M.; Grefe, C.; Gregersen, K.; Gregor, I. M.; Grenier, P.; Grevtsov, K.; Grieco, C.; Grieser, N. A.; Grillo, A. A.; Grimm, K.; Grinstein, S.; Grivaz, J. F.; Groh, S.; Gross, E.; Grosse-Knetter, J.; Grout, Z. J.; Grud, C.; Grummer, A.; Grundy, J. C.; Guan, L.; Guan, W.; Gubbels, C.; Guenther, J.; Guerguichon, A.; Guerrero Rojas, J. G.; Guescini, F.; Guest, D.; Gugel, R.; Guida, A.; Guillemin, T.; Guindon, S.; Guo, J.; Guo, W.; Guo, Y.; Guo, Z.; Gupta, R.; Gurbuz, S.; Gustavino, G.; Guth, M.; Gutierrez, P.; Gutschow, C.; Guyot, C.; Gwenlan, C.; Gwilliam, C. B.; Haaland, E. S.; Haas, A.; Haber, C.; Hadavand, H. K.; Hadef, A.; Haleem, M.; Haley, J.; Hall, J. J.; Halladjian, G.; Hallewell, G. D.; Hamano, K.; Hamdaoui, H.; Hamer, M.; Hamity, G. N.; Han, K.; Han, L.; Han, L.; Han, S.; Han, Y. F.; Hanagaki, K.; Hance, M.; Handl, D. M.; Hank, M. D.; Hankache, R.; Hansen, E.; Hansen, J. B.; Hansen, J. D.; Hansen, M. C.; Hansen, P. H.; Hanson, E. C.; Hara, K.; Harenberg, T.; Harkusha, S.; Harrison, P. F.; Hartman, N. M.; Hartmann, N. M.; Hasegawa, Y.; Hasib, A.; Hassani, S.; Haug, S.; Hauser, R.; Havener, L. B.; Havranek, M.; Hawkes, C. M.; Hawkings, R. J.; Hayashida, S.; Hayden, D.; Hayes, C.; Hayes, R. L.; Hays, C. P.; Hays, J. M.; Hayward, H. S.; Haywood, S. J.; He, F.; He, Y.; Heath, M. P.; Hedberg, V.; Heer, S.; Heggelund, A. L.; Heidegger, C.; Heidegger, K. K.; Heidorn, W. D.; Heilman, J.; Heim, S.; Heim, T.; Heinemann, B.; Heinlein, J. G.; Heinrich, J. J.; Heinrich, L.; Hejbal, J.; Helary, L.; Held, A.; Hellesund, S.; Helling, C. M.; Hellman, S.; Helsens, C.; Henderson, R. C.; Heng, Y.; Henkelmann, L.; Henriques Correia, A. M.; Herde, H.; Hernández Jiménez, Y.; Herr, H.; Herrmann, M. G.; Herrmann, T.; Herten, G.; Hertenberger, R.; Hervas, L.; Herwig, T. C.; Hesketh, G. G.; Hessey, N. P.; Hibi, H.; Higashino, S.; Higón-Rodriguez, E.; Hildebrand, K.; Hill, J. C.; Hill, K. K.; Hiller, K. H.; Hillier, S. J.; Hils, M.; Hinchliffe, I.; Hinterkeuser, F.; Hirose, M.; Hirose, S.; Hirschbuehl, D.; Hiti, B.; Hladik, O.; Hobbs, J.; Hod, N.; Hodgkinson, M. C.; Hoecker, A.; Hohn, D.; Hohov, D.; Holm, T.; Holmes, T. R.; Holzbock, M.; Hommels, L. B.; Hong, T. M.; Honig, J. C.; Hönle, A.; Hooberman, B. H.; Hopkins, W. H.; Horii, Y.; Horn, P.; Horyn, L. A.; Hou, S.; Hoummada, A.; Howarth, J.; Hoya, J.; Hrabovsky, M.; Hrdinka, J.; Hrivnac, J.; Hrynevich, A.; Hryn'ova, T.; Hsu, P. J.; Hsu, S. C.; Hu, Q.; Hu, S.; Hu, Y. F.; Huang, D. P.; Huang, X.; Huang, Y.; Huang, Y.; Hubacek, Z.; Hubaut, F.; Huebner, M.; Huegging, F.; Huffman, T. B.; Huhtinen, M.; Hulsken, R.; Hunter, R. F.; Huo, P.; Huseynov, N.; Huston, J.; Huth, J.; Hyneman, R.; Hyrych, S.; Iacobucci, G.; Iakovidis, G.; Ibragimov, I.; Iconomidou-Fayard, L.; Iengo, P.; Ignazzi, R.; Igonkina, O.; Iguchi, R.; Iizawa, T.; Ikegami, Y.; Ikeno, M.; Ilic, N.; Iltzsche, F.; Imam, H.; Introzzi, G.; Iodice, M.; Iordanidou, K.; Ippolito, V.; Isacson, M. F.; Ishino, M.; Islam, W.; Issever, C.; Istin, S.; Iturbe Ponce, J. M.; Iuppa, R.; Ivina, A.; Izen, J. M.; Izzo, V.; Jacka, P.; Jackson, P.; Jacobs, R. M.; Jaeger, B. P.; Jain, V.; Jäkel, G.; Jakobi, K. B.; Jakobs, K.; Jakoubek, T.; Jamieson, J.; Janas, K. W.; Jansky, R.; Janus, M.; Janus, P. A.; Jarlskog, G.; Jaspan, A. E.; Javadov, N.; Javůrek, T.; Javurkova, M.; Jeanneau, F.; Jeanty, L.; Jejelava, J.; Jenni, P.; Jeong, N.; Jézéquel, S.; Ji, H.; Jia, J.; Jia, Z.; Jiang, H.; Jiang, Y.; Jiang, Z.; Jiggins, S.; Jimenez Morales, F. A.; Jimenez Pena, J.; Jin, S.; Jinaru, A.; Jinnouchi, O.; Jivan, H.; Johansson, P.; Johns, K. A.; Johnson, C. A.; Jones, E.; Jones, R. W.; Jones, S. D.; Jones, T. J.; Jongmanns, J.; Jovicevic, J.; Ju, X.; Junggeburth, J. J.; Juste Rozas, A.; Kaczmarska, A.; Kado, M.; Kagan, H.; Kagan, M.; Kahn, A.; Kahra, C.; Kaji, T.; Kajomovitz, E.; Kalderon, C. W.; Kaluza, A.; Kamenshchikov, A.; Kaneda, M.; Kang, N. J.; Kang, S.; Kano, Y.; Kanzaki, J.; Kaplan, L. S.; Kar, D.; Karava, K.; Kareem, M. J.; Karkanias, I.; Karpov, S. N.; Karpova, Z. M.; Kartvelishvili, V.; Karyukhin, A. N.; Kasimi, E.; Kastanas, A.; Kato, C.; Katzy, J.; Kawade, K.; Kawagoe, K.; Kawaguchi, T.; Kawamoto, T.; Kawamura, G.; Kay, E. F.; Kazakos, S.; Kazanin, V. F.; Keaveney, J. M.; Keeler, R.; Keller, J. S.; Kellermann, E.; Kelsey, D.; Kempster, J. J.; Kendrick, J.; Kennedy, K. E.; Kepka, O.; Kersten, S.; Kerševan, B. P.; Ketabchi Haghighat, S.; Khader, M.; Khalil-Zada, F.; Khandoga, M.; Khanov, A.; Kharlamov, A. G.; Kharlamova, T.; Khoda, E. E.; Khodinov, A.; Khoo, T. J.; Khoriauli, G.; Khramov, E.; Khubua, J.; Kido, S.; Kiehn, M.; Kim, E.; Kim, Y. K.; Kimura, N.; Kirchhoff, A.; Kirchmeier, D.; Kirk, J.; Kiryunin, A. E.; Kishimoto, T.; Kisliuk, D. P.; Kitali, V.; Kitsaki, C.; Kivernyk, O.; Klapdor-Kleingrothaus, T.; Klassen, M.; Klein, C.; Klein, M. H.; Klein, M.; Klein, U.; Kleinknecht, K.; Klimek, P.; Klimentov, A.; Klingl, T.; Klioutchnikova, T.; Klitzner, F. F.; Kluit, P.; Kluth, S.; Kneringer, E.; Knoops, E. B.; Knue, A.; Kobayashi, D.; Kobel, M.; Kocian, M.; Kodama, T.; Kodys, P.; Koeck, D. M.; Koenig, P. T.; Koffas, T.; Köhler, N. M.; Kolb, M.; Koletsou, I.; Komarek, T.; Kondo, T.; Köneke, K.; Kong, A. X.; König, A. C.; Kono, T.; Konstantinides, V.; Konstantinidis, N.; Konya, B.; Kopeliansky, R.; Koperny, S.; Korcyl, K.; Kordas, K.; Koren, G.; Korn, A.; Korolkov, I.; Korolkova, E. V.; Korotkova, N.; Kortner, O.; Kortner, S.; Kostyukhin, V. V.; Kotsokechagia, A.; Kotwal, A.; Koulouris, A.; Kourkoumeli-Charalampidi, A.; Kourkoumelis, C.; Kourlitis, E.; Kouskoura, V.; Kowalewski, R.; Kozanecki, W.; Kozhin, A. S.; Kramarenko, V. A.; Kramberger, G.; Krasnopevtsev, D.; Krasny, M. W.; Krasznahorkay, A.; Krauss, D.; Kremer, J. A.; Kretzschmar, J.; Krieger, P.; Krieter, F.; Krishnan, A.; Krivos, M.; Krizka, K.; Kroeninger, K.; Kroha, H.; Kroll, J.; Kroll, J.; Krowpman, K. S.; Kruchonak, U.; Krüger, H.; Krumnack, N.; Kruse, M. C.; Krzysiak, J. A.; Kubota, A.; Kuchinskaia, O.; Kuday, S.; Kuechler, D.; Kuechler, J. T.; Kuehn, S.; Kuhl, T.; Kukhtin, V.; Kulchitsky, Y.; Kuleshov, S.; Kulinich, Y. P.; Kuna, M.; Kupco, A.; Kupfer, T.; Kuprash, O.; Kurashige, H.; Kurchaninov, L. L.; Kurochkin, Y. A.; Kurova, A.; Kurth, M. G.; Kuwertz, E. S.; Kuze, M.; Kvam, A. K.; Kvita, J.; Kwan, T.; La Ruffa, F.; Lacasta, C.; Lacava, F.; Lack, D. P.; Lacker, H.; Lacour, D.; Ladygin, E.; Lafaye, R.; Laforge, B.; Lagouri, T.; Lai, S.; Lakomiec, I. K.; Lambert, J. E.; Lammers, S.; Lampl, W.; Lampoudis, C.; Lançon, E.; Landgraf, U.; Landon, M. P.; Lanfermann, M. C.; Lang, V. S.; Lange, J. C.; Langenberg, R. J.; Lankford, A. J.; Lanni, F.; Lantzsch, K.; Lanza, A.; Lapertosa, A.; Laporte, J. F.; Lari, T.; Lasagni Manghi, F.; Lassnig, M.; Latonova, V.; Lau, T. S.; Laudrain, A.; Laurier, A.; Lavorgna, M.; Lawlor, S. D.; Lazzaroni, M.; Le, B.; Le Guirriec, E.; Lebedev, A.; LeBlanc, M.; LeCompte, T.; Ledroit-Guillon, F.; Lee, A. C.; Lee, C. A.; Lee, G. R.; Lee, L.; Lee, S. C.; Lee, S.; Lefebvre, B.; Lefebvre, H. P.; Lefebvre, M.; Leggett, C.; Lehmann, K.; Lehmann, N.; Lehmann Miotto, G.; Leight, W. A.; Leisos, A.; Leite, M. A.; Leitgeb, C. E.; Leitner, R.; Lellouch, D.; Leney, K. J.; Lenz, T.; Leone, S.; Leonidopoulos, C.; Leopold, A.; Leroy, C.; Les, R.; Lester, C. G.; Levchenko, M.; Levêque, J.; Levin, D.; Levinson, L. J.; Lewis, D. J.; Li, B.; Li, B.; Li, C. Q.; Li, F.; Li, H.; Li, H.; Li, J.; Li, K.; Li, L.; Li, M.; Li, Q.; Li, Q. Y.; Li, S.; Li, X.; Li, Y.; Li, Z.; Li, Z.; Li, Z.; Liang, Z.; Liberatore, M.; Liberti, B.; Liblong, A.; Lie, K.; Lim, S.; Lin, C. Y.; Lin, K.; Linck, R. A.; Lindley, R. E.; Lindon, J. H.; Linss, A.; Lionti, A. L.; Lipeles, E.; Lipniacka, A.; Liss, T. M.; Lister, A.; Little, J. D.; Liu, B.; Liu, B. X.; Liu, H. B.; Liu, J. B.; Liu, J. K.; Liu, K.; Liu, M.; Liu, M. Y.; Liu, P.; Liu, X.; Liu, Y.; Liu, Y.; Liu, Y. L.; Liu, Y. W.; Livan, M.; Lleres, A.; Llorente Merino, J.; Lloyd, S. L.; Lo, C. Y.; Lobodzinska, E. M.; Loch, P.; Loffredo, S.; Lohse, T.; Lohwasser, K.; Lokajicek, M.; Long, J. D.; Long, R. E.; Longarini, I.; Longo, L.; Looper, K. A.; Lopez Paz, I.; Lopez Solis, A.; Lorenz, J.; Lorenzo Martinez, N.; Lory, A. M.; Lösel, P. J.; Lösle, A.; Lou, X.; Lou, X.; Lounis, A.; Love, J.; Love, P. A.; Lozano Bahilo, J. J.; Lu, M.; Lu, Y. J.; Lubatti, H. J.; Luci, C.; Lucio Alves, F. L.; Lucotte, A.; Luehring, F.; Luise, I.; Luminari, L.; Lund-Jensen, B.; Lutz, M. S.; Lynn, D.; Lyons, H.; Lysak, R.; Lytken, E.; Lyu, F.; Lyubushkin, V.; Lyubushkina, T.; Ma, H.; Ma, L. L.; Ma, Y.; Mac Donell, D. M.; Maccarrone, G.; Macchiolo, A.; Macdonald, C. M.; MacDonald, J. C.; Machado Miguens, J.; Madaffari, D.; Madar, R.; Mader, W. F.; Madugoda Ralalage Don, M.; Madysa, N.; Maeda, J.; Maeno, T.; Maerker, M.; Magerl, V.; Magini, N.; Magro, J.; Mahon, D. J.; Maidantchik, C.; Maier, T.; Maio, A.; Maj, K.; Majersky, O.; Majewski, S.; Makida, Y.; Makovec, N.; Malaescu, B.; Malecki, P.; Maleev, V. P.; Malek, F.; Malito, D.; Mallik, U.; Malon, D.; Malone, C.; Maltezos, S.; Malyukov, S.; Mamuzic, J.; Mancini, G.; Mandić, I.; Manhaes de Andrade Filho, L.; Maniatis, I. M.; Manjarres Ramos, J.; Mankinen, K. H.; Mann, A.; Manousos, A.; Mansoulie, B.; Manthos, I.; Manzoni, S.; Marantis, A.; Marceca, G.; Marchese, L.; Marchiori, G.; Marcisovsky, M.; Marcoccia, L.; Marcon, C.; Marjanovic, M.; Marshall, Z.; Martensson, M. U.; Marti-Garcia, S.; Martin, C. B.; Martin, T. A.; Martin, V. J.; Martin Dit Latour, B.; Martinelli, L.; Martinez, M.; Martinez Agullo, P.; Martinez Outschoorn, V. I.; Martin-Haugh, S.; Martoiu, V. S.; Martyniuk, A. C.; Marzin, A.; Maschek, S. R.; Masetti, L.; Mashimo, T.; Mashinistov, R.; Masik, J.; Maslennikov, A. L.; Massa, L.; Massarotti, P.; Mastrandrea, P.; Mastroberardino, A.; Masubuchi, T.; Matakias, D.; Matic, A.; Matsuzawa, N.; Mättig, P.; Maurer, J.; Maček, B.; Maximov, D. A.; Mazini, R.; Maznas, I.; Mazza, S. M.; Mc Gowan, J. P.; Mc Kee, S. P.; McCarthy, T. G.; McCormack, W. P.; McDonald, E. F.; McDougall, A. E.; Mcfayden, J. A.; Mchedlidze, G.; McKay, M. A.; McLean, K. D.; McMahon, S. J.; McNamara, P. C.; McNicol, C. J.; McPherson, R. A.; Mdhluli, J. E.; Meadows, Z. A.; Meehan, S.; Megy, T.; Mehlhase, S.; Mehta, A.; Meirose, B.; Melini, D.; Mellado Garcia, B. R.; Mellenthin, J. D.; Melo, M.; Meloni, F.; Melzer, A.; Mendes Gouveia, E. D.; Mendes Jacques Da Costa, A. M.; Meng, L.; Meng, X. T.; Menke, S.; Meoni, E.; Mergelmeyer, S.; Merkt, S. A.; Merlassino, C.; Mermod, P.; Merola, L.; Meroni, C.; Merz, G.; Meshkov, O.; Meshreki, J. K.; Metcalfe, J.; Mete, A. S.; Meyer, C.; Meyer, J. P.; Michetti, M.; Middleton, R. P.; Mijović, L.; Mikenberg, G.; Mikestikova, M.; Mikuž, M.; Mildner, H.; Milic, A.; Milke, C. D.; Miller, D. W.; Milov, A.; Milstead, D. A.; Mina, R. A.; Minaenko, A. A.; Minashvili, I. A.; Mincer, A. I.; Mindur, B.; Mineev, M.; Minegishi, Y.; Mino, Y.; Mir, L. M.; Mironova, M.; Mistry, K. P.; Mitani, T.; Mitrevski, J.; Mitsou, V. A.; Mittal, M.; Miu, O.; Miucci, A.; Miyagawa, P. S.; Mizukami, A.; Mjörnmark, J. U.; Mkrtchyan, T.; Mlynarikova, M.; Moa, T.; Mobius, S.; Mochizuki, K.; Mogg, P.; Mohapatra, S.; Moles-Valls, R.; Mönig, K.; Monnier, E.; Montalbano, A.; Montejo Berlingen, J.; Montella, M.; Monticelli, F.; Monzani, S.; Morange, N.; Moreira De Carvalho, A. L.; Moreno, D.; Moreno Llácer, M.; Moreno Martinez, C.; Morettini, P.; Morgenstern, M.; Morgenstern, S.; Mori, D.; Morii, M.; Morinaga, M.; Morisbak, V.; Morley, A. K.; Mornacchi, G.; Morris, A. P.; Morvaj, L.; Moschovakos, P.; Moser, B.; Mosidze, M.; Moskalets, T.; Moskvitina, P.; Moss, J.; Moyse, E. J.; Muanza, S.; Mueller, J.; Mueller, R. S.; Muenstermann, D.; Mullier, G. A.; Mungo, D. P.; Munoz Martinez, J. L.; Munoz Sanchez, F. J.; Murin, P.; Murray, W. J.; Murrone, A.; Muse, J. M.; Muškinja, M.; Mwewa, C.; Myagkov, A. G.; Myers, A. A.; Myers, G.; Myers, J.; Myska, M.; Nachman, B. P.; Nackenhorst, O.; Nag, A. N.; Nagai, K.; Nagano, K.; Nagasaka, Y.; Nagle, J. L.; Nagy, E.; Nairz, A. M.; Nakahama, Y.; Nakamura, K.; Nakamura, T.; Nanjo, H.; Napolitano, F.; Naranjo Garcia, R. F.; Narayan, R.; Naryshkin, I.; Naseri, M.; Naumann, T.; Navarro, G.; Nechaeva, P. Y.; Nechansky, F.; Neep, T. J.; Negri, A.; Negrini, M.; Nellist, C.; Nelson, C.; Nelson, M. E.; Nemecek, S.; Nessi, M.; Neubauer, M. S.; Neuhaus, F.; Neumann, M.; Newhouse, R.; Newman, P. R.; Ng, C. W.; Ng, Y. S.; Ng, Y. W.; Ngair, B.; Nguyen, H. D.; Nguyen Manh, T.; Nibigira, E.; Nickerson, R. B.; Nicolaidou, R.; Nielsen, D. S.; Nielsen, J.; Niemeyer, M.; Nikiforou, N.; Nikolaenko, V.; Nikolic-Audit, I.; Nikolopoulos, K.; Nilsson, P.; Nindhito, H. R.; Nisati, A.; Nishu, N.; Nisius, R.; Nitsche, I.; Nitta, T.; Nobe, T.; Noel, D. L.; Noguchi, Y.; Nomidis, I.; Nomura, M. A.; Nordberg, M.; Novak, J.; Novak, T.; Novgorodova, O.; Novotny, R.; Nozka, L.; Ntekas, K.; Nurse, E.; Oakham, F. G.; Oberlack, H.; Ocariz, J.; Ochi, A.; Ochoa, I.; Ochoa-Ricoux, J. P.; O'Connor, K.; Oda, S.; Odaka, S.; Oerdek, S.; Ogrodnik, A.; Oh, A.; Ohm, C. C.; Oide, H.; Ojeda, M. L.; Okawa, H.; Okazaki, Y.; O'Keefe, M. W.; Okumura, Y.; Olariu, A.; Oleiro Seabra, L. F.; Olivares Pino, S. A.; Oliveira Damazio, D.; Oliver, J. L.; Olsson, M. J.; Olszewski, A.; Olszowska, J.; Öncel, Ö. O.; O'Neil, D. C.; O'neill, A. P.; Onofre, A.; Onyisi, P. U.; Oppen, H.; Oreamuno Madriz, R. G.; Oreglia, M. J.; Orellana, G. E.; Orestano, D.; Orlando, N.; Orr, R. S.; O'Shea, V.; Ospanov, R.; Otero Y Garzon, G.; Otono, H.; Ott, P. S.; Ottino, G. J.; Ouchrif, M.; Ouellette, J.; Ould-Saada, F.; Ouraou, A.; Ouyang, Q.; Owen, M.; Owen, R. E.; Ozcan, V. E.; Ozturk, N.; Pacalt, J.; Pacey, H. A.; Pachal, K.; Pacheco Pages, A.; Padilla Aranda, C.; Pagan Griso, S.; Palacino, G.; Palazzo, S.; Palestini, S.; Palka, M.; Palni, P.; Pandini, C. E.; Panduro Vazquez, J. G.; Pani, P.; Panizzo, G.; Paolozzi, L.; Papadatos, C.; Papageorgiou, K.; Parajuli, S.; Paramonov, A.; Paraskevopoulos, C.; Paredes Hernandez, D.; Paredes Saenz, S. R.; Parida, B.; Park, T. H.; Parker, A. J.; Parker, M. A.; Parodi, F.; Parrish, E. W.; Parsons, J. A.; Parzefall, U.; Pascual Dominguez, L.; Pascuzzi, V. R.; Pasner, J. M.; Pasquali, F.; Pasqualucci, E.; Passaggio, S.; Pastore, F.; Pasuwan, P.; Pataraia, S.; Pater, J. R.; Pathak, A.; Patton, J.; Pauly, T.; Pearkes, J.; Pearson, B.; Pedersen, M.; Pedraza Diaz, L.; Pedro, R.; Peiffer, T.; Peleganchuk, S. V.; Penc, O.; Peng, H.; Peralva, B. S.; Perego, M. M.; Pereira Peixoto, A. P.; Pereira Sanchez, L.; Perepelitsa, D. V.; Perez Codina, E.; Peri, F.; Perini, L.; Pernegger, H.; Perrella, S.; Perrevoort, A.; Peters, K.; Peters, R. F.; Petersen, B. A.; Petersen, T. C.; Petit, E.; Petousis, V.; Petridis, A.; Petridou, C.; Petrucci, F.; Pettee, M.; Pettersson, N. E.; Petukhova, K.; Peyaud, A.; Pezoa, R.; Pezzotti, L.; Pham, T.; Phillips, P. W.; Phipps, M. W.; Piacquadio, G.; Pianori, E.; Picazio, A.; Pickles, R. H.; Piegaia, R.; Pietreanu, D.; Pilcher, J. E.; Pilkington, A. D.; Pinamonti, M.; Pinfold, J. L.; Pitman Donaldson, C.; Pitt, M.; Pizzimento, L.; Pizzini, A.; Pleier, M. A.; Plesanovs, V.; Pleskot, V.; Plotnikova, E.; Podberezko, P.; Poettgen, R.; Poggi, R.; Poggioli, L.; Pogrebnyak, I.; Pohl, D.; Pokharel, I.; Polesello, G.; Poley, A.; Policicchio, A.; Polifka, R.; Polini, A.; Pollard, C. S.; Polychronakos, V.; Ponomarenko, D.; Pontecorvo, L.; Popa, S.; Popeneciu, G. A.; Portales, L.; Portillo Quintero, D. M.; Pospisil, S.; Potamianos, K.; Potrap, I. N.; Potter, C. J.; Potti, H.; Poulsen, T.; Poveda, J.; Powell, T. D.; Pownall, G.; Pozo Astigarraga, M. E.; Prades Ibanez, A.; Pralavorio, P.; Prapa, M. M.; Prell, S.; Price, D.; Primavera, M.; Proffitt, M. L.; Proklova, N.; Prokofiev, K.; Prokoshin, F.; Protopopescu, S.; Proudfoot, J.; Przybycien, M.; Pudzha, D.; Puri, A.; Puzo, P.; Pyatiizbyantseva, D.; Qian, J.; Qin, Y.; Quadt, A.; Queitsch-Maitland, M.; Racko, M.; Ragusa, F.; Rahal, G.; Raine, J. A.; Rajagopalan, S.; Ramirez Morales, A.; Ran, K.; Rauch, D. M.; Rauscher, F.; Rave, S.; Ravina, B.; Ravinovich, I.; Rawling, J. H.; Raymond, M.; Read, A. L.; Readioff, N. P.; Reale, M.; Rebuzzi, D. M.; Redlinger, G.; Reeves, K.; Reikher, D.; Reiss, A.; Rej, A.; Rembser, C.; Renardi, A.; Renda, M.; Rendel, M. B.; Rennie, A. G.; Resconi, S.; Resseguie, E. D.; Rettie, S.; Reynolds, B.; Reynolds, E.; Rezanova, O. L.; Reznicek, P.; Ricci, E.; Richter, R.; Richter, S.; Richter-Was, E.; Ridel, M.; Rieck, P.; Rifki, O.; Rijssenbeek, M.; Rimoldi, A.; Rimoldi, M.; Rinaldi, L.; Rinn, T. T.; Ripellino, G.; Riu, I.; Rivadeneira, P.; Rivera Vergara, J. C.; Rizatdinova, F.; Rizvi, E.; Rizzi, C.; Robertson, S. H.; Robin, M.; Robinson, D.; Robles Gajardo, C. M.; Robles Manzano, M.; Robson, A.; Rocchi, A.; Rocco, E.; Roda, C.; Rodriguez Bosca, S.; Rodriguez Rodriguez, A.; Rodríguez Vera, A. M.; Roe, S.; Roggel, J.; Røhne, O.; Röhrig, R.; Rojas, R. A.; Roland, B.; Roland, C. P.; Roloff, J.; Romaniouk, A.; Romano, M.; Rompotis, N.; Ronzani, M.; Roos, L.; Rosati, S.; Rosin, G.; Rosser, B. J.; Rossi, E.; Rossi, E.; Rossi, E.; Rossi, L. P.; Rossini, L.; Rosten, R.; Rotaru, M.; Rottler, B.; Rousseau, D.; Rovelli, G.; Roy, A.; Roy, D.; Rozanov, A.; Rozen, Y.; Ruan, X.; Ruggeri, T. A.; Rühr, F.; Ruiz-Martinez, A.; Rummler, A.; Rurikova, Z.; Rusakovich, N. A.; Russell, H. L.; Rustige, L.; Rutherfoord, J. P.; Rüttinger, E. M.; Rybar, M.; Rybkin, G.; Rye, E. B.; Ryzhov, A.; Sabater Iglesias, J. A.; Sabatini, P.; Sabetta, L.; Sacerdoti, S.; Sadrozinski, H. F.; Sadykov, R.; Safai Tehrani, F.; Safarzadeh Samani, B.; Safdari, M.; Saha, P.; Saha, S.; Sahinsoy, M.; Sahu, A.; Saimpert, M.; Saito, M.; Saito, T.; Sakamoto, H.; Salamani, D.; Salamanna, G.; Salnikov, A.; Salt, J.; Salvador Salas, A.; Salvatore, D.; Salvatore, F.; Salvucci, A.; Salzburger, A.; Samarati, J.; Sammel, D.; Sampsonidis, D.; Sampsonidou, D.; Sánchez, J.; Sanchez Pineda, A.; Sandaker, H.; Sander, C. O.; Sanderswood, I. G.; Sandhoff, M.; Sandoval, C.; Sankey, D. P.; Sannino, M.; Sano, Y.; Sansoni, A.; Santoni, C.; Santos, H.; Santpur, S. N.; Santra, A.; Saoucha, K. A.; Sapronov, A.; Saraiva, J. G.; Sasaki, O.; Sato, K.; Sauerburger, F.; Sauvan, E.; Savard, P.; Sawada, R.; Sawyer, C.; Sawyer, L.; Sayago Galvan, I.; Sbarra, C.; Sbrizzi, A.; Scanlon, T.; Schaarschmidt, J.; Schacht, P.; Schaefer, D.; Schaefer, L.; Schaepe, S.; Schäfer, U.; Schaffer, A. C.; Schaile, D.; Schamberger, R. D.; Schanet, E.; Scharf, C.; Scharmberg, N.; Schegelsky, V. A.; Scheirich, D.; Schenck, F.; Schernau, M.; Schiavi, C.; Schildgen, L. K.; Schillaci, Z. M.; Schioppa, E. J.; Schioppa, M.; Schleicher, K. E.; Schlenker, S.; Schmidt-Sommerfeld, K. R.; Schmieden, K.; Schmitt, C.; Schmitt, S.; Schoeffel, L.; Schoening, A.; Scholer, P. G.; Schopf, E.; Schott, M.; Schouwenberg, J. F.; Schovancova, J.; Schramm, S.; Schroeder, F.; Schulte, A.; Schultz-Coulon, H. C.; Schumacher, M.; Schumm, B. A.; Schune, P.; Schwartzman, A.; Schwarz, T. A.; Schwemling, P.; Schwienhorst, R.; Sciandra, A.; Sciolla, G.; Scornajenghi, M.; Scuri, F.; Scutti, F.; Scyboz, L. M.; Sebastiani, C. D.; Seema, P.; Seidel, S. C.; Seiden, A.; Seidlitz, B. D.; Seiss, T.; Seitz, C.; Seixas, J. M.; Sekhniaidze, G.; Sekula, S. J.; Semprini-Cesari, N.; Sen, S.; Serfon, C.; Serin, L.; Serkin, L.; Sessa, M.; Severini, H.; Sevova, S.; Sforza, F.; Sfyrla, A.; Shabalina, E.; Shahinian, J. D.; Shaikh, N. W.; Shaked Renous, D.; Shan, L. Y.; Shapiro, M.; Sharma, A.; Sharma, A. S.; Shatalov, P. B.; Shaw, K.; Shaw, S. M.; Shehade, M.; Shen, Y.; Sherman, A. D.; Sherwood, P.; Shi, L.; Shimmin, C. O.; Shimogama, Y.; Shimojima, M.; Shinner, J. D.; Shipsey, I. P.; Shirabe, S.; Shiyakova, M.; Shlomi, J.; Shmeleva, A.; Shochet, M. J.; Shojaii, J.; Shope, D. R.; Shrestha, S.; Shrif, E. M.; Shroff, M. J.; Shulga, E.; Sicho, P.; Sickles, A. M.; Sideras Haddad, E.; Sidiropoulou, O.; Sidoti, A.; Siegert, F.; Sijacki, D.; Silva, M.; Silva Oliveira, M. V.; Silverstein, S. B.; Simion, S.; Simoniello, R.; Simpson-Allsop, C. J.; Simsek, S.; Sinervo, P.; Sinetckii, V.; Singh, S.; Sioli, M.; Siral, I.; Sivoklokov, S. Y.; Sjölin, J.; Skaf, A.; Skorda, E.; Skubic, P.; Slawinska, M.; Sliwa, K.; Slovak, R.; Smakhtin, V.; Smart, B. H.; Smiesko, J.; Smirnov, N.; Smirnov, S. Y.; Smirnov, Y.; Smirnova, L. N.; Smirnova, O.; Smith, E. A.; Smith, H. A.; Smizanska, M.; Smolek, K.; Smykiewicz, A.; Snesarev, A. A.; Snoek, H. L.; Snyder, I. M.; Snyder, S.; Sobie, R.; Soffer, A.; Søgaard, A.; Sohns, F.; Solans Sanchez, C. A.; Soldatov, E. Y.; Soldevila, U.; Solodkov, A. A.; Soloshenko, A.; Solovyanov, O. V.; Solovyev, V.; Sommer, P.; Son, H.; Sonay, A.; Song, W.; Song, W. Y.; Sopczak, A.; Sopio, A. L.; Sopkova, F.; Sottocornola, S.; Soualah, R.; Soukharev, A. M.; South, D.; Spagnolo, S.; Spalla, M.; Spangenberg, M.; Spanò, F.; Sperlich, D.; Spieker, T. M.; Spigo, G.; Spina, M.; Spiteri, D. P.; Spousta, M.; Stabile, A.; Stamas, B. L.; Stamen, R.; Stamenkovic, M.; Stampekis, A.; Stanecka, E.; Stanislaus, B.; Stanitzki, M. M.; Stankaityte, M.; Stapf, B.; Starchenko, E. A.; Stark, G. H.; Stark, J.; Staroba, P.; Starovoitov, P.; Stärz, S.; Staszewski, R.; Stavropoulos, G.; Stegler, M.; Steinberg, P.; Steinhebel, A. L.; Stelzer, B.; Stelzer, H. J.; Stelzer-Chilton, O.; Stenzel, H.; Stevenson, T. J.; Stewart, G. A.; Stockton, M. C.; Stoicea, G.; Stolarski, M.; Stonjek, S.; Straessner, A.; Strandberg, J.; Strandberg, S.; Strauss, M.; Strebler, T.; Strizenec, P.; Ströhmer, R.; Strom, D. M.; Stroynowski, R.; Strubig, A.; Stucci, S. A.; Stugu, B.; Stupak, J.; Styles, N. A.; Su, D.; Su, W.; Su, X.; Sulin, V. V.; Sullivan, M. J.; Sultan, D. M.; Sultansoy, S.; Sumida, T.; Sun, S.; Sun, X.; Suster, C. J.; Sutton, M. R.; Suzuki, S.; Svatos, M.; Swiatlowski, M.; Swift, S. P.; Swirski, T.; Sydorenko, A.; Sykora, I.; Sykora, M.; Sykora, T.; Ta, D.; Tackmann, K.; Taenzer, J.; Taffard, A.; Tafirout, R.; Tagiev, E.; Takashima, R.; Takeda, K.; Takeshita, T.; Takeva, E. P.; Takubo, Y.; Talby, M.; Talyshev, A. A.; Tam, K. C.; Tamir, N. M.; Tanaka, J.; Tanaka, R.; Tapia Araya, S.; Tapprogge, S.; Tarek Abouelfadl Mohamed, A.; Tarem, S.; Tariq, K.; Tarna, G.; Tartarelli, G. F.; Tas, P.; Tasevsky, M.; Tassi, E.; Tavares Delgado, A.; Tayalati, Y.; Taylor, A. J.; Taylor, G. N.; Taylor, W.; Teagle, H.; Tee, A. S.; Teixeira De Lima, R.; Teixeira-Dias, P.; Ten Kate, H.; Teoh, J. J.; Terashi, K.; Terron, J.; Terzo, S.; Testa, M.; Teuscher, R. J.; Thais, S. J.; Themistokleous, N.; Theveneaux-Pelzer, T.; Thiele, F.; Thomas, D. W.; Thomas, J. O.; Thomas, J. P.; Thompson, E. A.; Thompson, P. D.; Thomson, E.; Thorpe, E. J.; Ticse Torres, R. E.; Tikhomirov, V. O.; Tikhonov, Y. A.; Timoshenko, S.; Tipton, P.; Tisserant, S.; Todome, K.; Todorova-Nova, S.; Todt, S.; Tojo, J.; Tokár, S.; Tokushuku, K.; Tolley, E.; Tombs, R.; Tomiwa, K. G.; Tomoto, M.; Tompkins, L.; Tornambe, P.; Torrence, E.; Torres, H.; Torró Pastor, E.; Toscani, M.; Tosciri, C.; Toth, J.; Tovey, D. R.; Traeet, A.; Treado, C. J.; Trefzger, T.; Tresoldi, F.; Tricoli, A.; Trigger, I. M.; Trincaz-Duvoid, S.; Trischuk, D. A.; Trischuk, W.; Trocmé, B.; Trofymov, A.; Troncon, C.; Trovato, F.; Truong, L.; Trzebinski, M.; Trzupek, A.; Tsai, F.; Tseng, J. C.; Tsiareshka, P. V.; Tsirigotis, A.; Tsiskaridze, V.; Tskhadadze, E. G.; Tsopoulou, M.; Tsukerman, I. I.; Tsulaia, V.; Tsuno, S.; Tsybychev, D.; Tu, Y.; Tudorache, A.; Tudorache, V.; Tulbure, T. T.; Tuna, A. N.; Turchikhin, S.; Turgeman, D.; Turk Cakir, I.; Turner, R. J.; Turra, R.; Tuts, P. M.; Tzamarias, S.; Tzovara, E.; Uchida, K.; Ukegawa, F.; Unal, G.; Unal, M.; Undrus, A.; Unel, G.; Ungaro, F. C.; Unno, Y.; Uno, K.; Urban, J.; Urquijo, P.; Usai, G.; Uysal, Z.; Vacek, V.; Vachon, B.; Vadla, K. O.; Vafeiadis, T.; Vaidya, A.; Valderanis, C.; Valdes Santurio, E.; Valente, M.; Valentinetti, S.; Valero, A.; Valéry, L.; Vallance, R. A.; Vallier, A.; Valls Ferrer, J. A.; Van Daalen, T. R.; Van Gemmeren, P.; Van Stroud, S.; Van Vulpen, I.; Vanadia, M.; Vandelli, W.; Vandenbroucke, M.; Vandewall, E. R.; Vaniachine, A.; Vannicola, D.; Vari, R.; Varnes, E. W.; Varni, C.; Varol, T.; Varouchas, D.; Varvell, K. E.; Vasile, M. E.; Vasquez, G. A.; Vazeille, F.; Vazquez Furelos, D.; Vazquez Schroeder, T.; Veatch, J.; Vecchio, V.; Veen, M. J.; Veloce, L. M.; Veloso, F.; Veneziano, S.; Ventura, A.; Verbytskyi, A.; Vercesi, V.; Verducci, M.; Vergel Infante, C. M.; Vergis, C.; Verkerke, W.; Vermeulen, A. T.; Vermeulen, J. C.; Vernieri, C.; Verschuuren, P. J.; Vetterli, M. C.; Viaux Maira, N.; Vickey, T.; Vickey Boeriu, O. E.; Viehhauser, G. H.; Vigani, L.; Villa, M.; Villaplana Perez, M.; Villhauer, E. M.; Vilucchi, E.; Vincter, M. G.; Virdee, G. S.; Vishwakarma, A.; Vittori, C.; Vivarelli, I.; Vogel, M.; Vokac, P.; von Buddenbrock, S. E.; Von Toerne, E.; Vorobel, V.; Vorobev, K.; Vos, M.; Vossebeld, J. H.; Vozak, M.; Vranjes, N.; Vranjes Milosavljevic, M.; Vrba, V.; Vreeswijk, M.; Vu, N. K.; Vuillermet, R.; Vukotic, I.; Wada, S.; Wagner, P.; Wagner, W.; Wagner-Kuhr, J.; Wahdan, S.; Wahlberg, H.; Wakasa, R.; Walbrecht, V. M.; Walder, J.; Walker, R.; Walker, S. D.; Walkowiak, W.; Wallangen, V.; Wang, A. M.; Wang, A. Z.; Wang, C.; Wang, C.; Wang, F.; Wang, H.; Wang, H.; Wang, J.; Wang, P.; Wang, Q.; Wang, R. J.; Wang, R.; Wang, R.; Wang, S. M.; Wang, W. T.; Wang, W.; Wang, W. X.; Wang, Y.; Wang, Z.; Wanotayaroj, C.; Warburton, A.; Ward, C. P.; Ward, R. J.; Warrack, N.; Watson, A. T.; Watson, M. F.; Watts, G.; Waugh, B. M.; Webb, A. F.; Weber, C.; Weber, M. S.; Weber, S. A.; Weber, S. M.; Weidberg, A. R.; Weingarten, J.; Weirich, M.; Weiser, C.; Wells, P. S.; Wenaus, T.; Wendland, B.; Wengler, T.; Wenig, S.; Wermes, N.; Wessels, M.; Weston, T. D.; Whalen, K.; Wharton, A. M.; White, A. S.; White, A.; White, M. J.; Whiteson, D.; Whitmore, B. W.; Wiedenmann, W.; Wiel, C.; Wielers, M.; Wieseotte, N.; Wiglesworth, C.; Wiik-Fuchs, L. A.; Wilkens, H. G.; Wilkins, L. J.; Williams, H. H.; Williams, S.; Willocq, S.; Windischhofer, P. J.; Wingerter-Seez, I.; Winkels, E.; Winklmeier, F.; Winter, B. T.; Wittgen, M.; Wobisch, M.; Wolf, A.; Wölker, R.; Wollrath, J.; Wolter, M. W.; Wolters, H.; Wong, V. W.; Woods, N. L.; Worm, S. D.; Wosiek, B. K.; Woźniak, K. W.; Wraight, K.; Wu, S. L.; Wu, X.; Wu, Y.; Wuerzinger, J.; Wyatt, T. R.; Wynne, B. M.; Xella, S.; Xia, L.; Xiang, J.; Xiao, X.; Xie, X.; Xiotidis, I.; Xu, D.; Xu, H.; Xu, H.; Xu, L.; Xu, T.; Xu, W.; Xu, Y.; Xu, Z.; Xu, Z.; Yabsley, B.; Yacoob, S.; Yallup, D. P.; Yamaguchi, N.; Yamaguchi, Y.; Yamamoto, A.; Yamatani, M.; Yamazaki, T.; Yamazaki, Y.; Yan, J.; Yan, Z.; Yang, H. J.; Yang, H. T.; Yang, S.; Yang, T.; Yang, X.; Yang, Y.; Yang, Z.; Yao, W. M.; Yap, Y. C.; Yatsenko, E.; Ye, H.; Ye, J.; Ye, S.; Yeletskikh, I.; Yexley, M. R.; Yigitbasi, E.; Yin, P.; Yorita, K.; Yoshihara, K.; Young, C. J.; Young, C.; Yu, J.; Yuan, R.; Yue, X.; Zaazoua, M.; Zabinski, B.; Zacharis, G.; Zaffaroni, E.; Zahreddine, J.; Zaitsev, A. M.; Zakareishvili, T.; Zakharchuk, N.; Zambito, S.; Zanzi, D.; Zeißner, S. V.; Zeitnitz, C.; Zemaityte, G.; Zeng, J. C.; Zenin, O.; Ženiš, T.; Zerwas, D.; Zgubič, M.; Zhang, B.; Zhang, D. F.; Zhang, G.; Zhang, J.; Zhang, K.; Zhang, L.; Zhang, L.; Zhang, M.; Zhang, R.; Zhang, S.; Zhang, X.; Zhang, X.; Zhang, Y.; Zhang, Z.; Zhang, Z.; Zhao, P.; Zhao, Z.; Zhemchugov, A.; Zheng, Z.; Zhong, D.; Zhou, B.; Zhou, C.; Zhou, H.; Zhou, M. S.; Zhou, M.; Zhou, N.; Zhou, Y.; Zhu, C. G.; Zhu, C.; Zhu, H. L.; Zhu, H.; Zhu, J.; Zhu, Y.; Zhuang, X.; Zhukov, K.; Zhulanov, V.; Zieminska, D.; Zimine, N. I.; Zimmermann, S.; Zinonos, Z.; Ziolkowski, M.; Živković, L.; Zobernig, G.; Zoccoli, A.; Zoch, K.; Zorbas, T. G.; Zou, R.; Zwalinski, L. Search for Heavy Resonances Decaying into a Photon and a Hadronically Decaying Higgs Boson in pp Collisions at sqrt[s]=13 TeV with the ATLAS Detector. Physical review letters. 2021. https://doi.org/10.1103/PhysRevLett.125.251802.
66|sucess-download|Krajewski, D.; Polukort, S. H.; Gelzinis, J.; Rovatti, J.; Kaczenski, E.; Galinski, C.; Pantos, M.; Shah, N. N.; Schneider, S. S.; Kennedy, D. R.; Mathias, C. B. Protein Disulfide Isomerases Regulate IgE-Mediated Mast Cell Responses and Their Inhibition Confers Protective Effects During Food Allergy. Frontiers in immunology. 2021. https://doi.org/10.3389/fimmu.2020.606837.
67|sucess-download|Fornaciai, M.; Park, J. Disentangling feedforward versus feedback processing in numerosity representation. Cortex; a journal devoted to the study of the nervous system and behavior. 2021. https://doi.org/10.1016/j.cortex.2020.11.013.
68|shorty-download|Yamaguchi, Y.; Yamanaka, N. Large Long-Distance Contributions to the Electric Dipole Moments of Charged Leptons in the Standard Model. Physical review letters. 2021. https://doi.org/10.1103/PhysRevLett.125.241802.
69|sucess-download|Evans, E. A.; Harrington, C.; Roose, R.; Lemere, S.; Buchanan, D. Perceived Benefits and Harms of Involuntary Civil Commitment for Opioid Use Disorder. The Journal of law, medicine & ethics : a journal of the American Society of Law, Medicine & Ethics. 2021. https://doi.org/10.1177/1073110520979382.
70|sucess-download|Vieira, L. A.; Diana, A.; Soriano-Úbeda, C.; Matás, C. Selection of Boar Sperm by Reproductive Biofluids as Chemoattractants. Animals : an open access journal from MDPI. 2021. https://doi.org/10.3390/ani11010053.
71|sucess-download|Hondula, D. M.; Kuras, E. R.; Betzel, S.; Drake, L.; Eneboe, J.; Kaml, M.; Munoz, M.; Sevig, M.; Singh, M.; Ruddell, B. L.; Harlan, S. L. Novel metrics for relating personal heat exposure to social risk factors and outdoor ambient temperature. Environment international. 2021. https://doi.org/10.1016/j.envint.2020.106271.
72|sucess-download|Sedghi, A.; O'Donnell, L. J.; Kapur, T.; Learned-Miller, E.; Mousavi, P.; Wells, W. M. Image registration: Maximum likelihood, minimum entropy and deep learning. Medical image analysis. 2021. https://doi.org/10.1016/j.media.2020.101939.
73|sucess-download|Romero-Aguirregomezcorta, J.; Soriano-Úbeda, C.; Matás, C. Involvement of nitric oxide during in vitro oocyte maturation, sperm capacitation and in vitro fertilization in pig. Research in veterinary science. 2021. https://doi.org/10.1016/j.rvsc.2020.12.011.
74|shorty-download|Lalor, J. P.; Yu, H. Dynamic Data Selection for Curriculum Learning via Ability Estimation. Proceedings of the Conference on Empirical Methods in Natural Language Processing. Conference on Empirical Methods in Natural Language Processing. 2021. https://doi.org/10.18653/v1/2020.findings-emnlp.48.
75|sucess-download|Pandya, J. K.; Dai, H.; He, L. An innovative filtration based Raman mapping technique for the size characterization of anatase titanium dioxide nanoparticles. Talanta. 2021. https://doi.org/10.1016/j.talanta.2020.121836.
76|shorty-download|Rojas, L. M.; Qu, Y.; He, L. A facile solvent extraction method facilitating surface-enhanced Raman spectroscopic detection of ochratoxin A in wine and wheat. Talanta. 2021. https://doi.org/10.1016/j.talanta.2020.121792.
77|shorty-download|Toney, A. M.; Albusharif, M.; Works, D.; Polenz, L.; Schlange, S.; Chaidez, V.; Ramer-Tait, A. E.; Chung, S. Differential Effects of Whole Red Raspberry Polyphenols and Their Gut Metabolite Urolithin A on Neuroinflammation in BV-2 Microglia. International journal of environmental research and public health. 2020. https://doi.org/10.3390/ijerph18010068.
78|shorty-download|Ahmed, S.; Gao, X.; Jahan, M. A.; Adams, M.; Wu, N.; Kovinich, N. Nanoparticle-based genetic transformation of Cannabis sativa. Journal of biotechnology. 2020. https://doi.org/10.1016/j.jbiotec.2020.12.014.
79|sucess-download|McClements, D. J. Advances in edible nanoemulsions: Digestion, bioavailability, and potential toxicity. Progress in lipid research. 2020. https://doi.org/10.1016/j.plipres.2020.101081.
80|sucess-download|Altman, A. B.; Tamerius, A. D.; Koocher, N. Z.; Meng, Y.; Pickard, C. J.; Walsh, J. P.; Rondinelli, J. M.; Jacobsen, S. D.; Freedman, D. E. Computationally Directed Discovery of MoBi Journal of the American Chemical Society. 2020. https://doi.org/10.1021/jacs.0c09419.
81|shorty-download|Lin, T. C.; Germagian, A.; Liu, Z. The NF-[Formula: see text]B Signaling and Wnt/[Formula: see text]-catenin Signaling in MCF-7 Breast Cancer Cells in Response to Bioactive Components from Mushroom The American journal of Chinese medicine. 2020. https://doi.org/10.1142/S0192415X21500117.
82|shorty-download|Guo, F.; Qin, S.; Xu, L.; Bai, Y.; Xing, B. Thermal degradation features of soil humic acid sub-fractions in pyrolytic treatment and their relation to molecular signatures. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.142318.
83|sucess-download|Chen, Y.; Huang, F.; Xie, B.; Sun, Z.; McClements, D. J.; Deng, Q. Fabrication and characterization of whey protein isolates- lotus seedpod proanthocyanin conjugate: Its potential application in oxidizable emulsions. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.128680.
84|shorty-download|Lynch, K. E.; Gatsby, E.; Viernes, B.; Schliep, K. C.; Whitcomb, B. W.; Alba, P. R.; DuVall, S. L.; Blosnich, J. R. Evaluation of Suicide Mortality Among Sexual Minority US Veterans From 2000 to 2017. JAMA network open. 2020. https://doi.org/10.1001/jamanetworkopen.2020.31357.
85|sucess-download|Bian, P.; Wang, Y.; McCarthy, T. J. Rediscovering Silicones: The Anomalous Water Permeability of "Hydrophobic" PDMS Suggests Nanostructure and Applications in Water Purification and Anti-Icing. Macromolecular rapid communications. 2020. https://doi.org/10.1002/marc.202000682.
86|sucess-download|Novak, M. A. Self-Injurious behavior in rhesus macaques: Issues and challenges. American journal of primatology. 2020. https://doi.org/10.1002/ajp.23222.
87|sucess-download|Bagheri, Y.; Ali, A. A.; You, M. Current Methods for Detecting Cell Membrane Transient Interactions. Frontiers in chemistry. 2020. https://doi.org/10.3389/fchem.2020.603259.
88|sucess-download|Huang, J.; Su, S.; Dai, H.; Liu, C.; Wei, X.; Zhao, Y.; Wang, Z.; Zhang, X.; Yuan, Y.; Yu, X.; Zhang, C.; Li, Y.; Zeng, W.; Wu, H. M.; Cheung, A. Y.; Wang, S.; Duan, Q. Programmed Cell Death in Stigmatic Papilla Cells Is Associated With Senescence-Induced Self-Incompatibility Breakdown in Chinese Cabbage and Radish. Frontiers in plant science. 2020. https://doi.org/10.3389/fpls.2020.586901.
89|sucess-download|Wu, J.; Ding, J.; Shi, Y.; Fang, Y.; Li, P.; Fan, F.; Zhao, E.; Sun, X.; Shen, X.; Hu, Q. Inhibition of immunotoxicity of Pb Food and chemical toxicology : an international journal published for the British Industrial Biological Research Association. 2020. https://doi.org/10.1016/j.fct.2020.111943.
90|sucess-download|Zhang, C.; Seong, K. M.; Sun, W.; Mittapalli, O.; Qiu, B.; Clark, J. M.; Pittendrigh, B. R. The insulin signaling pathway in Drosophila melanogaster: A nexus revealing an "Achilles' heel" in DDT resistance. Pesticide biochemistry and physiology. 2020. https://doi.org/10.1016/j.pestbp.2020.104727.
91|sucess-download|Valdez, L. A.; Garcia, D. O. Hispanic Male Recruitment into Obesity-Related Research: Evaluating Content Messaging Strategies, Experimental Findings, and Practical Implications. International quarterly of community health education. 2020. https://doi.org/10.1177/0272684X20982598.
92|shorty-download|Hoyniak, C. P.; Bates, J. E.; McQuillan, M. E.; Albert, L. E.; Staples, A. D.; Molfese, V. J.; Rudasill, K. M.; Deater-Deckard, K. The Family Context of Toddler Sleep: Routines, Sleep Environment, and Emotional Security Induction in the Hour before Bedtime. Behavioral sleep medicine. 2020. https://doi.org/10.1080/15402002.2020.1865356.
93|sucess-download|Hu, Y.; Liu, F.; Pang, J.; McClements, D. J.; Zhou, Z.; Li, B.; Li, Y. Biopolymer Additives Enhance Tangeretin Bioavailability in Emulsion-Based Delivery Systems: An Journal of agricultural and food chemistry. 2020. https://doi.org/10.1021/acs.jafc.0c03635.
94|sucess-download|Rathore, P.; Schiffman, J. D. Beyond the Single-Nozzle: Coaxial Electrospinning Enables Innovative Nanofiber Chemistries, Geometries, and Applications. ACS applied materials & interfaces. 2020. https://doi.org/10.1021/acsami.0c17706.
95|sucess-download|Mather, M. A.; Laws, H. B.; Dixon, J. S.; Ready, R. E.; Akerstedt, A. M. Sleep Behaviors in Persons With Alzheimer's Disease: Associations With Caregiver Sleep and Affect. Journal of applied gerontology : the official journal of the Southern Gerontological Society. 2020. https://doi.org/10.1177/0733464820979244.
96|sucess-download|Calabrese, V.; Scuto, M.; Salinaro, A. T.; Dionisio, G.; Modafferi, S.; Ontario, M. L.; Greco, V.; Sciuto, S.; Schmitt, C. P.; Calabrese, E. J.; Peters, V. Hydrogen Sulfide and Carnosine: Modulation of Oxidative Stress and Inflammation in Kidney and Brain Axis. Antioxidants (Basel, Switzerland). 2020. https://doi.org/10.3390/antiox9121303.
97|sucess-download|Yirsaw, A. W.; Gillespie, A.; Britton, E.; Doerle, A.; Johnson, L.; Marston, S.; Telfer, J.; Baldwin, C. L. Goat γδ T cell subpopulations defined by WC1 expression, responses to pathogens and cytokine production. Developmental and comparative immunology. 2020. https://doi.org/10.1016/j.dci.2020.103984.
98|sucess-download|McClements, D. J.; Barrangou, R.; Hill, C.; Kokini, J. L.; Lila, M. A.; Meyer, A. S.; Yu, L. Building a Resilient, Sustainable, and Healthier Food Supply Through Innovation and Technology. Annual review of food science and technology. 2020. https://doi.org/10.1146/annurev-food-092220-030824.
99|sucess-download|Gao, X.; Boryczka, J.; Kasani, S.; Wu, N. Enabling Direct Protein Detection in a Drop of Whole Blood with an "On-Strip" Plasma Separation Unit in a Paper-Based Lateral Flow Strip. Analytical chemistry. 2020. https://doi.org/10.1021/acs.analchem.0c02555.
100|sucess-download|May, L. E.; McDonald, S.; Forbes, L.; Jones, R.; Newton, E.; Strickland, D.; Isler, C.; Haven, K.; Steed, D.; Kelley, G.; Chasan-Taber, L.; Kuehn, D. Influence of maternal aerobic exercise during pregnancy on fetal cardiac function and outflow. American journal of obstetrics & gynecology MFM. 2020. https://doi.org/10.1016/j.ajogmf.2020.100095.
101|sucess-download|Sun, Y.; Wang, L.; Shaughnessy, L. K.; Lin, Y.; Xu, Q.; Shi, X.; Zhang, L.; Yu, R.; Xiao, H.; Wan, X.; Wu, X. Exploring the Antihyperglycemic Chemical Composition and Mechanisms of Tea Using Molecular Docking. Evidence-based complementary and alternative medicine : eCAM. 2020. https://doi.org/10.1155/2020/8871088.
102|sucess-download|Hickey, M. E.; He, L. Understanding and Advancing the 3-mercaptophenylboronic Acid Chemical Label for Optimal Surface-enhanced Raman Spectroscopic Analysis of Bacteria Populations. ACS applied bio materials. 2020. https://doi.org/10.1021/acsabm.0c01138.
103|sucess-download|DuBois, L. Z.; Gibb, J. K.; Juster, R. P.; Powers, S. I. Biocultural approaches to transgender and gender diverse experience and health: Integrating biomarkers and advancing gender/sex research. American journal of human biology : the official journal of the Human Biology Council. 2020. https://doi.org/10.1002/ajhb.23555.
104|sucess-download|Zhang, H.; Sanidad, K. Z.; Zhu, L.; Parsonnet, J.; Haggerty, T. D.; Zhang, G.; Cai, Z. Frequent occurrence of triclosan hydroxylation in mammals: A combined theoretical and experimental investigation. Journal of hazardous materials. 2020. https://doi.org/10.1016/j.jhazmat.2020.124803.
105|sucess-download|Li, M.; McClements, D. J.; Liu, X.; Liu, F. Design principles of oil-in-water emulsions with functionalized interfaces: Mixed, multilayer, and covalent complex structures. Comprehensive reviews in food science and food safety. 2020. https://doi.org/10.1111/1541-4337.12622.
106|sucess-download|Das, A. K.; Nanda, P. K.; Bandyopadhyay, S.; Banerjee, R.; Biswas, S.; McClements, D. J. Application of nanoemulsion-based approaches for improving the quality and safety of muscle foods: A comprehensive review. Comprehensive reviews in food science and food safety. 2020. https://doi.org/10.1111/1541-4337.12604.
107|sucess-download|Raimondi, G. A.; Moreira, C.; Brilhante, A. V.; Barros, N. F. [Performance autoethnography and qualitative research in Collective Health: methodological (mis)encounters]. Cadernos de saude publica. 2020. https://doi.org/10.1590/0102-311X00095320.
108|sucess-download|Dedon, L. R.; Özcan, E.; Rani, A.; Sela, D. A. Frontiers in nutrition. 2020. https://doi.org/10.3389/fnut.2020.583397.
109|sucess-download|Kennedy-Metz, L. R.; Dias, R. D.; Srey, R.; Rance, G. C.; Conboy, H. M.; Haime, M. E.; Quin, J. A.; Yule, S. J.; Zenati, M. A. Analysis of Dynamic Changes in Cognitive Workload During Cardiac Surgery Perfusionists' Interactions With the Cardiopulmonary Bypass Pump. Human factors. 2020. https://doi.org/10.1177/0018720820976297.
110|sucess-download|Uhl, J. D.; Sripathi, K. N.; Saldanha, J. N.; Moscarella, R. A.; Merrill, J.; Urban-Lurain, M.; Haudek, K. C. Introductory biology undergraduate students' mixed ideas about genetic information flow. Biochemistry and molecular biology education : a bimonthly publication of the International Union of Biochemistry and Molecular Biology. 2020. https://doi.org/10.1002/bmb.21483.
111|sucess-download|Conrad-Rooney, E.; Barker Plotkin, A.; Pasquarella, V. J.; Elkinton, J.; Chandler, J. L.; Matthes, J. H. Defoliation severity is positively related to soil solution nitrogen availability and negatively related to soil nitrogen concentrations following a multi-year invasive insect irruption. AoB PLANTS. 2020. https://doi.org/10.1093/aobpla/plaa059.
112|sucess-download|Balakrishnan, A.; Malik, N. Chandipura Virus' Oncolytic Potential in Experimentally Induced Tumor in Mice. Intervirology. 2020. https://doi.org/10.1159/000512299.
113|sucess-download|Rastogi, A.; Severance, E. G.; Jacobs, H. M.; Conlin, S. M.; Islam, S. T.; Timme-Laragy, A. R. Modulating glutathione thiol status alters pancreatic β-cell morphogenesis in the developing zebrafish (Danio rerio) embryo. Redox biology. 2020. https://doi.org/10.1016/j.redox.2020.101788.
114|sucess-download|Shipway, J. R.; Treneman, N. C.; Distel, D. L. Mate competition during pseudocopulation in shipworms. Biology letters. 2020. https://doi.org/10.1098/rsbl.2020.0626.
115|shorty-download|Oluwayiose, O. A.; Josyula, S.; Houle, E.; Marcho, C.; Rahil, T.; Sites, C. K.; Pilsner, J. R. Association between sperm mitochondarial DNA copy number and nuclear DNA methylation. Epigenomics. 2020. https://doi.org/10.2217/epi-2020-0253.
116|shorty-download|Adams, B. M.; Canniff, N. P.; Guay, K. P.; Larsen, I. S.; Hebert, D. N. Quantitative glycoproteomics reveals cellular substrate selectivity of the ER protein quality control sensors UGGT1 and UGGT2. eLife. 2020. https://doi.org/10.7554/eLife.63997.
117|sucess-download|Li, H.; Hart, J. E.; Mahalingaiah, S.; Nethery, R. C.; Bertone-Johnson, E.; Laden, F. Long-term exposure to particulate matter and roadway proximity with age at natural menopause in the Nurses' Health Study II Cohort. Environmental pollution (Barking, Essex : 1987). 2020. https://doi.org/10.1016/j.envpol.2020.116216.
118|sucess-download|Milholland, M. T.; Xu, G.; Rich, S. M.; Machtinger, E. T.; Mullinax, J. M.; Li, A. Y. Pathogen Coinfections Harbored by Adult Vector borne and zoonotic diseases (Larchmont, N.Y.). 2020. https://doi.org/10.1089/vbz.2020.2644.
119|sucess-download|Umezawa, K.; Niikura, M.; Kojima, Y.; Goodell, B.; Yoshida, M. Transcriptome analysis of the brown rot fungus Gloeophyllum trabeum during lignocellulose degradation. PloS one. 2020. https://doi.org/10.1371/journal.pone.0243984.
120|shorty-download|Aad, G.; Abbott, B.; Abbott, D. C.; Abed Abud, A.; Abeling, K.; Abhayasinghe, D. K.; Abidi, S. H.; AbouZeid, O. S.; Abraham, N. L.; Abramowicz, H.; Abreu, H.; Abulaiti, Y.; Acharya, B. S.; Achkar, B.; Adam, L.; Adam Bourdarios, C.; Adamczyk, L.; Adamek, L.; Adelman, J.; Adersberger, M.; Adiguzel, A.; Adorni, S.; Adye, T.; Affolder, A. A.; Afik, Y.; Agapopoulou, C.; Agaras, M. N.; Aggarwal, A.; Agheorghiesei, C.; Aguilar-Saavedra, J. A.; Ahmad, A.; Ahmadov, F.; Ahmed, W. S.; Ai, X.; Aielli, G.; Akatsuka, S.; Åkesson, T. P.; Akilli, E.; Akimov, A. V.; Al Khoury, K.; Alberghi, G. L.; Albert, J.; Alconada Verzini, M. J.; Alderweireldt, S.; Aleksa, M.; Aleksandrov, I. N.; Alexa, C.; Alexopoulos, T.; Alfonsi, A.; Alfonsi, F.; Alhroob, M.; Ali, B.; Ali, S.; Aliev, M.; Alimonti, G.; Allaire, C.; Allbrooke, B. M.; Allen, B. W.; Allport, P. P.; Aloisio, A.; Alonso, F.; Alpigiani, C.; Alunno Camelia, E.; Alvarez Estevez, M.; Alviggi, M. G.; Amaral Coutinho, Y.; Ambler, A.; Ambroz, L.; Amelung, C.; Amidei, D.; Amor Dos Santos, S. P.; Amoroso, S.; Amrouche, C. S.; An, F.; Anastopoulos, C.; Andari, N.; Andeen, T.; Anders, J. K.; Andrean, S. Y.; Andreazza, A.; Andrei, V.; Anelli, C. R.; Angelidakis, S.; Angerami, A.; Anisenkov, A. V.; Annovi, A.; Antel, C.; Anthony, M. T.; Antipov, E.; Antonelli, M.; Antrim, D. J.; Anulli, F.; Aoki, M.; Aparisi Pozo, J. A.; Aparo, M. A.; Aperio Bella, L.; Aranzabal, N.; Araujo Ferraz, V.; Araujo Pereira, R.; Arcangeletti, C.; Arce, A. T.; Arduh, F. A.; Arguin, J. F.; Argyropoulos, S.; Arling, J. H.; Armbruster, A. J.; Armstrong, A.; Arnaez, O.; Arnold, H.; Arrubarrena Tame, Z. P.; Artoni, G.; Asai, K.; Asai, S.; Asawatavonvanich, T.; Asbah, N.; Asimakopoulou, E. M.; Asquith, L.; Assahsah, J.; Assamagan, K.; Astalos, R.; Atkin, R. J.; Atkinson, M.; Atlay, N. B.; Atmani, H.; Augsten, K.; Austrup, V. A.; Avolio, G.; Ayoub, M. K.; Azuelos, G.; Bachacou, H.; Bachas, K.; Backes, M.; Backman, F.; Bagnaia, P.; Bahmani, M.; Bahrasemani, H.; Bailey, A. J.; Bailey, V. R.; Baines, J. T.; Bakalis, C.; Baker, O. K.; Bakker, P. J.; Bakos, E.; Bakshi Gupta, D.; Balaji, S.; Baldin, E. M.; Balek, P.; Balli, F.; Balunas, W. K.; Balz, J.; Banas, E.; Bandieramonte, M.; Bandyopadhyay, A.; Banerjee, S.; Barak, L.; Barbe, W. M.; Barberio, E. L.; Barberis, D.; Barbero, M.; Barbour, G.; Barillari, T.; Barisits, M. S.; Barkeloo, J.; Barklow, T.; Barnea, R.; Barnett, B. M.; Barnett, R. M.; Barnovska-Blenessy, Z.; Baroncelli, A.; Barone, G.; Barr, A. J.; Barranco Navarro, L.; Barreiro, F.; Barreiro Guimarães da Costa, J.; Barron, U.; Barsov, S.; Bartels, F.; Bartoldus, R.; Bartolini, G.; Barton, A. E.; Bartos, P.; Basalaev, A.; Basan, A.; Bassalat, A.; Basso, M. J.; Bates, R. L.; Batlamous, S.; Batley, J. R.; Batool, B.; Battaglia, M.; Bauce, M.; Bauer, F.; Bauer, K. T.; Bawa, H. S.; Beacham, J. B.; Beau, T.; Beauchemin, P. H.; Becherer, F.; Bechtle, P.; Beck, H. C.; Beck, H. P.; Becker, K.; Becot, C.; Beddall, A.; Beddall, A. J.; Bednyakov, V. A.; Bedognetti, M.; Bee, C. P.; Beermann, T. A.; Begalli, M.; Begel, M.; Behera, A.; Behr, J. K.; Beisiegel, F.; Belfkir, M.; Bell, A. S.; Bella, G.; Bellagamba, L.; Bellerive, A.; Bellos, P.; Beloborodov, K.; Belotskiy, K.; Belyaev, N. L.; Benchekroun, D.; Benekos, N.; Benhammou, Y.; Benjamin, D. P.; Benoit, M.; Bensinger, J. R.; Bentvelsen, S.; Beresford, L.; Beretta, M.; Berge, D.; Bergeaas Kuutmann, E.; Berger, N.; Bergmann, B.; Bergsten, L. J.; Beringer, J.; Berlendis, S.; Bernardi, G.; Bernius, C.; Bernlochner, F. U.; Berry, T.; Berta, P.; Bertella, C.; Berthold, A.; Bertram, I. A.; Bessidskaia Bylund, O.; Besson, N.; Bethani, A.; Bethke, S.; Betti, A.; Bevan, A. J.; Beyer, J.; Bhattacharya, D. S.; Bhattarai, P.; Bhopatkar, V. S.; Bi, R.; Bianchi, R. M.; Biebel, O.; Biedermann, D.; Bielski, R.; Bierwagen, K.; Biesuz, N. V.; Biglietti, M.; Billoud, T. R.; Bindi, M.; Bingul, A.; Bini, C.; Biondi, S.; Birch-Sykes, C. J.; Birman, M.; Bisanz, T.; Biswal, J. P.; Biswas, D.; Bitadze, A.; Bittrich, C.; Bjørke, K.; Blazek, T.; Bloch, I.; Blocker, C.; Blue, A.; Blumenschein, U.; Bobbink, G. J.; Bobrovnikov, V. S.; Bocchetta, S. S.; Bogavac, D.; Bogdanchikov, A. G.; Bohm, C.; Boisvert, V.; Bokan, P.; Bold, T.; Bolz, A. E.; Bomben, M.; Bona, M.; Bonilla, J. S.; Boonekamp, M.; Booth, C. D.; Borecka-Bielska, H. M.; Borgna, L. S.; Borisov, A.; Borissov, G.; Bortfeldt, J.; Bortoletto, D.; Boscherini, D.; Bosman, M.; Bossio Sola, J. D.; Bouaouda, K.; Boudreau, J.; Bouhova-Thacker, E. V.; Boumediene, D.; Boutle, S. K.; Boveia, A.; Boyd, J.; Boye, D.; Boyko, I. R.; Bozson, A. J.; Bracinik, J.; Brahimi, N.; Brandt, G.; Brandt, O.; Braren, F.; Brau, B.; Brau, J. E.; Breaden Madden, W. D.; Brendlinger, K.; Brenner, L.; Brenner, R.; Bressler, S.; Brickwedde, B.; Briglin, D. L.; Britton, D.; Britzger, D.; Brock, I.; Brock, R.; Brooijmans, G.; Brooks, W. K.; Brost, E.; Bruckman de Renstrom, P. A.; Brüers, B.; Bruncko, D.; Bruni, A.; Bruni, G.; Bruni, L. S.; Bruno, S.; Bruschi, M.; Bruscino, N.; Bryngemark, L.; Buanes, T.; Buat, Q.; Buchholz, P.; Buckley, A. G.; Budagov, I. A.; Bugge, M. K.; Bührer, F.; Bulekov, O.; Bullard, B. A.; Burch, T. J.; Burdin, S.; Burgard, C. D.; Burger, A. M.; Burghgrave, B.; Burr, J. T.; Burton, C. D.; Burzynski, J. C.; Büscher, V.; Buschmann, E.; Bussey, P. J.; Butler, J. M.; Buttar, C. M.; Butterworth, J. M.; Butti, P.; Buttinger, W.; Buxo Vazquez, C. J.; Buzatu, A.; Buzykaev, A. R.; Cabras, G.; Cabrera Urbán, S.; Caforio, D.; Cai, H.; Cairo, V. M.; Cakir, O.; Calace, N.; Calafiura, P.; Calderini, G.; Calfayan, P.; Callea, G.; Caloba, L. P.; Caltabiano, A.; Calvente Lopez, S.; Calvet, D.; Calvet, S.; Calvet, T. P.; Calvetti, M.; Camacho Toro, R.; Camarda, S.; Camarero Munoz, D.; Camarri, P.; Camerlingo, M. T.; Cameron, D.; Camincher, C.; Campana, S.; Campanelli, M.; Camplani, A.; Canale, V.; Canesse, A.; Cano Bret, M.; Cantero, J.; Cao, T.; Cao, Y.; Capeans Garrido, M. D.; Capua, M.; Cardarelli, R.; Cardillo, F.; Carducci, G.; Carli, I.; Carli, T.; Carlino, G.; Carlson, B. T.; Carlson, E. M.; Carminati, L.; Carney, R. M.; Caron, S.; Carquin, E.; Carrá, S.; Carratta, G.; Carter, J. W.; Carter, T. M.; Casado, M. P.; Casha, A. F.; Castillo, F. L.; Castillo Garcia, L.; Castillo Gimenez, V.; Castro, N. F.; Catinaccio, A.; Catmore, J. R.; Cattai, A.; Cavaliere, V.; Cavallaro, E.; Cavasinni, V.; Celebi, E.; Celli, F.; Cerny, K.; Cerqueira, A. S.; Cerri, A.; Cerrito, L.; Cerutti, F.; Cervelli, A.; Cetin, S. A.; Chadi, Z.; Chakraborty, D.; Chan, J.; Chan, W. S.; Chan, W. Y.; Chapman, J. D.; Chargeishvili, B.; Charlton, D. G.; Charman, T. P.; Chau, C. C.; Che, S.; Chekanov, S.; Chekulaev, S. V.; Chelkov, G. A.; Chen, B.; Chen, C.; Chen, C. H.; Chen, H.; Chen, J.; Chen, J.; Chen, J.; Chen, S.; Chen, S. J.; Chen, X.; Chen, Y.; Chen, Y. H.; Cheng, H. C.; Cheng, H. J.; Cheplakov, A.; Cheremushkina, E.; Cherkaoui El Moursli, R.; Cheu, E.; Cheung, K.; Chevalérias, T. J.; Chevalier, L.; Chiarella, V.; Chiarelli, G.; Chiodini, G.; Chisholm, A. S.; Chitan, A.; Chiu, I.; Chiu, Y. H.; Chizhov, M. V.; Choi, K.; Chomont, A. R.; Chouridou, S.; Chow, Y. S.; Christopher, L. D.; Chu, M. C.; Chu, X.; Chudoba, J.; Chwastowski, J. J.; Chytka, L.; Cieri, D.; Ciesla, K. M.; Cinca, D.; Cindro, V.; Cioară, I. A.; Ciocio, A.; Cirotto, F.; Citron, Z. H.; Citterio, M.; Ciubotaru, D. A.; Ciungu, B. M.; Clark, A.; Clark, M. R.; Clark, P. J.; Clawson, S. E.; Clement, C.; Coadou, Y.; Cobal, M.; Coccaro, A.; Cochran, J.; Coelho Lopes De Sa, R.; Cohen, H.; Coimbra, A. E.; Cole, B.; Colijn, A. P.; Collot, J.; Conde Muiño, P.; Connell, S. H.; Connelly, I. A.; Constantinescu, S.; Conventi, F.; Cooper-Sarkar, A. M.; Cormier, F.; Cormier, K. J.; Corpe, L. D.; Corradi, M.; Corrigan, E. E.; Corriveau, F.; Costa, M. J.; Costanza, F.; Costanzo, D.; Cowan, G.; Cowley, J. W.; Crane, J.; Cranmer, K.; Creager, R. A.; Crépé-Renaudin, S.; Crescioli, F.; Cristinziani, M.; Croft, V.; Crosetti, G.; Cueto, A.; Cuhadar Donszelmann, T.; Cui, H.; Cukierman, A. R.; Cunningham, W. R.; Czekierda, S.; Czodrowski, P.; Czurylo, M. M.; Da Cunha Sargedas De Sousa, M. J.; Da Fonseca Pinto, J. V.; Da Via, C.; Dabrowski, W.; Dachs, F.; Dado, T.; Dahbi, S.; Dai, T.; Dallapiccola, C.; Dam, M.; D'amen, G.; D'Amico, V.; Damp, J.; Dandoy, J. R.; Daneri, M. F.; Danninger, M.; Dao, V.; Darbo, G.; Dartsi, O.; Dattagupta, A.; Daubney, T.; D'Auria, S.; David, C.; Davidek, T.; Davis, D. R.; Dawson, I.; De, K.; De Asmundis, R.; De Beurs, M.; De Castro, S.; De Groot, N.; de Jong, P.; De la Torre, H.; De Maria, A.; De Pedis, D.; De Salvo, A.; De Sanctis, U.; De Santis, M.; De Santo, A.; De Vivie De Regie, J. B.; Debenedetti, C.; Dedovich, D. V.; Deiana, A. M.; Del Peso, J.; Delabat Diaz, Y.; Delgove, D.; Deliot, F.; Delitzsch, C. M.; Della Pietra, M.; Della Volpe, D.; Dell'Acqua, A.; Dell'Asta, L.; Delmastro, M.; Delporte, C.; Delsart, P. A.; DeMarco, D. A.; Demers, S.; Demichev, M.; Demontigny, G.; Denisov, S. P.; D'Eramo, L.; Derendarz, D.; Derkaoui, J. E.; Derue, F.; Dervan, P.; Desch, K.; Dette, K.; Deutsch, C.; Devesa, M. R.; Deviveiros, P. O.; Di Bello, F. A.; Di Ciaccio, A.; Di Ciaccio, L.; Di Clemente, W. K.; Di Donato, C.; Di Girolamo, A.; Di Gregorio, G.; Di Micco, B.; Di Nardo, R.; Di Petrillo, K. F.; Di Sipio, R.; Diaconu, C.; Dias, F. A.; Dias Do Vale, T.; Diaz, M. A.; Diaz Capriles, F. G.; Dickinson, J.; Diehl, E. B.; Dietrich, J.; Díez Cornell, S.; Dimitrievska, A.; Ding, W.; Dingfelder, J.; Dittmeier, S. J.; Dittus, F.; Djama, F.; Djobava, T.; Djuvsland, J. I.; Do Vale, M. A.; Dobre, M.; Dodsworth, D.; Doglioni, C.; Dolejsi, J.; Dolezal, Z.; Donadelli, M.; Dong, B.; Donini, J.; D'onofrio, A.; D'Onofrio, M.; Dopke, J.; Doria, A.; Dova, M. T.; Doyle, A. T.; Drechsler, E.; Dreyer, E.; Dreyer, T.; Drobac, A. S.; Du, D.; du Pree, T. A.; Duan, Y.; Dubinin, F.; Dubovsky, M.; Dubreuil, A.; Duchovni, E.; Duckeck, G.; Ducu, O. A.; Duda, D.; Dudarev, A.; Dudder, A. C.; Duffield, E. M.; D'uffizi, M.; Duflot, L.; Dührssen, M.; Dülsen, C.; Dumancic, M.; Dumitriu, A. E.; Duncan, A. K.; Dunford, M.; Duperrin, A.; Duran Yildiz, H.; Düren, M.; Durglishvili, A.; Duschinger, D.; Dutta, B.; Duvnjak, D.; Dyckes, G. I.; Dyndal, M.; Dysch, S.; Dziedzic, B. S.; Eggleston, M. G.; Eifert, T.; Eigen, G.; Einsweiler, K.; Ekelof, T.; El Jarrari, H.; Ellajosyula, V.; Ellert, M.; Ellinghaus, F.; Elliot, A. A.; Ellis, N.; Elmsheuser, J.; Elsing, M.; Emeliyanov, D.; Emerman, A.; Enari, Y.; Epland, M. B.; Erdmann, J.; Ereditato, A.; Erland, P. A.; Errenst, M.; Escalier, M.; Escobar, C.; Estrada Pastor, O.; Etzion, E.; Evans, H.; Evans, M. O.; Ezhilov, A.; Fabbri, F.; Fabbri, L.; Fabiani, V.; Facini, G.; Faisca Rodrigues Pereira, R. M.; Fakhrutdinov, R. M.; Falciano, S.; Falke, P. J.; Falke, S.; Faltova, J.; Fang, Y.; Fang, Y.; Fanourakis, G.; Fanti, M.; Faraj, M.; Farbin, A.; Farilla, A.; Farina, E. M.; Farooque, T.; Farrington, S. M.; Farthouat, P.; Fassi, F.; Fassnacht, P.; Fassouliotis, D.; Faucci Giannelli, M.; Fawcett, W. J.; Fayard, L.; Fedin, O. L.; Fedorko, W.; Fehr, A.; Feickert, M.; Feligioni, L.; Fell, A.; Feng, C.; Feng, M.; Fenton, M. J.; Fenyuk, A. B.; Ferguson, S. W.; Ferrando, J.; Ferrante, A.; Ferrari, A.; Ferrari, P.; Ferrari, R.; Ferreira de Lima, D. E.; Ferrer, A.; Ferrere, D.; Ferretti, C.; Fiedler, F.; Filipčič, A.; Filthaut, F.; Finelli, K. D.; Fiolhais, M. C.; Fiorini, L.; Fischer, F.; Fischer, J.; Fisher, W. C.; Fitschen, T.; Fleck, I.; Fleischmann, P.; Flick, T.; Flierl, B. M.; Flores, L.; Flores Castillo, L. R.; Follega, F. M.; Fomin, N.; Foo, J. H.; Forcolin, G. T.; Forland, B. C.; Formica, A.; Förster, F. A.; Forti, A. C.; Fortin, E.; Foti, M. G.; Fournier, D.; Fox, H.; Francavilla, P.; Francescato, S.; Franchini, M.; Franchino, S.; Francis, D.; Franco, L.; Franconi, L.; Franklin, M.; Frattari, G.; Fray, A. N.; Freeman, P. M.; Freund, B.; Freund, W. S.; Freundlich, E. M.; Frizzell, D. C.; Froidevaux, D.; Frost, J. A.; Fujimoto, M.; Fukunaga, C.; Fullana Torregrosa, E.; Fusayasu, T.; Fuster, J.; Gabrielli, A.; Gabrielli, A.; Gadatsch, S.; Gadow, P.; Gagliardi, G.; Gagnon, L. G.; Gallardo, G. E.; Gallas, E. J.; Gallop, B. J.; Galster, G.; Gamboa Goni, R.; Gan, K. K.; Ganguly, S.; Gao, J.; Gao, Y.; Gao, Y. S.; Garay Walls, F. M.; García, C.; García Navarro, J. E.; García Pascual, J. A.; Garcia-Argos, C.; Garcia-Sciveres, M.; Gardner, R. W.; Garelli, N.; Gargiulo, S.; Garner, C. A.; Garonne, V.; Gasiorowski, S. J.; Gaspar, P.; Gaudiello, A.; Gaudio, G.; Gavrilenko, I. L.; Gavrilyuk, A.; Gay, C.; Gaycken, G.; Gazis, E. N.; Geanta, A. A.; Gee, C. M.; Gee, C. N.; Geisen, J.; Geisen, M.; Gemme, C.; Genest, M. H.; Geng, C.; Gentile, S.; George, S.; Geralis, T.; Gerlach, L. O.; Gessinger-Befurt, P.; Gessner, G.; Ghasemi, S.; Ghasemi Bostanabad, M.; Ghneimat, M.; Ghosh, A.; Ghosh, A.; Giacobbe, B.; Giagu, S.; Giangiacomi, N.; Giannetti, P.; Giannini, A.; Giannini, G.; Gibson, S. M.; Gignac, M.; Gil, D. T.; Gillberg, D.; Gilles, G.; Gingrich, D. M.; Giordani, M. P.; Giraud, P. F.; Giugliarelli, G.; Giugni, D.; Giuli, F.; Gkaitatzis, S.; Gkialas, I.; Gkougkousis, E. L.; Gkountoumis, P.; Gladilin, L. K.; Glasman, C.; Glatzer, J.; Glaysher, P. C.; Glazov, A.; Gledhill, G. R.; Gnesi, I.; Goblirsch-Kolb, M.; Godin, D.; Goldfarb, S.; Golling, T.; Golubkov, D.; Gomes, A.; Goncalves Gama, R.; Gonçalo, R.; Gonella, G.; Gonella, L.; Gongadze, A.; Gonnella, F.; Gonski, J. L.; González de la Hoz, S.; Gonzalez Fernandez, S.; Gonzalez Renteria, C.; Gonzalez Suarez, R.; Gonzalez-Sevilla, S.; Gonzalvo Rodriguez, G. R.; Goossens, L.; Gorasia, N. A.; Gorbounov, P. A.; Gordon, H. A.; Gorini, B.; Gorini, E.; Gorišek, A.; Goshaw, A. T.; Gostkin, M. I.; Gottardo, C. A.; Gouighri, M.; Goussiou, A. G.; Govender, N.; Goy, C.; Grabowska-Bold, I.; Graham, E. C.; Gramling, J.; Gramstad, E.; Grancagnolo, S.; Grandi, M.; Gratchev, V.; Gravila, P. M.; Gravili, F. G.; Gray, C.; Gray, H. M.; Grefe, C.; Gregersen, K.; Gregor, I. M.; Grenier, P.; Grevtsov, K.; Grieco, C.; Grieser, N. A.; Grillo, A. A.; Grimm, K.; Grinstein, S.; Grivaz, J. F.; Groh, S.; Gross, E.; Grosse-Knetter, J.; Grout, Z. J.; Grud, C.; Grummer, A.; Grundy, J. C.; Guan, L.; Guan, W.; Gubbels, C.; Guenther, J.; Guerguichon, A.; Guerrero Rojas, J. G.; Guescini, F.; Guest, D.; Gugel, R.; Guillemin, T.; Guindon, S.; Gul, U.; Guo, J.; Guo, W.; Guo, Y.; Guo, Z.; Gupta, R.; Gurbuz, S.; Gustavino, G.; Guth, M.; Gutierrez, P.; Gutschow, C.; Guyot, C.; Gwenlan, C.; Gwilliam, C. B.; Haaland, E. S.; Haas, A.; Haber, C.; Hadavand, H. K.; Hadef, A.; Haleem, M.; Haley, J.; Hall, J. J.; Halladjian, G.; Hallewell, G. D.; Hamano, K.; Hamdaoui, H.; Hamer, M.; Hamity, G. N.; Han, K.; Han, L.; Han, S.; Han, Y. F.; Hanagaki, K.; Hance, M.; Handl, D. M.; Hank, M. D.; Hankache, R.; Hansen, E.; Hansen, J. B.; Hansen, J. D.; Hansen, M. C.; Hansen, P. H.; Hanson, E. C.; Hara, K.; Harenberg, T.; Harkusha, S.; Harrison, P. F.; Hartman, N. M.; Hartmann, N. M.; Hasegawa, Y.; Hasib, A.; Hassani, S.; Haug, S.; Hauser, R.; Havener, L. B.; Havranek, M.; Hawkes, C. M.; Hawkings, R. J.; Hayashida, S.; Hayden, D.; Hayes, C.; Hayes, R. L.; Hays, C. P.; Hays, J. M.; Hayward, H. S.; Haywood, S. J.; He, F.; Heath, M. P.; Hedberg, V.; Heer, S.; Heggelund, A. L.; Heidegger, C.; Heidegger, K. K.; Heidorn, W. D.; Heilman, J.; Heim, S.; Heim, T.; Heinemann, B.; Heinlein, J. G.; Heinrich, J. J.; Heinrich, L.; Hejbal, J.; Helary, L.; Held, A.; Hellesund, S.; Helling, C. M.; Hellman, S.; Helsens, C.; Henderson, R. C.; Heng, Y.; Henkelmann, L.; Henriques Correia, A. M.; Herde, H.; Hernández Jiménez, Y.; Herr, H.; Herrmann, M. G.; Herrmann, T.; Herten, G.; Hertenberger, R.; Hervas, L.; Herwig, T. C.; Hesketh, G. G.; Hessey, N. P.; Hibi, H.; Higashida, A.; Higashino, S.; Higón-Rodriguez, E.; Hildebrand, K.; Hill, J. C.; Hill, K. K.; Hiller, K. H.; Hillier, S. J.; Hils, M.; Hinchliffe, I.; Hinterkeuser, F.; Hirose, M.; Hirose, S.; Hirschbuehl, D.; Hiti, B.; Hladik, O.; Hlaluku, D. R.; Hobbs, J.; Hod, N.; Hodgkinson, M. C.; Hoecker, A.; Hohn, D.; Hohov, D.; Holm, T.; Holmes, T. R.; Holzbock, M.; Hommels, L. B.; Hong, T. M.; Honig, J. C.; Hönle, A.; Hooberman, B. H.; Hopkins, W. H.; Horii, Y.; Horn, P.; Horyn, L. A.; Hou, S.; Hoummada, A.; Howarth, J.; Hoya, J.; Hrabovsky, M.; Hrdinka, J.; Hrivnac, J.; Hrynevich, A.; Hryn'ova, T.; Hsu, P. J.; Hsu, S. C.; Hu, Q.; Hu, S.; Hu, Y. F.; Huang, D. P.; Huang, Y.; Huang, Y.; Hubacek, Z.; Hubaut, F.; Huebner, M.; Huegging, F.; Huffman, T. B.; Huhtinen, M.; Hulsken, R.; Hunter, R. F.; Huo, P.; Huseynov, N.; Huston, J.; Huth, J.; Hyneman, R.; Hyrych, S.; Iacobucci, G.; Iakovidis, G.; Ibragimov, I.; Iconomidou-Fayard, L.; Iengo, P.; Ignazzi, R.; Igonkina, O.; Iguchi, R.; Iizawa, T.; Ikegami, Y.; Ikeno, M.; Iliadis, D.; Ilic, N.; Iltzsche, F.; Imam, H.; Introzzi, G.; Iodice, M.; Iordanidou, K.; Ippolito, V.; Isacson, M. F.; Ishino, M.; Islam, W.; Issever, C.; Istin, S.; Ito, F.; Iturbe Ponce, J. M.; Iuppa, R.; Ivina, A.; Iwasaki, H.; Izen, J. M.; Izzo, V.; Jacka, P.; Jackson, P.; Jacobs, R. M.; Jaeger, B. P.; Jain, V.; Jäkel, G.; Jakobi, K. B.; Jakobs, K.; Jakoubek, T.; Jamieson, J.; Janas, K. W.; Jansky, R.; Janus, M.; Janus, P. A.; Jarlskog, G.; Jaspan, A. E.; Javadov, N.; Javůrek, T.; Javurkova, M.; Jeanneau, F.; Jeanty, L.; Jejelava, J.; Jenni, P.; Jeong, N.; Jézéquel, S.; Ji, H.; Jia, J.; Jiang, H.; Jiang, Y.; Jiang, Z.; Jiggins, S.; Jimenez Morales, F. A.; Jimenez Pena, J.; Jin, S.; Jinaru, A.; Jinnouchi, O.; Jivan, H.; Johansson, P.; Johns, K. A.; Johnson, C. A.; Jones, R. W.; Jones, S. D.; Jones, T. J.; Jongmanns, J.; Jovicevic, J.; Ju, X.; Junggeburth, J. J.; Juste Rozas, A.; Kaczmarska, A.; Kado, M.; Kagan, H.; Kagan, M.; Kahn, A.; Kahra, C.; Kaji, T.; Kajomovitz, E.; Kalderon, C. W.; Kaluza, A.; Kamenshchikov, A.; Kaneda, M.; Kang, N. J.; Kang, S.; Kano, Y.; Kanzaki, J.; Kaplan, L. S.; Kar, D.; Karava, K.; Kareem, M. J.; Karkanias, I.; Karpov, S. N.; Karpova, Z. M.; Kartvelishvili, V.; Karyukhin, A. N.; Kastanas, A.; Kato, C.; Katzy, J.; Kawade, K.; Kawagoe, K.; Kawaguchi, T.; Kawamoto, T.; Kawamura, G.; Kay, E. F.; Kazakos, S.; Kazanin, V. F.; Keeler, R.; Kehoe, R.; Keller, J. S.; Kellermann, E.; Kelsey, D.; Kempster, J. J.; Kendrick, J.; Kennedy, K. E.; Kepka, O.; Kersten, S.; Kerševan, B. P.; Ketabchi Haghighat, S.; Khader, M.; Khalil-Zada, F.; Khandoga, M.; Khanov, A.; Kharlamov, A. G.; Kharlamova, T.; Khoda, E. E.; Khodinov, A.; Khoo, T. J.; Khoriauli, G.; Khramov, E.; Khubua, J.; Kido, S.; Kiehn, M.; Kilby, C. R.; Kim, E.; Kim, Y. K.; Kimura, N.; King, B. T.; Kirchhoff, A.; Kirchmeier, D.; Kirk, J.; Kiryunin, A. E.; Kishimoto, T.; Kisliuk, D. P.; Kitali, V.; Kitsaki, C.; Kivernyk, O.; Klapdor-Kleingrothaus, T.; Klassen, M.; Klein, C.; Klein, M. H.; Klein, M.; Klein, U.; Kleinknecht, K.; Klimek, P.; Klimentov, A.; Klingl, T.; Klioutchnikova, T.; Klitzner, F. F.; Kluit, P.; Kluth, S.; Kneringer, E.; Knoops, E. B.; Knue, A.; Kobayashi, D.; Kobayashi, T.; Kobel, M.; Kocian, M.; Kodama, T.; Kodys, P.; Koeck, D. M.; Koenig, P. T.; Koffas, T.; Köhler, N. M.; Kolb, M.; Koletsou, I.; Komarek, T.; Kondo, T.; Köneke, K.; Kong, A. X.; König, A. C.; Kono, T.; Konstantinides, V.; Konstantinidis, N.; Konya, B.; Kopeliansky, R.; Koperny, S.; Korcyl, K.; Kordas, K.; Koren, G.; Korn, A.; Korolkov, I.; Korolkova, E. V.; Korotkova, N.; Kortner, O.; Kortner, S.; Kostyukhin, V. V.; Kotsokechagia, A.; Kotwal, A.; Koulouris, A.; Kourkoumeli-Charalampidi, A.; Kourkoumelis, C.; Kourlitis, E.; Kouskoura, V.; Kowalewski, R.; Kozanecki, W.; Kozhin, A. S.; Kramarenko, V. A.; Kramberger, G.; Krasnopevtsev, D.; Krasny, M. W.; Krasznahorkay, A.; Krauss, D.; Kremer, J. A.; Kretzschmar, J.; Krieger, P.; Krieter, F.; Krishnan, A.; Krizka, K.; Kroeninger, K.; Kroha, H.; Kroll, J.; Kroll, J.; Krowpman, K. S.; Kruchonak, U.; Krüger, H.; Krumnack, N.; Kruse, M. C.; Krzysiak, J. A.; Kuchinskaia, O.; Kuday, S.; Kuechler, D.; Kuechler, J. T.; Kuehn, S.; Kugel, A.; Kuhl, T.; Kukhtin, V.; Kulchitsky, Y.; Kuleshov, S.; Kulinich, Y. P.; Kuna, M.; Kunigo, T.; Kupco, A.; Kupfer, T.; Kuprash, O.; Kurashige, H.; Kurchaninov, L. L.; Kurochkin, Y. A.; Kurova, A.; Kurth, M. G.; Kuwertz, E. S.; Kuze, M.; Kvam, A. K.; Kvita, J.; Kwan, T.; La Ruffa, F.; Lacasta, C.; Lacava, F.; Lack, D. P.; Lacker, H.; Lacour, D.; Ladygin, E.; Lafaye, R.; Laforge, B.; Lagouri, T.; Lai, S.; Lakomiec, I. K.; Lambert, J. E.; Lammers, S.; Lampl, W.; Lampoudis, C.; Lançon, E.; Landgraf, U.; Landon, M. P.; Lanfermann, M. C.; Lang, V. S.; Lange, J. C.; Langenberg, R. J.; Lankford, A. J.; Lanni, F.; Lantzsch, K.; Lanza, A.; Lapertosa, A.; Laplace, S.; Laporte, J. F.; Lari, T.; Lasagni Manghi, F.; Lassnig, M.; Lau, T. S.; Laudrain, A.; Laurier, A.; Lavorgna, M.; Lawlor, S. D.; Lazzaroni, M.; Le, B.; Le Guirriec, E.; Lebedev, A.; LeBlanc, M.; LeCompte, T.; Ledroit-Guillon, F.; Lee, A. C.; Lee, C. A.; Lee, G. R.; Lee, L.; Lee, S. C.; Lee, S.; Lefebvre, B.; Lefebvre, H. P.; Lefebvre, M.; Leggett, C.; Lehmann, K.; Lehmann, N.; Lehmann Miotto, G.; Leight, W. A.; Leisos, A.; Leite, M. A.; Leitgeb, C. E.; Leitner, R.; Lellouch, D.; Leney, K. J.; Lenz, T.; Leone, S.; Leonidopoulos, C.; Leopold, A.; Leroy, C.; Les, R.; Lester, C. G.; Levchenko, M.; Levêque, J.; Levin, D.; Levinson, L. J.; Lewis, D. J.; Li, B.; Li, B.; Li, C. Q.; Li, F.; Li, H.; Li, H.; Li, J.; Li, K.; Li, L.; Li, M.; Li, Q.; Li, Q. Y.; Li, S.; Li, X.; Li, Y.; Li, Z.; Li, Z.; Li, Z.; Liang, Z.; Liberatore, M.; Liberti, B.; Liblong, A.; Lie, K.; Lim, S.; Lin, C. Y.; Lin, K.; Linck, R. A.; Lindley, R. E.; Lindon, J. H.; Linss, A.; Lionti, A. L.; Lipeles, E.; Lipniacka, A.; Liss, T. M.; Lister, A.; Little, J. D.; Liu, B.; Liu, B. L.; Liu, H. B.; Liu, J. B.; Liu, J. K.; Liu, K.; Liu, M.; Liu, P.; Liu, Y.; Liu, Y.; Liu, Y. L.; Liu, Y. W.; Livan, M.; Lleres, A.; Llorente Merino, J.; Lloyd, S. L.; Lo, C. Y.; Lobodzinska, E. M.; Loch, P.; Loffredo, S.; Lohse, T.; Lohwasser, K.; Lokajicek, M.; Long, J. D.; Long, R. E.; Longo, L.; Looper, K. A.; Lopez Paz, I.; Lopez Solis, A.; Lorenz, J.; Lorenzo Martinez, N.; Lory, A. M.; Lösel, P. J.; Lösle, A.; Lou, X.; Lou, X.; Lounis, A.; Love, J.; Love, P. A.; Lozano Bahilo, J. J.; Lu, M.; Lu, Y. J.; Lubatti, H. J.; Luci, C.; Lucio Alves, F. L.; Lucotte, A.; Luehring, F.; Luise, I.; Luminari, L.; Lund-Jensen, B.; Lutz, M. S.; Lynn, D.; Lyons, H.; Lysak, R.; Lytken, E.; Lyu, F.; Lyubushkin, V.; Lyubushkina, T.; Ma, H.; Ma, L. L.; Ma, Y.; Mac Donell, D. M.; Maccarrone, G.; Macchiolo, A.; Macdonald, C. M.; MacDonald, J. C.; Machado Miguens, J.; Madaffari, D.; Madar, R.; Mader, W. F.; Madugoda Ralalage Don, M.; Madysa, N.; Maeda, J.; Maeno, T.; Maerker, M.; Magerl, V.; Magini, N.; Magro, J.; Mahon, D. J.; Maidantchik, C.; Maier, T.; Maio, A.; Maj, K.; Majersky, O.; Majewski, S.; Makida, Y.; Makovec, N.; Malaescu, B.; Malecki, P.; Maleev, V. P.; Malek, F.; Mallik, U.; Malon, D.; Malone, C.; Maltezos, S.; Malyukov, S.; Mamuzic, J.; Mancini, G.; Mandić, I.; Manhaes de Andrade Filho, L.; Maniatis, I. M.; Manjarres Ramos, J.; Mankinen, K. H.; Mann, A.; Manousos, A.; Mansoulie, B.; Manthos, I.; Manzoni, S.; Marantis, A.; Marceca, G.; Marchese, L.; Marchiori, G.; Marcisovsky, M.; Marcoccia, L.; Marcon, C.; Marin Tobon, C. A.; Marjanovic, M.; Marshall, Z.; Martensson, M. U.; Marti-Garcia, S.; Martin, C. B.; Martin, T. A.; Martin, V. J.; Martin Dit Latour, B.; Martinelli, L.; Martinez, M.; Martinez Agullo, P.; Martinez Outschoorn, V. I.; Martin-Haugh, S.; Martoiu, V. S.; Martyniuk, A. C.; Marzin, A.; Maschek, S. R.; Masetti, L.; Mashimo, T.; Mashinistov, R.; Masik, J.; Maslennikov, A. L.; Massa, L.; Massarotti, P.; Mastrandrea, P.; Mastroberardino, A.; Masubuchi, T.; Matakias, D.; Matic, A.; Matsuzawa, N.; Mättig, P.; Maurer, J.; Maček, B.; Maximov, D. A.; Mazini, R.; Maznas, I.; Mazza, S. M.; Mc Gowan, J. P.; Mc Kee, S. P.; McCarthy, T. G.; McCormack, W. P.; McDonald, E. F.; Mcfayden, J. A.; Mchedlidze, G.; McKay, M. A.; McLean, K. D.; McMahon, S. J.; McNamara, P. C.; McNicol, C. J.; McPherson, R. A.; Mdhluli, J. E.; Meadows, Z. A.; Meehan, S.; Megy, T.; Mehlhase, S.; Mehta, A.; Meirose, B.; Melini, D.; Mellado Garcia, B. R.; Mellenthin, J. D.; Melo, M.; Meloni, F.; Melzer, A.; Mendes Gouveia, E. D.; Meng, L.; Meng, X. T.; Menke, S.; Meoni, E.; Mergelmeyer, S.; Merkt, S. A.; Merlassino, C.; Mermod, P.; Merola, L.; Meroni, C.; Merz, G.; Meshkov, O.; Meshreki, J. K.; Metcalfe, J.; Mete, A. S.; Meyer, C.; Meyer, J. P.; Michetti, M.; Middleton, R. P.; Mijović, L.; Mikenberg, G.; Mikestikova, M.; Mikuž, M.; Mildner, H.; Milesi, M.; Milic, A.; Milke, C. D.; Miller, D. W.; Milov, A.; Milstead, D. A.; Mina, R. A.; Minaenko, A. A.; Minashvili, I. A.; Mincer, A. I.; Mindur, B.; Mineev, M.; Minegishi, Y.; Mir, L. M.; Mironova, M.; Mirto, A.; Mistry, K. P.; Mitani, T.; Mitrevski, J.; Mitsou, V. A.; Mittal, M.; Miu, O.; Miucci, A.; Miyagawa, P. S.; Mizukami, A.; Mjörnmark, J. U.; Mkrtchyan, T.; Mlynarikova, M.; Moa, T.; Mobius, S.; Mochizuki, K.; Mogg, P.; Mohapatra, S.; Moles-Valls, R.; Mönig, K.; Monnier, E.; Montalbano, A.; Montejo Berlingen, J.; Montella, M.; Monticelli, F.; Monzani, S.; Morange, N.; Moreno, D.; Moreno Llácer, M.; Moreno Martinez, C.; Morettini, P.; Morgenstern, M.; Morgenstern, S.; Mori, D.; Morii, M.; Morinaga, M.; Morisbak, V.; Morley, A. K.; Mornacchi, G.; Morris, A. P.; Morvaj, L.; Moschovakos, P.; Moser, B.; Mosidze, M.; Moskalets, T.; Moss, H. J.; Moss, J.; Moyse, E. J.; Muanza, S.; Mueller, J.; Mueller, R. S.; Muenstermann, D.; Mullier, G. A.; Mungo, D. P.; Munoz Martinez, J. L.; Munoz Sanchez, F. J.; Murin, P.; Murray, W. J.; Murrone, A.; Muse, J. M.; Muškinja, M.; Mwewa, C.; Myagkov, A. G.; Myers, A. A.; Myers, J.; Myska, M.; Nachman, B. P.; Nackenhorst, O.; Nag, A. N.; Nagai, K.; Nagano, K.; Nagasaka, Y.; Nagle, J. L.; Nagy, E.; Nairz, A. M.; Nakahama, Y.; Nakamura, K.; Nakamura, T.; Nanjo, H.; Napolitano, F.; Naranjo Garcia, R. F.; Narayan, R.; Naryshkin, I.; Naumann, T.; Navarro, G.; Nechaeva, P. Y.; Nechansky, F.; Neep, T. J.; Negri, A.; Negrini, M.; Nellist, C.; Nelson, C.; Nelson, M. E.; Nemecek, S.; Nessi, M.; Neubauer, M. S.; Neuhaus, F.; Neumann, M.; Newhouse, R.; Newman, P. R.; Ng, C. W.; Ng, Y. S.; Ng, Y. W.; Ngair, B.; Nguyen, H. D.; Nguyen Manh, T.; Nibigira, E.; Nickerson, R. B.; Nicolaidou, R.; Nielsen, D. S.; Nielsen, J.; Niemeyer, M.; Nikiforou, N.; Nikolaenko, V.; Nikolic-Audit, I.; Nikolopoulos, K.; Nilsson, P.; Nindhito, H. R.; Ninomiya, Y.; Nisati, A.; Nishu, N.; Nisius, R.; Nitsche, I.; Nitta, T.; Nobe, T.; Noel, D. L.; Noguchi, Y.; Nomidis, I.; Nomura, M. A.; Nordberg, M.; Novak, J.; Novak, T.; Novgorodova, O.; Novotny, R.; Nozka, L.; Ntekas, K.; Nurse, E.; Oakham, F. G.; Oberlack, H.; Ocariz, J.; Ochi, A.; Ochoa, I.; Ochoa-Ricoux, J. P.; O'Connor, K.; Oda, S.; Odaka, S.; Oerdek, S.; Ogrodnik, A.; Oh, A.; Oh, S. H.; Ohm, C. C.; Oide, H.; Ojeda, M. L.; Okawa, H.; Okazaki, Y.; O'Keefe, M. W.; Okumura, Y.; Okuyama, T.; Olariu, A.; Oleiro Seabra, L. F.; Olivares Pino, S. A.; Oliveira Damazio, D.; Oliver, J. L.; Olsson, M. J.; Olszewski, A.; Olszowska, J.; O'Neil, D. C.; O'neill, A. P.; Onofre, A.; Onyisi, P. U.; Oppen, H.; Oreamuno Madriz, R. G.; Oreglia, M. J.; Orellana, G. E.; Orestano, D.; Orlando, N.; Orr, R. S.; O'Shea, V.; Ospanov, R.; Otero Y Garzon, G.; Otono, H.; Ott, P. S.; Ottino, G. J.; Ouchrif, M.; Ouellette, J.; Ould-Saada, F.; Ouraou, A.; Ouyang, Q.; Owen, M.; Owen, R. E.; Ozcan, V. E.; Ozturk, N.; Pacalt, J.; Pacey, H. A.; Pachal, K.; Pacheco Pages, A.; Padilla Aranda, C.; Pagan Griso, S.; Palacino, G.; Palazzo, S.; Palestini, S.; Palka, M.; Pallin, D.; Palni, P.; Pandini, C. E.; Panduro Vazquez, J. G.; Pani, P.; Panizzo, G.; Paolozzi, L.; Papadatos, C.; Papageorgiou, K.; Parajuli, S.; Paramonov, A.; Paraskevopoulos, C.; Paredes Hernandez, D.; Paredes Saenz, S. R.; Parida, B.; Park, T. H.; Parker, A. J.; Parker, M. A.; Parodi, F.; Parrish, E. W.; Parsons, J. A.; Parzefall, U.; Pascual Dominguez, L.; Pascuzzi, V. R.; Pasner, J. M.; Pasquali, F.; Pasqualucci, E.; Passaggio, S.; Pastore, F.; Pasuwan, P.; Pataraia, S.; Pater, J. R.; Pathak, A.; Patton, J.; Pauly, T.; Pearkes, J.; Pearson, B.; Pedersen, M.; Pedraza Diaz, L.; Pedro, R.; Peiffer, T.; Peleganchuk, S. V.; Penc, O.; Peng, H.; Peralva, B. S.; Perego, M. M.; Pereira Peixoto, A. P.; Pereira Sanchez, L.; Perepelitsa, D. V.; Perez Codina, E.; Peri, F.; Perini, L.; Pernegger, H.; Perrella, S.; Perrevoort, A.; Peters, K.; Peters, R. F.; Petersen, B. A.; Petersen, T. C.; Petit, E.; Petridis, A.; Petridou, C.; Petrucci, F.; Pettee, M.; Pettersson, N. E.; Petukhova, K.; Peyaud, A.; Pezoa, R.; Pezzotti, L.; Pham, T.; Phillips, F. H.; Phillips, P. W.; Phipps, M. W.; Piacquadio, G.; Pianori, E.; Picazio, A.; Pickles, R. H.; Piegaia, R.; Pietreanu, D.; Pilcher, J. E.; Pilkington, A. D.; Pinamonti, M.; Pinfold, J. L.; Pitman Donaldson, C.; Pitt, M.; Pizzimento, L.; Pleier, M. A.; Pleskot, V.; Plotnikova, E.; Podberezko, P.; Poettgen, R.; Poggi, R.; Poggioli, L.; Pogrebnyak, I.; Pohl, D.; Pokharel, I.; Polesello, G.; Poley, A.; Policicchio, A.; Polifka, R.; Polini, A.; Pollard, C. S.; Polychronakos, V.; Ponomarenko, D.; Pontecorvo, L.; Popa, S.; Popeneciu, G. A.; Portales, L.; Portillo Quintero, D. M.; Pospisil, S.; Potamianos, K.; Potrap, I. N.; Potter, C. J.; Potti, H.; Poulsen, T.; Poveda, J.; Powell, T. D.; Pownall, G.; Pozo Astigarraga, M. E.; Pralavorio, P.; Prell, S.; Price, D.; Primavera, M.; Proffitt, M. L.; Proklova, N.; Prokofiev, K.; Prokoshin, F.; Protopopescu, S.; Proudfoot, J.; Przybycien, M.; Pudzha, D.; Puri, A.; Puzo, P.; Pyatiizbyantseva, D.; Qian, J.; Qin, Y.; Quadt, A.; Queitsch-Maitland, M.; Qureshi, A.; Racko, M.; Ragusa, F.; Rahal, G.; Raine, J. A.; Rajagopalan, S.; Ramirez Morales, A.; Ran, K.; Rauch, D. M.; Rauscher, F.; Rave, S.; Ravina, B.; Ravinovich, I.; Rawling, J. H.; Raymond, M.; Read, A. L.; Readioff, N. P.; Reale, M.; Rebuzzi, D. M.; Redlinger, G.; Reeves, K.; Reichert, J.; Reikher, D.; Reiss, A.; Rej, A.; Rembser, C.; Renardi, A.; Renda, M.; Rendel, M. B.; Resconi, S.; Resseguie, E. D.; Rettie, S.; Reynolds, B.; Reynolds, E.; Rezanova, O. L.; Reznicek, P.; Ricci, E.; Richter, R.; Richter, S.; Richter-Was, E.; Ridel, M.; Rieck, P.; Rifki, O.; Rijssenbeek, M.; Rimoldi, A.; Rimoldi, M.; Rinaldi, L.; Rinn, T. T.; Ripellino, G.; Riu, I.; Rivadeneira, P.; Rivera Vergara, J. C.; Rizatdinova, F.; Rizvi, E.; Rizzi, C.; Robertson, S. H.; Robin, M.; Robinson, D.; Robles Gajardo, C. M.; Robles Manzano, M.; Robson, A.; Rocchi, A.; Rocco, E.; Roda, C.; Rodriguez Bosca, S.; Rodríguez Vera, A. M.; Roe, S.; Roggel, J.; Røhne, O.; Röhrig, R.; Rojas, R. A.; Roland, B.; Roland, C. P.; Roloff, J.; Romaniouk, A.; Romano, M.; Rompotis, N.; Ronzani, M.; Roos, L.; Rosati, S.; Rosin, G.; Rosser, B. J.; Rossi, E.; Rossi, E.; Rossi, E.; Rossi, L. P.; Rossini, L.; Rosten, R.; Rotaru, M.; Rottler, B.; Rousseau, D.; Rovelli, G.; Roy, A.; Roy, D.; Rozanov, A.; Rozen, Y.; Ruan, X.; Rühr, F.; Ruiz-Martinez, A.; Rummler, A.; Rurikova, Z.; Rusakovich, N. A.; Russell, H. L.; Rustige, L.; Rutherfoord, J. P.; Rüttinger, E. M.; Rybar, M.; Rybkin, G.; Rye, E. B.; Ryzhov, A.; Sabater Iglesias, J. A.; Sabatini, P.; Sacerdoti, S.; Sadrozinski, H. F.; Sadykov, R.; Safai Tehrani, F.; Safarzadeh Samani, B.; Safdari, M.; Saha, P.; Saha, S.; Sahinsoy, M.; Sahu, A.; Saimpert, M.; Saito, M.; Saito, T.; Sakamoto, H.; Salamani, D.; Salamanna, G.; Salnikov, A.; Salt, J.; Salvador Salas, A.; Salvatore, D.; Salvatore, F.; Salvucci, A.; Salzburger, A.; Samarati, J.; Sammel, D.; Sampsonidis, D.; Sampsonidou, D.; Sánchez, J.; Sanchez Pineda, A.; Sandaker, H.; Sander, C. O.; Sanderswood, I. G.; Sandhoff, M.; Sandoval, C.; Sankey, D. P.; Sannino, M.; Sano, Y.; Sansoni, A.; Santoni, C.; Santos, H.; Santpur, S. N.; Santra, A.; Sapronov, A.; Saraiva, J. G.; Sasaki, O.; Sato, K.; Sauerburger, F.; Sauvan, E.; Savard, P.; Sawada, R.; Sawyer, C.; Sawyer, L.; Sayago Galvan, I.; Sbarra, C.; Sbrizzi, A.; Scanlon, T.; Schaarschmidt, J.; Schacht, P.; Schaefer, D.; Schaefer, L.; Schaepe, S.; Schäfer, U.; Schaffer, A. C.; Schaile, D.; Schamberger, R. D.; Schanet, E.; Scharmberg, N.; Schegelsky, V. A.; Scheirich, D.; Schenck, F.; Schernau, M.; Schiavi, C.; Schildgen, L. K.; Schillaci, Z. M.; Schioppa, E. J.; Schioppa, M.; Schleicher, K. E.; Schlenker, S.; Schmidt-Sommerfeld, K. R.; Schmieden, K.; Schmitt, C.; Schmitt, S.; Schmoeckel, J. C.; Schoeffel, L.; Schoening, A.; Scholer, P. G.; Schopf, E.; Schott, M.; Schouwenberg, J. F.; Schovancova, J.; Schramm, S.; Schroeder, F.; Schulte, A.; Schultz-Coulon, H. C.; Schumacher, M.; Schumm, B. A.; Schune, P.; Schwartzman, A.; Schwarz, T. A.; Schwemling, P.; Schwienhorst, R.; Sciandra, A.; Sciolla, G.; Scodeggio, M.; Scornajenghi, M.; Scuri, F.; Scutti, F.; Scyboz, L. M.; Sebastiani, C. D.; Seema, P.; Seidel, S. C.; Seiden, A.; Seidlitz, B. D.; Seiss, T.; Seitz, C.; Seixas, J. M.; Sekhniaidze, G.; Sekula, S. J.; Semprini-Cesari, N.; Sen, S.; Serfon, C.; Serin, L.; Serkin, L.; Sessa, M.; Severini, H.; Sevova, S.; Sforza, F.; Sfyrla, A.; Shabalina, E.; Shahinian, J. D.; Shaikh, N. W.; Shaked Renous, D.; Shan, L. Y.; Shapiro, M.; Sharma, A.; Sharma, A. S.; Shatalov, P. B.; Shaw, K.; Shaw, S. M.; Shehade, M.; Shen, Y.; Sherman, A. D.; Sherwood, P.; Shi, L.; Shimizu, S.; Shimmin, C. O.; Shimogama, Y.; Shimojima, M.; Shipsey, I. P.; Shirabe, S.; Shiyakova, M.; Shlomi, J.; Shmeleva, A.; Shochet, M. J.; Shojaii, J.; Shope, D. R.; Shrestha, S.; Shrif, E. M.; Shulga, E.; Sicho, P.; Sickles, A. M.; Sideras Haddad, E.; Sidiropoulou, O.; Sidoti, A.; Siegert, F.; Sijacki, D.; Silva, M.; Silva Oliveira, M. V.; Silverstein, S. B.; Simion, S.; Simoniello, R.; Simpson-Allsop, C. J.; Simsek, S.; Sinervo, P.; Sinetckii, V.; Singh, S.; Sioli, M.; Siral, I.; Sivoklokov, S. Y.; Sjölin, J.; Skaf, A.; Skorda, E.; Skubic, P.; Slawinska, M.; Sliwa, K.; Slovak, R.; Smakhtin, V.; Smart, B. H.; Smiesko, J.; Smirnov, N.; Smirnov, S. Y.; Smirnov, Y.; Smirnova, L. N.; Smirnova, O.; Smith, H. A.; Smizanska, M.; Smolek, K.; Smykiewicz, A.; Snesarev, A. A.; Snoek, H. L.; Snyder, I. M.; Snyder, S.; Sobie, R.; Soffer, A.; Søgaard, A.; Sohns, F.; Solans Sanchez, C. A.; Soldatov, E. Y.; Soldevila, U.; Solodkov, A. A.; Soloshenko, A.; Solovyanov, O. V.; Solovyev, V.; Sommer, P.; Son, H.; Song, W.; Song, W. Y.; Sopczak, A.; Sopio, A. L.; Sopkova, F.; Sottocornola, S.; Soualah, R.; Soukharev, A. M.; South, D.; Spagnolo, S.; Spalla, M.; Spangenberg, M.; Spanò, F.; Sperlich, D.; Spieker, T. M.; Spigo, G.; Spina, M.; Spiteri, D. P.; Spousta, M.; Stabile, A.; Stamas, B. L.; Stamen, R.; Stamenkovic, M.; Stanecka, E.; Stanislaus, B.; Stanitzki, M. M.; Stankaityte, M.; Stapf, B.; Starchenko, E. A.; Stark, G. H.; Stark, J.; Staroba, P.; Starovoitov, P.; Stärz, S.; Staszewski, R.; Stavropoulos, G.; Stegler, M.; Steinberg, P.; Steinhebel, A. L.; Stelzer, B.; Stelzer, H. J.; Stelzer-Chilton, O.; Stenzel, H.; Stevenson, T. J.; Stewart, G. A.; Stockton, M. C.; Stoicea, G.; Stolarski, M.; Stonjek, S.; Straessner, A.; Strandberg, J.; Strandberg, S.; Strauss, M.; Strebler, T.; Strizenec, P.; Ströhmer, R.; Strom, D. M.; Stroynowski, R.; Strubig, A.; Stucci, S. A.; Stugu, B.; Stupak, J.; Styles, N. A.; Su, D.; Su, W.; Suchek, S.; Sulin, V. V.; Sullivan, M. J.; Sultan, D. M.; Sultansoy, S.; Sumida, T.; Sun, S.; Sun, X.; Suruliz, K.; Suster, C. J.; Sutton, M. R.; Suzuki, S.; Svatos, M.; Swiatlowski, M.; Swift, S. P.; Swirski, T.; Sydorenko, A.; Sykora, I.; Sykora, M.; Sykora, T.; Ta, D.; Tackmann, K.; Taenzer, J.; Taffard, A.; Tafirout, R.; Takai, H.; Takashima, R.; Takeda, K.; Takeshita, T.; Takeva, E. P.; Takubo, Y.; Talby, M.; Talyshev, A. A.; Tam, K. C.; Tamir, N. M.; Tanaka, J.; Tanaka, R.; Tapia Araya, S.; Tapprogge, S.; Tarek Abouelfadl Mohamed, A.; Tarem, S.; Tariq, K.; Tarna, G.; Tartarelli, G. F.; Tas, P.; Tasevsky, M.; Tashiro, T.; Tassi, E.; Tavares Delgado, A.; Tayalati, Y.; Taylor, A. J.; Taylor, G. N.; Taylor, W.; Teagle, H.; Tee, A. S.; Teixeira De Lima, R.; Teixeira-Dias, P.; Ten Kate, H.; Teoh, J. J.; Terada, S.; Terashi, K.; Terron, J.; Terzo, S.; Testa, M.; Teuscher, R. J.; Thais, S. J.; Themistokleous, N.; Theveneaux-Pelzer, T.; Thiele, F.; Thomas, D. W.; Thomas, J. O.; Thomas, J. P.; Thompson, E. A.; Thompson, P. D.; Thomson, E.; Thorpe, E. J.; Ticse Torres, R. E.; Tikhomirov, V. O.; Tikhonov, Y. A.; Timoshenko, S.; Tipton, P.; Tisserant, S.; Todome, K.; Todorova-Nova, S.; Todt, S.; Tojo, J.; Tokár, S.; Tokushuku, K.; Tolley, E.; Tombs, R.; Tomiwa, K. G.; Tomoto, M.; Tompkins, L.; Tornambe, P.; Torrence, E.; Torres, H.; Torró Pastor, E.; Tosciri, C.; Toth, J.; Tovey, D. R.; Traeet, A.; Treado, C. J.; Trefzger, T.; Tresoldi, F.; Tricoli, A.; Trigger, I. M.; Trincaz-Duvoid, S.; Trischuk, D. A.; Trischuk, W.; Trocmé, B.; Trofymov, A.; Troncon, C.; Trovato, F.; Truong, L.; Trzebinski, M.; Trzupek, A.; Tsai, F.; Tseng, J. C.; Tsiareshka, P. V.; Tsirigotis, A.; Tsiskaridze, V.; Tskhadadze, E. G.; Tsopoulou, M.; Tsukerman, I. I.; Tsulaia, V.; Tsuno, S.; Tsybychev, D.; Tu, Y.; Tudorache, A.; Tudorache, V.; Tulbure, T. T.; Tuna, A. N.; Turchikhin, S.; Turgeman, D.; Turk Cakir, I.; Turner, R. J.; Turra, R.; Tuts, P. M.; Tzamarias, S.; Tzovara, E.; Uchida, K.; Ukegawa, F.; Unal, G.; Unal, M.; Undrus, A.; Unel, G.; Ungaro, F. C.; Unno, Y.; Uno, K.; Urban, J.; Urquijo, P.; Usai, G.; Uysal, Z.; Vacek, V.; Vachon, B.; Vadla, K. O.; Vafeiadis, T.; Vaidya, A.; Valderanis, C.; Valdes Santurio, E.; Valente, M.; Valentinetti, S.; Valero, A.; Valéry, L.; Vallance, R. A.; Vallier, A.; Valls Ferrer, J. A.; Van Daalen, T. R.; Van Gemmeren, P.; Van Vulpen, I.; Vanadia, M.; Vandelli, W.; Vandenbroucke, M.; Vandewall, E. R.; Vaniachine, A.; Vannicola, D.; Vari, R.; Varnes, E. W.; Varni, C.; Varol, T.; Varouchas, D.; Varvell, K. E.; Vasile, M. E.; Vasquez, G. A.; Vazeille, F.; Vazquez Furelos, D.; Vazquez Schroeder, T.; Veatch, J.; Vecchio, V.; Veen, M. J.; Veloce, L. M.; Veloso, F.; Veneziano, S.; Ventura, A.; Venturi, N.; Verbytskyi, A.; Vercesi, V.; Verducci, M.; Vergel Infante, C. M.; Vergis, C.; Verkerke, W.; Vermeulen, A. T.; Vermeulen, J. C.; Vernieri, C.; Vetterli, M. C.; Viaux Maira, N.; Vickey, T.; Vickey Boeriu, O. E.; Viehhauser, G. H.; Vigani, L.; Villa, M.; Villaplana Perez, M.; Villhauer, E. M.; Vilucchi, E.; Vincter, M. G.; Virdee, G. S.; Vishwakarma, A.; Vittori, C.; Vivarelli, I.; Vogel, M.; Vokac, P.; von Buddenbrock, S. E.; Von Toerne, E.; Vorobel, V.; Vorobev, K.; Vos, M.; Vossebeld, J. H.; Vozak, M.; Vranjes, N.; Vranjes Milosavljevic, M.; Vrba, V.; Vreeswijk, M.; Vuillermet, R.; Vukotic, I.; Wada, S.; Wagner, P.; Wagner, W.; Wagner-Kuhr, J.; Wahdan, S.; Wahlberg, H.; Wakasa, R.; Walbrecht, V. M.; Walder, J.; Walker, R.; Walker, S. D.; Walkowiak, W.; Wallangen, V.; Wang, A. M.; Wang, A. Z.; Wang, C.; Wang, F.; Wang, H.; Wang, H.; Wang, J.; Wang, P.; Wang, Q.; Wang, R. J.; Wang, R.; Wang, R.; Wang, S. M.; Wang, W. T.; Wang, W.; Wang, W. X.; Wang, Y.; Wang, Z.; Wanotayaroj, C.; Warburton, A.; Ward, C. P.; Wardrope, D. R.; Warrack, N.; Watson, A. T.; Watson, M. F.; Watts, G.; Waugh, B. M.; Webb, A. F.; Weber, C.; Weber, M. S.; Weber, S. A.; Weber, S. M.; Weidberg, A. R.; Weingarten, J.; Weirich, M.; Weiser, C.; Wells, P. S.; Wenaus, T.; Wengler, T.; Wenig, S.; Wermes, N.; Wessels, M.; Weston, T. D.; Whalen, K.; Whallon, N. L.; Wharton, A. M.; White, A. S.; White, A.; White, M. J.; Whiteson, D.; Whitmore, B. W.; Wiedenmann, W.; Wiel, C.; Wielers, M.; Wieseotte, N.; Wiglesworth, C.; Wiik-Fuchs, L. A.; Wilkens, H. G.; Wilkins, L. J.; Williams, H. H.; Williams, S.; Willocq, S.; Windischhofer, P. J.; Wingerter-Seez, I.; Winkels, E.; Winklmeier, F.; Winter, B. T.; Wittgen, M.; Wobisch, M.; Wolf, A.; Wölker, R.; Wollrath, J.; Wolter, M. W.; Wolters, H.; Wong, V. W.; Woods, N. L.; Worm, S. D.; Wosiek, B. K.; Woźniak, K. W.; Wraight, K.; Wu, S. L.; Wu, X.; Wu, Y.; Wuerzinger, J.; Wyatt, T. R.; Wynne, B. M.; Xella, S.; Xia, L.; Xiang, J.; Xiao, X.; Xie, X.; Xiotidis, I.; Xu, D.; Xu, H.; Xu, H.; Xu, L.; Xu, T.; Xu, W.; Xu, Z.; Xu, Z.; Yabsley, B.; Yacoob, S.; Yajima, K.; Yallup, D. P.; Yamaguchi, N.; Yamaguchi, Y.; Yamamoto, A.; Yamatani, M.; Yamazaki, T.; Yamazaki, Y.; Yan, J.; Yan, Z.; Yang, H. J.; Yang, H. T.; Yang, S.; Yang, T.; Yang, X.; Yang, Y.; Yang, Z.; Yao, W. M.; Yap, Y. C.; Yasu, Y.; Yatsenko, E.; Ye, H.; Ye, J.; Ye, S.; Yeletskikh, I.; Yexley, M. R.; Yigitbasi, E.; Yin, P.; Yorita, K.; Yoshihara, K.; Young, C. J.; Young, C.; Yu, J.; Yuan, R.; Yue, X.; Zaazoua, M.; Zabinski, B.; Zacharis, G.; Zaffaroni, E.; Zahreddine, J.; Zaitsev, A. M.; Zakareishvili, T.; Zakharchuk, N.; Zambito, S.; Zanzi, D.; Zaripovas, D. R.; Zeißner, S. V.; Zeitnitz, C.; Zemaityte, G.; Zeng, J. C.; Zenin, O.; Ženiš, T.; Zerwas, D.; Zgubič, M.; Zhang, B.; Zhang, D. F.; Zhang, G.; Zhang, J.; Zhang, K.; Zhang, L.; Zhang, L.; Zhang, M.; Zhang, R.; Zhang, S.; Zhang, X.; Zhang, X.; Zhang, Y.; Zhang, Z.; Zhang, Z.; Zhao, P.; Zhao, Z.; Zhemchugov, A.; Zheng, Z.; Zhong, D.; Zhou, B.; Zhou, C.; Zhou, H.; Zhou, M. S.; Zhou, M.; Zhou, N.; Zhou, Y.; Zhu, C. G.; Zhu, C.; Zhu, H. L.; Zhu, H.; Zhu, J.; Zhu, Y.; Zhuang, X.; Zhukov, K.; Zhulanov, V.; Zieminska, D.; Zimine, N. I.; Zimmermann, S.; Zinonos, Z.; Ziolkowski, M.; Živković, L.; Zobernig, G.; Zoccoli, A.; Zoch, K.; Zorbas, T. G.; Zou, R.; Zwalinski, L. Search for Higgs Boson Decays into a Z Boson and a Light Hadronically Decaying Resonance Using 13 TeV pp Collision Data from the ATLAS Detector. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.125.221802.
121|shorty-download|Zhang, X.; Landis, R. F.; Keshri, P.; Cao-Milán, R.; Luther, D. C.; Gopalakrishnan, S.; Liu, Y.; Huang, R.; Li, G.; Malassiné, M.; Uddin, I.; Rondon, B.; Rotello, V. M. Intracellular Activation of Anticancer Therapeutics Using Polymeric Bioorthogonal Nanocatalysts. Advanced healthcare materials. 2020. https://doi.org/10.1002/adhm.202001627.
122|sucess-download|Martino, S.; Lazar, C.; Sellinger, J.; Gilstad-Hayden, K.; Fenton, B.; Barnett, P. G.; Brummett, B. R.; Higgins, D. M.; Holtzheimer, P.; Mattocks, K.; Ngo, T.; Reznik, T. E.; Semiatin, A. M.; Stapley, T.; Rosen, M. I. Screening, Brief Intervention, and Referral to Treatment for Pain Management for Veterans Seeking Service-Connection Payments for Musculoskeletal Disorders: SBIRT-PM Study Protocol. Pain medicine (Malden, Mass.). 2020. https://doi.org/10.1093/pm/pnaa334.
123|shorty-download|Bastian, L. A.; Cohen, S. P.; Katsovich, L.; Becker, W. C.; Brummett, B. R.; Burgess, D. J.; Crunkhorn, A. E.; Denneson, L. M.; Frank, J. W.; Goertz, C.; Ilfeld, B.; Kanzler, K. E.; Krishnaswamy, A.; LaChappelle, K.; Martino, S.; Mattocks, K.; McGeary, C. A.; Reznik, T. E.; Rhon, D. I.; Salsbury, S. A.; Seal, K. H.; Semiatin, A. M.; Shin, M. H.; Simon, C. B.; Teyhen, D. S.; Zamora, K.; Kerns, R. D. Stakeholder Engagement in Pragmatic Clinical Trials: Emphasizing Relationships to Improve Pain Management Delivery and Outcomes. Pain medicine (Malden, Mass.). 2020. https://doi.org/10.1093/pm/pnaa333.
124|sucess-download|Zhang, Z.; Wang, T.; Zhang, H.; Liu, Y.; Xing, B. Adsorption of Pb(II) and Cd(II) by magnetic activated carbon and its mechanism. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.143910.
125|sucess-download|Han, Y.; Bandowe, B. A.; Schneider, T.; Pongpiachan, S.; Ho, S. S.; Wei, C.; Wang, Q.; Xing, L.; Wilcke, W. A 150-year record of black carbon (soot and char) and polycyclic aromatic compounds deposition in Lake Phayao, north Thailand. Environmental pollution (Barking, Essex : 1987). 2020. https://doi.org/10.1016/j.envpol.2020.116148.
126|sucess-download|Hossain, M. B.; Bashar, S. K.; Lazaro, J.; Reljin, N.; Noh, Y.; Chon, K. H. A robust ECG denoising technique using variable frequency complex demodulation. Computer methods and programs in biomedicine. 2020. https://doi.org/10.1016/j.cmpb.2020.105856.
127|sucess-download|Richardson, D. L.; Duncan, M. J.; Jimenez, A.; Juris, P. M.; Clarke, N. D. Affective responses to supervised 10-week programs of resistance exercise in older adults. Journal of sport and health science. 2020. https://doi.org/10.1016/j.jshs.2019.01.006.
128|sucess-download|Fei, H. F.; Long, Y.; Yu, H. J.; Yavitt, B. M.; Fan, W.; Ribbe, A.; Watkins, J. J. Bimodal Mesoporous Carbon Spheres with Small and Ultra-Large Pores Fabricated Using Amphiphilic Brush Block Copolymer Micelle Templates. ACS applied materials & interfaces. 2020. https://doi.org/10.1021/acsami.0c16566.
129|failed-download|Peterson, D. A.; Hardy, N. B.; Morse, G. E.; Itioka, T.; Wei, J.; Normark, B. B. Nonadaptive host-use specificity in tropical armored scale insects. Ecology and evolution. 2020. https://doi.org/10.1002/ece3.6867.
130|sucess-download|Roberts, H. P.; King, D. I. Investigating the role of matrix habitat use in determining avian area-sensitivity. Ecology and evolution. 2020. https://doi.org/10.1002/ece3.6810.
131|shorty-download|Qi, W.; Clark, J. M.; Timme-Laragy, A. R.; Park, Y. Per- and Polyfluoroalkyl Substances and Obesity, Type 2 Diabetes and Non-alcoholic Fatty Liver Disease: A Review of Epidemiologic Findings. Toxicological and environmental chemistry. 2020. https://doi.org/10.1080/02772248.2020.1763997.
132|shorty-download|Morrow, M. A.; Pold, G.; DeAngelis, K. M. Draft Genome Sequence of a Terrestrial Planctomycete, Microbiology resource announcements. 2020. https://doi.org/10.1128/MRA.00956-20.
133|sucess-download|Salvatore, M.; Basu, D.; Ray, D.; Kleinsasser, M.; Purkayastha, S.; Bhattacharyya, R.; Mukherjee, B. Comprehensive public health evaluation of lockdown as a non-pharmaceutical intervention on COVID-19 spread in India: national trends masking state-level variations. BMJ open. 2020. https://doi.org/10.1136/bmjopen-2020-041778.
134|sucess-download|Billings, K. R.; Cort, D. A.; Rozario, T. D.; Siegel, D. P. HIV stigma beliefs in context: Country and regional variation in the effects of instrumental stigma beliefs on protective sexual behaviors in Latin America, the Caribbean, and Southern Africa. Social science & medicine (1982). 2020. https://doi.org/10.1016/j.socscimed.2020.113565.
135|sucess-download|Valdez, L. A.; Gubrium, A. C.; Markham, J.; Scott, L.; Hubert, A.; Meyer, J.; Buchanan, D. A culturally and gender responsive stress and chronic disease prevention intervention for low/no-income African American men: The MOCHA moving forward randomized control trial protocol. Contemporary clinical trials. 2020. https://doi.org/10.1016/j.cct.2020.106240.
136|sucess-download|Lutz, C. K.; Meyer, J. S.; Novak, M. A. Hair cortisol in captive corral-housed baboons. General and comparative endocrinology. 2020. https://doi.org/10.1016/j.ygcen.2020.113692.
137|sucess-download|Liu, X.; Gong, X.; Chen, J. Accelerating atomistic simulations of proteins using multiscale enhanced sampling with independent tempering. Journal of computational chemistry. 2020. https://doi.org/10.1002/jcc.26461.
138|sucess-download|Dong, W.; Zhu, Y.; Chang, H.; Wang, C.; Yang, J.; Shi, J.; Gao, J.; Yang, W.; Lan, L.; Wang, Y.; Zhang, X.; Dai, H.; Miao, Y.; Xu, L.; He, Z.; Song, C.; Wu, S.; Wang, D.; Yu, N.; Wang, E. An SHR-SCR module specifies legume cortical cell fate to enable nodulation. Nature. 2020. https://doi.org/10.1038/s41586-020-3016-z.
139|sucess-download|Bai, L.; Huan, S.; Zhu, Y.; Chu, G.; McClements, D. J.; Rojas, O. J. Recent Advances in Food Emulsions and Engineering Foodstuffs Using Plant-Based Nanocelluloses. Annual review of food science and technology. 2020. https://doi.org/10.1146/annurev-food-061920-123242.
140|sucess-download|Jandacka, D.; Uchytil, J.; Zahradnik, D.; Farana, R.; Vilimek, D.; Skypala, J.; Urbaczka, J.; Plesek, J.; Motyka, A.; Blaschova, D.; Beinhauerova, G.; Rygelova, M.; Brtva, P.; Balazova, K.; Horka, V.; Malus, J.; Silvernail, J. F.; Irwin, G.; Nieminen, M. T.; Casula, V.; Juras, V.; Golian, M.; Elavsky, S.; Knapova, L.; Sram, R.; Hamill, J. Running and Physical Activity in an Air-Polluted Environment: The Biomechanical and Musculoskeletal Protocol for a Prospective Cohort Study 4HAIE (Healthy Aging in Industrial Environment-Program 4). International journal of environmental research and public health. 2020. https://doi.org/10.3390/ijerph17239142.
141|sucess-download|O'Doherty, M.; Mulholland, E. J.; Chambers, P.; Pentlavalli, S.; Ziminska, M.; Chalanqui, M. J.; Pauly, H. M.; Sathy, B. N.; Donahue, T. H.; Kelly, D. J.; Dunne, N.; McCarthy, H. O. Improving the Intercellular Uptake and Osteogenic Potency of Calcium Phosphate via Nanocomplexation with the RALA Peptide. Nanomaterials (Basel, Switzerland). 2020. https://doi.org/10.3390/nano10122442.
142|shorty-download|Fuller, L. H.; Donahue, S. W. Material properties of bighorn sheep (Ovis canadensis) horncore bone with implications for energy absorption during impacts. Journal of the mechanical behavior of biomedical materials. 2020. https://doi.org/10.1016/j.jmbbm.2020.104224.
143|sucess-download|Rohela, P.; Bhan, A.; Ravindranath, D.; Bose, D. L.; Pathare, S. Must there be a "war" against coronavirus? Indian journal of medical ethics. 2020. https://doi.org/10.20529/IJME.2020.070.
144|sucess-download|Zhao, Z.; Li, Y.; Zhang, Y.; Lovley, D. R. Sparking Anaerobic Digestion: Promoting Direct Interspecies Electron Transfer to Enhance Methane Production. iScience. 2020. https://doi.org/10.1016/j.isci.2020.101794.
145|failed-download|Gilbert, M. C.; Akama, A.; Fernandes, C. C.; Albertson, R. C. Rapid morphological change in multiple cichlid ecotypes following the damming of a major clearwater river in Brazil. Evolutionary applications. 2020. https://doi.org/10.1111/eva.13080.
146|sucess-download|Majumder, S.; Crabtree, J. S.; Golde, T. E.; Minter, L. M.; Osborne, B. A.; Miele, L. Targeting Notch in oncology: the path forward. Nature reviews. Drug discovery. 2020. https://doi.org/10.1038/s41573-020-00091-3.
147|sucess-download|Nunn, A. V.; Guy, G. W.; Brysch, W.; Botchway, S. W.; Frasch, W.; Calabrese, E. J.; Bell, J. D. SARS-CoV-2 and mitochondrial health: implications of lifestyle and ageing. Immunity & ageing : I & A. 2020. https://doi.org/10.1186/s12979-020-00204-x.
148|shorty-download|Kirshtein, A.; Akbarinejad, S.; Hao, W.; Le, T.; Su, S.; Aronow, R. A.; Shahriyari, L. Data Driven Mathematical Model of Colon Cancer Progression. Journal of clinical medicine. 2020. https://doi.org/10.3390/jcm9123947.
149|sucess-download|Calabrese, E. J. Ethical failings: The problematic history of cancer risk assessment. Environmental research. 2020. https://doi.org/10.1016/j.envres.2020.110582.
150|sucess-download|Donelan, C. J.; Hayes, E.; Potee, R. A.; Schwartz, L.; Evans, E. A. COVID-19 and treating incarcerated populations for opioid use disorder. Journal of substance abuse treatment. 2020. https://doi.org/10.1016/j.jsat.2020.108216.
151|sucess-download|Suther, C.; Moore, M. D.; Beigelman, A.; Zhou, Y. The Gut Microbiome and the Big Eight. Nutrients. 2020. https://doi.org/10.3390/nu12123728.
152|sucess-download|Sayess, R.; Eyring, A. M.; Reckhow, D. A. Source and drinking water organic and total iodine and correlation with water quality parameters. Water research. 2020. https://doi.org/10.1016/j.watres.2020.116686.
153|sucess-download|Zhang, Z.; Sheri, M.; Page, Z. A.; Emrick, T.; Saeki, A.; Liu, Y.; Russell, T. P. Understanding Hole Extraction of Inverted Perovskite Solar Cells. ACS applied materials & interfaces. 2020. https://doi.org/10.1021/acsami.0c18108.
154|shorty-download|Pollin, R. Green Recovery: Europe and the World. Inter economics. 2020. https://doi.org/10.1007/s10272-020-0933-x.
155|sucess-download|Szkudlarek, E.; Park, J.; Brannon, E. M. Failure to replicate the benefit of approximate arithmetic training for symbolic arithmetic fluency in adults. Cognition. 2020. https://doi.org/10.1016/j.cognition.2020.104521.
156|sucess-download|Schneider, T.; Musa Bandowe, B. A.; Bigalke, M.; Mestrot, A.; Hampel, H.; Mosquera, P. V.; Fränkl, L.; Wienhues, G.; Vogel, H.; Tylmann, W.; Grosjean, M. 250-year records of mercury and trace element deposition in two lakes from Cajas National Park, SW Ecuadorian Andes. Environmental science and pollution research international. 2020. https://doi.org/10.1007/s11356-020-11437-0.
157|sucess-download|Seo, J.; Pace-Schott, E. F.; Milad, M. R.; Song, H.; Germain, A. Partial and Total Sleep Deprivation Interferes With Neural Correlates of Consolidation of Fear Extinction Memory. Biological psychiatry. Cognitive neuroscience and neuroimaging. 2020. https://doi.org/10.1016/j.bpsc.2020.09.013.
158|sucess-download|Polanco-Martínez, J. M.; Fernández-Macho, J.; Medina-Elizalde, M. Dynamic wavelet correlation analysis for multivariate climate time series. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-77767-8.
159|sucess-download|Tang, Q.; Tsytsarev, V.; Yan, F.; Wang, C.; Erzurumlu, R. S.; Chen, Y. Neurophotonics. 2020. https://doi.org/10.1117/1.NPh.7.4.041402.
160|sucess-download|Anderson, J. G.; Bartmess, M.; Hundt, E.; Jacelon, C. "A Little Bit of Their Souls": Investigating the Concept of Dignity for People Living With Dementia Using Caregivers' Blogs. Journal of family nursing. 2020. https://doi.org/10.1177/1074840720975216.
161|sucess-download|Pimentel, H. C.; Macêdo-Lima, M.; Viola, G. G.; Melleu, F. F.; Dos Santos, T. S.; Franco, H. S.; da Silva, R. D.; Lino-de-Oliveira, C.; Marino-Neto, J.; Dos Santos, J. R.; Marchioro, M. Telencephalic distributions of doublecortin and glial fibrillary acidic protein suggest novel migratory pathways in adult lizards. Journal of chemical neuroanatomy. 2020. https://doi.org/10.1016/j.jchemneu.2020.101901.
162|sucess-download|Park, H.; Patel, A.; Hunt, K. A.; Henson, M. A.; Carlson, R. P. Artificial consortium demonstrates emergent properties of enhanced cellulosic-sugar degradation and biofuel synthesis. NPJ biofilms and microbiomes. 2020. https://doi.org/10.1038/s41522-020-00170-8.
163|sucess-download|Alyammahi, S. K.; Abdin, S. M.; Alhamad, D. W.; Elgendy, S. M.; Altell, A. T.; Omar, H. A. The dynamic association between COVID-19 and chronic disorders: An updated insight into prevalence, mechanisms and therapeutic modalities. Infection, genetics and evolution : journal of molecular epidemiology and evolutionary genetics in infectious diseases. 2020. https://doi.org/10.1016/j.meegid.2020.104647.
164|sucess-download|Helfer, K. S.; van Emmerik, R.; Banks, J. J.; Freyman, R. L. Early aging and postural control while listening and responding. The Journal of the Acoustical Society of America. 2020. https://doi.org/10.1121/10.0002485.
165|sucess-download|Joseph, P. V.; Nolden, A.; Kober, K. M.; Paul, S. M.; Cooper, B. A.; Conley, Y. P.; Hammer, M. J.; Wright, F.; Levine, J. D.; Miaskowski, C. Fatigue, Stress, and Functional Status are Associated With Taste Changes in Oncology Patients Receiving Chemotherapy. Journal of pain and symptom management. 2020. https://doi.org/10.1016/j.jpainsymman.2020.11.029.
166|sucess-download|Feng, Y.; Li, D.; Sun, H.; Xue, L.; Zhou, B.; Yang, L.; Liu, J.; Xing, B. Wood vinegar and biochar co-application mitigates nitrous oxide and methane emissions from rice paddy soil: A two-year experiment. Environmental pollution (Barking, Essex : 1987). 2020. https://doi.org/10.1016/j.envpol.2020.115403.
167|shorty-download|Palacios, C.; Pérez, C. M.; González-Sepúlveda, L.; Corsino, L.; Albrecht, S. S.; Siega-Riz, A. M.; Durazo-Arvizu, R. A.; Casagrande, S.; Sotres-Alvarez, D.; Avilés-Santa, M. L. Vitamin D, Calcium, Magnesium, and Potassium Consumption and Markers of Glucose Metabolism in the Hispanic Community Health Study/Study of Latinos. Journal of the American Nutrition Association. 2020. https://doi.org/10.1080/07315724.2020.1833790.
168|sucess-download|McClements, D. J. Nanotechnology Approaches for Improving the Healthiness and Sustainability of the Modern Food Supply. ACS omega. 2020. https://doi.org/10.1021/acsomega.0c04050.
169|sucess-download|Wang, B.; Fu, H.; Han, L.; Xie, H.; Xue, L.; Feng, Y.; Xing, B. Physicochemical properties of aged hydrochar in a rice-wheat rotation system: A 16-month observation. Environmental pollution (Barking, Essex : 1987). 2020. https://doi.org/10.1016/j.envpol.2020.116037.
170|sucess-download|Westafer, L. M.; Shieh, M. S.; Pekow, P. S.; Stefan, M. S.; Lindenauer, P. K. Outpatient Management of Patients Following Diagnosis of Acute Pulmonary Embolism. Academic emergency medicine : official journal of the Society for Academic Emergency Medicine. 2020. https://doi.org/10.1111/acem.14181.
171|sucess-download|Zhang, Y.; Zhou, L.; Zhou, Y.; Zhang, L.; Yao, X.; Shi, K.; Jeppesen, E.; Yu, Q.; Zhu, W. Chromophoric dissolved organic matter in inland waters: Present knowledge and future challenges. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.143550.
172|sucess-download|Chu, Q.; Xue, L.; Wang, B.; Li, D.; He, H.; Feng, Y.; Han, L.; Yang, L.; Xing, B. Insights into the molecular transformation in the dissolved organic compounds of agro-waste-hydrochars by microbial-aging using electrospray ionization Fourier transform ion cyclotron resonance mass spectrometry. Bioresource technology. 2020. https://doi.org/10.1016/j.biortech.2020.124411.
173|shorty-download|Hsiao, W. H.; Paterno, M. T.; Iradukunda, F.; Hawkins', M. The Preliminary Efficacy of a Sleep Self-management Intervention Using a Personalized Health Monitoring Device during Pregnancy. Behavioral sleep medicine. 2020. https://doi.org/10.1080/15402002.2020.1851230.
174|sucess-download|Akalu, A. Y.; Meng, X.; Reaman, G. H.; Ma, L.; Yuan, W.; Ye, J. A review of the experience with pediatric written requests issued for oncology drug products. Pediatric blood & cancer. 2020. https://doi.org/10.1002/pbc.28828.
175|sucess-download|Yurtseven, I.; Randhir, T. O. Multivariate assessment of spatial and temporal variations in irrigation water quality in Lake Uluabat watershed of Turkey. Environmental monitoring and assessment. 2020. https://doi.org/10.1007/s10661-020-08723-2.
176|sucess-download|Calabrese, E. J.; Calabrese, V.; Giordano, J. Putative hormetic mechanisms and effects of atypical antipsychotic agents: Implications for study design and clinical psychopharmacotherapeutics. Chemico-biological interactions. 2020. https://doi.org/10.1016/j.cbi.2020.109327.
177|sucess-download|Evans, E. A.; Goldwater, E.; Stanek, E. J.; Brierley-Bowers, P.; Buchanan, D.; Whitehill, J. M. Prevalence and Correlates of Cannabis Use in Massachusetts after Cannabis Legalization and before Retail Sales. Journal of psychoactive drugs. 2020. https://doi.org/10.1080/02791072.2020.1850945.
178|sucess-download|Li, J.; Li, Q.; Steinberg, C. E.; Zhao, Q.; Pan, B.; Pignatello, J. J.; Xing, B. Reaction of Substituted Phenols with Lignin Char: Dual Oxidative and Reductive Pathways Depending on Substituents and Conditions. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c04991.
179|sucess-download|Qu, Y.; Wang, M.; Huang, S.; Decker, E. A.; McClements, D. J.; He, L. Headspace Characterization and Quantification of Aromatic Organosulfur Compounds in Garlic Extracts Using Surface-Enhanced Raman Scattering with a Mirror-in-a-Cap Substrate. Journal of AOAC International. 2020. https://doi.org/10.1093/jaoacint/qsaa021.
180|sucess-download|Chai, Y.; Hasnain, J.; Bahl, K.; Wong, M.; Li, D.; Geissler, P.; Kim, P. Y.; Jiang, Y.; Gu, P.; Li, S.; Lei, D.; Helms, B. A.; Russell, T. P.; Ashby, P. D. Direct observation of nanoparticle-surfactant assembly and jamming at the water-oil interface. Science advances. 2020. https://doi.org/10.1126/sciadv.abb8675.
181|shorty-download|Bittman, E. L. Entrainment Is NOT Synchronization: An Important Distinction and Its Implications. Journal of biological rhythms. 2020. https://doi.org/10.1177/0748730420972817.
182|sucess-download|Rivera, S. L.; Espaillat, A.; Aditham, A. K.; Shieh, P.; Muriel-Mundo, C.; Kim, J.; Cava, F.; Siegrist, M. S. Chemically Induced Cell Wall Stapling in Bacteria. Cell chemical biology. 2020. https://doi.org/10.1016/j.chembiol.2020.11.006.
183|sucess-download|St Vil, N. M.; Leblanc, N. M.; Giles, K. N. The Who and Why of Consensual Nonmonogamy Among African Americans. Archives of sexual behavior. 2020. https://doi.org/10.1007/s10508-020-01835-3.
184|sucess-download|Tellis, R.; Starobinets, O.; Prokle, M.; Raghavan, U. N.; Hall, C.; Chugh, T.; Koker, E.; Chaduvula, S. C.; Wald, C.; Flacke, S. Identifying Areas for Operational Improvement and Growth in IR Workflow Using Workflow Modeling, Simulation, and Optimization Techniques. Journal of digital imaging. 2020. https://doi.org/10.1007/s10278-020-00397-z.
185|sucess-download|Gaines, A. N.; Goldfried, M. R.; Constantino, M. J. Revived call for consensus in the future of psychotherapy. Evidence-based mental health. 2020. https://doi.org/10.1136/ebmental-2020-300208.
186|sucess-download|Savitz, J.; Ford, B. N.; Yeh, H. W.; Akeman, E.; Cosgrove, K.; Clausen, A. N.; Martell, C.; Kirlic, N.; Santiago, J.; Teague, T. K.; Irwin, M. R.; Paulus, M. P.; Aupperle, R. L. Behavioral activation therapy for depression is associated with a reduction in the concentration of circulating quinolinic acid. Psychological medicine. 2020. https://doi.org/10.1017/S0033291720004389.
187|sucess-download|Gervasi, M. G.; Soler, A. J.; González-Fernández, L.; Alves, M. G.; Oliveira, P. F.; Martín-Hidalgo, D. Extracellular Vesicles, the Road toward the Improvement of ART Outcomes. Animals : an open access journal from MDPI. 2020. https://doi.org/10.3390/ani10112171.
188|sucess-download|Tan, Y.; Zhang, Z.; Muriel Mundo, J.; McClements, D. J. Factors impacting lipid digestion and nutraceutical bioaccessibility assessed by standardized gastrointestinal model (INFOGEST): Emulsifier type. Food research international (Ottawa, Ont.). 2020. https://doi.org/10.1016/j.foodres.2020.109739.
189|sucess-download|Azizi-Lalabadi, M.; Alizadeh-Sani, M.; Divband, B.; Ehsani, A.; McClements, D. J. Nanocomposite films consisting of functional nanoparticles (TiO Food research international (Ottawa, Ont.). 2020. https://doi.org/10.1016/j.foodres.2020.109716.
190|shorty-download|Ozel, B.; Zhang, Z.; He, L.; McClements, D. J. Digestion of animal- and plant-based proteins encapsulated in κ-carrageenan/protein beads under simulated gastrointestinal conditions. Food research international (Ottawa, Ont.). 2020. https://doi.org/10.1016/j.foodres.2020.109662.
191|shorty-download|Muriel Mundo, J. L.; Zhou, H.; Tan, Y.; Liu, J.; McClements, D. J. Stabilization of soybean oil-in-water emulsions using polypeptide multilayers: Cationic polylysine and anionic polyglutamic acid. Food research international (Ottawa, Ont.). 2020. https://doi.org/10.1016/j.foodres.2020.109304.
192|sucess-download|Conith, A. J.; Hope, S. A.; Chhouk, B. H.; Craig Albertson, R. Weak genetic signal for phenotypic integration implicates developmental processes as major regulators of trait covariation. Molecular ecology. 2020. https://doi.org/10.1111/mec.15748.
193|sucess-download|Nansel, T. R.; Lipsky, L. M.; Faith, M.; Liu, A.; Siega-Riz, A. M. The accelerator, the brake, and the terrain: associations of reward-related eating, self-regulation, and the home food environment with diet quality during pregnancy and postpartum in the pregnancy eating attributes study (PEAS) cohort. The international journal of behavioral nutrition and physical activity. 2020. https://doi.org/10.1186/s12966-020-01047-x.
194|shorty-download|Constantino, M. J.; Coyne, A. E.; Goodwin, B. J.; Vîslă, A.; Flückiger, C.; Muir, H. J.; Gaines, A. N. Indirect effect of patient outcome expectation on improvement through alliance quality: A meta-analysis. Psychotherapy research : journal of the Society for Psychotherapy Research. 2020. https://doi.org/10.1080/10503307.2020.1851058.
195|sucess-download|Lin, D.; Liu, T.; Yuan, Q.; Yang, H.; Ma, H.; Shi, S.; Wang, D.; Russell, T. P. Stabilizing Aqueous Three-Dimensional Printed Constructs Using Chitosan-Cellulose Nanocrystal Assemblies. ACS applied materials & interfaces. 2020. https://doi.org/10.1021/acsami.0c16602.
196|sucess-download|Molander, O.; Volberg, R.; Månsson, V.; Sundqvist, K.; Wennberg, P.; Berman, A. H. Development of the Gambling Disorder Identification Test: Results from an international Delphi and consensus process. International journal of methods in psychiatric research. 2020. https://doi.org/10.1002/mpr.1865.
197|sucess-download|Mijailovic, A. S.; Galarza, S.; Raayai-Ardakani, S.; Birch, N. P.; Schiffman, J. D.; Crosby, A. J.; Cohen, T.; Peyton, S. R.; Van Vliet, K. J. Localized characterization of brain tissue mechanical properties by needle induced cavitation rheology and volume controlled cavity expansion. Journal of the mechanical behavior of biomedical materials. 2020. https://doi.org/10.1016/j.jmbbm.2020.104168.
198|sucess-download|Azad, A. M.; Frantzen, S.; Bank, M. S.; Madsen, L.; Maage, A. Mercury bioaccumulation pathways in tusk (Brosme brosme) from Sognefjord, Norway: Insights from C and N isotopes. Environmental pollution (Barking, Essex : 1987). 2020. https://doi.org/10.1016/j.envpol.2020.115997.
199|shorty-download|Otten, R.; Pádua, R. A.; Bunzel, H. A.; Nguyen, V.; Pitsawong, W.; Patterson, M.; Sui, S.; Perry, S. L.; Cohen, A. E.; Hilvert, D.; Kern, D. How directed evolution reshapes the energy landscape in an enzyme to boost catalysis. Science (New York, N.Y.). 2020. https://doi.org/10.1126/science.abd3623.
200|sucess-download|Wu, J.; Zheng, H.; Hou, J.; Miao, L.; Zhang, F.; Zeng, R. J.; Xing, B. In situ prepared algae-supported iron sulfide to remove hexavalent chromium. Environmental pollution (Barking, Essex : 1987). 2020. https://doi.org/10.1016/j.envpol.2020.115831.
201|sucess-download|Li, D.; Zhang, X.; Zhang, S.; Wang, D.; Wang, Z.; Liu, Y.; Yu, X.; Zhao, Q.; Xing, B. A flexible and salt-rejecting electrospun film-based solar evaporator for economic, stable and efficient solar desalination and wastewater treatment. Chemosphere. 2020. https://doi.org/10.1016/j.chemosphere.2020.128916.
202|sucess-download|Straight, C. R.; Toth, M. J.; Miller, M. S. Current perspectives on obesity and skeletal muscle contractile function in older adults. Journal of applied physiology (Bethesda, Md. : 1985). 2020. https://doi.org/10.1152/japplphysiol.00739.2020.
203|sucess-download|Matthews, A.; Hall, M.; Parra, J. M.; Hayes, M. M.; Beltran, C. P.; Ranchoff, B. L.; Sullivan, A. M.; William, J. H. Receiving Real-Time Clinical Feedback: A Workshop and OSTE Assessment for Medical Students. Advances in medical education and practice. 2020. https://doi.org/10.2147/AMEP.S271623.
204|shorty-download|Jiang, Z.; He, H.; Liu, H.; Thayumanavan, S. Azide-Terminated RAFT Polymers for Biological Applications. Current protocols in chemical biology. 2020. https://doi.org/10.1002/cpch.85.
205|sucess-download|Zheng, S.; Liu, F.; Wang, B.; Zhang, Y.; Lovley, D. R. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c05525.
206|sucess-download|Le, S. M.; Copeland, L. A.; Zeber, J. E.; Benge, J. F.; Allen, L.; Cho, J.; Liao, I. C.; Rasmussen, J. Factors affecting time between symptom onset and emergency department arrival in stroke patients. eNeurologicalSci. 2020. https://doi.org/10.1016/j.ensci.2020.100285.
207|sucess-download|Ashraf, M. A.; Facette, M. Plant Biology: BASL Gives the Plant Nucleus a Sense of Direction. Current biology : CB. 2020. https://doi.org/10.1016/j.cub.2020.09.009.
208|sucess-download|Gu, P. Y.; Jiang, Y.; Fink, Z.; Xie, G.; Hu, Q.; Kim, P. Y.; Xu, Q. F.; Lu, J. M.; Russell, T. P. Conductive Thin Films over Large Areas by Supramolecular Self-Assembly. ACS applied materials & interfaces. 2020. https://doi.org/10.1021/acsami.0c13488.
209|failed-download|Dorsey, A. F.; Thompson, A. L. Child, caretaker, and community: Testing predictors of anemia and response to iron supplementation in Peruvian preschool-aged children. American journal of human biology : the official journal of the Human Biology Council. 2020. https://doi.org/10.1002/ajhb.23538.
210|sucess-download|McInerney, J.; Chen, B. G.; Theran, L.; Santangelo, C. D.; Rocklin, D. Z. Hidden symmetries generate rigid folding mechanisms in periodic origami. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.2005089117.
211|sucess-download|Sullivan, F. R. Critical pedagogy and teacher professional development for online and blended learning: the equity imperative in the shift to digital. Educational technology research and development : ETR & D. 2020. https://doi.org/10.1007/s11423-020-09864-4.
212|sucess-download|Winchell, A.; Lan, A.; Mozer, M. Highlights as an Early Predictor of Student Comprehension and Interests. Cognitive science. 2020. https://doi.org/10.1111/cogs.12901.
213|sucess-download|Santarella, F.; Simpson, C. R.; Lemoine, M.; McGrath, S.; Cavanagh, B.; Smith, A.; Murphy, C. M.; Garlick, J. A.; O'Brien, F. J.; Kearney, C. J. The lubricating effect of iPS-reprogrammed fibroblasts on collagen-GAG scaffolds for cartilage repair applications. Journal of the mechanical behavior of biomedical materials. 2020. https://doi.org/10.1016/j.jmbbm.2020.104174.
214|sucess-download|Lu, Y.; Wu, Y.; Chen, X.; Yang, X.; Xiao, H. Water extract of shepherd's purse prevents high-fructose induced-liver injury by regulating glucolipid metabolism and gut microbiota. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.128536.
215|shorty-download|Auger, J.; Fletcher, L.; Frankowiak, S.; Grills, G.; Lemas, M. V.; Mische, S.; Monteiro, M.; Peláez, F.; Tabarini, D.; Vinard, A.; White, A. N. SRLs in a Global Pandemic: An Administrative Perspective. Cytometry. Part A : the journal of the International Society for Analytical Cytology. 2020. https://doi.org/10.1002/cyto.a.24263.
216|sucess-download|Narango, D. L.; Tallamy, D. W.; Shropshire, K. J. Few keystone plant genera support the majority of Lepidoptera species. Nature communications. 2020. https://doi.org/10.1038/s41467-020-19565-4.
217|sucess-download|Siega-Riz, A. M.; Vladutiu, C. J.; Butera, N. M.; Daviglus, M.; Gellman, M.; Isasi, C. R.; Stuebe, A. M.; Talavera, G. A.; Van Horn, L.; Sotres-Alvarez, D. Preconception Diet Quality Is Associated with Birth Weight for Gestational Age Among Women in the Hispanic Community Health Study/Study of Latinos. Journal of the Academy of Nutrition and Dietetics. 2020. https://doi.org/10.1016/j.jand.2020.09.039.
218|sucess-download|Tauber, J. P.; Tozkar, C. Ö.; Schwarz, R. S.; Lopez, D.; Irwin, R. E.; Adler, L. S.; Evans, J. D. Colony-Level Effects of Amygdalin on Honeybees and Their Microbes. Insects. 2020. https://doi.org/10.3390/insects11110783.
219|sucess-download|King, M. R.; Peyton, S.; Simon, S. I. The 2020 Young Innovators of Cellular and Molecular Bioengineering. Cellular and molecular bioengineering. 2020. https://doi.org/10.1007/s12195-020-00659-4.
220|sucess-download|Suvorov, A.; Salemme, V.; McGaunn, J.; Poluyanoff, A.; Teffera, M.; Amir, S. Unbiased approach for the identification of molecular mechanisms sensitive to chemical exposures. Chemosphere. 2020. https://doi.org/10.1016/j.chemosphere.2020.128362.
221|sucess-download|Alhowaymel, F.; Kalmakis, K.; Jacelon, C. Developing the Concept of Adverse Childhood Experiences: A Global Perspective. Journal of pediatric nursing. 2020. https://doi.org/10.1016/j.pedn.2020.10.004.
222|sucess-download|Snyder, K. L.; Hoogkamer, W.; Triska, C.; Taboga, P.; Arellano, C. J.; Kram, R. Effects of course design (curves and elevation undulations) on marathon running performance: a comparison of Breaking 2 in Monza and the INEOS 1:59 Challenge in Vienna. Journal of sports sciences. 2020. https://doi.org/10.1080/02640414.2020.1843820.
223|shorty-download|Li, L.; Zhang, W.; Tong, C. L.; Yan, H.; Yin, P.; Li, K.; Heng, B. C.; Tong, G. Differential cytokines expression in cervical exfoliated cells of women with implantation after in vitro fertilization. Acta biochimica et biophysica Sinica. 2020. https://doi.org/10.1093/abbs/gmaa103.
224|sucess-download|Eriksen, M. S.; Nikolaienko, O.; Hallin, E. I.; Grødem, S.; Bustad, H. J.; Flydal, M. I.; Merski, I.; Hosokawa, T.; Lascu, D.; Akerkar, S.; Cuéllar, J.; Chambers, J. J.; O'Connell, R.; Muruganandam, G.; Loris, R.; Touma, C.; Kanhema, T.; Hayashi, Y.; Stratton, M. M.; Valpuesta, J. M.; Kursula, P.; Martinez, A.; Bramham, C. R. Arc self-association and formation of virus-like capsids are mediated by an N-terminal helical coil motif. The FEBS journal. 2020. https://doi.org/10.1111/febs.15618.
225|sucess-download|Raudales, A. M.; Weiss, N. H.; Dixon-Gordon, K. L.; Contractor, A. A.; Schatten, H. T. The role of emotion dysregulation in the association between posttraumatic stress disorder symptoms and suicidal thoughts and behaviors among veterans. Journal of clinical psychology. 2020. https://doi.org/10.1002/jclp.23084.
226|sucess-download|McCarthy, M.; Vorderstrasse, A.; Yan, J.; Portillo, A.; Dickson, V. V. Managing Diabetes in the Workplace. Workplace health & safety. 2020. https://doi.org/10.1177/2165079920965538.
227|sucess-download|Garcia, S. A.; Vakula, M. N.; Holmes, S. C.; Pamukoff, D. N. The influence of body mass index and sex on frontal and sagittal plane knee mechanics during walking in young adults. Gait & posture. 2020. https://doi.org/10.1016/j.gaitpost.2020.10.010.
228|sucess-download|Bergmann, P. J.; Morinaga, G.; Freitas, E. S.; Irschick, D. J.; Wagner, G. P.; Siler, C. D. Locomotion and palaeoclimate explain the re-evolution of quadrupedal body form in Proceedings. Biological sciences. 2020. https://doi.org/10.1098/rspb.2020.1994.
229|sucess-download|Li, T.; Wu, Y.; Zhou, J.; Li, M.; Wu, J.; Hu, Q.; Jia, B.; Pan, X.; Zhang, M.; Tang, Z.; Xie, Z.; Russell, T. P.; Zhan, X. Butterfly Effects Arising from Starting Materials in Fused-Ring Electron Acceptors. Journal of the American Chemical Society. 2020. https://doi.org/10.1021/jacs.0c09800.
230|shorty-download|Geissler, K.; Ranchoff, B. L.; Cooper, M. I.; Attanasio, L. B. Association of Insurance Status With Provision of Recommended Services During Comprehensive Postpartum Visits. JAMA network open. 2020. https://doi.org/10.1001/jamanetworkopen.2020.25095.
231|shorty-download|Kim, A. S.; Garcia Morales, E. E.; Amjad, H.; Cotter, V. T.; Lin, F. R.; Lyketsos, C. G.; Nowrangi, M. A.; Mamo, S. K.; Reed, N. S.; Yasar, S.; Oh, E. S.; Nieman, C. L. Association of Hearing Loss With Neuropsychiatric Symptoms in Older Adults With Cognitive Impairment. The American journal of geriatric psychiatry : official journal of the American Association for Geriatric Psychiatry. 2020. https://doi.org/10.1016/j.jagp.2020.10.002.
232|sucess-download|Tudor-Locke, C.; Ducharme, S. W.; Aguiar, E. J.; Schuna, J. M.; Barreira, T. V.; Moore, C. C.; Chase, C. J.; Gould, Z. R.; Amalbert-Birriel, M. A.; Mora-Gonzalez, J.; Chipkin, S. R.; Staudenmayer, J. Walking cadence (steps/min) and intensity in 41 to 60-year-old adults: the CADENCE-adults study. The international journal of behavioral nutrition and physical activity. 2020. https://doi.org/10.1186/s12966-020-01045-z.
233|sucess-download|Anson, F.; Kanjilal, P.; Thayumanavan, S.; Hardy, J. A. Tracking exogenous intracellular casp-3 using split GFP. Protein science : a publication of the Protein Society. 2020. https://doi.org/10.1002/pro.3992.
234|sucess-download|Geng, Y.; Amante, J. J.; Goel, H. L.; Zhang, X.; Walker, M. R.; Luther, D. C.; Mercurio, A. M.; Rotello, V. M. Differentiation of Cancer Stem Cells through Nanoparticle Surface Engineering. ACS nano. 2020. https://doi.org/10.1021/acsnano.0c05589.
235|shorty-download|Jiang, Z.; Zheng, H.; Xing, B. Environmental life cycle assessment of wheat production using chemical fertilizer, manure compost, and biochar-amended manure compost strategies. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.143342.
236|sucess-download|Calabrese, E. J.; Kozumbo, W. J. The phytoprotective agent sulforaphane prevents inflammatory degenerative diseases and age-related pathologies via Nrf2-mediated hormesis. Pharmacological research. 2020. https://doi.org/10.1016/j.phrs.2020.105283.
237|sucess-download|Weir, E.; McLinden, G.; Alfandari, D.; Cousin, H. Trim-Away mediated knock down uncovers a new function for Lbh during gastrulation of Xenopus laevis. Developmental biology. 2020. https://doi.org/10.1016/j.ydbio.2020.10.014.
238|sucess-download|Ma, N.; Tao, H.; Du, H.; Zhao, L.; Hu, Q.; Xiao, H. Antifatigue effect of functional cookies fortified with mushroom powder (Tricholoma Matsutake) in mice. Journal of food science. 2020. https://doi.org/10.1111/1750-3841.15510.
239|shorty-download|Marden, E.; Abbott, R. J.; Austerlitz, F.; Ortiz-Barrientos, D.; Baucom, R. S.; Bongaerts, P.; Bonin, A.; Bonneaud, C.; Browne, L.; Alex Buerkle, C.; Caicedo, A. L.; Coltman, D. W.; Cruzan, M. B.; Davison, A.; DeWoody, J. A.; Dumbrell, A. J.; Emerson, B. C.; Fountain-Jones, N. M.; Gillespie, R.; Giraud, T.; Hansen, M. M.; Hodgins, K. A.; Heuertz, M.; Hirase, S.; Hooper, R.; Hohenlohe, P.; Kane, N. C.; Kelley, J. L.; Kinziger, A. P.; McKenzie, V. J.; Moreau, C. S.; Nazareno, A. G.; Pelletier, T. A.; Pemberton, J. M.; Qu, Y.; Renaut, S.; Riginos, C.; Rodríguez-Ezpeleta, N.; Rogers, S. M.; Russell, J. A.; Schoville, S. D.; Shi, S.; Smith, M.; Sork, V. L.; Stone, G. N.; Taberlet, P.; Videvall, E.; Waits, L.; Warschefsky, E.; Wayne, R. K.; Whibley, A.; Willoughby, J.; Yoder, J. B.; Zinger, L.; Sibbett, B.; Narum, S.; Rieseberg, L. H. Sharing and reporting benefits from biodiversity research. Molecular ecology. 2020. https://doi.org/10.1111/mec.15702.
240|sucess-download|Tian, L.; Kejing, Y.; Zhang, S.; Yi, J.; Zhu, Z.; Decker, E. A.; McClements, D. J. Impact of tea polyphenols on the stability of oil-in-water emulsions coated by whey proteins. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.128448.
241|sucess-download|Wang, C.; Zhao, J.; Xing, B. Environmental source, fate, and toxicity of microplastics. Journal of hazardous materials. 2020. https://doi.org/10.1016/j.jhazmat.2020.124357.
242|shorty-download|Suvorov, A.; Pilsner, J. R.; Naumov, V.; Shtratnikova, V.; Zheludkevich, A.; Gerasimov, E.; Logacheva, M.; Sergeyev, O. Aging Induces Profound Changes in sncRNA in Rat Sperm and These Changes Are Modified by Perinatal Exposure to Environmental Flame Retardant. International journal of molecular sciences. 2020. https://doi.org/10.3390/ijms21218252.
243|sucess-download|Deol, K. K.; Crowe, S. O.; Du, J.; Bisbee, H. A.; Guenette, R. G.; Strieter, E. R. Proteasome-Bound UCH37/UCHL5 Debranches Ubiquitin Chains to Promote Degradation. Molecular cell. 2020. https://doi.org/10.1016/j.molcel.2020.10.017.
244|shorty-download|Lannig, S.; Schmied, C. M.; Prüfer, M.; Kunkel, P.; Strohmaier, R.; Strobel, H.; Gasenzer, T.; Kevrekidis, P. G.; Oberthaler, M. K. Collisions of Three-Component Vector Solitons in Bose-Einstein Condensates. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.125.170401.
245|sucess-download|Rodysill, J. R.; Donnelly, J. P.; Sullivan, R.; Lane, P. D.; Toomey, M.; Woodruff, J. D.; Hawkes, A. D.; MacDonald, D.; d'Entremont, N.; McKeon, K.; Wallace, E.; van Hengstum, P. J. Historically unprecedented Northern Gulf of Mexico hurricane activity from 650 to 1250 CE. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-75874-0.
246|failed-download|Rodysill, J. R.; Donnelly, J. P.; Sullivan, R.; Lane, P. D.; Toomey, M.; Woodruff, J. D.; Hawkes, A. D.; MacDonald, D.; d'Entremont, N.; McKeon, K.; Wallace, E.; van Hengstum, P. J. Historically unprecedented Northern Gulf of Mexico hurricane activity from 650 to 1250 CE. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-75874-0.
247|sucess-download|Tsuda, B.; Tye, K. M.; Siegelmann, H. T.; Sejnowski, T. J. A modeling framework for adaptive lifelong learning with transfer and savings through gating in the prefrontal cortex. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.2009591117.
248|sucess-download|Davidson, S. C.; Bohrer, G.; Gurarie, E.; LaPoint, S.; Mahoney, P. J.; Boelman, N. T.; Eitel, J. U.; Prugh, L. R.; Vierling, L. A.; Jennewein, J.; Grier, E.; Couriot, O.; Kelly, A. P.; Meddens, A. J.; Oliver, R. Y.; Kays, R.; Wikelski, M.; Aarvak, T.; Ackerman, J. T.; Alves, J. A.; Bayne, E.; Bedrosian, B.; Belant, J. L.; Berdahl, A. M.; Berlin, A. M.; Berteaux, D.; Bêty, J.; Boiko, D.; Booms, T. L.; Borg, B. L.; Boutin, S.; Boyd, W. S.; Brides, K.; Brown, S.; Bulyuk, V. N.; Burnham, K. K.; Cabot, D.; Casazza, M.; Christie, K.; Craig, E. H.; Davis, S. E.; Davison, T.; Demma, D.; DeSorbo, C. R.; Dixon, A.; Domenech, R.; Eichhorn, G.; Elliott, K.; Evenson, J. R.; Exo, K. M.; Ferguson, S. H.; Fiedler, W.; Fisk, A.; Fort, J.; Franke, A.; Fuller, M. R.; Garthe, S.; Gauthier, G.; Gilchrist, G.; Glazov, P.; Gray, C. E.; Grémillet, D.; Griffin, L.; Hallworth, M. T.; Harrison, A. L.; Hennin, H. L.; Hipfner, J. M.; Hodson, J.; Johnson, J. A.; Joly, K.; Jones, K.; Katzner, T. E.; Kidd, J. W.; Knight, E. C.; Kochert, M. N.; Kölzsch, A.; Kruckenberg, H.; Lagassé, B. J.; Lai, S.; Lamarre, J. F.; Lanctot, R. B.; Larter, N. C.; Latham, A. D.; Latty, C. J.; Lawler, J. P.; Léandri-Breton, D. J.; Lee, H.; Lewis, S. B.; Love, O. P.; Madsen, J.; Maftei, M.; Mallory, M. L.; Mangipane, B.; Markovets, M. Y.; Marra, P. P.; McGuire, R.; McIntyre, C. L.; McKinnon, E. A.; Miller, T. A.; Moonen, S.; Mu, T.; Müskens, G. J.; Ng, J.; Nicholson, K. L.; Øien, I. J.; Overton, C.; Owen, P. A.; Patterson, A.; Petersen, A.; Pokrovsky, I.; Powell, L. L.; Prieto, R.; Quillfeldt, P.; Rausch, J.; Russell, K.; Saalfeld, S. T.; Schekkerman, H.; Schmutz, J. A.; Schwemmer, P.; Seip, D. R.; Shreading, A.; Silva, M. A.; Smith, B. W.; Smith, F.; Smith, J. P.; Snell, K. R.; Sokolov, A.; Sokolov, V.; Solovyeva, D. V.; Sorum, M. S.; Tertitski, G.; Therrien, J. F.; Thorup, K.; Tibbitts, T. L.; Tulp, I.; Uher-Koch, B. D.; van Bemmelen, R. S.; Van Wilgenburg, S.; Von Duyke, A. L.; Watson, J. L.; Watts, B. D.; Williams, J. A.; Wilson, M. T.; Wright, J. R.; Yates, M. A.; Yurkowski, D. J.; Žydelis, R.; Hebblewhite, M. Ecological insights from three decades of animal movement tracking across a changing Arctic. Science (New York, N.Y.). 2020. https://doi.org/10.1126/science.abb7080.
249|sucess-download|Li, C.; Dai, T.; Chen, J.; Li, X.; Li, T.; Liu, C.; McClements, D. J. Protein-polyphenol functional ingredients: The foaming properties of lactoferrin are enhanced by forming complexes with procyanidin. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.128145.
250|sucess-download|Li, S.; Sun, J.; Yan, J.; Zhang, S.; Shi, C.; McClements, D. J.; Liu, X.; Liu, F. Development of antibacterial nanoemulsions incorporating thyme oil: Layer-by-layer self-assembly of whey protein isolate and chitosan hydrochloride. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.128016.
251|sucess-download|Lee, N. S.; Beery, A. K. The role of dopamine signaling in prairie vole peer relationships. Hormones and behavior. 2020. https://doi.org/10.1016/j.yhbeh.2020.104876.
252|sucess-download|Rahlwes, K. C.; Osman, S. H.; Morita, Y. S. Role of LmeA, a Mycobacterial Periplasmic Protein, in Maintaining the Mannosyltransferase MptA and Its Product Lipomannan under Stress. mSphere. 2020. https://doi.org/10.1128/mSphere.01039-20.
253|sucess-download|Liokatis, P.; Tzortzinis, G.; Gerasimidis, S.; Smolka, W. Finite Element Analysis of Different Titanium Plates for Internal Fixation of Fractures of the Mandibular Condylar Neck. Journal of oral and maxillofacial surgery : official journal of the American Association of Oral and Maxillofacial Surgeons. 2020. https://doi.org/10.1016/j.joms.2020.09.038.
254|sucess-download|Li, M.; Cushing, S. K.; Zhou, G.; Wu, N. Molecular hot spots in surface-enhanced Raman scattering. Nanoscale. 2020. https://doi.org/10.1039/d0nr06579j.
255|sucess-download|Pan, X.; Vachet, R. W. MEMBRANE PROTEIN STRUCTURES AND INTERACTIONS FROM COVALENT LABELING COUPLED WITH MASS SPECTROMETRY. Mass spectrometry reviews. 2020. https://doi.org/10.1002/mas.21667.
256|sucess-download|Aguirre, T. G.; Fuller, L.; Ingrole, A.; Seek, T. W.; Wheatley, B. B.; Steineman, B. D.; Donahue, T. L.; Donahue, S. W. Bioinspired material architectures from bighorn sheep horncore velar bone for impact loading applications. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-76021-5.
257|sucess-download|Kim-Mozeleski, J. E.; Poudel, K. C.; Tsoh, J. Y. Examining Reciprocal Effects of Cigarette Smoking, Food Insecurity, and Psychological Distress in the U.S. Journal of psychoactive drugs. 2020. https://doi.org/10.1080/02791072.2020.1845419.
258|shorty-download|Moore, M. D.; Suther, C.; Zhou, Y. Microbiota, Viral Infection, and the Relationship to Human Diseases: An Area of Increasing Interest in the SARS-CoV-2 Pandemic. Infectious microbes & diseases. 2020. https://doi.org/10.1097/IM9.0000000000000043.
259|sucess-download|Fitzgerald, L. F.; Ryan, M. M.; Bartlett, M. F.; Miehm, J. D.; Kent, J. A. Muscle architecture, voluntary activation, and low-frequency fatigue do not explain the greater fatigue of older compared with young women during high-velocity contractions. PloS one. 2020. https://doi.org/10.1371/journal.pone.0234217.
260|sucess-download|Balasubramanian, R.; Demler, O.; Guasch-Ferré, M.; Paynter, N. P.; Sheehan, R.; Liu, S.; Manson, J. E.; Salas-Salvadó, J.; Martínez-Gonzalez, M. Á.; Hu, F. B.; Clish, C.; Rexrode, K. M. Metabolomic Effects of Hormone Therapy and Associations With Coronary Heart Disease Among Postmenopausal Women. Circulation. Genomic and precision medicine. 2020. https://doi.org/10.1161/CIRCGEN.119.002977.
261|sucess-download|Anthony, M. A.; Stinson, K. A.; Moore, J. A.; Frey, S. D. Plant invasion impacts on fungal community structure and function depend on soil warming and nitrogen enrichment. Oecologia. 2020. https://doi.org/10.1007/s00442-020-04797-4.
262|sucess-download|Calabrese, E. J.; Agathokleous, E. Pollen biology and hormesis: Pollen germination and pollen tube elongation. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.143072.
263|shorty-download|Gillespie, A.; Yirsaw, A.; Kim, S.; Wilson, K.; McLaughlin, J.; Madigan, M.; Loonie, K.; Britton, E.; Zhang, F.; Damani-Yokota, P.; Gunasekaran, K. P.; Telfer, J.; Baldwin, C. L. Gene characterization and expression of the γδ T cell co-receptor WC1 in sheep. Developmental and comparative immunology. 2020. https://doi.org/10.1016/j.dci.2020.103911.
264|sucess-download|Tremblay, C. Y.; Vass, R. H.; Vachet, R. W.; Chien, P. The Cleavage Profile of Protein Substrates by ClpXP Reveals Deliberate Starts and Pauses. Biochemistry. 2020. https://doi.org/10.1021/acs.biochem.0c00553.
265|shorty-download|Lee, C. H.; Zhou, H.; Ning, J.; Liu, D. D.; Shen, Y. CoxPhLb: An R Package for Analyzing Length Biased Data under Cox Model. The R journal. 2020. https://doi.org/10.32614/rj-2020-024.
266|sucess-download|Sano, Y.; Mammen, S.; Houghten, M. Well-Being and Stability among Low-income Families: A 10-Year Review of Research. Journal of family and economic issues. 2020. https://doi.org/10.1007/s10834-020-09715-7.
267|sucess-download|Pollett, S.; Johansson, M.; Biggerstaff, M.; Morton, L. C.; Bazaco, S. L.; Brett Major, D. M.; Stewart-Ibarra, A. M.; Pavlin, J. A.; Mate, S.; Sippy, R.; Hartman, L. J.; Reich, N. G.; Maljkovic Berry, I.; Chretien, J. P.; Althouse, B. M.; Myer, D.; Viboud, C.; Rivers, C. Identification and evaluation of epidemic prediction and forecasting reporting guidelines: A systematic review and a call for action. Epidemics. 2020. https://doi.org/10.1016/j.epidem.2020.100400.
268|sucess-download|Wang, T.; Cheng, Z.; Liu, Y.; Tang, W.; Fang, T.; Xing, B. Mechanistic understanding of highly selective adsorption of bisphenols on microporous-dominated nitrogen-doped framework carbon. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.143115.
269|sucess-download|De Souza, C.; Madden, J. A.; Minn, D.; Kumar, V. E.; Montoya, D. J.; Nambiar, R.; Zhu, Z.; Xiao, W. W.; Tahmassebi, N.; Kathi, H.; Nelson, N.; Karnezis, A. N.; Chien, J. The P72R Polymorphism in R248Q/W p53 Mutants Modifies the Mutant Effect on Epithelial to Mesenchymal Transition Phenotype and Cell Invasion via CXCL1 Expression. International journal of molecular sciences. 2020. https://doi.org/10.3390/ijms21218025.
270|sucess-download|Tu, M.; Wang, W.; Zhang, G.; Hammock, B. D. ω-3 Polyunsaturated Fatty Acids on Colonic Inflammation and Colon Cancer: Roles of Lipid-Metabolizing Enzymes Involved. Nutrients. 2020. https://doi.org/10.3390/nu12113301.
271|sucess-download|Hosseini, S. F.; Rezaei, M.; McClements, D. J. Bioactive functional ingredients from aquatic origin: a review of recent progress in marine-derived nutraceuticals. Critical reviews in food science and nutrition. 2020. https://doi.org/10.1080/10408398.2020.1839855.
272|shorty-download|Crow, M. M.; Alger, J.; Amiridis, M.; Assanis, D.; Barron, E.; Becker, M. P.; Blank, R. M.; Block, G. D.; Bollinger, L. C.; Brown, R. A.; Burwell, S. M.; Cassidy, C. M.; Clements, J. P.; Currall, S.; DeGioia, J. J.; Frenk, J.; Fuchs, W. K.; Gabel, J. T.; Gallagher, P. D.; Gee, E. G.; Isaacs, E.; Jacobs, L. A.; Jahanian, F.; Jenkins, J.; Johnson, K. M.; Kanter, M.; Kearns, P. K.; Kennedy, M.; Khosla, P. K.; Leshin, L.; Lovell, M.; May, G. S.; Morehead, J.; Myers, R. B.; Proenza, L. M.; Rose, C.; Rudd, M. D.; Sands, T. D.; Schlissel, M. S.; Stephens, E.; Stroble, E.; Subbaswamy, K.; Tripathi, S.; Watkins, R.; Weinberg, A.; Wilcox, K.; Wince-Smith, D.; Wintersteen, W.; Woodson, W. R.; Zimmer, R. J. Support U.S. research during COVID-19. Science (New York, N.Y.). 2020. https://doi.org/10.1126/science.abf1225.
273|sucess-download|Golden, S. L.; Blake, J. W.; Giuliano, K. K. Parental decision-making: infant engagement with smartphones. Infant behavior & development. 2020. https://doi.org/10.1016/j.infbeh.2020.101497.
274|shorty-download|Ready, R. E.; Martins-Klein, B.; Orlovsky, I. Older and younger adult definitions of emotion terms: a mixed-method content analysis. Aging & mental health. 2020. https://doi.org/10.1080/13607863.2020.1839864.
275|sucess-download|Cahill, N.; Weinberger, M.; Alkema, L. What increase in modern contraceptive use is needed in FP2020 countries to reach 75% demand satisfied by 2030? An assessment using the Accelerated Transition Method and Family Planning Estimation Model. Gates open research. 2020. https://doi.org/10.12688/gatesopenres.13125.1.
276|sucess-download|Gu, P. Y.; Xie, G.; Kim, P. Y.; Chai, Y.; Wu, X.; Jiang, Y.; Xu, Q. F.; Liu, F.; Lu, J. M.; Russell, T. P. Surfactant-Induced Interfacial Aggregation of Porphyrins for Structuring Color-Tunable Liquids. Angewandte Chemie (International ed. in English). 2020. https://doi.org/10.1002/anie.202012742.
277|sucess-download|Lipsky, L. M.; Burger, K. S.; Faith, M. S.; Siega-Riz, A. M.; Liu, A.; Shearrer, G. E.; Nansel, T. R. Pregnant Women Consume a Similar Proportion of Highly vs Minimally Processed Foods in the Absence of Hunger, Leading to Large Differences in Energy Intake. Journal of the Academy of Nutrition and Dietetics. 2020. https://doi.org/10.1016/j.jand.2020.09.036.
278|sucess-download|Nareddy, V. R.; Machta, J.; Abbott, K. C.; Esmaeili, S.; Hastings, A. Dynamical Ising model of spatially coupled ecological oscillators. Journal of the Royal Society, Interface. 2020. https://doi.org/10.1098/rsif.2020.0571.
279|sucess-download|Briggs, J.; Teyssier, N.; Nankabirwa, J. I.; Rek, J.; Jagannathan, P.; Arinaitwe, E.; Bousema, T.; Drakeley, C.; Murray, M.; Crawford, E.; Hathaway, N.; Staedke, S. G.; Smith, D.; Rosenthal, P. J.; Kamya, M.; Dorsey, G.; Rodriguez-Barraquer, I.; Greenhouse, B. Sex-based differences in clearance of chronic eLife. 2020. https://doi.org/10.7554/eLife.59872.
280|sucess-download|Foreman-Ortiz, I. U.; Liang, D.; Laudadio, E. D.; Calderin, J. D.; Wu, M.; Keshri, P.; Zhang, X.; Schwartz, M. P.; Hamers, R. J.; Rotello, V. M.; Murphy, C. J.; Cui, Q.; Pedersen, J. A. Anionic nanoparticle-induced perturbation to phospholipid membranes affects ion channel function. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.2004736117.
281|sucess-download|Male, I.; Ozacar, A. T.; Fagan, R. R.; Loring, M. D.; Shen, M. C.; Pace, V. A.; Devine, C. A.; Lawson, G. E.; Lutservitz, A.; Karlstrom, R. O. Hedgehog Signaling Regulates Neurogenesis in the Larval and Adult Zebrafish Hypothalamus. eNeuro. 2020. https://doi.org/10.1523/ENEURO.0226-20.2020.
282|sucess-download|Zhang, S.; Taehwan Kim, A.; Liu, X.; Yan, L.; Moo Kim, S. Antioxidant and antidiabetic activities of vanadium-binding protein and trifuhalol A. Journal of food biochemistry. 2020. https://doi.org/10.1111/jfbc.13540.
283|shorty-download|Tan, Y.; Zhang, Z.; Liu, J.; Xiao, H.; McClements, D. J. Factors impacting lipid digestion and nutraceutical bioaccessibility assessed by standardized gastrointestinal model (INFOGEST): oil. Food & function. 2020. https://doi.org/10.1039/d0fo01505a.
284|sucess-download|Whitt, L.; Ricachenevsky, F. K.; Ziegler, G. Z.; Clemens, S.; Walker, E.; Maathuis, F. J.; Kear, P.; Baxter, I. A curated list of genes that affect the plant ionome. Plant direct. 2020. https://doi.org/10.1002/pld3.272.
285|sucess-download|Suvorov, A.; Salemme, V.; McGaunn, J.; Poluyanoff, A.; Amir, S. Data on chemical-gene interactions and biological categories enriched with genes sensitive to chemical exposures. Data in brief. 2020. https://doi.org/10.1016/j.dib.2020.106398.
286|sucess-download|Du, N.; Zhou, F.; Pulver, E. M.; Tilbury, D. M.; Robert, L. P.; Pradhan, A. K.; Yang, X. J. Predicting driver takeover performance in conditionally automated driving. Accident; analysis and prevention. 2020. https://doi.org/10.1016/j.aap.2020.105748.
287|sucess-download|Jones, M. E.; LaCroix, R. E.; Zeigler, J.; Ying, S. C.; Nico, P. S.; Keiluweit, M. Enzymes, Manganese, or Iron? Drivers of Oxidative Organic Matter Decomposition in Soils. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c04212.
288|sucess-download|Mussio, I.; Brandt, S.; Hanemann, M. Parental beliefs and willingness to pay for reduction in their child's asthma symptoms: A joint estimation approach. Health economics. 2020. https://doi.org/10.1002/hec.4181.
289|sucess-download|Calabrese, E. J.; Agathokleous, E. Smoke-water commonly induces hormetic dose responses in plants. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.142776.
290|sucess-download|Gonzalez-Nahm, S.; Nihlani, K.; S House, J.; L Maguire, R.; G Skinner, H.; Hoyo, C. Associations between Maternal Cadmium Exposure with Risk of Preterm Birth and Low after Birth Weight Effect of Mediterranean Diet Adherence on Affected Prenatal Outcomes. Toxics. 2020. https://doi.org/10.3390/toxics8040090.
291|sucess-download|Li, Y.; Zhao, C.; Lu, C.; Zhou, S.; Tian, G.; He, L.; Bao, Y.; Fauconnier, M. L.; Xiao, H.; Zheng, J. Simultaneous determination of 14 bioactive citrus flavonoids using thin-layer chromatography combined with surface enhanced Raman spectroscopy. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.128115.
292|shorty-download|Starns, J. J. High- and low-threshold models of the relationship between response time and confidence. Journal of experimental psychology. Learning, memory, and cognition. 2020. https://doi.org/10.1037/xlm0000960.
293|sucess-download|Weber, H. K.; Jones, C. M.; Ajemian, M. J.; McCallister, M. P.; Winner, B. L.; Poulakis, G. R.; Bethea, D. M.; Hollensead, L. D.; Zapf, D.; Swenson, J. D.; Hendon, J. M.; Daly-Engel, T. S.; Phillips, N. M. Genetic evidence supports a range extension for the Brazilian cownose ray Rhinoptera brasiliensis in the western North Atlantic. Journal of fish biology. 2020. https://doi.org/10.1111/jfb.14582.
294|sucess-download|Best, A. W. Why does strength training improve endurance performance? American journal of human biology : the official journal of the Human Biology Council. 2020. https://doi.org/10.1002/ajhb.23526.
295|sucess-download|Ghahramani-Asl, R.; Porouhan, P.; Mehrpouyan, M.; Welsh, J. S.; Calabrese, E. J.; Kapoor, R.; Dhawan, G.; Javadinia, S. A. Feasibility of Treatment Planning System in Localizing the COVID-19 Pneumonia Lesions and Evaluation of Volume Indices of Lung Involvement. Dose-response : a publication of International Hormesis Society. 2020. https://doi.org/10.1177/1559325820962600.
296|sucess-download|Evans, E. A.; Delorme, E.; Cyr, K.; Goldstein, D. M. A qualitative study of big data and the opioid epidemic: recommendations for data governance. BMC medical ethics. 2020. https://doi.org/10.1186/s12910-020-00544-9.
297|sucess-download|Kroeger, M. E.; Meredith, L. K.; Meyer, K. M.; Webster, K. D.; de Camargo, P. B.; de Souza, L. F.; Tsai, S. M.; van Haren, J.; Saleska, S.; Bohannan, B. J.; Rodrigues, J. L.; Berenguer, E.; Barlow, J.; Nüsslein, K. Rainforest-to-pasture conversion stimulates soil methanogenesis across the Brazilian Amazon. The ISME journal. 2020. https://doi.org/10.1038/s41396-020-00804-x.
298|shorty-download|Schroeder, K.; Kubik, M. Y.; Sirard, J. R.; Lee, J.; Fulkerson, J. A. Sleep is Inversely Associated with Sedentary Time among Youth with Obesity. American journal of health behavior. 2020. https://doi.org/10.5993/AJHB.44.6.2.
299|sucess-download|Gwiazdowski, R. A.; Andersen, J. C.; Knisley, C. B.; Griffin, B. P.; Elkinton, J. S. First Account of Phylogeographic Variation, Larval Characters, and Laboratory Rearing of the Endangered Cobblestone Tiger Beetle Cicindelidia marginipennis Insects. 2020. https://doi.org/10.3390/insects11100708.
300|sucess-download|You, M.; Lee, Y. H.; Kim, H. J.; Kook, J. H.; Kim, H. A. St. John's Wort Suppresses Growth in Triple-Negative Breast Cancer Cell Line MDA-MB-231 by Inducing Prodeath Autophagy and Apoptosis. Nutrients. 2020. https://doi.org/10.3390/nu12103175.
301|sucess-download|Griffin, B. P.; Chandler, J. L.; Andersen, J. C.; Havill, N. P.; Elkinton, J. S. The Reliability of Genitalia Morphology to Monitor the Spread of the Invasive Winter Moth (Lepidoptera: Geometridae) in Eastern North America. Environmental entomology. 2020. https://doi.org/10.1093/ee/nvaa122.
302|sucess-download|Robinson, K. A.; Dunn, M.; Hussey, S. P.; Fritz-Laylin, L. K. Identification of antibiotics for use in selection of the chytrid fungi Batrachochytrium dendrobatidis and Batrachochytrium salamandrivorans. PloS one. 2020. https://doi.org/10.1371/journal.pone.0240480.
303|sucess-download|Li, Y.; Lu, J.; Shang, D.; Liu, Q.; Wu, S.; Wu, Z.; Zhang, X.; Yang, J.; Wang, Z.; Lv, H.; Liu, M. Oxide-Based Electrolyte-Gated Transistors for Spatiotemporal Information Processing. Advanced materials (Deerfield Beach, Fla.). 2020. https://doi.org/10.1002/adma.202003018.
304|sucess-download|Ma, C.; Borgatta, J.; Hudson, B. G.; Tamijani, A. A.; De La Torre-Roche, R.; Zuverza-Mena, N.; Shen, Y.; Elmer, W.; Xing, B.; Mason, S. E.; Hamers, R. J.; White, J. C. Advanced material modulation of nutritional and phytohormone status alleviates damage from soybean sudden death syndrome. Nature nanotechnology. 2020. https://doi.org/10.1038/s41565-020-00776-1.
305|sucess-download|Jones, B. J.; Kaur, S.; Miller, M.; Spencer, R. M. Mindfulness-Based Stress Reduction Benefits Psychological Well-Being, Sleep Quality, and Athletic Performance in Female Collegiate Rowers. Frontiers in psychology. 2020. https://doi.org/10.3389/fpsyg.2020.572980.
306|sucess-download|Irachi, S.; Hall, D. J.; Fleming, M. S.; Maugars, G.; Björnsson, B. T.; Dufour, S.; Uchida, K.; McCormick, S. D. Photoperiodic regulation of pituitary thyroid-stimulating hormone and brain deiodinase in Atlantic salmon. Molecular and cellular endocrinology. 2020. https://doi.org/10.1016/j.mce.2020.111056.
307|sucess-download|Chen, X. J.; Geagea, A.; Park, J.; Kwak, Y. Cultural modulation of early attentional responses to positive self-information: An ERP investigation of self-enhancement. International journal of psychophysiology : official journal of the International Organization of Psychophysiology. 2020. https://doi.org/10.1016/j.ijpsycho.2020.09.008.
308|shorty-download|Psaltis, D.; Medeiros, L.; Christian, P.; Özel, F.; Akiyama, K.; Alberdi, A.; Alef, W.; Asada, K.; Azulay, R.; Ball, D.; Baloković, M.; Barrett, J.; Bintley, D.; Blackburn, L.; Boland, W.; Bower, G. C.; Bremer, M.; Brinkerink, C. D.; Brissenden, R.; Britzen, S.; Broguiere, D.; Bronzwaer, T.; Byun, D. Y.; Carlstrom, J. E.; Chael, A.; Chan, C. K.; Chatterjee, S.; Chatterjee, K.; Chen, M. T.; Chen, Y.; Cho, I.; Conway, J. E.; Cordes, J. M.; Crew, G. B.; Cui, Y.; Davelaar, J.; De Laurentis, M.; Deane, R.; Dempsey, J.; Desvignes, G.; Dexter, J.; Eatough, R. P.; Falcke, H.; Fish, V. L.; Fomalont, E.; Fraga-Encinas, R.; Friberg, P.; Fromm, C. M.; Gammie, C. F.; García, R.; Gentaz, O.; Goddi, C.; Gómez, J. L.; Gu, M.; Gurwell, M.; Hada, K.; Hesper, R.; Ho, L. C.; Ho, P.; Honma, M.; Huang, C. L.; Huang, L.; Hughes, D. H.; Inoue, M.; Issaoun, S.; James, D. J.; Jannuzi, B. T.; Janssen, M.; Jiang, W.; Jimenez-Rosales, A.; Johnson, M. D.; Jorstad, S.; Jung, T.; Karami, M.; Karuppusamy, R.; Kawashima, T.; Keating, G. K.; Kettenis, M.; Kim, J. Y.; Kim, J.; Kim, J.; Kino, M.; Koay, J. Y.; Koch, P. M.; Koyama, S.; Kramer, M.; Kramer, C.; Krichbaum, T. P.; Kuo, C. Y.; Lauer, T. R.; Lee, S. S.; Li, Y. R.; Li, Z.; Lindqvist, M.; Lico, R.; Liu, J.; Liu, K.; Liuzzo, E.; Lo, W. P.; Lobanov, A. P.; Lonsdale, C.; Lu, R. S.; Mao, J.; Markoff, S.; Marrone, D. P.; Marscher, A. P.; Martí-Vidal, I.; Matsushita, S.; Mizuno, Y.; Mizuno, I.; Moran, J. M.; Moriyama, K.; Moscibrodzka, M.; Müller, C.; Musoke, G.; Mus Mejías, A.; Nagai, H.; Nagar, N. M.; Narayan, R.; Narayanan, G.; Natarajan, I.; Neri, R.; Noutsos, A.; Okino, H.; Olivares, H.; Oyama, T.; Palumbo, D. C.; Park, J.; Patel, N.; Pen, U. L.; Piétu, V.; Plambeck, R.; PopStefanija, A.; Prather, B.; Preciado-López, J. A.; Ramakrishnan, V.; Rao, R.; Rawlings, M. G.; Raymond, A. W.; Ripperda, B.; Roelofs, F.; Rogers, A.; Ros, E.; Rose, M.; Roshanineshat, A.; Rottmann, H.; Roy, A. L.; Ruszczyk, C.; Ryan, B. R.; Rygl, K. L.; Sánchez, S.; Sánchez-Arguelles, D.; Sasada, M.; Savolainen, T.; Schloerb, F. P.; Schuster, K. F.; Shao, L.; Shen, Z.; Small, D.; Sohn, B. W.; SooHoo, J.; Tazaki, F.; Tilanus, R. P.; Titus, M.; Torne, P.; Trent, T.; Traianou, E.; Trippe, S.; van Bemmel, I.; van Langevelde, H. J.; van Rossum, D. R.; Wagner, J.; Wardle, J.; Ward-Thompson, D.; Weintroub, J.; Wex, N.; Wharton, R.; Wielgus, M.; Wong, G. N.; Wu, Q.; Yoon, D.; Young, A.; Young, K.; Younsi, Z.; Yuan, F.; Yuan, Y. F.; Zhao, S. S. Gravitational Test beyond the First Post-Newtonian Order with the Shadow of the M87 Black Hole. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.125.141104.
309|sucess-download|Waring, B. G.; Sulman, B. N.; Reed, S.; Smith, A. P.; Averill, C.; Creamer, C. A.; Cusack, D. F.; Hall, S. J.; Jastrow, J. D.; Jilling, A.; Kemner, K. M.; Kleber, M.; Liu, X. A.; Pett-Ridge, J.; Schulz, M. From pools to flow: The PROMISE framework for new insights on soil carbon cycling in a changing world. Global change biology. 2020. https://doi.org/10.1111/gcb.15365.
310|sucess-download|Tybl, E.; Gunshin, H.; Gupta, S.; Barrientos, T.; Bonadonna, M.; Celma Nos, F.; Palais, G.; Karim, Z.; Sanchez, M.; Andrews, N. C.; Galy, B. Control of Systemic Iron Homeostasis by the 3' Iron-Responsive Element of Divalent Metal Transporter 1 in Mice. HemaSphere. 2020. https://doi.org/10.1097/HS9.0000000000000459.
311|sucess-download|Ha, J.; Park, H. K. Factors Affecting the Acceptability of Technology in Health Care Among Older Korean Adults with Multiple Chronic Conditions: A Cross-Sectional Study Adopting the Senior Technology Acceptance Model. Clinical interventions in aging. 2020. https://doi.org/10.2147/CIA.S268606.
312|sucess-download|Pham, B.; Chisholm, C. M.; Foster, J.; Friis, E.; Fahie, M. A.; Chen, M. A pH-independent quiet OmpG pore with enhanced electrostatic repulsion among the extracellular loops. Biochimica et biophysica acta. Biomembranes. 2020. https://doi.org/10.1016/j.bbamem.2020.183485.
313|sucess-download|Wang, H. F.; Chiu, P. T.; Yang, C. Y.; Xie, Z. H.; Hung, Y. C.; Lee, J. Y.; Tsai, J. C.; Prasad, I.; Jinnai, H.; Thomas, E. L.; Ho, R. M. Networks with controlled chirality via self-assembly of chiral triblock terpolymers. Science advances. 2020. https://doi.org/10.1126/sciadv.abc3644.
314|sucess-download|Feng, J.; Lansford, J. L.; Katsoulakis, M. A.; Vlachos, D. G. Explainable and trustworthy artificial intelligence for correctable modeling in chemical sciences. Science advances. 2020. https://doi.org/10.1126/sciadv.abc3204.
315|sucess-download|Obbarius, A.; Ehrenthal, J. C.; Fischer, F.; Liegl, G.; Obbarius, N.; Sarrar, L.; Rose, M. Applying Item Response Theory to the OPD Structure Questionnaire: Identification of a Unidimensional Core Construct and Feasibility of Computer Adaptive Testing. Journal of personality assessment. 2020. https://doi.org/10.1080/00223891.2020.1828435.
316|sucess-download|Shi, T.; Liu, H.; Song, T.; Xiong, Z.; Yuan, L.; McClements, D. J.; Jin, W.; Sun, Q.; Gao, R. Use of l-arginine-assisted ultrasonic treatment to change the molecular and interfacial characteristics of fish myosin and enhance the physical stability of the emulsion. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.128314.
317|sucess-download|Liu, J.; Bi, J.; McClements, D. J.; Liu, X.; Yi, J.; Lyu, J.; Zhou, M.; Verkerk, R.; Dekker, M.; Wu, X.; Liu, D. Impacts of thermal and non-thermal processing on structure and functionality of pectin in fruit- and vegetable- based products: A review. Carbohydrate polymers. 2020. https://doi.org/10.1016/j.carbpol.2020.116890.
318|sucess-download|Lin, D.; Zheng, Y.; Huang, Y.; Ni, L.; Zhao, J.; Huang, C.; Chen, X.; Chen, X.; Wu, Z.; Wu, D.; Chen, H.; Zhang, Q.; Qin, W.; Xing, B. Investigation of the structural, physical properties, antioxidant, and antimicrobial activity of chitosan- nano-silicon aerogel composite edible films incorporated with okara powder. Carbohydrate polymers. 2020. https://doi.org/10.1016/j.carbpol.2020.116842.
319|sucess-download|Weiner, A. K.; Cerón-Romero, M. A.; Yan, Y.; Katz, L. A. Phylogenomics of the Epigenetic Toolkit Reveals Punctate Retention of Genes across Eukaryotes. Genome biology and evolution. 2020. https://doi.org/10.1093/gbe/evaa198.
320|sucess-download|Tsurumi, A.; Flaherty, P. J.; Que, Y. A.; Ryan, C. M.; Mendoza, A. E.; Almpani, M.; Bandyopadhaya, A.; Ogura, A.; Dhole, Y. V.; Goodfield, L. F.; Tompkins, R. G.; Rahme, L. G. Multi-Biomarker Prediction Models for Multiple Infection Episodes Following Blunt Trauma. iScience. 2020. https://doi.org/10.1016/j.isci.2020.101659.
321|sucess-download|Lapointe, F.; Bradley, R. S.; Francus, P.; Balascio, N. L.; Abbott, M. B.; Stoner, J. S.; St-Onge, G.; De Coninck, A.; Labarre, T. Annually resolved Atlantic sea surface temperature variability over the past 2,900 y. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.2014166117.
322|sucess-download|Nie, Y.; Nirujogi, T. S.; Ranjan, R.; Reader, B. F.; Chung, S.; Ballinger, M. N.; Englert, J. A.; Christman, J. W.; Karpurapu, M. PolyADP-Ribosylation of NFATc3 and NF-κB Transcription Factors Modulate Macrophage Inflammatory Gene Expression in LPS-Induced Acute Lung Injury. Journal of innate immunity. 2020. https://doi.org/10.1159/000510269.
323|sucess-download|Flores-Bonilla, A.; Richardson, H. N. Sex Differences in the Neurobiology of Alcohol Use Disorder. Alcohol research : current reviews. 2020. https://doi.org/10.35946/arcr.v40.2.04.
324|sucess-download|Ha, M. K.; Schneider, S. A.; Adler, L. S. Facilitative pollinator sharing decreases with floral similarity in multiple systems. Oecologia. 2020. https://doi.org/10.1007/s00442-020-04770-1.
325|sucess-download|Zhang, J.; Tu, M.; Liu, Z.; Zhang, G. Soluble epoxide hydrolase as a therapeutic target for obesity-induced disorders: roles of gut barrier function involved. Prostaglandins, leukotrienes, and essential fatty acids. 2020. https://doi.org/10.1016/j.plefa.2020.102180.
326|sucess-download|Brockmann, D.; Gérand, Y.; Park, C.; Milferstedt, K.; Hélias, A.; Hamelin, J. Wastewater treatment using oxygenic photogranule-based process has lower environmental impact than conventional activated sludge process. Bioresource technology. 2020. https://doi.org/10.1016/j.biortech.2020.124204.
327|sucess-download|Zheng, H.; Wang, R.; Zhang, Q.; Zhao, J.; Li, F.; Luo, X.; Xing, B. Pyroligneous acid mitigated dissemination of antibiotic resistance genes in soil. Environment international. 2020. https://doi.org/10.1016/j.envint.2020.106158.
328|sucess-download|Shupler, M.; Hystad, P.; Birch, A.; Miller-Lionberg, D.; Jeronimo, M.; Arku, R. E.; Chu, Y. L.; Mushtaha, M.; Heenan, L.; Rangarajan, S.; Seron, P.; Lanas, F.; Cazor, F.; Lopez-Jaramillo, P.; Camacho, P. A.; Perez, M.; Yeates, K.; West, N.; Ncube, T.; Ncube, B.; Chifamba, J.; Yusuf, R.; Khan, A.; Hu, B.; Liu, X.; Wei, L.; Tse, L. A.; Mohan, D.; Kumar, P.; Gupta, R.; Mohan, I.; Jayachitra, K. G.; Mony, P. K.; Rammohan, K.; Nair, S.; Lakshmi, P. V.; Sagar, V.; Khawaja, R.; Iqbal, R.; Kazmi, K.; Yusuf, S.; Brauer, M. Household and personal air pollution exposure measurements from 120 communities in eight countries: results from the PURE-AIR study. The Lancet. Planetary health. 2020. https://doi.org/10.1016/S2542-5196(20)30197-2.
329|sucess-download|Thompson, H. M.; Faig, W.; VanKim, N. A.; Sharma, B.; Afshar, M.; Karnik, N. S. Differences in length of stay and discharge destination among patients with substance use disorders: The effect of Substance Use Intervention Team (SUIT) consultation service. PloS one. 2020. https://doi.org/10.1371/journal.pone.0239761.
330|sucess-download|Rosenthal, J.; Arku, R. E.; Baumgartner, J.; Brown, J.; Clasen, T.; Eisenberg, J. N.; Hovmand, P.; Jagger, P.; Luke, D. A.; Quinn, A.; Yadama, G. N. Systems Science Approaches for Global Environmental Health Research: Enhancing Intervention Design and Implementation for Household Air Pollution (HAP) and Water, Sanitation, and Hygiene (WASH) Programs. Environmental health perspectives. 2020. https://doi.org/10.1289/EHP7010.
331|sucess-download|Arnold, L.; Black, S. P. How Communicative Approaches Enrich the Study of Care. Medical anthropology. 2020. https://doi.org/10.1080/01459740.2020.1814285.
332|shorty-download|Aad, G.; Abbott, B.; Abbott, D. C.; Abed Abud, A.; Abeling, K.; Abhayasinghe, D. K.; Abidi, S. H.; AbouZeid, O. S.; Abraham, N. L.; Abramowicz, H.; Abreu, H.; Abulaiti, Y.; Acharya, B. S.; Achkar, B.; Adam, L.; Adam Bourdarios, C.; Adamczyk, L.; Adamek, L.; Adelman, J.; Adersberger, M.; Adiguzel, A.; Adorni, S.; Adye, T.; Affolder, A. A.; Afik, Y.; Agapopoulou, C.; Agaras, M. N.; Aggarwal, A.; Agheorghiesei, C.; Aguilar-Saavedra, J. A.; Ahmad, A.; Ahmadov, F.; Ahmed, W. S.; Ai, X.; Aielli, G.; Akatsuka, S.; Akbiyik, M.; Åkesson, T. P.; Akilli, E.; Akimov, A. V.; Al Khoury, K.; Alberghi, G. L.; Albert, J.; Alconada Verzini, M. J.; Alderweireldt, S.; Aleksa, M.; Aleksandrov, I. N.; Alexa, C.; Alexopoulos, T.; Alfonsi, A.; Alfonsi, F.; Alhroob, M.; Ali, B.; Ali, S.; Aliev, M.; Alimonti, G.; Allaire, C.; Allbrooke, B. M.; Allen, B. W.; Allport, P. P.; Aloisio, A.; Alonso, F.; Alpigiani, C.; Alunno Camelia, E.; Alvarez Estevez, M.; Alviggi, M. G.; Amaral Coutinho, Y.; Ambler, A.; Ambroz, L.; Amelung, C.; Amidei, D.; Amor Dos Santos, S. P.; Amoroso, S.; Amrouche, C. S.; An, F.; Anastopoulos, C.; Andari, N.; Andeen, T.; Anders, J. K.; Andrean, S. Y.; Andreazza, A.; Andrei, V.; Anelli, C. R.; Angelidakis, S.; Angerami, A.; Anisenkov, A. V.; Annovi, A.; Antel, C.; Anthony, M. T.; Antipov, E.; Antonelli, M.; Antrim, D. J.; Anulli, F.; Aoki, M.; Aparisi Pozo, J. A.; Aparo, M. A.; Aperio Bella, L.; Aranzabal Barrio, N.; Araujo Ferraz, V.; Araujo Pereira, R.; Arcangeletti, C.; Arce, A. T.; Arduh, F. A.; Arguin, J. F.; Argyropoulos, S.; Arling, J. H.; Armbruster, A. J.; Armstrong, A.; Arnaez, O.; Arnold, H.; Arrubarrena Tame, Z. P.; Artoni, G.; Asai, K.; Asai, S.; Asawatavonvanich, T.; Asbah, N.; Asimakopoulou, E. M.; Asquith, L.; Assahsah, J.; Assamagan, K.; Astalos, R.; Atkin, R. J.; Atkinson, M.; Atlay, N. B.; Atmani, H.; Augsten, K.; Austrup, V. A.; Avolio, G.; Ayoub, M. K.; Azuelos, G.; Bachacou, H.; Bachas, K.; Backes, M.; Backman, F.; Bagnaia, P.; Bahmani, M.; Bahrasemani, H.; Bailey, A. J.; Bailey, V. R.; Baines, J. T.; Bakalis, C.; Baker, O. K.; Bakker, P. J.; Bakos, E.; Bakshi Gupta, D.; Balaji, S.; Baldin, E. M.; Balek, P.; Balli, F.; Balunas, W. K.; Balz, J.; Banas, E.; Bandieramonte, M.; Bandyopadhyay, A.; Banerjee, S.; Barak, L.; Barbe, W. M.; Barberio, E. L.; Barberis, D.; Barbero, M.; Barbour, G.; Barillari, T.; Barisits, M. S.; Barkeloo, J.; Barklow, T.; Barnea, R.; Barnett, B. M.; Barnett, R. M.; Barnovska-Blenessy, Z.; Baroncelli, A.; Barone, G.; Barr, A. J.; Barranco Navarro, L.; Barreiro, F.; Barreiro Guimarães da Costa, J.; Barron, U.; Barsov, S.; Bartels, F.; Bartoldus, R.; Bartolini, G.; Barton, A. E.; Bartos, P.; Basalaev, A.; Basan, A.; Bassalat, A.; Basso, M. J.; Bates, R. L.; Batlamous, S.; Batley, J. R.; Batool, B.; Battaglia, M.; Bauce, M.; Bauer, F.; Bauer, K. T.; Bauer, P.; Bawa, H. S.; Bayirli, A.; Beacham, J. B.; Beau, T.; Beauchemin, P. H.; Becherer, F.; Bechtle, P.; Beck, H. C.; Beck, H. P.; Becker, K.; Becot, C.; Beddall, A.; Beddall, A. J.; Bednyakov, V. A.; Bedognetti, M.; Bee, C. P.; Beermann, T. A.; Begalli, M.; Begel, M.; Behera, A.; Behr, J. K.; Beisiegel, F.; Belfkir, M.; Bell, A. S.; Bella, G.; Bellagamba, L.; Bellerive, A.; Bellos, P.; Beloborodov, K.; Belotskiy, K.; Belyaev, N. L.; Benchekroun, D.; Benekos, N.; Benhammou, Y.; Benjamin, D. P.; Benoit, M.; Bensinger, J. R.; Bentvelsen, S.; Beresford, L.; Beretta, M.; Berge, D.; Bergeaas Kuutmann, E.; Berger, N.; Bergmann, B.; Bergsten, L. J.; Beringer, J.; Berlendis, S.; Bernardi, G.; Bernius, C.; Bernlochner, F. U.; Berry, T.; Berta, P.; Bertella, C.; Berthold, A.; Bertram, I. A.; Bessidskaia Bylund, O.; Besson, N.; Bethani, A.; Bethke, S.; Betti, A.; Bevan, A. J.; Beyer, J.; Bhattacharya, D. S.; Bhattarai, P.; Bhopatkar, V. S.; Bi, R.; Bianchi, R. M.; Biebel, O.; Biedermann, D.; Bielski, R.; Bierwagen, K.; Biesuz, N. V.; Biglietti, M.; Billoud, T. R.; Bindi, M.; Bingul, A.; Bini, C.; Biondi, S.; Birch-Sykes, C. J.; Birman, M.; Bisanz, T.; Biswal, J. P.; Biswas, D.; Bitadze, A.; Bittrich, C.; Bjørke, K.; Blazek, T.; Bloch, I.; Blocker, C.; Blue, A.; Blumenschein, U.; Bobbink, G. J.; Bobrovnikov, V. S.; Bocchetta, S. S.; Boerner, D.; Bogavac, D.; Bogdanchikov, A. G.; Bohm, C.; Boisvert, V.; Bokan, P.; Bold, T.; Bolz, A. E.; Bomben, M.; Bona, M.; Bonilla, J. S.; Boonekamp, M.; Booth, C. D.; Borbély, A. G.; Borecka-Bielska, H. M.; Borgna, L. S.; Borisov, A.; Borissov, G.; Bortoletto, D.; Boscherini, D.; Bosman, M.; Bossio Sola, J. D.; Bouaouda, K.; Boudreau, J.; Bouhova-Thacker, E. V.; Boumediene, D.; Boutle, S. K.; Boveia, A.; Boyd, J.; Boye, D.; Boyko, I. R.; Bozson, A. J.; Bracinik, J.; Brahimi, N.; Brandt, G.; Brandt, O.; Braren, F.; Brau, B.; Brau, J. E.; Breaden Madden, W. D.; Brendlinger, K.; Brener, R.; Brenner, L.; Brenner, R.; Bressler, S.; Brickwedde, B.; Briglin, D. L.; Britton, D.; Britzger, D.; Brock, I.; Brock, R.; Brooijmans, G.; Brooks, W. K.; Brost, E.; Bruckman de Renstrom, P. A.; Brüers, B.; Bruncko, D.; Bruni, A.; Bruni, G.; Bruni, L. S.; Bruno, S.; Bruschi, M.; Bruscino, N.; Bryngemark, L.; Buanes, T.; Buat, Q.; Buchholz, P.; Buckley, A. G.; Budagov, I. A.; Bugge, M. K.; Bührer, F.; Bulekov, O.; Bullard, B. A.; Burch, T. J.; Burdin, S.; Burgard, C. D.; Burger, A. M.; Burghgrave, B.; Burr, J. T.; Burton, C. D.; Burzynski, J. C.; Büscher, V.; Buschmann, E.; Bussey, P. J.; Butler, J. M.; Buttar, C. M.; Butterworth, J. M.; Butti, P.; Buttinger, W.; Buxo Vazquez, C. J.; Buzatu, A.; Buzykaev, A. R.; Cabras, G.; Cabrera Urbán, S.; Caforio, D.; Cai, H.; Cairo, V. M.; Cakir, O.; Calace, N.; Calafiura, P.; Calderini, G.; Calfayan, P.; Callea, G.; Caloba, L. P.; Caltabiano, A.; Calvente Lopez, S.; Calvet, D.; Calvet, S.; Calvet, T. P.; Calvetti, M.; Camacho Toro, R.; Camarda, S.; Camarero Munoz, D.; Camarri, P.; Camerlingo, M. T.; Cameron, D.; Camincher, C.; Campana, S.; Campanelli, M.; Camplani, A.; Canale, V.; Canesse, A.; Cano Bret, M.; Cantero, J.; Cao, T.; Cao, Y.; Capeans Garrido, M. D.; Capua, M.; Cardarelli, R.; Cardillo, F.; Carducci, G.; Carli, I.; Carli, T.; Carlino, G.; Carlson, B. T.; Carlson, E. M.; Carminati, L.; Carney, R. M.; Caron, S.; Carquin, E.; Carrá, S.; Carratta, G.; Carter, J. W.; Carter, T. M.; Casado, M. P.; Casha, A. F.; Castillo, F. L.; Castillo Garcia, L.; Castillo Gimenez, V.; Castro, N. F.; Catinaccio, A.; Catmore, J. R.; Cattai, A.; Cavaliere, V.; Cavasinni, V.; Celebi, E.; Celli, F.; Cerny, K.; Cerqueira, A. S.; Cerri, A.; Cerrito, L.; Cerutti, F.; Cervelli, A.; Cetin, S. A.; Chadi, Z.; Chakraborty, D.; Chan, J.; Chan, W. S.; Chan, W. Y.; Chapman, J. D.; Chargeishvili, B.; Charlton, D. G.; Charman, T. P.; Chau, C. C.; Che, S.; Chekanov, S.; Chekulaev, S. V.; Chelkov, G. A.; Chen, B.; Chen, C.; Chen, C. H.; Chen, H.; Chen, J.; Chen, J.; Chen, J.; Chen, S.; Chen, S. J.; Chen, X.; Chen, Y.; Chen, Y. H.; Cheng, H. C.; Cheng, H. J.; Cheplakov, A.; Cheremushkina, E.; Cherkaoui El Moursli, R.; Cheu, E.; Cheung, K.; Chevalérias, T. J.; Chevalier, L.; Chiarella, V.; Chiarelli, G.; Chiodini, G.; Chisholm, A. S.; Chitan, A.; Chiu, I.; Chiu, Y. H.; Chizhov, M. V.; Choi, K.; Chomont, A. R.; Chow, Y. S.; Christopher, L. D.; Chu, M. C.; Chu, X.; Chudoba, J.; Chwastowski, J. J.; Chytka, L.; Cieri, D.; Ciesla, K. M.; Cinca, D.; Cindro, V.; Cioară, I. A.; Ciocio, A.; Cirotto, F.; Citron, Z. H.; Citterio, M.; Ciubotaru, D. A.; Ciungu, B. M.; Clark, A.; Clark, M. R.; Clark, P. J.; Clawson, S. E.; Clement, C.; Coadou, Y.; Cobal, M.; Coccaro, A.; Cochran, J.; Coelho Lopes De Sa, R.; Cohen, H.; Coimbra, A. E.; Cole, B.; Colijn, A. P.; Collot, J.; Conde Muiño, P.; Connell, S. H.; Connelly, I. A.; Constantinescu, S.; Conventi, F.; Cooper-Sarkar, A. M.; Cormier, F.; Cormier, K. J.; Corpe, L. D.; Corradi, M.; Corrigan, E. E.; Corriveau, F.; Costa, M. J.; Costanza, F.; Costanzo, D.; Cowan, G.; Cowley, J. W.; Crane, J.; Cranmer, K.; Creager, R. A.; Crépé-Renaudin, S.; Crescioli, F.; Cristinziani, M.; Croft, V.; Crosetti, G.; Cueto, A.; Cuhadar Donszelmann, T.; Cui, H.; Cukierman, A. R.; Cunningham, W. R.; Czekierda, S.; Czodrowski, P.; Czurylo, M. M.; Da Cunha Sargedas De Sousa, M. J.; Da Fonseca Pinto, J. V.; Da Via, C.; Dabrowski, W.; Dachs, F.; Dado, T.; Dahbi, S.; Dai, T.; Dallapiccola, C.; Dam, M.; D'amen, G.; D'Amico, V.; Damp, J.; Dandoy, J. R.; Daneri, M. F.; Danninger, M.; Dao, V.; Darbo, G.; Dartsi, O.; Dattagupta, A.; Daubney, T.; D'Auria, S.; David, C.; Davidek, T.; Davis, D. R.; Dawson, I.; De, K.; De Asmundis, R.; De Beurs, M.; De Castro, S.; De Groot, N.; de Jong, P.; De la Torre, H.; De Maria, A.; De Pedis, D.; De Salvo, A.; De Sanctis, U.; De Santis, M.; De Santo, A.; De Vivie De Regie, J. B.; Debenedetti, C.; Dedovich, D. V.; Deiana, A. M.; Del Peso, J.; Delabat Diaz, Y.; Delgove, D.; Deliot, F.; Delitzsch, C. M.; Della Pietra, M.; Della Volpe, D.; Dell'Acqua, A.; Dell'Asta, L.; Delmastro, M.; Delporte, C.; Delsart, P. A.; DeMarco, D. A.; Demers, S.; Demichev, M.; Demontigny, G.; Denisov, S. P.; D'Eramo, L.; Derendarz, D.; Derkaoui, J. E.; Derue, F.; Dervan, P.; Desch, K.; Dette, K.; Deutsch, C.; Devesa, M. R.; Deviveiros, P. O.; Di Bello, F. A.; Di Ciaccio, A.; Di Ciaccio, L.; Di Clemente, W. K.; Di Donato, C.; Di Girolamo, A.; Di Gregorio, G.; Di Micco, B.; Di Nardo, R.; Di Petrillo, K. F.; Di Sipio, R.; Diaconu, C.; Dias, F. A.; Dias Do Vale, T.; Diaz, M. A.; Diaz Capriles, F. G.; Dickinson, J.; Didenko, M.; Diehl, E. B.; Dietrich, J.; Díez Cornell, S.; Diez Pardos, C.; Dimitrievska, A.; Ding, W.; Dingfelder, J.; Dittmeier, S. J.; Dittus, F.; Djama, F.; Djobava, T.; Djuvsland, J. I.; Do Vale, M. A.; Dobre, M.; Dodsworth, D.; Doglioni, C.; Dolejsi, J.; Dolezal, Z.; Donadelli, M.; Dong, B.; Donini, J.; D'onofrio, A.; D'Onofrio, M.; Dopke, J.; Doria, A.; Dova, M. T.; Doyle, A. T.; Drechsler, E.; Dreyer, E.; Dreyer, T.; Drobac, A. S.; Du, D.; du Pree, T. A.; Duan, Y.; Dubinin, F.; Dubovsky, M.; Dubreuil, A.; Duchovni, E.; Duckeck, G.; Ducu, O. A.; Duda, D.; Dudarev, A.; Dudder, A. C.; Duffield, E. M.; D'uffizi, M.; Duflot, L.; Dührssen, M.; Dülsen, C.; Dumancic, M.; Dumitriu, A. E.; Dunford, M.; Duperrin, A.; Duran Yildiz, H.; Düren, M.; Durglishvili, A.; Duschinger, D.; Dutta, B.; Duvnjak, D.; Dyckes, G. I.; Dyndal, M.; Dysch, S.; Dziedzic, B. S.; Eggleston, M. G.; Eifert, T.; Eigen, G.; Einsweiler, K.; Ekelof, T.; El Jarrari, H.; Ellajosyula, V.; Ellert, M.; Ellinghaus, F.; Elliot, A. A.; Ellis, N.; Elmsheuser, J.; Elsing, M.; Emeliyanov, D.; Emerman, A.; Enari, Y.; Epland, M. B.; Erdmann, J.; Ereditato, A.; Erland, P. A.; Errenst, M.; Escalier, M.; Escobar, C.; Estrada Pastor, O.; Etzion, E.; Evans, H.; Evans, M. O.; Ezhilov, A.; Fabbri, F.; Fabbri, L.; Fabiani, V.; Facini, G.; Fakhrutdinov, R. M.; Falciano, S.; Falke, P. J.; Falke, S.; Faltova, J.; Fang, Y.; Fang, Y.; Fanourakis, G.; Fanti, M.; Faraj, M.; Farbin, A.; Farilla, A.; Farina, E. M.; Farooque, T.; Farrington, S. M.; Farthouat, P.; Fassi, F.; Fassnacht, P.; Fassouliotis, D.; Faucci Giannelli, M.; Fawcett, W. J.; Fayard, L.; Fedin, O. L.; Fedorko, W.; Fehr, A.; Feickert, M.; Feligioni, L.; Fell, A.; Feng, C.; Feng, M.; Fenton, M. J.; Fenyuk, A. B.; Ferguson, S. W.; Ferrando, J.; Ferrante, A.; Ferrari, A.; Ferrari, P.; Ferrari, R.; Ferreira de Lima, D. E.; Ferrer, A.; Ferrere, D.; Ferretti, C.; Fiedler, F.; Filipčič, A.; Filthaut, F.; Finelli, K. D.; Fiolhais, M. C.; Fiorini, L.; Fischer, F.; Fischer, J.; Fisher, W. C.; Fitschen, T.; Fleck, I.; Fleischmann, P.; Flick, T.; Flierl, B. M.; Flores, L.; Flores Castillo, L. R.; Follega, F. M.; Fomin, N.; Foo, J. H.; Forcolin, G. T.; Forland, B. C.; Formica, A.; Förster, F. A.; Forti, A. C.; Fortin, E.; Foti, M. G.; Fournier, D.; Fox, H.; Francavilla, P.; Francescato, S.; Franchini, M.; Franchino, S.; Francis, D.; Franco, L.; Franconi, L.; Franklin, M.; Frattari, G.; Fray, A. N.; Freeman, P. M.; Freund, B.; Freund, W. S.; Freundlich, E. M.; Frizzell, D. C.; Froidevaux, D.; Frost, J. A.; Fujimoto, M.; Fukunaga, C.; Fullana Torregrosa, E.; Fusayasu, T.; Fuster, J.; Gabrielli, A.; Gabrielli, A.; Gadatsch, S.; Gadow, P.; Gagliardi, G.; Gagnon, L. G.; Gallardo, G. E.; Gallas, E. J.; Gallop, B. J.; Gamboa Goni, R.; Gan, K. K.; Ganguly, S.; Gao, J.; Gao, Y.; Gao, Y. S.; Garay Walls, F. M.; García, C.; García Navarro, J. E.; García Pascual, J. A.; Garcia-Argos, C.; Garcia-Sciveres, M.; Gardner, R. W.; Garelli, N.; Gargiulo, S.; Garner, C. A.; Garonne, V.; Gasiorowski, S. J.; Gaspar, P.; Gaudiello, A.; Gaudio, G.; Gavrilenko, I. L.; Gavrilyuk, A.; Gay, C.; Gaycken, G.; Gazis, E. N.; Geanta, A. A.; Gee, C. M.; Gee, C. N.; Geisen, J.; Geisen, M.; Gemme, C.; Genest, M. H.; Geng, C.; Gentile, S.; George, S.; Geralis, T.; Gerlach, L. O.; Gessinger-Befurt, P.; Gessner, G.; Ghasemi, S.; Ghasemi Bostanabad, M.; Ghneimat, M.; Ghosh, A.; Ghosh, A.; Giacobbe, B.; Giagu, S.; Giangiacomi, N.; Giannetti, P.; Giannini, A.; Giannini, G.; Gibson, S. M.; Gignac, M.; Gil, D. T.; Gilbert, B. J.; Gillberg, D.; Gilles, G.; Gingrich, D. M.; Giordani, M. P.; Giraud, P. F.; Giugliarelli, G.; Giugni, D.; Giuli, F.; Gkaitatzis, S.; Gkialas, I.; Gkougkousis, E. L.; Gkountoumis, P.; Gladilin, L. K.; Glasman, C.; Glatzer, J.; Glaysher, P. C.; Glazov, A.; Gledhill, G. R.; Gnesi, I.; Goblirsch-Kolb, M.; Godin, D.; Goldfarb, S.; Golling, T.; Golubkov, D.; Gomes, A.; Goncalves Gama, R.; Gonçalo, R.; Gonella, G.; Gonella, L.; Gongadze, A.; Gonnella, F.; Gonski, J. L.; González de la Hoz, S.; Gonzalez Fernandez, S.; Gonzalez Lopez, R.; Gonzalez Renteria, C.; Gonzalez Suarez, R.; Gonzalez-Sevilla, S.; Gonzalvo Rodriguez, G. R.; Goossens, L.; Gorasia, N. A.; Gorbounov, P. A.; Gordon, H. A.; Gorini, B.; Gorini, E.; Gorišek, A.; Goshaw, A. T.; Gostkin, M. I.; Gottardo, C. A.; Gouighri, M.; Goussiou, A. G.; Govender, N.; Goy, C.; Grabowska-Bold, I.; Graham, E. C.; Gramling, J.; Gramstad, E.; Grancagnolo, S.; Grandi, M.; Gratchev, V.; Gravila, P. M.; Gravili, F. G.; Gray, C.; Gray, H. M.; Grefe, C.; Gregersen, K.; Gregor, I. M.; Grenier, P.; Grevtsov, K.; Grieco, C.; Grieser, N. A.; Grillo, A. A.; Grimm, K.; Grinstein, S.; Grivaz, J. F.; Groh, S.; Gross, E.; Grosse-Knetter, J.; Grout, Z. J.; Grud, C.; Grummer, A.; Grundy, J. C.; Guan, L.; Guan, W.; Gubbels, C.; Guenther, J.; Guerguichon, A.; Guerrero Rojas, J. G.; Guescini, F.; Guest, D.; Gugel, R.; Guida, A.; Guillemin, T.; Guindon, S.; Gul, U.; Guo, J.; Guo, W.; Guo, Y.; Guo, Z.; Gupta, R.; Gurbuz, S.; Gustavino, G.; Guth, M.; Gutierrez, P.; Gutschow, C.; Guyot, C.; Gwenlan, C.; Gwilliam, C. B.; Haaland, E. S.; Haas, A.; Haber, C.; Hadavand, H. K.; Hadef, A.; Haleem, M.; Haley, J.; Hall, J. J.; Halladjian, G.; Hallewell, G. D.; Hamano, K.; Hamdaoui, H.; Hamer, M.; Hamity, G. N.; Han, K.; Han, L.; Han, S.; Han, Y. F.; Hanagaki, K.; Hance, M.; Handl, D. M.; Hank, M. D.; Hankache, R.; Hansen, E.; Hansen, J. B.; Hansen, J. D.; Hansen, M. C.; Hansen, P. H.; Hanson, E. C.; Hara, K.; Harenberg, T.; Harkusha, S.; Harrison, P. F.; Hartman, N. M.; Hartmann, N. M.; Hasegawa, Y.; Hasib, A.; Hassani, S.; Haug, S.; Hauser, R.; Havener, L. B.; Havranek, M.; Hawkes, C. M.; Hawkings, R. J.; Hayashida, S.; Hayden, D.; Hayes, C.; Hayes, R. L.; Hays, C. P.; Hays, J. M.; Hayward, H. S.; Haywood, S. J.; He, F.; He, Y.; Heath, M. P.; Hedberg, V.; Heer, S.; Heggelund, A. L.; Heidegger, C.; Heidegger, K. K.; Heidorn, W. D.; Heilman, J.; Heim, S.; Heim, T.; Heinemann, B.; Heinlein, J. G.; Heinrich, J. J.; Heinrich, L.; Hejbal, J.; Helary, L.; Held, A.; Hellesund, S.; Helling, C. M.; Hellman, S.; Helsens, C.; Henderson, R. C.; Heng, Y.; Henkelmann, L.; Henriques Correia, A. M.; Herde, H.; Hernández Jiménez, Y.; Herr, H.; Herrmann, M. G.; Herrmann, T.; Herten, G.; Hertenberger, R.; Hervas, L.; Herwig, T. C.; Hesketh, G. G.; Hessey, N. P.; Hibi, H.; Higashida, A.; Higashino, S.; Higón-Rodriguez, E.; Hildebrand, K.; Hill, J. C.; Hill, K. K.; Hiller, K. H.; Hillier, S. J.; Hils, M.; Hinchliffe, I.; Hinterkeuser, F.; Hirose, M.; Hirose, S.; Hirschbuehl, D.; Hiti, B.; Hladik, O.; Hlaluku, D. R.; Hobbs, J.; Hod, N.; Hodgkinson, M. C.; Hoecker, A.; Hohn, D.; Hohov, D.; Holm, T.; Holmes, T. R.; Holzbock, M.; Hommels, L. B.; Hong, T. M.; Honig, J. C.; Hönle, A.; Hooberman, B. H.; Hopkins, W. H.; Horii, Y.; Horn, P.; Horyn, L. A.; Hou, S.; Hoummada, A.; Howarth, J.; Hoya, J.; Hrabovsky, M.; Hrdinka, J.; Hrivnac, J.; Hrynevich, A.; Hryn'ova, T.; Hsu, P. J.; Hsu, S. C.; Hu, Q.; Hu, S.; Hu, Y. F.; Huang, D. P.; Huang, Y.; Huang, Y.; Hubacek, Z.; Hubaut, F.; Huebner, M.; Huegging, F.; Huffman, T. B.; Huhtinen, M.; Hulsken, R.; Hunter, R. F.; Huo, P.; Huseynov, N.; Huston, J.; Huth, J.; Hyneman, R.; Hyrych, S.; Iacobucci, G.; Iakovidis, G.; Ibragimov, I.; Iconomidou-Fayard, L.; Iengo, P.; Ignazzi, R.; Igonkina, O.; Iguchi, R.; Iizawa, T.; Ikegami, Y.; Ikeno, M.; Ilic, N.; Iltzsche, F.; Imam, H.; Introzzi, G.; Iodice, M.; Iordanidou, K.; Ippolito, V.; Isacson, M. F.; Ishino, M.; Islam, W.; Issever, C.; Istin, S.; Ito, F.; Iturbe Ponce, J. M.; Iuppa, R.; Ivina, A.; Iwasaki, H.; Izen, J. M.; Izzo, V.; Jacka, P.; Jackson, P.; Jacobs, R. M.; Jaeger, B. P.; Jain, V.; Jäkel, G.; Jakobi, K. B.; Jakobs, K.; Jakoubek, T.; Jamieson, J.; Janas, K. W.; Jansky, R.; Janus, M.; Janus, P. A.; Jarlskog, G.; Jaspan, A. E.; Javadov, N.; Javůrek, T.; Javurkova, M.; Jeanneau, F.; Jeanty, L.; Jejelava, J.; Jenni, P.; Jeong, N.; Jézéquel, S.; Ji, H.; Jia, J.; Jiang, H.; Jiang, Y.; Jiang, Z.; Jiggins, S.; Jimenez Morales, F. A.; Jimenez Pena, J.; Jin, S.; Jinaru, A.; Jinnouchi, O.; Jivan, H.; Johansson, P.; Johns, K. A.; Johnson, C. A.; Jones, R. W.; Jones, S. D.; Jones, T. J.; Jongmanns, J.; Jovicevic, J.; Ju, X.; Junggeburth, J. J.; Juste Rozas, A.; Kaczmarska, A.; Kado, M.; Kagan, H.; Kagan, M.; Kahn, A.; Kahra, C.; Kaji, T.; Kajomovitz, E.; Kalderon, C. W.; Kaluza, A.; Kamenshchikov, A.; Kaneda, M.; Kang, N. J.; Kang, S.; Kano, Y.; Kanzaki, J.; Kaplan, L. S.; Kar, D.; Karava, K.; Kareem, M. J.; Karkanias, I.; Karpov, S. N.; Karpova, Z. M.; Kartvelishvili, V.; Karyukhin, A. N.; Kasimi, E.; Kastanas, A.; Kato, C.; Katzy, J.; Kawade, K.; Kawagoe, K.; Kawaguchi, T.; Kawamoto, T.; Kawamura, G.; Kay, E. F.; Kazakos, S.; Kazanin, V. F.; Keeler, R.; Kehoe, R.; Keller, J. S.; Kellermann, E.; Kelsey, D.; Kempster, J. J.; Kendrick, J.; Kennedy, K. E.; Kepka, O.; Kersten, S.; Kerševan, B. P.; Ketabchi Haghighat, S.; Khader, M.; Khalil-Zada, F.; Khandoga, M.; Khanov, A.; Kharlamov, A. G.; Kharlamova, T.; Khoda, E. E.; Khodinov, A.; Khoo, T. J.; Khoriauli, G.; Khramov, E.; Khubua, J.; Kido, S.; Kiehn, M.; Kilby, C. R.; Kim, E.; Kim, Y. K.; Kimura, N.; Kirchhoff, A.; Kirchmeier, D.; Kirk, J.; Kiryunin, A. E.; Kishimoto, T.; Kisliuk, D. P.; Kitali, V.; Kitsaki, C.; Kivernyk, O.; Klapdor-Kleingrothaus, T.; Klassen, M.; Klein, C.; Klein, M. H.; Klein, M.; Klein, U.; Kleinknecht, K.; Klimek, P.; Klimentov, A.; Klingl, T.; Klioutchnikova, T.; Klitzner, F. F.; Kluit, P.; Kluth, S.; Kneringer, E.; Knoops, E. B.; Knue, A.; Kobayashi, D.; Kobel, M.; Kocian, M.; Kodama, T.; Kodys, P.; Koeck, D. M.; Koenig, P. T.; Koffas, T.; Köhler, N. M.; Kolb, M.; Koletsou, I.; Komarek, T.; Kondo, T.; Köneke, K.; Kong, A. X.; König, A. C.; Kono, T.; Konstantinides, V.; Konstantinidis, N.; Konya, B.; Kopeliansky, R.; Koperny, S.; Korcyl, K.; Kordas, K.; Koren, G.; Korn, A.; Korolkov, I.; Korolkova, E. V.; Korotkova, N.; Kortner, O.; Kortner, S.; Kostyukhin, V. V.; Kotsokechagia, A.; Kotwal, A.; Koulouris, A.; Kourkoumeli-Charalampidi, A.; Kourkoumelis, C.; Kourlitis, E.; Kouskoura, V.; Kowalewski, R.; Kozanecki, W.; Kozhin, A. S.; Kramarenko, V. A.; Kramberger, G.; Krasnopevtsev, D.; Krasny, M. W.; Krasznahorkay, A.; Krauss, D.; Kremer, J. A.; Kretzschmar, J.; Krieger, P.; Krieter, F.; Krishnan, A.; Krivos, M.; Krizka, K.; Kroeninger, K.; Kroha, H.; Kroll, J.; Kroll, J.; Krowpman, K. S.; Kruchonak, U.; Krüger, H.; Krumnack, N.; Kruse, M. C.; Krzysiak, J. A.; Kubota, A.; Kuchinskaia, O.; Kuday, S.; Kuechler, J. T.; Kuehn, S.; Kuhl, T.; Kukhtin, V.; Kulchitsky, Y.; Kuleshov, S.; Kulinich, Y. P.; Kuna, M.; Kunigo, T.; Kupco, A.; Kupfer, T.; Kuprash, O.; Kurashige, H.; Kurchaninov, L. L.; Kurochkin, Y. A.; Kurova, A.; Kurth, M. G.; Kuwertz, E. S.; Kuze, M.; Kvam, A. K.; Kvita, J.; Kwan, T.; La Ruffa, F.; Lacasta, C.; Lacava, F.; Lack, D. P.; Lacker, H.; Lacour, D.; Ladygin, E.; Lafaye, R.; Laforge, B.; Lagouri, T.; Lai, S.; Lakomiec, I. K.; Lambert, J. E.; Lammers, S.; Lampl, W.; Lampoudis, C.; Lançon, E.; Landgraf, U.; Landon, M. P.; Lanfermann, M. C.; Lang, V. S.; Lange, J. C.; Langenberg, R. J.; Lankford, A. J.; Lanni, F.; Lantzsch, K.; Lanza, A.; Lapertosa, A.; Laporte, J. F.; Lari, T.; Lasagni Manghi, F.; Lassnig, M.; Lau, T. S.; Laudrain, A.; Laurier, A.; Lavorgna, M.; Lawlor, S. D.; Lazzaroni, M.; Le, B.; Le Guirriec, E.; Lebedev, A.; LeBlanc, M.; LeCompte, T.; Ledroit-Guillon, F.; Lee, A. C.; Lee, C. A.; Lee, G. R.; Lee, L.; Lee, S. C.; Lee, S.; Lefebvre, B.; Lefebvre, H. P.; Lefebvre, M.; Leggett, C.; Lehmann, K.; Lehmann, N.; Lehmann Miotto, G.; Leight, W. A.; Leisos, A.; Leite, M. A.; Leitgeb, C. E.; Leitner, R.; Lellouch, D.; Leney, K. J.; Lenz, T.; Leone, S.; Leonidopoulos, C.; Leopold, A.; Leroy, C.; Les, R.; Lester, C. G.; Levchenko, M.; Levêque, J.; Levin, D.; Levinson, L. J.; Lewis, D. J.; Li, B.; Li, B.; Li, C. Q.; Li, F.; Li, H.; Li, H.; Li, J.; Li, K.; Li, L.; Li, M.; Li, Q.; Li, Q. Y.; Li, S.; Li, X.; Li, Y.; Li, Z.; Li, Z.; Li, Z.; Liang, Z.; Liberatore, M.; Liberti, B.; Liblong, A.; Lie, K.; Lim, S.; Lin, C. Y.; Lin, K.; Linck, R. A.; Lindley, R. E.; Lindon, J. H.; Linss, A.; Lionti, A. L.; Lipeles, E.; Lipniacka, A.; Liss, T. M.; Lister, A.; Little, J. D.; Liu, B.; Liu, B. L.; Liu, H. B.; Liu, J. B.; Liu, J. K.; Liu, K.; Liu, M.; Liu, P.; Liu, X.; Liu, Y.; Liu, Y.; Liu, Y. L.; Liu, Y. W.; Livan, M.; Lleres, A.; Llorente Merino, J.; Lloyd, S. L.; Lo, C. Y.; Lobodzinska, E. M.; Loch, P.; Loffredo, S.; Lohse, T.; Lohwasser, K.; Lokajicek, M.; Long, J. D.; Long, R. E.; Longarini, I.; Longo, L.; Looper, K. A.; Lopez Paz, I.; Lopez Solis, A.; Lorenz, J.; Lorenzo Martinez, N.; Lory, A. M.; Lösel, P. J.; Lösle, A.; Lou, X.; Lou, X.; Lounis, A.; Love, J.; Love, P. A.; Lozano Bahilo, J. J.; Lu, M.; Lu, Y. J.; Lubatti, H. J.; Luci, C.; Lucio Alves, F. L.; Lucotte, A.; Luehring, F.; Luise, I.; Luminari, L.; Lund-Jensen, B.; Lutz, M. S.; Lynn, D.; Lyons, H.; Lysak, R.; Lytken, E.; Lyu, F.; Lyubushkin, V.; Lyubushkina, T.; Ma, H.; Ma, L. L.; Ma, Y.; Mac Donell, D. M.; Maccarrone, G.; Macchiolo, A.; Macdonald, C. M.; MacDonald, J. C.; Machado Miguens, J.; Madaffari, D.; Madar, R.; Mader, W. F.; Madugoda Ralalage Don, M.; Madysa, N.; Maeda, J.; Maeno, T.; Maerker, M.; Magerl, V.; Magini, N.; Magro, J.; Mahon, D. J.; Maidantchik, C.; Maier, T.; Maio, A.; Maj, K.; Majersky, O.; Majewski, S.; Makida, Y.; Makovec, N.; Malaescu, B.; Malecki, P.; Maleev, V. P.; Malek, F.; Malito, D.; Mallik, U.; Malon, D.; Malone, C.; Maltezos, S.; Malyukov, S.; Mamuzic, J.; Mancini, G.; Mandić, I.; Manhaes de Andrade Filho, L.; Maniatis, I. M.; Manjarres Ramos, J.; Mankinen, K. H.; Mann, A.; Manousos, A.; Mansoulie, B.; Manthos, I.; Manzoni, S.; Marantis, A.; Marceca, G.; Marchese, L.; Marchiori, G.; Marcisovsky, M.; Marcoccia, L.; Marcon, C.; Marin Tobon, C. A.; Marjanovic, M.; Marshall, Z.; Martensson, M. U.; Marti-Garcia, S.; Martin, C. B.; Martin, T. A.; Martin, V. J.; Martin Dit Latour, B.; Martinelli, L.; Martinez, M.; Martinez Agullo, P.; Martinez Outschoorn, V. I.; Martin-Haugh, S.; Martoiu, V. S.; Martyniuk, A. C.; Marzin, A.; Maschek, S. R.; Masetti, L.; Mashimo, T.; Mashinistov, R.; Masik, J.; Maslennikov, A. L.; Massa, L.; Massarotti, P.; Mastrandrea, P.; Mastroberardino, A.; Masubuchi, T.; Matakias, D.; Matic, A.; Matsuzawa, N.; Mättig, P.; Maurer, J.; Maček, B.; Maximov, D. A.; Mazini, R.; Maznas, I.; Mazza, S. M.; Mc Gowan, J. P.; Mc Kee, S. P.; McCarthy, T. G.; McCormack, W. P.; McDonald, E. F.; Mcfayden, J. A.; Mchedlidze, G.; McKay, M. A.; McLean, K. D.; McMahon, S. J.; McNamara, P. C.; McNicol, C. J.; McPherson, R. A.; Mdhluli, J. E.; Meadows, Z. A.; Meehan, S.; Megy, T.; Mehlhase, S.; Mehta, A.; Meirose, B.; Melini, D.; Mellado Garcia, B. R.; Mellenthin, J. D.; Melo, M.; Meloni, F.; Melzer, A.; Mendes Gouveia, E. D.; Meng, L.; Meng, X. T.; Menke, S.; Meoni, E.; Mergelmeyer, S.; Merkt, S. A.; Merlassino, C.; Mermod, P.; Merola, L.; Meroni, C.; Merz, G.; Meshkov, O.; Meshreki, J. K.; Metcalfe, J.; Mete, A. S.; Meyer, C.; Meyer, J. P.; Michetti, M.; Middleton, R. P.; Mijović, L.; Mikenberg, G.; Mikestikova, M.; Mikuž, M.; Mildner, H.; Milic, A.; Milke, C. D.; Miller, D. W.; Milov, A.; Milstead, D. A.; Mina, R. A.; Minaenko, A. A.; Minashvili, I. A.; Mincer, A. I.; Mindur, B.; Mineev, M.; Minegishi, Y.; Mir, L. M.; Mironova, M.; Mirto, A.; Mistry, K. P.; Mitani, T.; Mitrevski, J.; Mitsou, V. A.; Mittal, M.; Miu, O.; Miucci, A.; Miyagawa, P. S.; Mizukami, A.; Mjörnmark, J. U.; Mkrtchyan, T.; Mlynarikova, M.; Moa, T.; Mobius, S.; Mochizuki, K.; Mogg, P.; Mohapatra, S.; Moles-Valls, R.; Mönig, K.; Monnier, E.; Montalbano, A.; Montejo Berlingen, J.; Montella, M.; Monticelli, F.; Monzani, S.; Morange, N.; Moreira De Carvalho, A. L.; Moreno, D.; Moreno Llácer, M.; Moreno Martinez, C.; Morettini, P.; Morgenstern, M.; Morgenstern, S.; Mori, D.; Morii, M.; Morinaga, M.; Morisbak, V.; Morley, A. K.; Mornacchi, G.; Morris, A. P.; Morvaj, L.; Moschovakos, P.; Moser, B.; Mosidze, M.; Moskalets, T.; Moss, J.; Moyse, E. J.; Muanza, S.; Mueller, J.; Mueller, R. S.; Muenstermann, D.; Mullier, G. A.; Mungo, D. P.; Munoz Martinez, J. L.; Munoz Sanchez, F. J.; Murin, P.; Murray, W. J.; Murrone, A.; Muse, J. M.; Muškinja, M.; Mwewa, C.; Myagkov, A. G.; Myers, A. A.; Myers, G.; Myers, J.; Myska, M.; Nachman, B. P.; Nackenhorst, O.; Nag, A. N.; Nagai, K.; Nagano, K.; Nagasaka, Y.; Nagle, J. L.; Nagy, E.; Nairz, A. M.; Nakahama, Y.; Nakamura, K.; Nakamura, T.; Nanjo, H.; Napolitano, F.; Naranjo Garcia, R. F.; Narayan, R.; Naryshkin, I.; Naumann, T.; Navarro, G.; Nechaeva, P. Y.; Nechansky, F.; Neep, T. J.; Negri, A.; Negrini, M.; Nellist, C.; Nelson, C.; Nelson, M. E.; Nemecek, S.; Nessi, M.; Neubauer, M. S.; Neuhaus, F.; Neumann, M.; Newhouse, R.; Newman, P. R.; Ng, C. W.; Ng, Y. S.; Ng, Y. W.; Ngair, B.; Nguyen, H. D.; Nguyen Manh, T.; Nibigira, E.; Nickerson, R. B.; Nicolaidou, R.; Nielsen, D. S.; Nielsen, J.; Niemeyer, M.; Nikiforou, N.; Nikolaenko, V.; Nikolic-Audit, I.; Nikolopoulos, K.; Nilsson, P.; Nindhito, H. R.; Ninomiya, Y.; Nisati, A.; Nishu, N.; Nisius, R.; Nitsche, I.; Nitta, T.; Nobe, T.; Noel, D. L.; Noguchi, Y.; Nomidis, I.; Nomura, M. A.; Nordberg, M.; Novak, J.; Novak, T.; Novgorodova, O.; Novotny, R.; Nozka, L.; Ntekas, K.; Nurse, E.; Oakham, F. G.; Oberlack, H.; Ocariz, J.; Ochi, A.; Ochoa, I.; Ochoa-Ricoux, J. P.; O'Connor, K.; Oda, S.; Odaka, S.; Oerdek, S.; Ogrodnik, A.; Oh, A.; Ohm, C. C.; Oide, H.; Ojeda, M. L.; Okawa, H.; Okazaki, Y.; O'Keefe, M. W.; Okumura, Y.; Okuyama, T.; Olariu, A.; Oleiro Seabra, L. F.; Olivares Pino, S. A.; Oliveira Damazio, D.; Oliver, J. L.; Olsson, M. J.; Olszewski, A.; Olszowska, J.; Öncel, Ö. O.; O'Neil, D. C.; O'neill, A. P.; Onofre, A.; Onyisi, P. U.; Oppen, H.; Oreamuno Madriz, R. G.; Oreglia, M. J.; Orellana, G. E.; Orestano, D.; Orlando, N.; Orr, R. S.; O'Shea, V.; Ospanov, R.; Otero Y Garzon, G.; Otono, H.; Ott, P. S.; Ottino, G. J.; Ouchrif, M.; Ouellette, J.; Ould-Saada, F.; Ouraou, A.; Ouyang, Q.; Owen, M.; Owen, R. E.; Ozcan, V. E.; Ozturk, N.; Pacalt, J.; Pacey, H. A.; Pachal, K.; Pacheco Pages, A.; Padilla Aranda, C.; Pagan Griso, S.; Palacino, G.; Palazzo, S.; Palestini, S.; Palka, M.; Palni, P.; Pandini, C. E.; Panduro Vazquez, J. G.; Pani, P.; Panizzo, G.; Paolozzi, L.; Papadatos, C.; Papageorgiou, K.; Parajuli, S.; Paramonov, A.; Paraskevopoulos, C.; Paredes Hernandez, D.; Paredes Saenz, S. R.; Parida, B.; Park, T. H.; Parker, A. J.; Parker, M. A.; Parodi, F.; Parrish, E. W.; Parsons, J. A.; Parzefall, U.; Pascual Dominguez, L.; Pascuzzi, V. R.; Pasner, J. M.; Pasquali, F.; Pasqualucci, E.; Passaggio, S.; Pastore, F.; Pasuwan, P.; Pataraia, S.; Pater, J. R.; Pathak, A.; Patton, J.; Pauly, T.; Pearkes, J.; Pearson, B.; Pedersen, M.; Pedraza Diaz, L.; Pedro, R.; Peiffer, T.; Peleganchuk, S. V.; Penc, O.; Peng, H.; Peralva, B. S.; Perego, M. M.; Pereira Peixoto, A. P.; Pereira Sanchez, L.; Perepelitsa, D. V.; Perez Codina, E.; Peri, F.; Perini, L.; Pernegger, H.; Perrella, S.; Perrevoort, A.; Peters, K.; Peters, R. F.; Petersen, B. A.; Petersen, T. C.; Petit, E.; Petousis, V.; Petridis, A.; Petridou, C.; Petroff, P.; Petrucci, F.; Pettee, M.; Pettersson, N. E.; Petukhova, K.; Peyaud, A.; Pezoa, R.; Pezzotti, L.; Pham, T.; Phillips, F. H.; Phillips, P. W.; Phipps, M. W.; Piacquadio, G.; Pianori, E.; Picazio, A.; Pickles, R. H.; Piegaia, R.; Pietreanu, D.; Pilcher, J. E.; Pilkington, A. D.; Pinamonti, M.; Pinfold, J. L.; Pitman Donaldson, C.; Pitt, M.; Pizzimento, L.; Pizzini, A.; Pleier, M. A.; Plesanovs, V.; Pleskot, V.; Plotnikova, E.; Podberezko, P.; Poettgen, R.; Poggi, R.; Poggioli, L.; Pogrebnyak, I.; Pohl, D.; Pokharel, I.; Polesello, G.; Poley, A.; Policicchio, A.; Polifka, R.; Polini, A.; Pollard, C. S.; Polychronakos, V.; Ponomarenko, D.; Pontecorvo, L.; Popa, S.; Popeneciu, G. A.; Portales, L.; Portillo Quintero, D. M.; Pospisil, S.; Potamianos, K.; Potrap, I. N.; Potter, C. J.; Potti, H.; Poulsen, T.; Poveda, J.; Powell, T. D.; Pownall, G.; Pozo Astigarraga, M. E.; Pralavorio, P.; Prell, S.; Price, D.; Primavera, M.; Proffitt, M. L.; Proklova, N.; Prokofiev, K.; Prokoshin, F.; Protopopescu, S.; Proudfoot, J.; Przybycien, M.; Pudzha, D.; Puri, A.; Puzo, P.; Pyatiizbyantseva, D.; Qian, J.; Qin, Y.; Quadt, A.; Queitsch-Maitland, M.; Racko, M.; Ragusa, F.; Rahal, G.; Raine, J. A.; Rajagopalan, S.; Ramirez Morales, A.; Ran, K.; Rauch, D. M.; Rauscher, F.; Rave, S.; Ravina, B.; Ravinovich, I.; Rawling, J. H.; Raymond, M.; Read, A. L.; Readioff, N. P.; Reale, M.; Rebuzzi, D. M.; Redlinger, G.; Reeves, K.; Reichert, J.; Reikher, D.; Reiss, A.; Rej, A.; Rembser, C.; Renardi, A.; Renda, M.; Rendel, M. B.; Rennie, A. G.; Resconi, S.; Resseguie, E. D.; Rettie, S.; Reynolds, B.; Reynolds, E.; Rezanova, O. L.; Reznicek, P.; Ricci, E.; Richter, R.; Richter, S.; Richter-Was, E.; Ridel, M.; Rieck, P.; Rifki, O.; Rijssenbeek, M.; Rimoldi, A.; Rimoldi, M.; Rinaldi, L.; Rinn, T. T.; Ripellino, G.; Riu, I.; Rivadeneira, P.; Rivera Vergara, J. C.; Rizatdinova, F.; Rizvi, E.; Rizzi, C.; Robertson, S. H.; Robin, M.; Robinson, D.; Robles Gajardo, C. M.; Robles Manzano, M.; Robson, A.; Rocchi, A.; Rocco, E.; Roda, C.; Rodriguez Bosca, S.; Rodríguez Vera, A. M.; Roe, S.; Roggel, J.; Røhne, O.; Röhrig, R.; Rojas, R. A.; Roland, B.; Roland, C. P.; Roloff, J.; Romaniouk, A.; Romano, M.; Rompotis, N.; Ronzani, M.; Roos, L.; Rosati, S.; Rosin, G.; Rosser, B. J.; Rossi, E.; Rossi, E.; Rossi, E.; Rossi, L. P.; Rossini, L.; Rosten, R.; Rotaru, M.; Rottler, B.; Rousseau, D.; Rovelli, G.; Roy, A.; Roy, D.; Rozanov, A.; Rozen, Y.; Ruan, X.; Ruggeri, T. A.; Rühr, F.; Ruiz-Martinez, A.; Rummler, A.; Rurikova, Z.; Rusakovich, N. A.; Russell, H. L.; Rustige, L.; Rutherfoord, J. P.; Rüttinger, E. M.; Rybar, M.; Rybkin, G.; Rye, E. B.; Ryzhov, A.; Sabater Iglesias, J. A.; Sabatini, P.; Sabetta, L.; Sacerdoti, S.; Sadrozinski, H. F.; Sadykov, R.; Safai Tehrani, F.; Safarzadeh Samani, B.; Safdari, M.; Saha, P.; Saha, S.; Sahinsoy, M.; Sahu, A.; Saimpert, M.; Saito, M.; Saito, T.; Sakamoto, H.; Salamani, D.; Salamanna, G.; Salnikov, A.; Salt, J.; Salvador Salas, A.; Salvatore, D.; Salvatore, F.; Salvucci, A.; Salzburger, A.; Samarati, J.; Sammel, D.; Sampsonidis, D.; Sampsonidou, D.; Sánchez, J.; Sanchez Pineda, A.; Sandaker, H.; Sander, C. O.; Sanderswood, I. G.; Sandhoff, M.; Sandoval, C.; Sankey, D. P.; Sannino, M.; Sano, Y.; Sansoni, A.; Santoni, C.; Santos, H.; Santpur, S. N.; Santra, A.; Saoucha, K. A.; Sapronov, A.; Saraiva, J. G.; Sasaki, O.; Sato, K.; Sauerburger, F.; Sauvan, E.; Savard, P.; Sawada, R.; Sawyer, C.; Sawyer, L.; Sayago Galvan, I.; Sbarra, C.; Sbrizzi, A.; Scanlon, T.; Schaarschmidt, J.; Schacht, P.; Schaefer, D.; Schaefer, L.; Schaepe, S.; Schäfer, U.; Schaffer, A. C.; Schaile, D.; Schamberger, R. D.; Schanet, E.; Scharf, C.; Scharmberg, N.; Schegelsky, V. A.; Scheirich, D.; Schenck, F.; Schernau, M.; Schiavi, C.; Schildgen, L. K.; Schillaci, Z. M.; Schioppa, E. J.; Schioppa, M.; Schleicher, K. E.; Schlenker, S.; Schmidt-Sommerfeld, K. R.; Schmieden, K.; Schmitt, C.; Schmitt, S.; Schmoeckel, J. C.; Schoeffel, L.; Schoening, A.; Scholer, P. G.; Schopf, E.; Schott, M.; Schouwenberg, J. F.; Schovancova, J.; Schramm, S.; Schroeder, F.; Schulte, A.; Schultz-Coulon, H. C.; Schumacher, M.; Schumm, B. A.; Schune, P.; Schwartzman, A.; Schwarz, T. A.; Schwemling, P.; Schwienhorst, R.; Sciandra, A.; Sciolla, G.; Scornajenghi, M.; Scuri, F.; Scutti, F.; Scyboz, L. M.; Sebastiani, C. D.; Seema, P.; Seidel, S. C.; Seiden, A.; Seidlitz, B. D.; Seiss, T.; Seitz, C.; Seixas, J. M.; Sekhniaidze, G.; Sekula, S. J.; Semprini-Cesari, N.; Sen, S.; Serfon, C.; Serin, L.; Serkin, L.; Sessa, M.; Severini, H.; Sevova, S.; Sforza, F.; Sfyrla, A.; Shabalina, E.; Shahinian, J. D.; Shaikh, N. W.; Shaked Renous, D.; Shan, L. Y.; Shapiro, M.; Sharma, A.; Sharma, A. S.; Shatalov, P. B.; Shaw, K.; Shaw, S. M.; Shehade, M.; Shen, Y.; Sherman, A. D.; Sherwood, P.; Shi, L.; Shimizu, S.; Shimmin, C. O.; Shimogama, Y.; Shimojima, M.; Shipsey, I. P.; Shirabe, S.; Shiyakova, M.; Shlomi, J.; Shmeleva, A.; Shochet, M. J.; Shojaii, J.; Shope, D. R.; Shrestha, S.; Shrif, E. M.; Shulga, E.; Sicho, P.; Sickles, A. M.; Sideras Haddad, E.; Sidiropoulou, O.; Sidoti, A.; Siegert, F.; Sijacki, D.; Silva, M. J.; Silva Oliveira, M. V.; Silverstein, S. B.; Simion, S.; Simoniello, R.; Simpson-Allsop, C. J.; Simsek, S.; Sinervo, P.; Sinetckii, V.; Singh, S.; Sioli, M.; Siral, I.; Sivoklokov, S. Y.; Sjölin, J.; Skaf, A.; Skorda, E.; Skubic, P.; Slawinska, M.; Sliwa, K.; Slovak, R.; Smakhtin, V.; Smart, B. H.; Smiesko, J.; Smirnov, N.; Smirnov, S. Y.; Smirnov, Y.; Smirnova, L. N.; Smirnova, O.; Smith, E. A.; Smith, H. A.; Smizanska, M.; Smolek, K.; Smykiewicz, A.; Snesarev, A. A.; Snoek, H. L.; Snyder, I. M.; Snyder, S.; Sobie, R.; Soffer, A.; Søgaard, A.; Sohns, F.; Solans Sanchez, C. A.; Soldatov, E. Y.; Soldevila, U.; Solodkov, A. A.; Soloshenko, A.; Solovyanov, O. V.; Solovyev, V.; Sommer, P.; Son, H.; Song, W.; Song, W. Y.; Sopczak, A.; Sopio, A. L.; Sopkova, F.; Sottocornola, S.; Soualah, R.; Soukharev, A. M.; South, D.; Spagnolo, S.; Spalla, M.; Spangenberg, M.; Spanò, F.; Sperlich, D.; Spieker, T. M.; Spigo, G.; Spina, M.; Spiteri, D. P.; Spousta, M.; Stabile, A.; Stamas, B. L.; Stamen, R.; Stamenkovic, M.; Stanecka, E.; Stanislaus, B.; Stanitzki, M. M.; Stankaityte, M.; Stapf, B.; Starchenko, E. A.; Stark, G. H.; Stark, J.; Staroba, P.; Starovoitov, P.; Stärz, S.; Staszewski, R.; Stavropoulos, G.; Stegler, M.; Steinberg, P.; Steinhebel, A. L.; Stelzer, B.; Stelzer, H. J.; Stelzer-Chilton, O.; Stenzel, H.; Stevenson, T. J.; Stewart, G. A.; Stockton, M. C.; Stoicea, G.; Stolarski, M.; Stonjek, S.; Straessner, A.; Strandberg, J.; Strandberg, S.; Strauss, M.; Strebler, T.; Strizenec, P.; Ströhmer, R.; Strom, D. M.; Stroynowski, R.; Strubig, A.; Stucci, S. A.; Stugu, B.; Stupak, J.; Styles, N. A.; Su, D.; Su, W.; Su, X.; Sulin, V. V.; Sullivan, M. J.; Sultan, D. M.; Sultansoy, S.; Sumida, T.; Sun, S.; Sun, X.; Suruliz, K.; Suster, C. J.; Sutton, M. R.; Suzuki, S.; Svatos, M.; Swiatlowski, M.; Swift, S. P.; Swirski, T.; Sydorenko, A.; Sykora, I.; Sykora, M.; Sykora, T.; Ta, D.; Tackmann, K.; Taenzer, J.; Taffard, A.; Tafirout, R.; Tagiev, E.; Takashima, R.; Takeda, K.; Takeshita, T.; Takeva, E. P.; Takubo, Y.; Talby, M.; Talyshev, A. A.; Tam, K. C.; Tamir, N. M.; Tanaka, J.; Tanaka, R.; Tapia Araya, S.; Tapprogge, S.; Tarek Abouelfadl Mohamed, A.; Tarem, S.; Tariq, K.; Tarna, G.; Tartarelli, G. F.; Tas, P.; Tasevsky, M.; Tashiro, T.; Tassi, E.; Tavares Delgado, A.; Tayalati, Y.; Taylor, A. J.; Taylor, G. N.; Taylor, W.; Teagle, H.; Tee, A. S.; Teixeira De Lima, R.; Teixeira-Dias, P.; Ten Kate, H.; Teoh, J. J.; Terada, S.; Terashi, K.; Terron, J.; Terzo, S.; Testa, M.; Teuscher, R. J.; Thais, S. J.; Themistokleous, N.; Theveneaux-Pelzer, T.; Thiele, F.; Thomas, D. W.; Thomas, J. O.; Thomas, J. P.; Thompson, E. A.; Thompson, P. D.; Thomson, E.; Thorpe, E. J.; Ticse Torres, R. E.; Tikhomirov, V. O.; Tikhonov, Y. A.; Timoshenko, S.; Tipton, P.; Tisserant, S.; Todome, K.; Todorova-Nova, S.; Todt, S.; Tojo, J.; Tokár, S.; Tokushuku, K.; Tolley, E.; Tombs, R.; Tomiwa, K. G.; Tomoto, M.; Tompkins, L.; Tornambe, P.; Torrence, E.; Torres, H.; Torró Pastor, E.; Tosciri, C.; Toth, J.; Tovey, D. R.; Traeet, A.; Treado, C. J.; Trefzger, T.; Tresoldi, F.; Tricoli, A.; Trigger, I. M.; Trincaz-Duvoid, S.; Trischuk, D. A.; Trischuk, W.; Trocmé, B.; Trofymov, A.; Troncon, C.; Trovato, F.; Truong, L.; Trzebinski, M.; Trzupek, A.; Tsai, F.; Tseng, J. C.; Tsiareshka, P. V.; Tsirigotis, A.; Tsiskaridze, V.; Tskhadadze, E. G.; Tsopoulou, M.; Tsukerman, I. I.; Tsulaia, V.; Tsuno, S.; Tsybychev, D.; Tu, Y.; Tudorache, A.; Tudorache, V.; Tulbure, T. T.; Tuna, A. N.; Turchikhin, S.; Turgeman, D.; Turk Cakir, I.; Turner, R. J.; Turra, R.; Tuts, P. M.; Tzamarias, S.; Tzovara, E.; Uchida, K.; Ukegawa, F.; Unal, G.; Unal, M.; Undrus, A.; Unel, G.; Ungaro, F. C.; Unno, Y.; Uno, K.; Urban, J.; Urquijo, P.; Usai, G.; Uysal, Z.; Vacek, V.; Vachon, B.; Vadla, K. O.; Vafeiadis, T.; Vaidya, A.; Valderanis, C.; Valdes Santurio, E.; Valente, M.; Valentinetti, S.; Valero, A.; Valéry, L.; Vallance, R. A.; Vallier, A.; Valls Ferrer, J. A.; Van Daalen, T. R.; Van Gemmeren, P.; Van Stroud, S.; Van Vulpen, I.; Vanadia, M.; Vandelli, W.; Vandenbroucke, M.; Vandewall, E. R.; Vaniachine, A.; Vannicola, D.; Vari, R.; Varnes, E. W.; Varni, C.; Varol, T.; Varouchas, D.; Varvell, K. E.; Vasile, M. E.; Vasquez, G. A.; Vazeille, F.; Vazquez Furelos, D.; Vazquez Schroeder, T.; Veatch, J.; Vecchio, V.; Veen, M. J.; Veloce, L. M.; Veloso, F.; Veneziano, S.; Ventura, A.; Verbytskyi, A.; Vercesi, V.; Verducci, M.; Vergel Infante, C. M.; Vergis, C.; Verkerke, W.; Vermeulen, A. T.; Vermeulen, J. C.; Vernieri, C.; Vetterli, M. C.; Viaux Maira, N.; Vickey, T.; Vickey Boeriu, O. E.; Viehhauser, G. H.; Vigani, L.; Villa, M.; Villaplana Perez, M.; Villhauer, E. M.; Vilucchi, E.; Vincter, M. G.; Virdee, G. S.; Vishwakarma, A.; Vittori, C.; Vivarelli, I.; Vogel, M.; Vokac, P.; von Buddenbrock, S. E.; Von Toerne, E.; Vorobel, V.; Vorobev, K.; Vos, M.; Vossebeld, J. H.; Vozak, M.; Vranjes, N.; Vranjes Milosavljevic, M.; Vrba, V.; Vreeswijk, M.; Vuillermet, R.; Vukotic, I.; Wada, S.; Wagner, P.; Wagner, W.; Wagner-Kuhr, J.; Wahdan, S.; Wahlberg, H.; Wakasa, R.; Walbrecht, V. M.; Walder, J.; Walker, R.; Walker, S. D.; Walkowiak, W.; Wallangen, V.; Wang, A. M.; Wang, A. Z.; Wang, C.; Wang, C.; Wang, F.; Wang, H.; Wang, H.; Wang, J.; Wang, P.; Wang, Q.; Wang, R. J.; Wang, R.; Wang, R.; Wang, S. M.; Wang, W. T.; Wang, W.; Wang, W. X.; Wang, Y.; Wang, Z.; Wanotayaroj, C.; Warburton, A.; Ward, C. P.; Wardrope, D. R.; Warrack, N.; Watson, A. T.; Watson, M. F.; Watts, G.; Waugh, B. M.; Webb, A. F.; Weber, C.; Weber, M. S.; Weber, S. A.; Weber, S. M.; Weidberg, A. R.; Weingarten, J.; Weirich, M.; Weiser, C.; Wells, P. S.; Wenaus, T.; Wendland, B.; Wengler, T.; Wenig, S.; Wermes, N.; Wessels, M.; Weston, T. D.; Whalen, K.; Wharton, A. M.; White, A. S.; White, A.; White, M. J.; Whiteson, D.; Whitmore, B. W.; Wiedenmann, W.; Wiel, C.; Wielers, M.; Wieseotte, N.; Wiglesworth, C.; Wiik-Fuchs, L. A.; Wilkens, H. G.; Wilkins, L. J.; Williams, H. H.; Williams, S.; Willocq, S.; Windischhofer, P. J.; Wingerter-Seez, I.; Winkels, E.; Winklmeier, F.; Winter, B. T.; Wittgen, M.; Wobisch, M.; Wolf, A.; Wölker, R.; Wollrath, J.; Wolter, M. W.; Wolters, H.; Wong, V. W.; Woods, N. L.; Worm, S. D.; Wosiek, B. K.; Woźniak, K. W.; Wraight, K.; Wu, S. L.; Wu, X.; Wu, Y.; Wuerzinger, J.; Wyatt, T. R.; Wynne, B. M.; Xella, S.; Xia, L.; Xiang, J.; Xiao, X.; Xie, X.; Xiotidis, I.; Xu, D.; Xu, H.; Xu, H.; Xu, L.; Xu, T.; Xu, W.; Xu, Z.; Xu, Z.; Yabsley, B.; Yacoob, S.; Yajima, K.; Yallup, D. P.; Yamaguchi, N.; Yamaguchi, Y.; Yamamoto, A.; Yamatani, M.; Yamazaki, T.; Yamazaki, Y.; Yan, J.; Yan, Z.; Yang, H. J.; Yang, H. T.; Yang, S.; Yang, T.; Yang, X.; Yang, Y.; Yang, Z.; Yao, W. M.; Yap, Y. C.; Yasu, Y.; Yatsenko, E.; Ye, H.; Ye, J.; Ye, S.; Yeletskikh, I.; Yexley, M. R.; Yigitbasi, E.; Yin, P.; Yorita, K.; Yoshihara, K.; Young, C. J.; Young, C.; Yu, J.; Yuan, R.; Yue, X.; Zaazoua, M.; Zabinski, B.; Zacharis, G.; Zaffaroni, E.; Zahreddine, J.; Zaitsev, A. M.; Zakareishvili, T.; Zakharchuk, N.; Zambito, S.; Zanzi, D.; Zaripovas, D. R.; Zeißner, S. V.; Zeitnitz, C.; Zemaityte, G.; Zeng, J. C.; Zenin, O.; Ženiš, T.; Zerwas, D.; Zgubič, M.; Zhang, B.; Zhang, D. F.; Zhang, G.; Zhang, J.; Zhang, K.; Zhang, L.; Zhang, L.; Zhang, M.; Zhang, R.; Zhang, S.; Zhang, X.; Zhang, X.; Zhang, Y.; Zhang, Z.; Zhang, Z.; Zhao, P.; Zhao, Z.; Zhemchugov, A.; Zheng, Z.; Zhong, D.; Zhou, B.; Zhou, C.; Zhou, H.; Zhou, M. S.; Zhou, M.; Zhou, N.; Zhou, Y.; Zhu, C. G.; Zhu, C.; Zhu, H. L.; Zhu, H.; Zhu, J.; Zhu, Y.; Zhuang, X.; Zhukov, K.; Zhulanov, V.; Zieminska, D.; Zimine, N. I.; Zimmermann, S.; Zinonos, Z.; Ziolkowski, M.; Živković, L.; Zobernig, G.; Zoccoli, A.; Zoch, K.; Zorbas, T. G.; Zou, R.; Zwalinski, L. Dijet Resonance Search with Weak Supervision Using sqrt[s]=13 TeV pp Collisions in the ATLAS Detector. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.125.131801.
333|sucess-download|Dutta, K.; Kanjilal, P.; Das, R.; Thayumanavan, S. Synergistic Interplay of Covalent and Non-Covalent Interactions in Reactive Polymer Nanoassembly Facilitates Intracellular Delivery of Antibodies. Angewandte Chemie (International ed. in English). 2020. https://doi.org/10.1002/anie.202010412.
334|sucess-download|Shelton, D.; Maruca, A. T.; Wright, R. Nursing in the American Justice System. Archives of psychiatric nursing. 2020. https://doi.org/10.1016/j.apnu.2020.07.019.
335|sucess-download|Koyasseril-Yehiya, T. M.; García-Heredia, A.; Anson, F.; Rangadurai, P.; Siegrist, M. S.; Thayumanavan, S. Supramolecular antibiotics: a strategy for conversion of broad-spectrum to narrow-spectrum antibiotics for Nanoscale. 2020. https://doi.org/10.1039/d0nr04886k.
336|sucess-download|Cohen, E. B.; Horton, K. G.; Marra, P. P.; Clipp, H. L.; Farnsworth, A.; Smolinsky, J. A.; Sheldon, D.; Buler, J. J. A place to land: spatiotemporal drivers of stopover habitat use by migrating birds. Ecology letters. 2020. https://doi.org/10.1111/ele.13618.
337|sucess-download|Adans-Dester, C.; Hankov, N.; O'Brien, A.; Vergara-Diaz, G.; Black-Schaffer, R.; Zafonte, R.; Dy, J.; Lee, S. I.; Bonato, P. Enabling precision rehabilitation interventions using wearable sensors and machine learning to track motor recovery. NPJ digital medicine. 2020. https://doi.org/10.1038/s41746-020-00328-w.
338|sucess-download|Nephew, B. C.; Febo, M.; Cali, R.; Workman, K. P.; Payne, L.; Moore, C. M.; King, J. A.; Lacreuse, A. Robustness of sex-differences in functional connectivity over time in middle-aged marmosets. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-73811-9.
339|sucess-download|Winkler, T. S.; van Hengstum, P. J.; Donnelly, J. P.; Wallace, E. J.; Sullivan, R. M.; MacDonald, D.; Albury, N. A. Revising evidence of hurricane strikes on Abaco Island (The Bahamas) over the last 700 years. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-73132-x.
340|sucess-download|Horgan, F. G.; Arida, A.; Ardestani, G.; Almazan, M. L. Intraspecific competition counters the effects of elevated and optimal temperatures on phloem-feeding insects in tropical and temperate rice. PloS one. 2020. https://doi.org/10.1371/journal.pone.0240130.
341|sucess-download|Miao, X.; Sun, T.; Golan, M.; Mager, J.; Cui, W. Loss of POLR1D results in embryonic lethality prior to blastocyst formation in mice. Molecular reproduction and development. 2020. https://doi.org/10.1002/mrd.23427.
342|sucess-download|Rosati, A. J.; Whitcomb, B. W.; Brandon, N.; Buck Louis, G. M.; Mumford, S. L.; Schisterman, E. F.; Pilsner, J. R. Sperm mitochondrial DNA biomarkers and couple fecundity. Human reproduction (Oxford, England). 2020. https://doi.org/10.1093/humrep/deaa191.
343|sucess-download|Tiwari, S.; Kazemi-Moridani, A.; Zheng, Y.; Barney, C. W.; McLeod, K. R.; Dougan, C. E.; Crosby, A. J.; Tew, G. N.; Peyton, S. R.; Cai, S.; Lee, J. H. Seeded laser-induced cavitation for studying high-strain-rate irreversible deformation of soft materials. Soft matter. 2020. https://doi.org/10.1039/d0sm00710b.
344|sucess-download|Mamidi, S.; Healey, A.; Huang, P.; Grimwood, J.; Jenkins, J.; Barry, K.; Sreedasyam, A.; Shu, S.; Lovell, J. T.; Feldman, M.; Wu, J.; Yu, Y.; Chen, C.; Johnson, J.; Sakakibara, H.; Kiba, T.; Sakurai, T.; Tavares, R.; Nusinow, D. A.; Baxter, I.; Schmutz, J.; Brutnell, T. P.; Kellogg, E. A. A genome resource for green millet Setaria viridis enables discovery of agronomically valuable loci. Nature biotechnology. 2020. https://doi.org/10.1038/s41587-020-0681-2.
345|sucess-download|Barros, B. B.; Mahmoud, S. A.; Chien, P.; Zeinert, R. D. Degradation of Lon in Caulobacter crescentus. Journal of bacteriology. 2020. https://doi.org/10.1128/JB.00344-20.
346|shorty-download|Calabrese, E. J.; Hanekamp, J. C.; Hanekamp, Y. N.; Kapoor, R.; Dhawan, G.; Agathokleous, E. Chloroquine commonly induces hormetic dose responses. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.142436.
347|shorty-download|Foxen, B.; Neill, C.; Dunsworth, A.; Roushan, P.; Chiaro, B.; Megrant, A.; Kelly, J.; Chen, Z.; Satzinger, K.; Barends, R.; Arute, F.; Arya, K.; Babbush, R.; Bacon, D.; Bardin, J. C.; Boixo, S.; Buell, D.; Burkett, B.; Chen, Y.; Collins, R.; Farhi, E.; Fowler, A.; Gidney, C.; Giustina, M.; Graff, R.; Harrigan, M.; Huang, T.; Isakov, S. V.; Jeffrey, E.; Jiang, Z.; Kafri, D.; Kechedzhi, K.; Klimov, P.; Korotkov, A.; Kostritsa, F.; Landhuis, D.; Lucero, E.; McClean, J.; McEwen, M.; Mi, X.; Mohseni, M.; Mutus, J. Y.; Naaman, O.; Neeley, M.; Niu, M.; Petukhov, A.; Quintana, C.; Rubin, N.; Sank, D.; Smelyanskiy, V.; Vainsencher, A.; White, T. C.; Yao, Z.; Yeh, P.; Zalcman, A.; Neven, H.; Martinis, J. M. Demonstrating a Continuous Set of Two-Qubit Gates for Near-Term Quantum Algorithms. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.125.120504.
348|sucess-download|Hanekamp, Y. N.; Giordano, J.; Hanekamp, J. C.; Khan, M. K.; Limper, M.; Venema, C. S.; Vergunst, S. D.; Verhoeff, J. J.; Calabrese, E. J. Immunomodulation Through Low-Dose Radiation for Severe COVID-19: Lessons From the Past and New Developments. Dose-response : a publication of International Hormesis Society. 2020. https://doi.org/10.1177/1559325820956800.
349|sucess-download|Agathokleous, E.; Kitao, M.; Wang, X.; Mao, Q.; Harayama, H.; Manning, W. J.; Koike, T. Ethylenediurea (EDU) effects on Japanese larch: an one growing season experiment with simulated regenerating communities and a four growing season application to individual saplings. Journal of forestry research. 2020. https://doi.org/10.1007/s11676-020-01223-6.
350|sucess-download|Roman, L. A.; Conway, T. M.; Eisenman, T. S.; Koeser, A. K.; Ordóñez Barona, C.; Locke, D. H.; Jenerette, G. D.; Östberg, J.; Vogt, J. Beyond 'trees are good': Disservices, management costs, and tradeoffs in urban forestry. Ambio. 2020. https://doi.org/10.1007/s13280-020-01396-8.
351|sucess-download|Trevenen, S.; Beltramo, P. J. Gradient stretching to produce variable aspect ratio colloidal ellipsoids. Journal of colloid and interface science. 2020. https://doi.org/10.1016/j.jcis.2020.09.065.
352|sucess-download|Ong, A. W.; Stephenson, J.; Gile, K. J.; Aronow, R. A.; Wang, X.; Xu, Y.; Martin, N. D.; Kim, P. K.; Fernandez, F. B. Outcome of Hypotensive Trauma Patients by Time and Day of Arrival. The Journal of surgical research. 2020. https://doi.org/10.1016/j.jss.2020.08.048.
353|sucess-download|Jacob, H.; Curtis, A. M.; Kearney, C. J. Therapeutics on the clock: Circadian medicine in the treatment of chronic inflammatory diseases. Biochemical pharmacology. 2020. https://doi.org/10.1016/j.bcp.2020.114254.
354|sucess-download|Hillstrom, H. J.; Soeters, R.; Miranda, M.; Backus, S. I.; Hafer, J.; Gibbons, M.; Thaqi, I.; Lenhoff, M.; Hannan, M. T.; Endo, Y.; Sculco, T.; Lane, J. Effect of increased serum 25(OH)D and calcium on structure and function of post-menopausal women: a pilot study. Archives of osteoporosis. 2020. https://doi.org/10.1007/s11657-020-00814-4.
355|shorty-download|Young-Mason, J. The Crucial Role of the Arts and Humanities in the "Ongoing Struggle to Redeem the Soul of America". Clinical nurse specialist CNS. 2020. https://doi.org/10.1097/NUR.0000000000000550.
356|sucess-download|Nguyen, A.; Ramesh, A.; Kumar, S.; Nandi, D.; Brouillard, A.; Wells, A.; Pobezinsky, L.; Osborne, B.; Kulkarni, A. A. Granzyme B nanoreporter for early monitoring of tumor response to immunotherapy. Science advances. 2020. https://doi.org/10.1126/sciadv.abc2777.
357|sucess-download|Milam, J.; Johnson, D. E.; Andersen, J. C.; Fassler, A. B.; Narango, D. L.; Elkinton, J. S. Validating Morphometrics with DNA Barcoding to Reliably Separate Three Cryptic Species of Insects. 2020. https://doi.org/10.3390/insects11100669.
358|sucess-download|Bandaru, S. S.; Khanday, M. A.; Ibrahim, N.; Naganuma, F.; Vetrivelan, R. Sleep-Wake Control by Melanin-Concentrating Hormone (MCH) Neurons: a Review of Recent Findings. Current neurology and neuroscience reports. 2020. https://doi.org/10.1007/s11910-020-01075-x.
359|sucess-download|Brownscombe, J. W.; Griffin, L. P.; Morley, D.; Acosta, A.; Hunt, J.; Lowerre-Barbieri, S. K.; Adams, A. J.; Danylchuk, A. J.; Cooke, S. J. Application of machine learning algorithms to identify cryptic reproductive habitats using diverse information sources. Oecologia. 2020. https://doi.org/10.1007/s00442-020-04753-2.
360|sucess-download|Rysling, A.; Bishop, J.; Clifton, C.; Yacovone, A. Preceding syllables are necessary for the accent advantage effect. The Journal of the Acoustical Society of America. 2020. https://doi.org/10.1121/10.0001780.
361|sucess-download|St Laurent, C. W.; Burkart, S.; Rodheim, K.; Marcotte, R.; Spencer, R. M. Cross-Sectional Associations of 24-Hour Sedentary Time, Physical Activity, and Sleep Duration Compositions with Sleep Quality and Habits in Preschoolers. International journal of environmental research and public health. 2020. https://doi.org/10.3390/ijerph17197148.
362|sucess-download|Bailey, D. E.; Zucker, D. M. Supportive Interventions During Treatment of Chronic Hepatitis C: A Review of the Literature. Gastroenterology nursing : the official journal of the Society of Gastroenterology Nurses and Associates. 2020. https://doi.org/10.1097/SGA.0000000000000488.
363|sucess-download|Pokharel, P.; Rana, J.; Moutchia, J.; Uchai, S.; Kerri, A.; Luna Gutiérrez, P. L.; Islam, R. M. Effect of exercise on symptoms of premenstrual syndrome in low and middle-income countries: a protocol for systematic review and meta-analysis. BMJ open. 2020. https://doi.org/10.1136/bmjopen-2020-039274.
364|shorty-download|Phung, L. A.; Foster, A. D.; Miller, M. S.; Lowe, D. A.; Thomas, D. D. Super-relaxed state of myosin in human skeletal muscle is fiber-type dependent. American journal of physiology. Cell physiology. 2020. https://doi.org/10.1152/ajpcell.00396.2020.
365|shorty-download|Munteanu, E.; Barron, I. Asylum Caseworkers' Experience Working in Lesvos: A Grounded Theory Analysis. Journal of evidence-based social work (2019). 2020. https://doi.org/10.1080/26408066.2020.1797605.
366|shorty-download|McAndrew, T.; Reich, N. G. An expert judgment model to predict early stages of the COVID-19 outbreak in the United States. medRxiv : the preprint server for health sciences. 2020. https://doi.org/10.1101/2020.09.21.20196725.
367|sucess-download|Rea-Downing, G.; Quirk, B. J.; Wagner, C. L.; Lippert, P. C. Evergreen Needle Magnetization as a Proxy for Particulate Matter Pollution in Urban Environments. GeoHealth. 2020. https://doi.org/10.1029/2020GH000286.
368|sucess-download|Harvey, M. W.; Braun, B.; Ertel, K. A.; Pekow, P. S.; Markenson, G.; Chasan-Taber, L. Stress and Anxiety are Associated with Lower Gestational Weight Gain in Hispanic Women. Women's health issues : official publication of the Jacobs Institute of Women's Health. 2020. https://doi.org/10.1016/j.whi.2020.08.003.
369|sucess-download|Lane, K.; McLANDSBOROUGH, L. A.; Autio, W. R.; Kinchla, A. J. Efficacy of ATP Monitoring for Measuring Organic Matter on Postharvest Food Contact Surfaces. Journal of food protection. 2020. https://doi.org/10.4315/0362-028X.JFP-19-443.
370|sucess-download|Hickey, M. D.; Ayieko, J.; Kwarisiima, D.; Opel, F. J.; Owaraganise, A.; Balzer, L. B.; Chamie, G.; Jain, V.; Peng, J.; Camlin, C.; Charlebois, E. D.; Cohen, C. R.; Bukusi, E. A.; Kamya, M. R.; Petersen, M. L.; Havlir, D. V. Improved Viral Suppression With Streamlined Care in the SEARCH Study. Journal of acquired immune deficiency syndromes (1999). 2020. https://doi.org/10.1097/QAI.0000000000002508.
371|sucess-download|Liu, Y.; Wu, X.; Xie, J.; Wang, W.; Xin, J.; Kong, F.; Wu, Q.; Ling, Y.; Cao, X.; Li, Q.; Zhang, S.; Ding, L.; Wang, X.; Wu, F.; Zhang, D.; Wang, R.; Cui, W.; Zhang, X.; Li, W. Identification of transcriptome differences in goat ovaries at the follicular phase and the luteal phase using an RNA-Seq method. Theriogenology. 2020. https://doi.org/10.1016/j.theriogenology.2020.06.045.
372|sucess-download|Cheong, A.; Lingutla, R.; Mager, J. Expression analysis of mammalian mitochondrial ribosomal protein genes. Gene expression patterns : GEP. 2020. https://doi.org/10.1016/j.gep.2020.119147.
373|sucess-download|Poudel, K. C.; Poudel-Tandukar, K.; Bertone-Johnson, E. R.; Pekow, P.; Vidrine, D. J. Inflammation in Relation to Intensity and Duration of Cigarette Smoking Among People Living with HIV. AIDS and behavior. 2020. https://doi.org/10.1007/s10461-020-03048-0.
374|shorty-download|Gaitan, B.; Inglut, C. T.; Liu, Y.; Chen, Y.; Huang, H. C. Depth-resolved imaging of photosensitizer in the rodent brain using fluorescence laminar optical tomography. Journal of biomedical optics. 2020. https://doi.org/10.1117/1.JBO.25.9.096007.
375|sucess-download|Meyer, K. M.; Morris, A. H.; Webster, K.; Klein, A. M.; Kroeger, M. E.; Meredith, L. K.; Brændholt, A.; Nakamura, F.; Venturini, A.; Fonseca de Souza, L.; Shek, K. L.; Danielson, R.; van Haren, J.; Barbosa de Camargo, P.; Tsai, S. M.; Dini-Andreote, F.; de Mauro, J. M.; Barlow, J.; Berenguer, E.; Nüsslein, K.; Saleska, S.; Rodrigues, J. L.; Bohannan, B. J. Belowground changes to community structure alter methane-cycling dynamics in Amazonia. Environment international. 2020. https://doi.org/10.1016/j.envint.2020.106131.
376|sucess-download|Sinakevitch, I.; Long, S. M.; Gronenberg, W. The central nervous system of whip spiders (Amblypygi): Large mushroom bodies receive olfactory and visual input. The Journal of comparative neurology. 2020. https://doi.org/10.1002/cne.25045.
377|sucess-download|Usman, M.; Gulzar, S.; Wakil, W.; Wu, S.; Piñero, J. C.; Leskey, T. C.; Nixon, L. J.; Oliveira-Hofman, C.; Toews, M. D.; Shapiro-Ilan, D. Virulence of Entomopathogenic Fungi to Rhagoletis pomonella (Diptera: Tephritidae) and Interactions With Entomopathogenic Nematodes. Journal of economic entomology. 2020. https://doi.org/10.1093/jee/toaa209.
378|shorty-download|Ou, J.; Li, H.; Ou, X.; Yang, Z.; Chen, M.; Liu, K.; Teng, Y.; Xing, B. Degradation, adsorption and leaching of phenazine-1-carboxamide in agricultural soils. Ecotoxicology and environmental safety. 2020. https://doi.org/10.1016/j.ecoenv.2020.111374.
379|sucess-download|Voormann, A.; Rothe-Wulf, A.; Starns, J. J.; Klauer, K. C. Does speed of recognition predict two-alternative forced-choice performance? Replicating and extending Starns, Dubé, and Frelinger (2018). Quarterly journal of experimental psychology (2006). 2020. https://doi.org/10.1177/1747021820963033.
380|sucess-download|Hou, H.; Lu, X.; Du, H.; Chen, X.; Fang, D.; Fan, X.; Hu, Q.; Zhao, L. Effects of pre-cutting treatments and combination drying with different orders on drying characteristics and physicochemical properties of Lentinula edodes. Journal of the science of food and agriculture. 2020. https://doi.org/10.1002/jsfa.10827.
381|sucess-download|Tanevski, J.; Nguyen, T.; Truong, B.; Karaiskos, N.; Ahsen, M. E.; Zhang, X.; Shu, C.; Xu, K.; Liang, X.; Hu, Y.; Pham, H. V.; Xiaomei, L.; Le, T. D.; Tarca, A. L.; Bhatti, G.; Romero, R.; Karathanasis, N.; Loher, P.; Chen, Y.; Ouyang, Z.; Mao, D.; Zhang, Y.; Zand, M.; Ruan, J.; Hafemeister, C.; Qiu, P.; Tran, D.; Nguyen, T.; Gabor, A.; Yu, T.; Guinney, J.; Glaab, E.; Krause, R.; Banda, P.; Stolovitzky, G.; Rajewsky, N.; Saez-Rodriguez, J.; Meyer, P. Gene selection for optimal prediction of cell position in tissues from single-cell transcriptomics data. Life science alliance. 2020. https://doi.org/10.26508/lsa.202000867.
382|shorty-download|Fiorentini, M.; Kinchla, A. J.; Nolden, A. A. Role of Sensory Evaluation in Consumer Acceptance of Plant-Based Meat Analogs and Meat Extenders: A Scoping Review. Foods (Basel, Switzerland). 2020. https://doi.org/10.3390/foods9091334.
383|sucess-download|Esmaeili, S.; Hastings, A.; Abbott, K.; Machta, J.; Nareddy, V. R. Density dependent Resource Budget Model for alternate bearing. Journal of theoretical biology. 2020. https://doi.org/10.1016/j.jtbi.2020.110498.
384|sucess-download|Holland, M. C.; Eggensperger, C. G.; Giagnorio, M.; Schiffman, J. D.; Tiraferri, A.; Zodrow, K. R. Facile Postprocessing Alters the Permeability and Selectivity of Microbial Cellulose Ultrafiltration Membranes. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c00451.
385|shorty-download|Bank, M. S.; Metian, M.; Swarzenski, P. W. Seafood Safety Revisited: Response to Comment on "Defining Seafood Safety in the Anthropocene". Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c05908.
386|sucess-download|Peltier, R. E.; Buckley, T. J. Sensor technology: a critical cutting edge of exposure science. Journal of exposure science & environmental epidemiology. 2020. https://doi.org/10.1038/s41370-020-00268-3.
387|sucess-download|Sadai, S.; Condron, A.; DeConto, R.; Pollard, D. Future climate response to Antarctic Ice Sheet melt caused by anthropogenic warming. Science advances. 2020. https://doi.org/10.1126/sciadv.aaz1169.
388|sucess-download|Ragozzino, F. J.; Arnold, R. A.; Kowalski, C. W.; Savenkova, M. I.; Karatsoreos, I. N.; Peters, J. H. Corticosterone inhibits vagal afferent glutamate release in the nucleus of the solitary tract via retrograde endocannabinoid signaling. American journal of physiology. Cell physiology. 2020. https://doi.org/10.1152/ajpcell.00190.2020.
389|sucess-download|Annunziato, K. M.; Doherty, J.; Lee, J.; Clark, J. M.; Liang, W.; Clark, C. W.; Nguyen, M.; Roy, M. A.; Timme-Laragy, A. R. Chemical Characterization of a Legacy Aqueous Film-Forming Foam Sample and Developmental Toxicity in Zebrafish ( Environmental health perspectives. 2020. https://doi.org/10.1289/EHP6470.
390|sucess-download|Tao, W.; Yang, X.; Li, Y.; Zhu, R.; Si, X.; Pan, B.; Xing, B. Components and Persistent Free Radicals in the Volatiles during Pyrolysis of Lignocellulose Biomass. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c03363.
391|sucess-download|Lansford, J. E.; Zietz, S.; Bornstein, M. H.; Deater-Deckard, K.; Di Giunta, L.; Dodge, K. A.; Gurdal, S.; Liu, Q.; Long, Q.; Malone, P. S.; Oburu, P.; Pastorelli, C.; Skinner, A. T.; Sorbring, E.; Steinberg, L.; Tapanya, S.; Uribe Tirado, L. M.; Yotanyamaneewong, S.; Alampay, L. P.; Al-Hassan, S. M.; Bacchini, D.; Chang, L. Opportunities and peer support for aggression and delinquency during adolescence in nine countries. New directions for child and adolescent development. 2020. https://doi.org/10.1002/cad.20361.
392|sucess-download|Hossain, S.; Liu, Z.; Wood, R. J. Association between histone deacetylase activity and vitamin D-dependent gene expressions in relation to sulforaphane in human colorectal cancer cells. Journal of the science of food and agriculture. 2020. https://doi.org/10.1002/jsfa.10797.
393|sucess-download|Donnelly, D. S.; von Biela, V. R.; McCormick, S. D.; Laske, S. M.; Carey, M. P.; Waters, S.; Bowen, L.; Brown, R. J.; Larson, S.; Zimmerman, C. E. A manipulative thermal challenge protocol for adult salmonids in remote field settings. Conservation physiology. 2020. https://doi.org/10.1093/conphys/coaa074.
394|sucess-download|Stein, S. F.; Prakken, K.; Grogan-Kaylor, A. C.; Galano, M. M.; Clark, H. M.; Graham-Bermann, S. A. Longitudinal Correlates of Maternal Involvement and Spanking in Spanish-speaking Latinas Who Have Experienced Intimate Partner Violence. Journal of interpersonal violence. 2020. https://doi.org/10.1177/0886260520958630.
395|sucess-download|Yazdani, M.; Jia, Z.; Chen, J. Hydrophobic dewetting in gating and regulation of transmembrane protein ion channels. The Journal of chemical physics. 2020. https://doi.org/10.1063/5.0017537.
396|sucess-download|Alcott, D.; Long, M.; Castro-Santos, T. Wait and snap: eastern snapping turtles ( Biology letters. 2020. https://doi.org/10.1098/rsbl.2020.0218.
397|shorty-download|Velle, K. B.; Fritz-Laylin, L. K. Conserved actin machinery drives microtubule-independent motility and phagocytosis in Naegleria. The Journal of cell biology. 2020. https://doi.org/10.1083/jcb.202007158.
398|sucess-download|Nansel, T. R.; Lipsky, L. M.; Burger, K.; Faith, M.; Nicholson, W.; Stuebe, A.; Liu, A.; Siega-Riz, A. M. Reward-related eating, self-regulation, and weight change in pregnancy and postpartum: the Pregnancy Eating Attributes Study (PEAS). International journal of obesity (2005). 2020. https://doi.org/10.1038/s41366-020-00685-2.
399|shorty-download|Holec, S. A.; Block, A. J.; Bartz, J. C. The role of prion strain diversity in the development of successful therapeutic treatments. Progress in molecular biology and translational science. 2020. https://doi.org/10.1016/bs.pmbts.2020.07.001.
400|shorty-download|Li, D.; Kumari, B.; Makabenta, J. M.; Tao, B.; Qian, K.; Mei, X.; Rotello, V. M. Development of coinage metal nanoclusters as antimicrobials to combat bacterial infections. Journal of materials chemistry. B. 2020. https://doi.org/10.1039/d0tb00549e.
401|sucess-download|Bernecker, S. L.; Williams, J. J.; Caporale-Berkowitz, N. A.; Wasil, A. R.; Constantino, M. J. Nonprofessional Peer Support to Improve Mental Health: Randomized Trial of a Scalable Web-Based Peer Counseling Course. Journal of medical Internet research. 2020. https://doi.org/10.2196/17164.
402|shorty-download|Liang, X.; Crosby, A. J. Programming Impulsive Deformation with Mechanical Metamaterials. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.125.108002.
403|shorty-download|Field, M.; Christiansen, P.; Hardman, C. A.; Haynes, A.; Jones, A.; Reid, A.; Robinson, E. Translation of findings from laboratory studies of food and alcohol intake into behavior change interventions: The experimental medicine approach. Health psychology : official journal of the Division of Health Psychology, American Psychological Association. 2020. https://doi.org/10.1037/hea0001022.
404|shorty-download|Tainter, F.; Fitzpatrick, C.; Gazillo, J.; Riessman, R.; Knodler, M. Using a novel data linkage approach to investigate potential reductions in motor vehicle crash severity - An evaluation of strategic highway safety plan emphasis areas. Journal of safety research. 2020. https://doi.org/10.1016/j.jsr.2020.04.012.
405|sucess-download|Lacreuse, A.; Raz, N.; Schmidtke, D.; Hopkins, W. D.; Herndon, J. G. Age-related decline in executive function as a hallmark of cognitive ageing in primates: an overview of cognitive and neurobiological studies. Philosophical transactions of the Royal Society of London. Series B, Biological sciences. 2020. https://doi.org/10.1098/rstb.2019.0618.
406|sucess-download|Selvanathan, H. P.; Lickel, B.; Jetten, J. Collective psychological ownership and the rise of reactionary counter-movements defending the status quo. The British journal of social psychology. 2020. https://doi.org/10.1111/bjso.12418.
407|sucess-download|McClung, A.; Samudrala, S.; Torfeh, M.; Mansouree, M.; Arbabi, A. Snapshot spectral imaging with parallel metasystems. Science advances. 2020. https://doi.org/10.1126/sciadv.abc7646.
408|shorty-download|Hill, C.; Lipsky, L. M.; Betts, G. M.; Siega-Riz, A. M.; Nansel, T. R. A Prospective Study of the Relationship of Sleep Quality and Duration with Gestational Weight Gain and Fat Gain. Journal of women's health (2002). 2020. https://doi.org/10.1089/jwh.2020.8306.
409|sucess-download|Miehm, J. D.; Buonaccorsi, J.; Lim, J.; Sato, S.; Rajala, C.; Averill, J.; Khalighinejad, F.; Ionete, C.; Jones, S. L.; Kent, J. A.; van Emmerik, R. E. Sensorimotor function in progressive multiple sclerosis. Multiple sclerosis journal - experimental, translational and clinical. 2020. https://doi.org/10.1177/2055217320934835.
410|sucess-download|Pachucki, M. C.; Leal, D. F. Is having an educationally diverse social network good for health? Network science (Cambridge University Press). 2020. https://doi.org/10.1017/nws.2020.14.
411|sucess-download|Riggins, T.; Spencer, R. M. Habitual sleep is associated with both source memory and hippocampal subfield volume during early childhood. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-72231-z.
412|shorty-download|DeAngelis, K. M.; Pold, G. Genome Sequences of Microbiology resource announcements. 2020. https://doi.org/10.1128/MRA.00614-20.
413|shorty-download|Rendos, N. K.; Zajac-Cox, L.; Thomas, R.; Sato, S.; Eicholtz, S.; Kesar, T. M. Verbal feedback enhances motor learning during post-stroke gait retraining. Topics in stroke rehabilitation. 2020. https://doi.org/10.1080/10749357.2020.1818480.
414|sucess-download|Chaput, G.; Billings, A. F.; DeDiego, L.; Orellana, R.; Adkins, J. N.; Nicora, C. D.; Kim, Y. M.; Chu, R.; Simmons, B.; DeAngelis, K. M. Lignin induced iron reduction by novel sp., Tolumonas lignolytic BRL6-1. PloS one. 2020. https://doi.org/10.1371/journal.pone.0233823.
415|sucess-download|Chiaia-Hernández, A. C.; Zander, P. D.; Schneider, T.; Szidat, S.; Lloren, R.; Grosjean, M. High-Resolution Historical Record of Plant Protection Product Deposition Documented by Target and Nontarget Trend Analysis in a Swiss Lake under Anthropogenic Pressure. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c04842.
416|sucess-download|Macveigh-Fierro, D.; Rodriguez, W.; Miles, J.; Muller, M. Stealing the Show: KSHV Hijacks Host RNA Regulatory Pathways to Promote Infection. Viruses. 2020. https://doi.org/10.3390/v12091024.
417|sucess-download|Xiao, J.; Hu, R.; Chen, G.; Xing, B. Facile synthesis of multifunctional bone biochar composites decorated with Fe/Mn oxide micro-nanoparticles: Physicochemical properties, heavy metals sorption behavior and mechanism. Journal of hazardous materials. 2020. https://doi.org/10.1016/j.jhazmat.2020.123067.
418|sucess-download|Pamukoff, D. N.; Holmes, S. C.; Shumski, E. J.; Garcia, S. A.; Rubin, D. A. Plantar Flexor Function in Adults with and without Prader-Willi Syndrome. Medicine and science in sports and exercise. 2020. https://doi.org/10.1249/MSS.0000000000002361.
419|shorty-download|Mishra, S. R.; Chung, H. F.; Waller, M.; Dobson, A. J.; Greenwood, D. C.; Cade, J. E.; Giles, G. G.; Bruinsma, F.; Simonsen, M. K.; Hardy, R.; Kuh, D.; Gold, E. B.; Crawford, S. L.; Derby, C. A.; Matthews, K. A.; Demakakos, P.; Lee, J. S.; Mizunuma, H.; Hayashi, K.; Sievert, L. L.; Brown, D. E.; Sandin, S.; Weiderpass, E.; Mishra, G. D. Association Between Reproductive Life Span and Incident Nonfatal Cardiovascular Disease: A Pooled Analysis of Individual Patient Data From 12 Studies. JAMA cardiology. 2020. https://doi.org/10.1001/jamacardio.2020.4105.
420|shorty-download|Xu, S.; Wang, Y. C.; Ma, E.; Wang, R. Hotel employees' fun climate at work: Effects on work-family conflict and employee deep acting through a collectivistic perspective. International journal of hospitality management. 2020. https://doi.org/10.1016/j.ijhm.2020.102666.
421|sucess-download|Swafford, A. J.; Hussey, S. P.; Fritz-Laylin, L. K. High-efficiency electroporation of chytrid fungi. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-71618-2.
422|sucess-download|Chacón-Vargas, K.; Torres, J.; Giles-Gómez, M.; Escalante, A.; Gibbons, J. G. Genomic profiling of bacterial and fungal communities and their predictive functionality during pulque fermentation by whole-genome shotgun sequencing. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-71864-4.
423|sucess-download|Wang, L.; Wang, L.; Su, C.; Wen, C.; Gong, Y.; You, Y.; Zhao, J.; Han, Y.; Song, S.; Xiao, H. Characterization and digestion features of a novel polysaccharide-Fe(III) complex as an iron supplement. Carbohydrate polymers. 2020. https://doi.org/10.1016/j.carbpol.2020.116812.
424|shorty-download|Aiemjoy, K.; Arzika, A. M.; Cook, C.; Lebas, E.; Pilotte, N.; Grant, J. R.; Williams, S. A.; Lietman, T. M.; Keenan, J. D. Molecular detection of intestinal helminths and protozoa among young children in Dosso Region, Niger. Gates open research. 2020. https://doi.org/10.12688/gatesopenres.13124.2.
425|shorty-download|Shafiei, F.; McAuliffe, K.; Bagheri, Y.; Sun, Z.; Yu, Q.; Wu, R.; You, M. Paper-based fluorogenic RNA aptamer sensors for label-free detection of small molecules. Analytical methods : advancing methods and applications. 2020. https://doi.org/10.1039/d0ay00588f.
426|sucess-download|Murphy, M. C.; Mejia, A. F.; Mejia, J.; Yan, X.; Cheryan, S.; Dasgupta, N.; Destin, M.; Fryberg, S. A.; Garcia, J. A.; Haines, E. L.; Harackiewicz, J. M.; Ledgerwood, A.; Moss-Racusin, C. A.; Park, L. E.; Perry, S. P.; Ratliff, K. A.; Rattan, A.; Sanchez, D. T.; Savani, K.; Sekaquaptewa, D.; Smith, J. L.; Taylor, V. J.; Thoman, D. B.; Wout, D. A.; Mabry, P. L.; Ressl, S.; Diekman, A. B.; Pestilli, F. Open science, communal culture, and women's participation in the movement to improve science. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1921320117.
427|sucess-download|Tsuji, J.; Thomson, T.; Chan, E.; Brown, C. K.; Oppenheimer, J.; Bigelow, C.; Dong, X.; Theurkauf, W. E.; Weng, Z.; Schwartz, L. M. High-resolution analysis of differential gene expression during skeletal muscle atrophy and programmed cell death. Physiological genomics. 2020. https://doi.org/10.1152/physiolgenomics.00047.2020.
428|shorty-download|Narez, G. E.; Fischenich, K. M.; Donahue, T. L. Experimental animal models of post-traumatic osteoarthritis of the knee. Orthopedic reviews. 2020. https://doi.org/10.4081/or.2020.8448.
429|sucess-download|Kock, F.; Nørfelt, A.; Josiassen, A.; Assaf, A. G.; Tsionas, M. G. Understanding the COVID-19 tourist psyche: The Evolutionary Tourism Paradigm. Annals of tourism research. 2020. https://doi.org/10.1016/j.annals.2020.103053.
430|sucess-download|Soriano-Úbeda, C.; Avilés-López, K.; García-Vázquez, F. A.; Romero-Aguirregomezcorta, J.; Matás, C. Epididymal and ejaculated sperm functionality is regulated differently by periovulatory oviductal fluid in pigs. Andrology. 2020. https://doi.org/10.1111/andr.12902.
431|sucess-download|Yaghootkar, H.; Zhang, Y.; Spracklen, C. N.; Karaderi, T.; Huang, L. O.; Bradfield, J.; Schurmann, C.; Fine, R. S.; Preuss, M. H.; Kutalik, Z.; Wittemans, L. B.; Lu, Y.; Metz, S.; Willems, S. M.; Li-Gao, R.; Grarup, N.; Wang, S.; Molnos, S.; Sandoval-Zárate, A. A.; Nalls, M. A.; Lange, L. A.; Haesser, J.; Guo, X.; Lyytikäinen, L. P.; Feitosa, M. F.; Sitlani, C. M.; Venturini, C.; Mahajan, A.; Kacprowski, T.; Wang, C. A.; Chasman, D. I.; Amin, N.; Broer, L.; Robertson, N.; Young, K. L.; Allison, M.; Auer, P. L.; Blüher, M.; Borja, J. B.; Bork-Jensen, J.; Carrasquilla, G. D.; Christofidou, P.; Demirkan, A.; Doege, C. A.; Garcia, M. E.; Graff, M.; Guo, K.; Hakonarson, H.; Hong, J.; Ida Chen, Y. D.; Jackson, R.; Jakupović, H.; Jousilahti, P.; Justice, A. E.; Kähönen, M.; Kizer, J. R.; Kriebel, J.; LeDuc, C. A.; Li, J.; Lind, L.; Luan, J.; Mackey, D. A.; Mangino, M.; Männistö, S.; Martin Carli, J. F.; Medina-Gomez, C.; Mook-Kanamori, D. O.; Morris, A. P.; de Mutsert, R.; Nauck, M.; Prokic, I.; Pennell, C. E.; Pradhan, A. D.; Psaty, B. M.; Raitakari, O. T.; Scott, R. A.; Skaaby, T.; Strauch, K.; Taylor, K. D.; Teumer, A.; Uitterlinden, A. G.; Wu, Y.; Yao, J.; Walker, M.; North, K. E.; Kovacs, P.; Ikram, M. A.; van Duijn, C. M.; Ridker, P. M.; Lye, S.; Homuth, G.; Ingelsson, E.; Spector, T. D.; McKnight, B.; Province, M. A.; Lehtimäki, T.; Adair, L. S.; Rotter, J. I.; Reiner, A. P.; Wilson, J. G.; Harris, T. B.; Ripatti, S.; Grallert, H.; Meigs, J. B.; Salomaa, V.; Hansen, T.; Willems van Dijk, K.; Wareham, N. J.; Grant, S. F.; Langenberg, C.; Frayling, T. M.; Lindgren, C. M.; Mohlke, K. L.; Leibel, R. L.; Loos, R. J.; Kilpeläinen, T. O. Genetic Studies of Leptin Concentrations Implicate Leptin in the Regulation of Early Adiposity. Diabetes. 2020. https://doi.org/10.2337/db20-0070.
432|sucess-download|Kensler, K. H.; Liu, E. Z.; Wetstein, S. C.; Onken, A. M.; Luffman, C. I.; Baker, G. M.; Collins, L. C.; Schnitt, S. J.; Bret-Mounet, V. C.; Veta, M.; Pluim, J. P.; Liu, Y.; Colditz, G. A.; Eliassen, A. H.; Hankinson, S. E.; Tamimi, R. M.; Heng, Y. J. Automated Quantitative Measures of Terminal Duct Lobular Unit Involution and Breast Cancer Risk. Cancer epidemiology, biomarkers & prevention : a publication of the American Association for Cancer Research, cosponsored by the American Society of Preventive Oncology. 2020. https://doi.org/10.1158/1055-9965.EPI-20-0723.
433|sucess-download|Kim, J. J.; Fan, R.; Allison, L. K.; Andrew, T. L. On-site identification of ozone damage in fruiting plants using vapor-deposited conducting polymer tattoos. Science advances. 2020. https://doi.org/10.1126/sciadv.abc3296.
434|sucess-download|Decker, R. E.; Lamantia, Z. E.; Emrick, T. S.; Figueiredo, M. L. Sonodelivery in Skeletal Muscle: Current Approaches and Future Potential. Bioengineering (Basel, Switzerland). 2020. https://doi.org/10.3390/bioengineering7030107.
435|sucess-download|Hickey, M. E.; Gao, S.; He, L. Comparison of label-free and label-based approaches for surface-enhanced Raman microscopic imaging of bacteria cells. Analytical science advances. 2020. https://doi.org/10.1002/ansa.202000088.
436|sucess-download|Lim, J.; Kim, J.; Seo, K.; van Emmerik, R. E.; Lee, S. The Effects of Mobile Texting and Walking Speed on Gait Characteristics of Normal Weight and Obese Adults. Motor control. 2020. https://doi.org/10.1123/mc.2020-0006.
437|sucess-download|Spracklen, C. N.; Iyengar, A. K.; Vadlamudi, S.; Raulerson, C. K.; Jackson, A. U.; Brotman, S. M.; Wu, Y.; Cannon, M. E.; Davis, J. P.; Crain, A. T.; Currin, K. W.; Perrin, H. J.; Narisu, N.; Stringham, H. M.; Fuchsberger, C.; Locke, A. E.; Welch, R. P.; Kuusisto, J. K.; Pajukanta, P.; Scott, L. J.; Li, Y.; Collins, F. S.; Boehnke, M.; Laakso, M.; Mohlke, K. L. Adiponectin GWAS loci harboring extensive allelic heterogeneity exhibit distinct molecular consequences. PLoS genetics. 2020. https://doi.org/10.1371/journal.pgen.1009019.
438|sucess-download|Wei, X.; Sbalbi, N.; Bradley, L. C. Nematic colloids at liquid crystal-air interfaces Soft matter. 2020. https://doi.org/10.1039/d0sm01311k.
439|sucess-download|Hidalgo, D. M.; Romarowski, A.; Gervasi, M. G.; Navarrete, F.; Balbach, M.; Salicioni, A. M.; Levin, L. R.; Buck, J.; Visconti, P. E. Capacitation increases glucose consumption in murine sperm. Molecular reproduction and development. 2020. https://doi.org/10.1002/mrd.23421.
440|sucess-download|Yang, J. S.; Tongson, J.; Kim, K. H.; Park, Y. Piceatannol attenuates fat accumulation and oxidative stress in steatosis-induced HepG2 cells. Current research in food science. 2020. https://doi.org/10.1016/j.crfs.2020.03.008.
441|sucess-download|Farias-Pereira, R.; Savarese, J.; Yue, Y.; Lee, S. H.; Park, Y. Fat-lowering effects of isorhamnetin are via NHR-49-dependent pathway in Current research in food science. 2020. https://doi.org/10.1016/j.crfs.2019.11.002.
442|shorty-download|Bank, M. S.; Ok, Y. S.; Swarzenski, P. W. Microplastic's role in antibiotic resistance. Science (New York, N.Y.). 2020. https://doi.org/10.1126/science.abd9937.
443|sucess-download|Hoyos, V.; Plaza, G.; Li, X.; Caicedo, A. L. Something old, something new: Evolution of Colombian weedy rice ( Evolutionary applications. 2020. https://doi.org/10.1111/eva.12955.
444|sucess-download|Spitzen, T. L.; Tull, M. T.; Baer, M. M.; Dixon-Gordon, K. L.; Chapman, A. L.; Gratz, K. L. Predicting engagement in nonsuicidal self-injury (NSSI) over the course of 12 months: the roles of borderline personality disorder pathology and emotional consequences of NSSI. Journal of affective disorders. 2020. https://doi.org/10.1016/j.jad.2020.08.049.
445|sucess-download|Godwin, H. J.; Menneer, T.; Liversedge, S. P.; Cave, K. R.; Holliman, N. S.; Donnelly, N. Experience with searching in displays containing depth improves search performance by training participants to search more exhaustively. Acta psychologica. 2020. https://doi.org/10.1016/j.actpsy.2020.103173.
446|failed-download|Henkhaus, N.; Bartlett, M.; Gang, D.; Grumet, R.; Jordon-Thaden, I.; Lorence, A.; Lyons, E.; Miller, S.; Murray, S.; Nelson, A.; Specht, C.; Tyler, B.; Wentworth, T.; Ackerly, D.; Baltensperger, D.; Benfey, P.; Birchler, J.; Chellamma, S.; Crowder, R.; Donoghue, M.; Dundore-Arias, J. P.; Fletcher, J.; Fraser, V.; Gillespie, K.; Guralnick, L.; Haswell, E.; Hunter, M.; Kaeppler, S.; Kepinski, S.; Li, F. W.; Mackenzie, S.; McDade, L.; Min, Y.; Nemhauser, J.; Pearson, B.; Petracek, P.; Rogers, K.; Sakai, A.; Sickler, D.; Taylor, C.; Wayne, L.; Wendroth, O.; Zapata, F.; Stern, D. Plant science decadal vision 2020-2030: Reimagining the potential of plants for a healthy and sustainable future. Plant direct. 2020. https://doi.org/10.1002/pld3.252.
447|sucess-download|Tomaskovic-Devey, D.; Melzer, S. M. The organizational production of earnings inequalities, Germany 1995-2010. PloS one. 2020. https://doi.org/10.1371/journal.pone.0237970.
448|sucess-download|Kozubal, J.; Heck, T.; Metz, R. B. Vibrational Spectroscopy of Intermediates and C-H Activation Products of Sequential Zr The journal of physical chemistry. A. 2020. https://doi.org/10.1021/acs.jpca.0c07027.
449|sucess-download|Harmanli, O.; Solak, S.; Bayram, A.; Yuksel, B.; Jones, K. Optimizing the robotic surgery team: an operations management perspective. International urogynecology journal. 2020. https://doi.org/10.1007/s00192-020-04527-7.
450|sucess-download|Gage, A.; Milman, A. Groundwater Plans in the United States: Regulatory Frameworks and Management Goals. Ground water. 2020. https://doi.org/10.1111/gwat.13050.
451|sucess-download|Miyata, H.; Abbasi, F.; Visconti, P. E.; Ikawa, M. CRISPR/CAS9-mediated amino acid substitution reveals phosphorylation residues of RSPH6A are not essential for male fertility in mice†. Biology of reproduction. 2020. https://doi.org/10.1093/biolre/ioaa161.
452|sucess-download|Klimova, A. N.; Sandler, S. J. Mutational Analysis of Residues in PriA and PriC Affecting Their Ability To Interact with SSB in Escherichia coli K-12. Journal of bacteriology. 2020. https://doi.org/10.1128/JB.00404-20.
453|sucess-download|Hu, J.; Hsu, H.; Yuan, X.; Lou, K.; Hsue, C.; Miller, J. D.; Lu, J.; Lee, Y.; Lou, Q. HbA1c variability as an independent predictor of diabetes retinopathy in patients with type 2 diabetes. Journal of endocrinological investigation. 2020. https://doi.org/10.1007/s40618-020-01410-6.
454|sucess-download|Chin, D. L.; Wilson, M. H.; Trask, A. S.; Johnson, V. T.; Neaves, B. I.; Gojova, A.; Hogarth, M. A.; Bang, H.; Romano, P. S. Repurposing Clinical Decision Support System Data to Measure Dosing Errors and Clinician-Level Quality of Care. Journal of medical systems. 2020. https://doi.org/10.1007/s10916-020-01603-9.
455|sucess-download|Blocher McTigue, W. C.; Voke, E.; Chang, L. W.; Perry, S. L. The benefit of poor mixing: kinetics of coacervation. Physical chemistry chemical physics : PCCP. 2020. https://doi.org/10.1039/d0cp03224g.
456|sucess-download|Schweik, C. M.; Meyer, C.; Chinkondenji, P.; Smith, J.; Mchenga, P. World librarians: A socio-technical system providing library search services to offline schools and libraries in Malawi. World development perspectives. 2020. https://doi.org/10.1016/j.wdp.2020.100234.
457|sucess-download|Gu, X.; Tadesse, M. G.; Foulkes, A. S.; Ma, Y.; Balasubramanian, R. Bayesian variable selection for high dimensional predictors and self-reported outcomes. BMC medical informatics and decision making. 2020. https://doi.org/10.1186/s12911-020-01223-w.
458|sucess-download|Neilson, K. M.; Keer, S.; Bousquet, N.; Macrorie, O.; Majumdar, H. D.; Kenyon, K. L.; Alfandari, D.; Moody, S. A. Mcrs1 interacts with Six1 to influence early craniofacial and otic development. Developmental biology. 2020. https://doi.org/10.1016/j.ydbio.2020.08.013.
459|shorty-download|Goswami, R.; Jeon, T.; Nagaraj, H.; Zhai, S.; Rotello, V. M. Accessing Intracellular Targets through Nanocarrier-Mediated Cytosolic Protein Delivery. Trends in pharmacological sciences. 2020. https://doi.org/10.1016/j.tips.2020.08.005.
460|sucess-download|Vuckovic, D.; Bao, E. L.; Akbari, P.; Lareau, C. A.; Mousas, A.; Jiang, T.; Chen, M. H.; Raffield, L. M.; Tardaguila, M.; Huffman, J. E.; Ritchie, S. C.; Megy, K.; Ponstingl, H.; Penkett, C. J.; Albers, P. K.; Wigdor, E. M.; Sakaue, S.; Moscati, A.; Manansala, R.; Lo, K. S.; Qian, H.; Akiyama, M.; Bartz, T. M.; Ben-Shlomo, Y.; Beswick, A.; Bork-Jensen, J.; Bottinger, E. P.; Brody, J. A.; van Rooij, F. J.; Chitrala, K. N.; Wilson, P. W.; Choquet, H.; Danesh, J.; Di Angelantonio, E.; Dimou, N.; Ding, J.; Elliott, P.; Esko, T.; Evans, M. K.; Felix, S. B.; Floyd, J. S.; Broer, L.; Grarup, N.; Guo, M. H.; Guo, Q.; Greinacher, A.; Haessler, J.; Hansen, T.; Howson, J. M.; Huang, W.; Jorgenson, E.; Kacprowski, T.; Kähönen, M.; Kamatani, Y.; Kanai, M.; Karthikeyan, S.; Koskeridis, F.; Lange, L. A.; Lehtimäki, T.; Linneberg, A.; Liu, Y.; Lyytikäinen, L. P.; Manichaikul, A.; Matsuda, K.; Mohlke, K. L.; Mononen, N.; Murakami, Y.; Nadkarni, G. N.; Nikus, K.; Pankratz, N.; Pedersen, O.; Preuss, M.; Psaty, B. M.; Raitakari, O. T.; Rich, S. S.; Rodriguez, B. A.; Rosen, J. D.; Rotter, J. I.; Schubert, P.; Spracklen, C. N.; Surendran, P.; Tang, H.; Tardif, J. C.; Ghanbari, M.; Völker, U.; Völzke, H.; Watkins, N. A.; Weiss, S.; Cai, N.; Kundu, K.; Watt, S. B.; Walter, K.; Zonderman, A. B.; Cho, K.; Li, Y.; Loos, R. J.; Knight, J. C.; Georges, M.; Stegle, O.; Evangelou, E.; Okada, Y.; Roberts, D. J.; Inouye, M.; Johnson, A. D.; Auer, P. L.; Astle, W. J.; Reiner, A. P.; Butterworth, A. S.; Ouwehand, W. H.; Lettre, G.; Sankaran, V. G.; Soranzo, N. The Polygenic and Monogenic Basis of Blood Traits and Diseases. Cell. 2020. https://doi.org/10.1016/j.cell.2020.08.008.
461|sucess-download|Chen, M. H.; Raffield, L. M.; Mousas, A.; Sakaue, S.; Huffman, J. E.; Moscati, A.; Trivedi, B.; Jiang, T.; Akbari, P.; Vuckovic, D.; Bao, E. L.; Zhong, X.; Manansala, R.; Laplante, V.; Chen, M.; Lo, K. S.; Qian, H.; Lareau, C. A.; Beaudoin, M.; Hunt, K. A.; Akiyama, M.; Bartz, T. M.; Ben-Shlomo, Y.; Beswick, A.; Bork-Jensen, J.; Bottinger, E. P.; Brody, J. A.; van Rooij, F. J.; Chitrala, K.; Cho, K.; Choquet, H.; Correa, A.; Danesh, J.; Di Angelantonio, E.; Dimou, N.; Ding, J.; Elliott, P.; Esko, T.; Evans, M. K.; Floyd, J. S.; Broer, L.; Grarup, N.; Guo, M. H.; Greinacher, A.; Haessler, J.; Hansen, T.; Howson, J. M.; Huang, Q. Q.; Huang, W.; Jorgenson, E.; Kacprowski, T.; Kähönen, M.; Kamatani, Y.; Kanai, M.; Karthikeyan, S.; Koskeridis, F.; Lange, L. A.; Lehtimäki, T.; Lerch, M. M.; Linneberg, A.; Liu, Y.; Lyytikäinen, L. P.; Manichaikul, A.; Martin, H. C.; Matsuda, K.; Mohlke, K. L.; Mononen, N.; Murakami, Y.; Nadkarni, G. N.; Nauck, M.; Nikus, K.; Ouwehand, W. H.; Pankratz, N.; Pedersen, O.; Preuss, M.; Psaty, B. M.; Raitakari, O. T.; Roberts, D. J.; Rich, S. S.; Rodriguez, B. A.; Rosen, J. D.; Rotter, J. I.; Schubert, P.; Spracklen, C. N.; Surendran, P.; Tang, H.; Tardif, J. C.; Trembath, R. C.; Ghanbari, M.; Völker, U.; Völzke, H.; Watkins, N. A.; Zonderman, A. B.; Wilson, P. W.; Li, Y.; Butterworth, A. S.; Gauchat, J. F.; Chiang, C. W.; Li, B.; Loos, R. J.; Astle, W. J.; Evangelou, E.; van Heel, D. A.; Sankaran, V. G.; Okada, Y.; Soranzo, N.; Johnson, A. D.; Reiner, A. P.; Auer, P. L.; Lettre, G. Trans-ethnic and Ancestry-Specific Blood-Cell Genetics in 746,667 Individuals from 5 Global Populations. Cell. 2020. https://doi.org/10.1016/j.cell.2020.06.045.
462|shorty-download|Pérez Ciria, T.; Puspitarini, H. D.; Chiogna, G.; François, B.; Borga, M. Multi-temporal scale analysis of complementarity between hydro and solar power along an alpine transect. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.140179.
463|sucess-download|Goff, S. L.; Moran, M. J.; Szegda, K.; Fioroni, T.; DeBanate, M. A.; Byatt, N. Development and pilot testing of an adaptable protocol to address postpartum depression in pediatric practices serving lower-income and racial/ethnic minority families: contextual considerations. Implementation science communications. 2020. https://doi.org/10.1186/s43058-020-00049-x.
464|shorty-download|Jia, Z.; Yazdani, M.; Zhang, G.; Cui, J.; Chen, J. Publisher Correction: Hydrophobic gating in BK channels. Nature communications. 2020. https://doi.org/10.1038/s41467-020-18517-2.
465|sucess-download|Sealy, N.; Hankinson, S. E.; Houghton, S. C. Olive oil and risk of breast cancer: a systematic review and dose-response meta-analysis of observational studies. The British journal of nutrition. 2020. https://doi.org/10.1017/S0007114520003499.
466|shorty-download|Coyne, A. E.; Constantino, M. J.; Gaines, A. N.; Laws, H. B.; Westra, H. A.; Antony, M. M. Association between therapist attunement to patient outcome expectation and worry reduction in two therapies for generalized anxiety disorder. Journal of counseling psychology. 2020. https://doi.org/10.1037/cou0000457.
467|sucess-download|Lokhandwala, S.; Spencer, R. M. Slow wave sleep in naps supports episodic memories in early childhood. Developmental science. 2020. https://doi.org/10.1111/desc.13035.
468|sucess-download|Hamlington, B. D.; Gardner, A. S.; Ivins, E.; Lenaerts, J. T.; Reager, J. T.; Trossman, D. S.; Zaron, E. D.; Adhikari, S.; Arendt, A.; Aschwanden, A.; Beckley, B. D.; Bekaert, D. P.; Blewitt, G.; Caron, L.; Chambers, D. P.; Chandanpurkar, H. A.; Christianson, K.; Csatho, B.; Cullather, R. I.; DeConto, R. M.; Fasullo, J. T.; Frederikse, T.; Freymueller, J. T.; Gilford, D. M.; Girotto, M.; Hammond, W. C.; Hock, R.; Holschuh, N.; Kopp, R. E.; Landerer, F.; Larour, E.; Menemenlis, D.; Merrifield, M.; Mitrovica, J. X.; Nerem, R. S.; Nias, I. J.; Nieves, V.; Nowicki, S.; Pangaluru, K.; Piecuch, C. G.; Ray, R. D.; Rounce, D. R.; Schlegel, N. J.; Seroussi, H.; Shirzaei, M.; Sweet, W. V.; Velicogna, I.; Vinogradova, N.; Wahl, T.; Wiese, D. N.; Willis, M. J. Understanding of Contemporary Regional Sea-Level Change and the Implications for the Future. Reviews of geophysics (Washington, D.C. : 1985). 2020. https://doi.org/10.1029/2019RG000672.
469|sucess-download|Aguirre, L. A.; Davis, J. K.; Stevenson, P. C.; Adler, L. S. Herbivory and Time Since Flowering Shape Floral Rewards and Pollinator-Pathogen Interactions. Journal of chemical ecology. 2020. https://doi.org/10.1007/s10886-020-01213-2.
470|sucess-download|Demers-Mathieu, V.; Do, D. M.; Mathijssen, G. B.; Sela, D. A.; Seppo, A.; Järvinen, K. M.; Medo, E. Difference in levels of SARS-CoV-2 S1 and S2 subunits- and nucleocapsid protein-reactive SIgM/IgM, IgG and SIgA/IgA antibodies in human milk. Journal of perinatology : official journal of the California Perinatal Association. 2020. https://doi.org/10.1038/s41372-020-00805-w.
471|sucess-download|Abraham-Juárez, M. J.; Schrager-Lavelle, A.; Man, J.; Whipple, C.; Handakumbura, P.; Babbitt, C.; Bartlett, M. Evolutionary Variation in MADS Box Dimerization Affects Floral Development and Protein Abundance in Maize. The Plant cell. 2020. https://doi.org/10.1105/tpc.20.00300.
472|sucess-download|Uluata, S.; Durmaz, G.; Julian McClements, D.; Decker, E. A. Comparing DPPP fluorescence and UV based methods to assess oxidation degree of krill oil-in-water emulsions. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.127898.
473|sucess-download|Curington, C. V.; Lundquist, J. H.; Lin, K. H. Tipping the Multiracial Color‑Line: Racialized Preferences of Multiracial Online Daters. Race and social problems. 2020. https://doi.org/10.1007/s12552-020-09295-z.
474|sucess-download|Adler, L. S.; Irwin, R. E.; McArt, S. H.; Vannette, R. L. Floral traits affecting the transmission of beneficial and pathogenic pollinator-associated microbes. Current opinion in insect science. 2020. https://doi.org/10.1016/j.cois.2020.08.006.
475|sucess-download|Kuenstler, A. S.; Lahikainen, M.; Zhou, H.; Xu, W.; Priimagi, A.; Hayward, R. C. Reconfiguring Gaussian Curvature of Hydrogel Sheets with Photoswitchable Host-Guest Interactions. ACS macro letters. 2020. https://doi.org/10.1021/acsmacrolett.0c00469.
476|shorty-download|Guo, L. W. Worried about hair loss? So are these seals. Conservation physiology. 2020. https://doi.org/10.1093/conphys/coaa072.
477|sucess-download|Fokas, A. S.; Cuevas-Maraver, J.; Kevrekidis, P. G. A quantitative framework for exploring exit strategies from the COVID-19 lockdown. Chaos, solitons, and fractals. 2020. https://doi.org/10.1016/j.chaos.2020.110244.
478|shorty-download|Nagy-Reis, M.; Oshima, J. E.; Kanda, C. Z.; Palmeira, F. B.; de Melo, F. R.; Morato, R. G.; Bonjorne, L.; Magioli, M.; Leuchtenberger, C.; Rohe, F.; Lemos, F. G.; Martello, F.; Alves-Eigenheer, M.; da Silva, R. A.; Silveira Dos Santos, J.; Priante, C. F.; Bernardo, R.; Rogeri, P.; Assis, J. C.; Gaspar, L. P.; Tonetti, V. R.; Trinca, C. T.; Ribeiro, A. S.; Bocchiglieri, A.; Hass, A.; Canteri, A.; Chiarello, A. G.; Paglia, A. P.; Pereira, A. A.; de Souza, A. C.; Gatica, A.; Medeiro, A. Z.; Eriksson, A.; Costa, A. N.; González-Gallina, A.; Yanosky, A. A.; Jesus de la Cruz, A.; Bertassoni, A.; Bager, A.; Bovo, A. A.; Cravino Mol, A.; Bezerra, A. M.; Percequillo, A.; Vogliotti, A.; Costa Lopes, A. M.; Keuroghlian, A.; Zúñiga Hartley, A. C.; Devlin, A. L.; de Paula, A.; García-Olaechea, A.; Sánchez, A.; Aquino, A. C.; Srbek-Araujo, A. C.; Ochoa, A. C.; Tomazzoni, A. C.; Lacerda, A. C.; Bacellar, A. E.; Campelo, A. K.; Herrera Victoria, A. M.; Paschoal, A. M.; Potrich, A. P.; Gomes, A. P.; Olímpio, A. P.; Cunha Costa, A. R.; Jácomo, A. T.; Calaça, A. M.; Jesus, A. S.; de Barros Barban, A.; Feijó, A.; Pagoto, A.; Rolim, A. C.; Hermann, A. P.; Souza, A. S.; Chein Alonso, A.; Monteiro, A.; Mendonça, A. F.; Luza, A. L.; Moura, A. L.; da Silva, A. L.; Lanna, A. M.; Antunes, A. P.; Nunes, A. V.; Dechner, A.; Carvalho, A. S.; Novaro, A. J.; Scabin, A. B.; Gatti, A.; Nobre, A. B.; Montanarin, A.; Deffaci, Â. C.; de Albuquerque, A. C.; Mangione, A. M.; Pinto, A. M.; Mendes Pontes, A. R.; Bertoldi, A. T.; Calouro, A. M.; Fernandes, A.; Ferreira, A. N.; Ferreguetti, A. C.; Rosa, A. L.; Banhos, A.; Francisco, B. D.; Cezila, B. A.; Beisiegel, B. M.; de Thoisy, B.; Ingberman, B.; Neves, B. D.; Pereira-Silva, B.; Bertagni de Camargo, B.; Andrade, B. D.; Santos, B. S.; Leles, B.; Torres Parahyba Campos, B. A.; Kubiak, B. B.; França, B. R.; Saranholi, B. H.; Pereira Mendes, C.; Cantagallo Devids, C.; Pianca, C.; Rodrigues, C.; Islas, C. A.; de Lima, C. A.; de Lima, C. R.; Gestich, C. C.; Tedesco, C. D.; De Angelo, C.; Fonseca, C.; Hass, C.; Peres, C. A.; Kasper, C. B.; Durigan, C. C.; Fragoso, C. E.; Verona, C. E.; Rocha, C. F.; Salvador, C. H.; Vieira, C. L.; Ruiz, C. E.; Cheida, C. C.; Sartor, C. C.; Espinosa, C. D.; Fieker, C. Z.; Braga, C.; Sánchez-Lalinde, C.; Machado, C. I.; Cronemberger, C.; Luna, C. L.; Del Vechio, C.; Bernardo, C. S.; Hurtado, C. M.; Lopes, C. M.; da Rosa, C. A.; Cinta, C. C.; Costa, C. G.; Zárate-Castañeda, C. P.; Novaes, C. L.; Jenkins, C. N.; Seixas, C. S.; Martin, C.; Zaniratto, C. P.; López-Fuerte, C. F.; da Cunha, C. J.; De-Carvalho, C. B.; Chávez, C.; Santos, C. C.; Polli, D. J.; Buscariol, D.; Carreira, D. C.; Galiano, D.; Thornton, D.; Ferraz, D. D.; Lamattina, D.; Moreno, D. J.; Moreira, D. O.; Farias, D. A.; Barros-Battesti, D. M.; Tavares, D. C.; Costa Braga, D.; Gaspar, D. A.; Friedeberg, D.; Astúa, D.; Silva, D. A.; Viana, D. C.; Lizcano, D. J.; Varela, D. M.; Loretto, D.; Gräbin, D. M.; Eaton, D. P.; Machado da Silva, D.; Dias, D. M.; Camara, E. M.; Barbier, E.; Chávez-González, E.; Rocha, E. C.; Lima, E. S.; Carrano, E.; Eizirik, E.; Nakano-Oliveira, E.; Rigacci, E. D.; Santos, E. M.; Venticinque, E. M.; Alexandrino, E. R.; Abreu Ribeiro, E.; Setz, E.; Rocha, E. C.; Carvalho, E. A.; Rechenberg, E.; Fraga, E. D.; Mendonça, E. N.; D'Bastiani, E.; Isasi-Catalá, E.; Guijosa-Guadarrama, E.; Ramalho, E. E.; González, E.; Hasui, É.; Saito, E. N.; Fischer, E.; Aguiar, E. F.; Rocha, E. S.; Martínez Nambo, E. D.; de la Peña-Cuéllar, E.; Castro, É. P.; de Freitas, E. B.; Pedó, E.; Rocha, F. L.; Girardi, F.; Pereira, F. A.; Soares, F. A.; Roque, F. O.; Díaz-Santos, F. G.; Patiu, F. M.; do Nascimento, F. O.; Keesen Ferreira, F.; Diaz-Santos, F.; Moreli Fantacini, F.; Pedrosa, F.; Pessoa da Silva, F.; Velez-Garcia, F.; Gomes, F. B.; Guedes da Silva, F.; Michalski, F.; de Azevedo, F. C.; de Barros, F. C.; Santos, F. D.; Abra, F. D.; Ramalho, F. D.; Hatano, F. M.; Anaguano-Yancha, F.; Gonçalves, F.; Pedroni, F.; Passos, F. C.; Jacinavicius, F. C.; Bonfim, F. C.; Puertas, F. H.; Contreras-Moreno, F. M.; Tortato, F. R.; Santos, F. M.; Chaves, F. G.; Tirelli, F. P.; Vilas Boas, F. E.; Rodrigues, F. H.; Ubaid, F. K.; Grotta-Neto, F.; Palomares, F.; Souza, F. L.; Costa, F. E.; França, F. G.; Ramírez Pinto, F.; Aguiar, G. L.; Hofmann, G. S.; Heliodoro, G.; Duarte, G. T.; Ribeiro de Andrade, G.; Beca, G.; Zapata-Ríos, G.; Giné, G. A.; Powell, G. V.; Wilson Fernandes, G.; Forero-Medina, G.; Melo, G. L.; Santana, G. G.; Ciocheti, G.; Alves, G. B.; Souto, G. H.; Villarroel, G. J.; Porfirio, G. E.; Batista, G. O.; Behling, G. M.; Ayala Crespo, G. M.; Mourão, G. M.; Rezende, G. Z.; Toledo, G. A.; Herrera, H. M.; Alves Prado, H.; Bergallo, H. G.; Secco, H.; Rajão, H.; Roig, H. L.; Concone, H. V.; Duarte, H.; Ermenegildo, H.; Ferreira Paulino Neto, H.; Quigley, H.; Lemos, H. M.; Cabral, H.; Fernandes-Ferreira, H.; Del Castillo, H. F.; Ribeiro, I. K.; Coelho, I. P.; Franceschi, I. C.; Melo, I.; Oliveira-Bevan, I.; Mourthe, I.; Bernardi, I.; de la Torre, J. A.; Marinho-Filho, J.; Martinez, J.; Palacios Perez, J. X.; Pérez-Torres, J.; Bubadué, J.; Silveira, J. R.; Seibert, J. B.; Oliveira, J. F.; Assis, J. R.; De la Maza, J.; Hinojosa, J.; Metzger, J. P.; Thompson, J. J.; Svenning, J. C.; Gouvea, J. A.; Souza, J. R.; Pincheira-Ulbrich, J.; Nodari, J. Z.; Miranda, J.; Zecchini Gebin, J. C.; Giovanelli, J. G.; Rossi Junior, J. L.; Pandini Favoretti, J. P.; Villani, J. P.; Just, J. P.; Souza-Alves, J. P.; Costa, J. F.; Rocha, J.; Polisar, J.; Sponchiado, J.; Cherem, J. J.; Marinho, J. R.; Ziegler, J.; Cordeiro, J.; de Sousa E Silva Júnior, J.; Rodriguez-Pulido, J. A.; Chaves Dos Santos, J. C.; Dos Reis Júnior, J. C.; Mantovani, J. E.; Moreira Ramírez, J. F.; Sarasola, J. H.; Cartes, J. L.; Duarte, J. M.; Longo, J. M.; Dantas, J. O.; Venancio, J. O.; de Matos, J. R.; Pires, J. S.; Hawes, J. E.; Santos, J. G.; Ruiz-Esparza, J.; Martínez Lanfranco, J. A.; Rudolf, J. C.; Charre-Medellin, J. F.; Zanón-Martínez, J. I.; Peña-Mondragón, J. L.; Campos Krauer, J. M.; Arrabal, J. P.; Beduschi, J.; Ilha, J.; Mata, J. C.; Bonanomi, J.; Jordao, J.; de Almeida-Rocha, J. M.; Pereira-Ribeiro, J.; Zanoni, J. B.; Bogoni, J. A.; Chacón Pacheco, J. J.; Contreras Palma, K. M.; Strier, K. B.; Rodriguez Castro, K. G.; Didier, K.; Schuchmann, K. L.; Chávez-Congrains, K.; Burs, K.; Ferraz, K. M.; Juarez, K. M.; Flesher, K.; Morais, K. D.; Lautenschlager, L.; Grossel, L. A.; Dahmer, L. C.; de Almeida, L. R.; Fornitano, L.; Barbosa, L. N.; Bailey, L. L.; Barreto, L. N.; Villalba, L. M.; Magalhães, L. M.; Cullen, L.; Marques, L.; Marques Costa, L.; Silveira, L.; Moreira, L. S.; Sartorello, L.; Oliveira, L. C.; Gomes, L. P.; Aguiar, L. D.; da Silva, L. H.; Mendonça, L. S.; Valenzuela, L. A.; Benavalli, L.; Dias, L. C.; Munhoes, L. P.; Catenacci, L.; Rampim, L. E.; de Paula, L. M.; Nascimento, L. A.; Gonçalves da Silva, L.; Quintilham, L.; Ramis Segura, L.; Perillo, L. N.; Rezende, L. R.; Martínez Retta, L.; Rojas, L. N.; Guimarães, L. N.; Araújo, L.; Zago da Silva, L.; Querido, L. C.; Verdade, L. M.; Perera-Romero, L. E.; Carvalho-Leite, L. J.; Hufnagel, L.; Rezende Bernardo, L. R.; Oliveira, L. F.; Oliveira Santos, L. G.; Lyra, L. H.; Borges, L. H.; Severo, M. M.; Benchimol, M.; Quatrocchi, M. G.; Martins, M. Z.; Rodrigues, M.; Penteado, M. J.; Figuerêdo Duarte Moraes, M.; Oliveira, M. A.; Lima, M. G.; Pônzio, M. D.; Cervini, M.; da Silva, M.; Passamani, M.; Villegas, M. A.; Dos Santos Junior, M. A.; Yamane, M. H.; Jardim, M. M.; Leite de Oliveira, M.; Silveira, M.; Tortato, M. A.; Figueiredo, M. S.; Vieira, M. V.; Sekiama, M. L.; Andrade da Silva, M. A.; Nuñez, M. B.; Siviero, M. B.; Carrizo, M. C.; Barros, M. C.; Barros, M. A.; do Rosário, M. C.; Peñuela Mora, M. C.; Fleytas Jover, M. D.; Morandi, M. E.; Huerta, M. E.; Fernandes, M. E.; Viscarra Siñani, M. E.; Iezzi, M. E.; Ramos Pereira, M. J.; Gomez Vinassa, M. L.; Lorini, M. L.; Jorge, M. L.; Morini, M. S.; Guenther, M.; Landis, M. B.; Vale, M. M.; Xavier, M. S.; Tavares, M. S.; Kaizer, M.; Velilla, M.; Bergel, M. M.; Hartmann, M. T.; Lima da Silva, M.; Rivero, M.; Salles Munerato, M.; Xavier da Silva, M.; Zanin, M.; Marques, M. I.; Haberfeld, M.; Di Bitetti, M. S.; Bowler, M.; Galliez, M.; Ortiz-Moreno, M. L.; Buschiazzo, M.; Montes, M. A.; Alvarez, M. R.; Melo-Dias, M.; Reis, M. G.; Corrêa, M. R.; Tobler, M. W.; Gompper, M. E.; Nunez-Regueiro, M.; Brandão Vecchi, M.; Graipel, M. E.; Godoi, M. N.; Moura, M. O.; Konzen, M. Q.; Pardo, M. V.; Beltrão, M. G.; Mongelli, M.; Almeida, M. O.; Gilmore, M. P.; Schutte, M.; Faria, M. B.; Luiz, M. R.; de Paula, M.; Hidalgo-Mihart, M. G.; Perilli, M. L.; Freitas-Junior, M. C.; da Silva, M. P.; Denkiewicz, N. M.; Torres, N. M.; Olifiers, N.; De Lima, N. D.; de Albuquerque, N. M.; Canassa, N. F.; de Almeida Curi, N. H.; Prestes, N. P.; Falconi, N.; Gurgel-Filho, N. M.; Pasqualotto, N.; Cáceres, N. C.; Peroni, N.; de la Sancha, N. U.; Zanella, N.; Monroy-Vilchis, O.; Pays, O.; Arimoro, O. A.; Ribeiro, O. S.; Villalva, P.; Gonçalves, P. R.; Santos, P. M.; Brennand, P.; Rocha, P.; Akkawi, P.; Cruz, P.; Ferreira, P. M.; Prist, P. R.; Martin, P. S.; Arroyo-Gerala, P.; Auricchio, P.; Hartmann, P. A.; Antas, P. T.; Camargo, P. H.; Marinho, P. H.; Ruffino, P. H.; Prado, P. I.; Martins, P. W.; Cordeiro-Estrela, P.; Luna, P.; Sarmento, P.; Faria Peres, P. H.; Galetti, P. M.; de Castilho, P. V.; Renaud, P. C.; Scarascia, P. O.; Cobra, P. P.; Lombardi, P. M.; Bessa, R.; Reyna-Hurtado, R.; de Souza, R. C.; Hoogesteijn, R. J.; Alves, R. S.; Romagna, R. S.; Silva, R. L.; de Oliveira, R.; Beltrão-Mendes, R.; Alencar, R. M.; Coutinho, R.; da Silva, R. C.; Caribé Grando, R. L.; Matos, R. G.; Araujo, R. D.; Pedroso, R. F.; Durães, R. M.; Ribeiro, R. L.; Chagas, R.; Miotto, R.; Twardowsky Ramalho Bonikowski, R.; Muylaert, R. L.; Pagotto, R. V.; Hilário, R. R.; Faria, R. T.; Bassini-Silva, R.; Sampaio, R.; Sartorello, R.; Pires, R. A.; Hatakeyama, R.; Bianchi, R. C.; Buitenwerf, R.; Wallace, R.; Paolino, R. M.; Fusco-Costa, R.; Trovati, R. G.; Tomasi, R. J.; Espíndola Hack, R. O.; Magalhães, R. A.; Nobrega, R. A.; Nobre, R. A.; Massara, R. L.; Fróes, R. M.; Araújo, R. P.; León Pérez, R. R.; Jorge, R. S.; de Paula, R. C.; Martins, R.; da Cunha, R. G.; Costa, R.; Alves, R. R.; Garcia-Anleu, R.; Santos Almeida, R. P.; Cueva Loachamín, R. D.; Andrade, R. S.; Juárez, R.; Bordallo, S. U.; Guaragni, S. A.; Carrillo-Percastegui, S. E.; Seber, S.; Astete, S.; Hartz, S. M.; Espinosa, S.; Álvarez Solas, S.; Ramos Lima, S.; Silvestre, S. M.; Machado, S. A.; Keuroghlian-Eaton, S.; Albanesi, S.; Costa, S. A.; Bazilio, S.; Mendes, S. L.; Althoff, S. L.; Pinheiro, S. D.; Napiwoski, S. J.; Fernández Ramirez, S.; Talamoni, S. A.; Age, S. G.; Pereira, T. C.; Moreira, T. C.; Trigo, T. C.; Gondim, T. M.; Karlovic, T. C.; Cavalcante, T.; Maccarini, T.; Rodrigues, T. F.; de Camargo E Timo, T. P.; Monterrubio, T. C.; Piovezan, U.; Cavarzere, V.; Towns, V.; Onofrio, V. C.; Oliveira, V. B.; Araújo, V. C.; Melo, V. L.; Kanaan, V. T.; Iwakami, V.; Vale, V.; Picinatto Filho, V.; Alberici, V.; Bastazini, V. A.; Orsini, V. S.; Braz, V. D.; Rojas Bonzi, V. B.; Guedes Layme, V. M.; Gaboardi, V. T.; Rocha, V. J.; Martins, W. P.; Tomas, W. M.; Hannibal, W.; Dáttilo, W.; Silva, W. R.; Endo, W.; Bercê, W.; Bravata de la Cruz, Y.; Ribeiro, Y. G.; Galetti, M.; Ribeiro, M. C. NEOTROPICAL CARNIVORES: a data set on carnivore distribution in the Neotropics. Ecology. 2020. https://doi.org/10.1002/ecy.3128.
479|sucess-download|Wu, D. J.; Park, J.; Dasgupta, N. The influence of male faces on stereotype activation among women in STEM: An ERP investigation. Biological psychology. 2020. https://doi.org/10.1016/j.biopsycho.2020.107948.
480|sucess-download|Huang, T.; Balasubramanian, R.; Yao, Y.; Clish, C. B.; Shadyab, A. H.; Liu, B.; Tworoger, S. S.; Rexrode, K. M.; Manson, J. E.; Kubzansky, L. D.; Hankinson, S. E. Associations of depression status with plasma levels of candidate lipid and amino acid metabolites: a meta-analysis of individual data from three independent samples of US postmenopausal women. Molecular psychiatry. 2020. https://doi.org/10.1038/s41380-020-00870-9.
481|shorty-download|De Nardis, J.; Gopalakrishnan, S.; Ilievski, E.; Vasseur, R. Superdiffusion from Emergent Classical Solitons in Quantum Spin Chains. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.125.070601.
482|shorty-download|Pai, G.; Widrow, S.; Radadiya, J.; Fitzpatrick, C. D.; Knodler, M.; Pradhan, A. K. A Wizard-of-Oz experimental approach to study the human factors of automated vehicles: Platform and methods evaluation. Traffic injury prevention. 2020. https://doi.org/10.1080/15389588.2020.1810243.
483|sucess-download|Jacob, L. P.; Huber, D. E. Neural habituation enhances novelty detection: an EEG study of rapidly presented words. Computational brain & behavior. 2020. https://doi.org/10.1007/s42113-019-00071-w.
484|sucess-download|Calabrese, E. J.; Mattson, M. P.; Dhawan, G.; Kapoor, R.; Calabrese, V.; Giordano, J. Hormesis: A potential strategic approach to the treatment of neurodegenerative disease. International review of neurobiology. 2020. https://doi.org/10.1016/bs.irn.2020.03.024.
485|sucess-download|Kim, H.; Jeon, B. T.; Kim, I. M.; Bennett, S. J.; Lorch, C. M.; Viana, M. P.; Myers, J. F.; Trupp, C. J.; Whipps, Z. T.; Kundu, M.; Chung, S.; Sun, X.; Khalimonchuk, O.; Lee, J.; Ro, S. H. Sestrin2 Phosphorylation by ULK1 Induces Autophagic Degradation of Mitochondria Damaged by Copper-Induced Oxidative Stress. International journal of molecular sciences. 2020. https://doi.org/10.3390/ijms21176130.
486|sucess-download|Fotso, G. W.; Ngameni, B.; Storr, T. E.; Ngadjui, B. T.; Mafu, S.; Stephenson, G. R. Synthesis of Novel Stilbene-Coumarin Derivatives and Antifungal Screening of Antibiotics (Basel, Switzerland). 2020. https://doi.org/10.3390/antibiotics9090537.
487|sucess-download|Kho, P. F.; Amant, F.; Annibali, D.; Ashton, K.; Attia, J.; Auer, P. L.; Beckmann, M. W.; Black, A.; Brinton, L.; Buchanan, D. D.; Chanock, S. J.; Chen, C.; Chen, M. M.; Cheng, T. H.; Cook, L. S.; Crous-Bous, M.; Czene, K.; De Vivo, I.; Dennis, J.; Dörk, T.; Dowdy, S. C.; Dunning, A. M.; Dürst, M.; Easton, D. F.; Ekici, A. B.; Fasching, P. A.; Fridley, B. L.; Friedenreich, C. M.; García-Closas, M.; Gaudet, M. M.; Giles, G. G.; Goode, E. L.; Gorman, M.; Haiman, C. A.; Hall, P.; Hankinson, S. E.; Hein, A.; Hillemanns, P.; Hodgson, S.; Hoivik, E. A.; Holliday, E. G.; Hunter, D. J.; Jones, A.; Kraft, P.; Krakstad, C.; Lambrechts, D.; Le Marchand, L.; Liang, X.; Lindblom, A.; Lissowska, J.; Long, J.; Lu, L.; Magliocco, A. M.; Martin, L.; McEvoy, M.; Milne, R. L.; Mints, M.; Nassir, R.; Otton, G.; Palles, C.; Pooler, L.; Proietto, T.; Rebbeck, T. R.; Renner, S. P.; Risch, H. A.; Rübner, M.; Runnebaum, I.; Sacerdote, C.; Sarto, G. E.; Schumacher, F.; Scott, R. J.; Setiawan, V. W.; Shah, M.; Sheng, X.; Shu, X. O.; Southey, M. C.; Tham, E.; Tomlinson, I.; Trovik, J.; Turman, C.; Tyrer, J. P.; Van Den Berg, D.; Wang, Z.; Wentzensen, N.; Xia, L.; Xiang, Y. B.; Yang, H. P.; Yu, H.; Zheng, W.; Webb, P. M.; Thompson, D. J.; Spurdle, A. B.; Glubb, D. M.; O'Mara, T. A. Mendelian randomization analyses suggest a role for cholesterol in the development of endometrial cancer. International journal of cancer. 2020. https://doi.org/10.1002/ijc.33206.
488|sucess-download|Cowell, R. A.; Huber, D. E. Mechanisms of memory: An intermediate level of analysis and organization. Current opinion in behavioral sciences. 2020. https://doi.org/10.1016/j.cobeha.2020.01.019.
489|sucess-download|Wu, X.; Li, Z.; Sun, Y.; Li, F.; Gao, Z.; Zheng, J.; Xiao, H. Identification of Xanthomicrol as a Major Metabolite of 5-Demethyltangeretin in Mouse Gastrointestinal Tract and Its Inhibitory Effects on Colon Cancer Cells. Frontiers in nutrition. 2020. https://doi.org/10.3389/fnut.2020.00103.
490|sucess-download|Sheel, A.; Shao, R.; Brown, C.; Johnson, J.; Hamilton, A.; Sun, D.; Oppenheimer, J.; Smith, W.; Visconti, P. E.; Markstein, M.; Bigelow, C.; Schwartz, L. M. Acheron/Larp6 Is a Survival Protein That Protects Skeletal Muscle From Programmed Cell Death During Development. Frontiers in cell and developmental biology. 2020. https://doi.org/10.3389/fcell.2020.00622.
491|sucess-download|Joksas, D.; Freitas, P.; Chai, Z.; Ng, W. H.; Buckwell, M.; Li, C.; Zhang, W. D.; Xia, Q.; Kenyon, A. J.; Mehonic, A. Committee machines-a universal method to deal with non-idealities in memristor-based neural networks. Nature communications. 2020. https://doi.org/10.1038/s41467-020-18098-0.
492|sucess-download|Shin, P. K.; Kim, M. S.; Park, S. J.; Kwon, D. Y.; Kim, M. J.; Yang, H. J.; Kim, S. H.; Kim, K.; Chun, S.; Lee, H. J.; Choi, S. W. A Traditional Korean Diet Alters the Expression of Circulating MicroRNAs Linked to Diabetes Mellitus in a Pilot Trial. Nutrients. 2020. https://doi.org/10.3390/nu12092558.
493|sucess-download|Li, R.; Dai, T.; Zhou, W.; Fu, G.; Wan, Y.; McClements, D. J.; Li, J. Impact of pH, ferrous ions, and tannic acid on lipid oxidation in plant-based emulsions containing saponin-coated flaxseed oil droplets. Food research international (Ottawa, Ont.). 2020. https://doi.org/10.1016/j.foodres.2020.109618.
494|sucess-download|Cao, X.; Zhao, J.; Wang, Z.; Xing, B. New insight into the photo-transformation mechanisms of graphene oxide under UV-A, UV-B and UV-C lights. Journal of hazardous materials. 2020. https://doi.org/10.1016/j.jhazmat.2020.123683.
495|sucess-download|Gao, F. L.; Alpert, P.; Yu, F. H. Parasitism induces negative effects of physiological integration in a clonal plant. The New phytologist. 2020. https://doi.org/10.1111/nph.16884.
496|shorty-download|Aad, G.; Abbott, B.; Abbott, D. C.; Abed Abud, A.; Abeling, K.; Abhayasinghe, D. K.; Abidi, S. H.; AbouZeid, O. S.; Abraham, N. L.; Abramowicz, H.; Abreu, H.; Abulaiti, Y.; Acharya, B. S.; Achkar, B.; Adam, L.; Adam Bourdarios, C.; Adamczyk, L.; Adamek, L.; Adelman, J.; Adersberger, M.; Adiguzel, A.; Adorni, S.; Adye, T.; Affolder, A. A.; Afik, Y.; Agapopoulou, C.; Agaras, M. N.; Aggarwal, A.; Agheorghiesei, C.; Aguilar-Saavedra, J. A.; Ahmad, A.; Ahmadov, F.; Ahmed, W. S.; Ai, X.; Aielli, G.; Akatsuka, S.; Akbiyik, M.; Åkesson, T. P.; Akilli, E.; Akimov, A. V.; Al Khoury, K.; Alberghi, G. L.; Albert, J.; Alconada Verzini, M. J.; Alderweireldt, S.; Aleksa, M.; Aleksandrov, I. N.; Alexa, C.; Alexopoulos, T.; Alfonsi, A.; Alfonsi, F.; Alhroob, M.; Ali, B.; Ali, S.; Aliev, M.; Alimonti, G.; Allaire, C.; Allbrooke, B. M.; Allen, B. W.; Allport, P. P.; Aloisio, A.; Alonso, F.; Alpigiani, C.; Alunno Camelia, E.; Alvarez Estevez, M.; Alviggi, M. G.; Amaral Coutinho, Y.; Ambler, A.; Ambroz, L.; Amelung, C.; Amidei, D.; Amor Dos Santos, S. P.; Amoroso, S.; Amrouche, C. S.; An, F.; Anastopoulos, C.; Andari, N.; Andeen, T.; Anders, J. K.; Andrean, S. Y.; Andreazza, A.; Andrei, V.; Anelli, C. R.; Angelidakis, S.; Angerami, A.; Anisenkov, A. V.; Annovi, A.; Antel, C.; Anthony, M. T.; Antipov, E.; Antonelli, M.; Antrim, D. J.; Anulli, F.; Aoki, M.; Aparisi Pozo, J. A.; Aparo, M. A.; Aperio Bella, L.; Aranzabal Barrio, N.; Araujo Ferraz, V.; Araujo Pereira, R.; Arcangeletti, C.; Arce, A. T.; Arduh, F. A.; Arguin, J. F.; Argyropoulos, S.; Arling, J. H.; Armbruster, A. J.; Armstrong, A.; Arnaez, O.; Arnold, H.; Arrubarrena Tame, Z. P.; Artoni, G.; Asai, K.; Asai, S.; Asawatavonvanich, T.; Asbah, N.; Asimakopoulou, E. M.; Asquith, L.; Assahsah, J.; Assamagan, K.; Astalos, R.; Atkin, R. J.; Atkinson, M.; Atlay, N. B.; Atmani, H.; Augsten, K.; Austrup, V. A.; Avolio, G.; Ayoub, M. K.; Azuelos, G.; Bachacou, H.; Bachas, K.; Backes, M.; Backman, F.; Bagnaia, P.; Bahmani, M.; Bahrasemani, H.; Bailey, A. J.; Bailey, V. R.; Baines, J. T.; Bakalis, C.; Baker, O. K.; Bakker, P. J.; Bakos, E.; Bakshi Gupta, D.; Balaji, S.; Baldin, E. M.; Balek, P.; Balli, F.; Balunas, W. K.; Balz, J.; Banas, E.; Bandieramonte, M.; Bandyopadhyay, A.; Banerjee, S.; Barak, L.; Barbe, W. M.; Barberio, E. L.; Barberis, D.; Barbero, M.; Barbour, G.; Barillari, T.; Barisits, M. S.; Barkeloo, J.; Barklow, T.; Barnea, R.; Barnett, B. M.; Barnett, R. M.; Barnovska-Blenessy, Z.; Baroncelli, A.; Barone, G.; Barr, A. J.; Barranco Navarro, L.; Barreiro, F.; Barreiro Guimarães da Costa, J.; Barron, U.; Barsov, S.; Bartels, F.; Bartoldus, R.; Bartolini, G.; Barton, A. E.; Bartos, P.; Basalaev, A.; Basan, A.; Bassalat, A.; Basso, M. J.; Bates, R. L.; Batlamous, S.; Batley, J. R.; Batool, B.; Battaglia, M.; Bauce, M.; Bauer, F.; Bauer, K. T.; Bauer, P.; Bawa, H. S.; Bayirli, A.; Beacham, J. B.; Beau, T.; Beauchemin, P. H.; Becherer, F.; Bechtle, P.; Beck, H. C.; Beck, H. P.; Becker, K.; Becot, C.; Beddall, A.; Beddall, A. J.; Bednyakov, V. A.; Bedognetti, M.; Bee, C. P.; Beermann, T. A.; Begalli, M.; Begel, M.; Behera, A.; Behr, J. K.; Beisiegel, F.; Belfkir, M.; Bell, A. S.; Bella, G.; Bellagamba, L.; Bellerive, A.; Bellos, P.; Beloborodov, K.; Belotskiy, K.; Belyaev, N. L.; Benchekroun, D.; Benekos, N.; Benhammou, Y.; Benjamin, D. P.; Benoit, M.; Bensinger, J. R.; Bentvelsen, S.; Beresford, L.; Beretta, M.; Berge, D.; Bergeaas Kuutmann, E.; Berger, N.; Bergmann, B.; Bergsten, L. J.; Beringer, J.; Berlendis, S.; Bernardi, G.; Bernius, C.; Bernlochner, F. U.; Berry, T.; Berta, P.; Bertella, C.; Berthold, A.; Bertram, I. A.; Bessidskaia Bylund, O.; Besson, N.; Bethani, A.; Bethke, S.; Betti, A.; Bevan, A. J.; Beyer, J.; Bhattacharya, D. S.; Bhattarai, P.; Bhopatkar, V. S.; Bi, R.; Bianchi, R. M.; Biebel, O.; Biedermann, D.; Bielski, R.; Bierwagen, K.; Biesuz, N. V.; Biglietti, M.; Billoud, T. R.; Bindi, M.; Bingul, A.; Bini, C.; Biondi, S.; Birch-Sykes, C. J.; Birman, M.; Bisanz, T.; Biswal, J. P.; Biswas, D.; Bitadze, A.; Bittrich, C.; Bjørke, K.; Blazek, T.; Bloch, I.; Blocker, C.; Blue, A.; Blumenschein, U.; Bobbink, G. J.; Bobrovnikov, V. S.; Bocchetta, S. S.; Boerner, D.; Bogavac, D.; Bogdanchikov, A. G.; Bohm, C.; Boisvert, V.; Bokan, P.; Bold, T.; Bolz, A. E.; Bomben, M.; Bona, M.; Bonilla, J. S.; Boonekamp, M.; Booth, C. D.; Borbély, A. G.; Borecka-Bielska, H. M.; Borgna, L. S.; Borisov, A.; Borissov, G.; Bortoletto, D.; Boscherini, D.; Bosman, M.; Bossio Sola, J. D.; Bouaouda, K.; Boudreau, J.; Bouhova-Thacker, E. V.; Boumediene, D.; Boutle, S. K.; Boveia, A.; Boyd, J.; Boye, D.; Boyko, I. R.; Bozson, A. J.; Bracinik, J.; Brahimi, N.; Brandt, G.; Brandt, O.; Braren, F.; Brau, B.; Brau, J. E.; Breaden Madden, W. D.; Brendlinger, K.; Brener, R.; Brenner, L.; Brenner, R.; Bressler, S.; Brickwedde, B.; Briglin, D. L.; Britton, D.; Britzger, D.; Brock, I.; Brock, R.; Brooijmans, G.; Brooks, W. K.; Brost, E.; Bruckman de Renstrom, P. A.; Brüers, B.; Bruncko, D.; Bruni, A.; Bruni, G.; Bruni, L. S.; Bruno, S.; Bruschi, M.; Bruscino, N.; Bryngemark, L.; Buanes, T.; Buat, Q.; Buchholz, P.; Buckley, A. G.; Budagov, I. A.; Bugge, M. K.; Bührer, F.; Bulekov, O.; Bullard, B. A.; Burch, T. J.; Burdin, S.; Burgard, C. D.; Burger, A. M.; Burghgrave, B.; Burr, J. T.; Burton, C. D.; Burzynski, J. C.; Büscher, V.; Buschmann, E.; Bussey, P. J.; Butler, J. M.; Buttar, C. M.; Butterworth, J. M.; Butti, P.; Buttinger, W.; Buxo Vazquez, C. J.; Buzatu, A.; Buzykaev, A. R.; Cabras, G.; Cabrera Urbán, S.; Caforio, D.; Cai, H.; Cairo, V. M.; Cakir, O.; Calace, N.; Calafiura, P.; Calderini, G.; Calfayan, P.; Callea, G.; Caloba, L. P.; Caltabiano, A.; Calvente Lopez, S.; Calvet, D.; Calvet, S.; Calvet, T. P.; Calvetti, M.; Camacho Toro, R.; Camarda, S.; Camarero Munoz, D.; Camarri, P.; Camerlingo, M. T.; Cameron, D.; Camincher, C.; Campana, S.; Campanelli, M.; Camplani, A.; Canale, V.; Canesse, A.; Cano Bret, M.; Cantero, J.; Cao, T.; Cao, Y.; Capeans Garrido, M. D.; Capua, M.; Cardarelli, R.; Cardillo, F.; Carducci, G.; Carli, I.; Carli, T.; Carlino, G.; Carlson, B. T.; Carlson, E. M.; Carminati, L.; Carney, R. M.; Caron, S.; Carquin, E.; Carrá, S.; Carratta, G.; Carter, J. W.; Carter, T. M.; Casado, M. P.; Casha, A. F.; Castillo, F. L.; Castillo Garcia, L.; Castillo Gimenez, V.; Castro, N. F.; Catinaccio, A.; Catmore, J. R.; Cattai, A.; Cavaliere, V.; Cavasinni, V.; Celebi, E.; Celli, F.; Cerny, K.; Cerqueira, A. S.; Cerri, A.; Cerrito, L.; Cerutti, F.; Cervelli, A.; Cetin, S. A.; Chadi, Z.; Chakraborty, D.; Chan, J.; Chan, W. S.; Chan, W. Y.; Chapman, J. D.; Chargeishvili, B.; Charlton, D. G.; Charman, T. P.; Chau, C. C.; Che, S.; Chekanov, S.; Chekulaev, S. V.; Chelkov, G. A.; Chen, B.; Chen, C.; Chen, C. H.; Chen, H.; Chen, J.; Chen, J.; Chen, J.; Chen, S.; Chen, S. J.; Chen, X.; Chen, Y.; Chen, Y. H.; Cheng, H. C.; Cheng, H. J.; Cheplakov, A.; Cheremushkina, E.; Cherkaoui El Moursli, R.; Cheu, E.; Cheung, K.; Chevalérias, T. J.; Chevalier, L.; Chiarella, V.; Chiarelli, G.; Chiodini, G.; Chisholm, A. S.; Chitan, A.; Chiu, I.; Chiu, Y. H.; Chizhov, M. V.; Choi, K.; Chomont, A. R.; Chow, Y. S.; Christopher, L. D.; Chu, M. C.; Chu, X.; Chudoba, J.; Chwastowski, J. J.; Chytka, L.; Cieri, D.; Ciesla, K. M.; Cinca, D.; Cindro, V.; Cioară, I. A.; Ciocio, A.; Cirotto, F.; Citron, Z. H.; Citterio, M.; Ciubotaru, D. A.; Ciungu, B. M.; Clark, A.; Clark, M. R.; Clark, P. J.; Clawson, S. E.; Clement, C.; Coadou, Y.; Cobal, M.; Coccaro, A.; Cochran, J.; Coelho Lopes De Sa, R.; Cohen, H.; Coimbra, A. E.; Cole, B.; Colijn, A. P.; Collot, J.; Conde Muiño, P.; Connell, S. H.; Connelly, I. A.; Constantinescu, S.; Conventi, F.; Cooper-Sarkar, A. M.; Cormier, F.; Cormier, K. J.; Corpe, L. D.; Corradi, M.; Corrigan, E. E.; Corriveau, F.; Costa, M. J.; Costanza, F.; Costanzo, D.; Cowan, G.; Cowley, J. W.; Crane, J.; Cranmer, K.; Creager, R. A.; Crépé-Renaudin, S.; Crescioli, F.; Cristinziani, M.; Croft, V.; Crosetti, G.; Cueto, A.; Cuhadar Donszelmann, T.; Cui, H.; Cukierman, A. R.; Cunningham, W. R.; Czekierda, S.; Czodrowski, P.; Czurylo, M. M.; Da Cunha Sargedas De Sousa, M. J.; Da Fonseca Pinto, J. V.; Da Via, C.; Dabrowski, W.; Dachs, F.; Dado, T.; Dahbi, S.; Dai, T.; Dallapiccola, C.; Dam, M.; D'amen, G.; D'Amico, V.; Damp, J.; Dandoy, J. R.; Daneri, M. F.; Danninger, M.; Dao, V.; Darbo, G.; Dartsi, O.; Dattagupta, A.; Daubney, T.; D'Auria, S.; David, C.; Davidek, T.; Davis, D. R.; Dawson, I.; De, K.; De Asmundis, R.; De Beurs, M.; De Castro, S.; De Groot, N.; de Jong, P.; De la Torre, H.; De Maria, A.; De Pedis, D.; De Salvo, A.; De Sanctis, U.; De Santis, M.; De Santo, A.; De Vivie De Regie, J. B.; Debenedetti, C.; Dedovich, D. V.; Deiana, A. M.; Del Peso, J.; Delabat Diaz, Y.; Delgove, D.; Deliot, F.; Delitzsch, C. M.; Della Pietra, M.; Della Volpe, D.; Dell'Acqua, A.; Dell'Asta, L.; Delmastro, M.; Delporte, C.; Delsart, P. A.; DeMarco, D. A.; Demers, S.; Demichev, M.; Demontigny, G.; Denisov, S. P.; D'Eramo, L.; Derendarz, D.; Derkaoui, J. E.; Derue, F.; Dervan, P.; Desch, K.; Dette, K.; Deutsch, C.; Devesa, M. R.; Deviveiros, P. O.; Di Bello, F. A.; Di Ciaccio, A.; Di Ciaccio, L.; Di Clemente, W. K.; Di Donato, C.; Di Girolamo, A.; Di Gregorio, G.; Di Micco, B.; Di Nardo, R.; Di Petrillo, K. F.; Di Sipio, R.; Diaconu, C.; Dias, F. A.; Dias Do Vale, T.; Diaz, M. A.; Diaz Capriles, F. G.; Dickinson, J.; Didenko, M.; Diehl, E. B.; Dietrich, J.; Díez Cornell, S.; Diez Pardos, C.; Dimitrievska, A.; Ding, W.; Dingfelder, J.; Dittmeier, S. J.; Dittus, F.; Djama, F.; Djobava, T.; Djuvsland, J. I.; Do Vale, M. A.; Dobre, M.; Dodsworth, D.; Doglioni, C.; Dolejsi, J.; Dolezal, Z.; Donadelli, M.; Dong, B.; Donini, J.; D'onofrio, A.; D'Onofrio, M.; Dopke, J.; Doria, A.; Dova, M. T.; Doyle, A. T.; Drechsler, E.; Dreyer, E.; Dreyer, T.; Drobac, A. S.; Du, D.; du Pree, T. A.; Duan, Y.; Dubinin, F.; Dubovsky, M.; Dubreuil, A.; Duchovni, E.; Duckeck, G.; Ducu, O. A.; Duda, D.; Dudarev, A.; Dudder, A. C.; Duffield, E. M.; D'uffizi, M.; Duflot, L.; Dührssen, M.; Dülsen, C.; Dumancic, M.; Dumitriu, A. E.; Dunford, M.; Duperrin, A.; Duran Yildiz, H.; Düren, M.; Durglishvili, A.; Duschinger, D.; Dutta, B.; Duvnjak, D.; Dyckes, G. I.; Dyndal, M.; Dysch, S.; Dziedzic, B. S.; Eggleston, M. G.; Eifert, T.; Eigen, G.; Einsweiler, K.; Ekelof, T.; El Jarrari, H.; Ellajosyula, V.; Ellert, M.; Ellinghaus, F.; Elliot, A. A.; Ellis, N.; Elmsheuser, J.; Elsing, M.; Emeliyanov, D.; Emerman, A.; Enari, Y.; Epland, M. B.; Erdmann, J.; Ereditato, A.; Erland, P. A.; Errenst, M.; Escalier, M.; Escobar, C.; Estrada Pastor, O.; Etzion, E.; Evans, H.; Evans, M. O.; Ezhilov, A.; Fabbri, F.; Fabbri, L.; Fabiani, V.; Facini, G.; Fakhrutdinov, R. M.; Falciano, S.; Falke, P. J.; Falke, S.; Faltova, J.; Fang, Y.; Fang, Y.; Fanourakis, G.; Fanti, M.; Faraj, M.; Farbin, A.; Farilla, A.; Farina, E. M.; Farooque, T.; Farrington, S. M.; Farthouat, P.; Fassi, F.; Fassnacht, P.; Fassouliotis, D.; Faucci Giannelli, M.; Fawcett, W. J.; Fayard, L.; Fedin, O. L.; Fedorko, W.; Fehr, A.; Feickert, M.; Feligioni, L.; Fell, A.; Feng, C.; Feng, M.; Fenton, M. J.; Fenyuk, A. B.; Ferguson, S. W.; Ferrando, J.; Ferrante, A.; Ferrari, A.; Ferrari, P.; Ferrari, R.; Ferreira de Lima, D. E.; Ferrer, A.; Ferrere, D.; Ferretti, C.; Fiedler, F.; Filipčič, A.; Filthaut, F.; Finelli, K. D.; Fiolhais, M. C.; Fiorini, L.; Fischer, F.; Fischer, J.; Fisher, W. C.; Fitschen, T.; Fleck, I.; Fleischmann, P.; Flick, T.; Flierl, B. M.; Flores, L.; Flores Castillo, L. R.; Follega, F. M.; Fomin, N.; Foo, J. H.; Forcolin, G. T.; Forland, B. C.; Formica, A.; Förster, F. A.; Forti, A. C.; Fortin, E.; Foti, M. G.; Fournier, D.; Fox, H.; Francavilla, P.; Francescato, S.; Franchini, M.; Franchino, S.; Francis, D.; Franco, L.; Franconi, L.; Franklin, M.; Frattari, G.; Fray, A. N.; Freeman, P. M.; Freund, B.; Freund, W. S.; Freundlich, E. M.; Frizzell, D. C.; Froidevaux, D.; Frost, J. A.; Fujimoto, M.; Fukunaga, C.; Fullana Torregrosa, E.; Fusayasu, T.; Fuster, J.; Gabrielli, A.; Gabrielli, A.; Gadatsch, S.; Gadow, P.; Gagliardi, G.; Gagnon, L. G.; Gallardo, G. E.; Gallas, E. J.; Gallop, B. J.; Gamboa Goni, R.; Gan, K. K.; Ganguly, S.; Gao, J.; Gao, Y.; Gao, Y. S.; Garay Walls, F. M.; García, C.; García Navarro, J. E.; García Pascual, J. A.; Garcia-Argos, C.; Garcia-Sciveres, M.; Gardner, R. W.; Garelli, N.; Gargiulo, S.; Garner, C. A.; Garonne, V.; Gasiorowski, S. J.; Gaspar, P.; Gaudiello, A.; Gaudio, G.; Gavrilenko, I. L.; Gavrilyuk, A.; Gay, C.; Gaycken, G.; Gazis, E. N.; Geanta, A. A.; Gee, C. M.; Gee, C. N.; Geisen, J.; Geisen, M.; Gemme, C.; Genest, M. H.; Geng, C.; Gentile, S.; George, S.; Geralis, T.; Gerlach, L. O.; Gessinger-Befurt, P.; Gessner, G.; Ghasemi, S.; Ghasemi Bostanabad, M.; Ghneimat, M.; Ghosh, A.; Ghosh, A.; Giacobbe, B.; Giagu, S.; Giangiacomi, N.; Giannetti, P.; Giannini, A.; Giannini, G.; Gibson, S. M.; Gignac, M.; Gil, D. T.; Gilbert, B. J.; Gillberg, D.; Gilles, G.; Gingrich, D. M.; Giordani, M. P.; Giraud, P. F.; Giugliarelli, G.; Giugni, D.; Giuli, F.; Gkaitatzis, S.; Gkialas, I.; Gkougkousis, E. L.; Gkountoumis, P.; Gladilin, L. K.; Glasman, C.; Glatzer, J.; Glaysher, P. C.; Glazov, A.; Gledhill, G. R.; Gnesi, I.; Goblirsch-Kolb, M.; Godin, D.; Goldfarb, S.; Golling, T.; Golubkov, D.; Gomes, A.; Goncalves Gama, R.; Gonçalo, R.; Gonella, G.; Gonella, L.; Gongadze, A.; Gonnella, F.; Gonski, J. L.; González de la Hoz, S.; Gonzalez Fernandez, S.; Gonzalez Lopez, R.; Gonzalez Renteria, C.; Gonzalez Suarez, R.; Gonzalez-Sevilla, S.; Gonzalvo Rodriguez, G. R.; Goossens, L.; Gorasia, N. A.; Gorbounov, P. A.; Gordon, H. A.; Gorini, B.; Gorini, E.; Gorišek, A.; Goshaw, A. T.; Gostkin, M. I.; Gottardo, C. A.; Gouighri, M.; Goussiou, A. G.; Govender, N.; Goy, C.; Grabowska-Bold, I.; Graham, E. C.; Gramling, J.; Gramstad, E.; Grancagnolo, S.; Grandi, M.; Gratchev, V.; Gravila, P. M.; Gravili, F. G.; Gray, C.; Gray, H. M.; Grefe, C.; Gregersen, K.; Gregor, I. M.; Grenier, P.; Grevtsov, K.; Grieco, C.; Grieser, N. A.; Grillo, A. A.; Grimm, K.; Grinstein, S.; Grivaz, J. F.; Groh, S.; Gross, E.; Grosse-Knetter, J.; Grout, Z. J.; Grud, C.; Grummer, A.; Grundy, J. C.; Guan, L.; Guan, W.; Gubbels, C.; Guenther, J.; Guerguichon, A.; Guerrero Rojas, J. G.; Guescini, F.; Guest, D.; Gugel, R.; Guida, A.; Guillemin, T.; Guindon, S.; Gul, U.; Guo, J.; Guo, W.; Guo, Y.; Guo, Z.; Gupta, R.; Gurbuz, S.; Gustavino, G.; Guth, M.; Gutierrez, P.; Gutschow, C.; Guyot, C.; Gwenlan, C.; Gwilliam, C. B.; Haaland, E. S.; Haas, A.; Haber, C.; Hadavand, H. K.; Hadef, A.; Haleem, M.; Haley, J.; Hall, J. J.; Halladjian, G.; Hallewell, G. D.; Hamano, K.; Hamdaoui, H.; Hamer, M.; Hamity, G. N.; Han, K.; Han, L.; Han, S.; Han, Y. F.; Hanagaki, K.; Hance, M.; Handl, D. M.; Hank, M. D.; Hankache, R.; Hansen, E.; Hansen, J. B.; Hansen, J. D.; Hansen, M. C.; Hansen, P. H.; Hanson, E. C.; Hara, K.; Harenberg, T.; Harkusha, S.; Harrison, P. F.; Hartman, N. M.; Hartmann, N. M.; Hasegawa, Y.; Hasib, A.; Hassani, S.; Haug, S.; Hauser, R.; Havener, L. B.; Havranek, M.; Hawkes, C. M.; Hawkings, R. J.; Hayashida, S.; Hayden, D.; Hayes, C.; Hayes, R. L.; Hays, C. P.; Hays, J. M.; Hayward, H. S.; Haywood, S. J.; He, F.; He, Y.; Heath, M. P.; Hedberg, V.; Heer, S.; Heggelund, A. L.; Heidegger, C.; Heidegger, K. K.; Heidorn, W. D.; Heilman, J.; Heim, S.; Heim, T.; Heinemann, B.; Heinrich, J. J.; Heinrich, L.; Hejbal, J.; Helary, L.; Held, A.; Hellesund, S.; Helling, C. M.; Hellman, S.; Helsens, C.; Henderson, R. C.; Heng, Y.; Henkelmann, L.; Henriques Correia, A. M.; Herde, H.; Hernández Jiménez, Y.; Herr, H.; Herrmann, M. G.; Herrmann, T.; Herten, G.; Hertenberger, R.; Hervas, L.; Herwig, T. C.; Hesketh, G. G.; Hessey, N. P.; Hibi, H.; Higashida, A.; Higashino, S.; Higón-Rodriguez, E.; Hildebrand, K.; Hill, J. C.; Hill, K. K.; Hiller, K. H.; Hillier, S. J.; Hils, M.; Hinchliffe, I.; Hinterkeuser, F.; Hirose, M.; Hirose, S.; Hirschbuehl, D.; Hiti, B.; Hladik, O.; Hlaluku, D. R.; Hobbs, J.; Hod, N.; Hodgkinson, M. C.; Hoecker, A.; Hohn, D.; Hohov, D.; Holm, T.; Holmes, T. R.; Holzbock, M.; Hommels, L. B.; Hong, T. M.; Honig, J. C.; Hönle, A.; Hooberman, B. H.; Hopkins, W. H.; Horii, Y.; Horn, P.; Horyn, L. A.; Hou, S.; Hoummada, A.; Howarth, J.; Hoya, J.; Hrabovsky, M.; Hrdinka, J.; Hrivnac, J.; Hrynevich, A.; Hryn'ova, T.; Hsu, P. J.; Hsu, S. C.; Hu, Q.; Hu, S.; Hu, Y. F.; Huang, D. P.; Huang, Y.; Huang, Y.; Hubacek, Z.; Hubaut, F.; Huebner, M.; Huegging, F.; Huffman, T. B.; Huhtinen, M.; Hulsken, R.; Hunter, R. F.; Huo, P.; Huseynov, N.; Huston, J.; Huth, J.; Hyneman, R.; Hyrych, S.; Iacobucci, G.; Iakovidis, G.; Ibragimov, I.; Iconomidou-Fayard, L.; Iengo, P.; Ignazzi, R.; Igonkina, O.; Iguchi, R.; Iizawa, T.; Ikegami, Y.; Ikeno, M.; Ilic, N.; Iltzsche, F.; Imam, H.; Introzzi, G.; Iodice, M.; Iordanidou, K.; Ippolito, V.; Isacson, M. F.; Ishino, M.; Islam, W.; Issever, C.; Istin, S.; Ito, F.; Iturbe Ponce, J. M.; Iuppa, R.; Ivina, A.; Iwasaki, H.; Izen, J. M.; Izzo, V.; Jacka, P.; Jackson, P.; Jacobs, R. M.; Jaeger, B. P.; Jain, V.; Jäkel, G.; Jakobi, K. B.; Jakobs, K.; Jakoubek, T.; Jamieson, J.; Janas, K. W.; Jansky, R.; Janus, M.; Janus, P. A.; Jarlskog, G.; Jaspan, A. E.; Javadov, N.; Javůrek, T.; Javurkova, M.; Jeanneau, F.; Jeanty, L.; Jejelava, J.; Jenni, P.; Jeong, N.; Jézéquel, S.; Ji, H.; Jia, J.; Jiang, H.; Jiang, Y.; Jiang, Z.; Jiggins, S.; Jimenez Morales, F. A.; Jimenez Pena, J.; Jin, S.; Jinaru, A.; Jinnouchi, O.; Jivan, H.; Johansson, P.; Johns, K. A.; Johnson, C. A.; Jones, R. W.; Jones, S. D.; Jones, T. J.; Jongmanns, J.; Jovicevic, J.; Ju, X.; Junggeburth, J. J.; Juste Rozas, A.; Kaczmarska, A.; Kado, M.; Kagan, H.; Kagan, M.; Kahn, A.; Kahra, C.; Kaji, T.; Kajomovitz, E.; Kalderon, C. W.; Kaluza, A.; Kamenshchikov, A.; Kaneda, M.; Kang, N. J.; Kang, S.; Kano, Y.; Kanzaki, J.; Kaplan, L. S.; Kar, D.; Karava, K.; Kareem, M. J.; Karkanias, I.; Karpov, S. N.; Karpova, Z. M.; Kartvelishvili, V.; Karyukhin, A. N.; Kasimi, E.; Kastanas, A.; Kato, C.; Katzy, J.; Kawade, K.; Kawagoe, K.; Kawaguchi, T.; Kawamoto, T.; Kawamura, G.; Kay, E. F.; Kazakos, S.; Kazanin, V. F.; Keeler, R.; Kehoe, R.; Keller, J. S.; Kellermann, E.; Kelsey, D.; Kempster, J. J.; Kendrick, J.; Kennedy, K. E.; Kepka, O.; Kersten, S.; Kerševan, B. P.; Ketabchi Haghighat, S.; Khader, M.; Khalil-Zada, F.; Khandoga, M.; Khanov, A.; Kharlamov, A. G.; Kharlamova, T.; Khoda, E. E.; Khodinov, A.; Khoo, T. J.; Khoriauli, G.; Khramov, E.; Khubua, J.; Kido, S.; Kiehn, M.; Kilby, C. R.; Kim, E.; Kim, Y. K.; Kimura, N.; Kirchhoff, A.; Kirchmeier, D.; Kirk, J.; Kiryunin, A. E.; Kishimoto, T.; Kisliuk, D. P.; Kitali, V.; Kitsaki, C.; Kivernyk, O.; Klapdor-Kleingrothaus, T.; Klassen, M.; Klein, C.; Klein, M. H.; Klein, M.; Klein, U.; Kleinknecht, K.; Klimek, P.; Klimentov, A.; Klingl, T.; Klioutchnikova, T.; Klitzner, F. F.; Kluit, P.; Kluth, S.; Kneringer, E.; Knoops, E. B.; Knue, A.; Kobayashi, D.; Kobel, M.; Kocian, M.; Kodama, T.; Kodys, P.; Koeck, D. M.; Koenig, P. T.; Koffas, T.; Köhler, N. M.; Kolb, M.; Koletsou, I.; Komarek, T.; Kondo, T.; Köneke, K.; Kong, A. X.; König, A. C.; Kono, T.; Konstantinides, V.; Konstantinidis, N.; Konya, B.; Kopeliansky, R.; Koperny, S.; Korcyl, K.; Kordas, K.; Koren, G.; Korn, A.; Korolkov, I.; Korolkova, E. V.; Korotkova, N.; Kortner, O.; Kortner, S.; Kostyukhin, V. V.; Kotsokechagia, A.; Kotwal, A.; Koulouris, A.; Kourkoumeli-Charalampidi, A.; Kourkoumelis, C.; Kourlitis, E.; Kouskoura, V.; Kowalewski, R.; Kozanecki, W.; Kozhin, A. S.; Kramarenko, V. A.; Kramberger, G.; Krasnopevtsev, D.; Krasny, M. W.; Krasznahorkay, A.; Krauss, D.; Kremer, J. A.; Kretzschmar, J.; Krieger, P.; Krieter, F.; Krishnan, A.; Krivos, M.; Krizka, K.; Kroeninger, K.; Kroha, H.; Kroll, J.; Kroll, J.; Krowpman, K. S.; Kruchonak, U.; Krüger, H.; Krumnack, N.; Kruse, M. C.; Krzysiak, J. A.; Kubota, A.; Kuchinskaia, O.; Kuday, S.; Kuechler, J. T.; Kuehn, S.; Kuhl, T.; Kukhtin, V.; Kulchitsky, Y.; Kuleshov, S.; Kulinich, Y. P.; Kuna, M.; Kunigo, T.; Kupco, A.; Kupfer, T.; Kuprash, O.; Kurashige, H.; Kurchaninov, L. L.; Kurochkin, Y. A.; Kurova, A.; Kurth, M. G.; Kuwertz, E. S.; Kuze, M.; Kvam, A. K.; Kvita, J.; Kwan, T.; La Ruffa, F.; Lacasta, C.; Lacava, F.; Lack, D. P.; Lacker, H.; Lacour, D.; Ladygin, E.; Lafaye, R.; Laforge, B.; Lagouri, T.; Lai, S.; Lakomiec, I. K.; Lambert, J. E.; Lammers, S.; Lampl, W.; Lampoudis, C.; Lançon, E.; Landgraf, U.; Landon, M. P.; Lanfermann, M. C.; Lang, V. S.; Lange, J. C.; Langenberg, R. J.; Lankford, A. J.; Lanni, F.; Lantzsch, K.; Lanza, A.; Lapertosa, A.; Laporte, J. F.; Lari, T.; Lasagni Manghi, F.; Lassnig, M.; Lau, T. S.; Laudrain, A.; Laurier, A.; Lavorgna, M.; Lawlor, S. D.; Lazzaroni, M.; Le, B.; Le Guirriec, E.; Lebedev, A.; LeBlanc, M.; LeCompte, T.; Ledroit-Guillon, F.; Lee, A. C.; Lee, C. A.; Lee, G. R.; Lee, L.; Lee, S. C.; Lee, S.; Lefebvre, B.; Lefebvre, H. P.; Lefebvre, M.; Leggett, C.; Lehmann, K.; Lehmann, N.; Lehmann Miotto, G.; Leight, W. A.; Leisos, A.; Leite, M. A.; Leitgeb, C. E.; Leitner, R.; Lellouch, D.; Leney, K. J.; Lenz, T.; Leone, S.; Leonidopoulos, C.; Leopold, A.; Leroy, C.; Les, R.; Lester, C. G.; Levchenko, M.; Levêque, J.; Levin, D.; Levinson, L. J.; Lewis, D. J.; Li, B.; Li, B.; Li, C. Q.; Li, F.; Li, H.; Li, H.; Li, J.; Li, K.; Li, L.; Li, M.; Li, Q.; Li, Q. Y.; Li, S.; Li, X.; Li, Y.; Li, Z.; Li, Z.; Li, Z.; Liang, Z.; Liberatore, M.; Liberti, B.; Liblong, A.; Lie, K.; Lim, S.; Lin, C. Y.; Lin, K.; Linck, R. A.; Lindley, R. E.; Lindon, J. H.; Linss, A.; Lionti, A. L.; Lipeles, E.; Lipniacka, A.; Liss, T. M.; Lister, A.; Little, J. D.; Liu, B.; Liu, B. L.; Liu, H. B.; Liu, J. B.; Liu, J. K.; Liu, K.; Liu, M.; Liu, P.; Liu, X.; Liu, Y.; Liu, Y.; Liu, Y. L.; Liu, Y. W.; Livan, M.; Lleres, A.; Llorente Merino, J.; Lloyd, S. L.; Lo, C. Y.; Lobodzinska, E. M.; Loch, P.; Loffredo, S.; Lohse, T.; Lohwasser, K.; Lokajicek, M.; Long, J. D.; Long, R. E.; Longarini, I.; Longo, L.; Looper, K. A.; Lopez Paz, I.; Lopez Solis, A.; Lorenz, J.; Lorenzo Martinez, N.; Lory, A. M.; Lösel, P. J.; Lösle, A.; Lou, X.; Lou, X.; Lounis, A.; Love, J.; Love, P. A.; Lozano Bahilo, J. J.; Lu, M.; Lu, Y. J.; Lubatti, H. J.; Luci, C.; Lucio Alves, F. L.; Lucotte, A.; Luehring, F.; Luise, I.; Luminari, L.; Lund-Jensen, B.; Lutz, M. S.; Lynn, D.; Lyons, H.; Lysak, R.; Lytken, E.; Lyu, F.; Lyubushkin, V.; Lyubushkina, T.; Ma, H.; Ma, L. L.; Ma, Y.; Mac Donell, D. M.; Maccarrone, G.; Macchiolo, A.; Macdonald, C. M.; Macdonald, J. C.; Machado Miguens, J.; Madaffari, D.; Madar, R.; Mader, W. F.; Madugoda Ralalage Don, M.; Madysa, N.; Maeda, J.; Maeno, T.; Maerker, M.; Magerl, V.; Magini, N.; Magro, J.; Mahon, D. J.; Maidantchik, C.; Maier, T.; Maio, A.; Maj, K.; Majersky, O.; Majewski, S.; Makida, Y.; Makovec, N.; Malaescu, B.; Malecki, P.; Maleev, V. P.; Malek, F.; Malito, D.; Mallik, U.; Malon, D.; Malone, C.; Maltezos, S.; Malyukov, S.; Mamuzic, J.; Mancini, G.; Mandić, I.; Manhaes de Andrade Filho, L.; Maniatis, I. M.; Manjarres Ramos, J.; Mankinen, K. H.; Mann, A.; Manousos, A.; Mansoulie, B.; Manthos, I.; Manzoni, S.; Marantis, A.; Marceca, G.; Marchese, L.; Marchiori, G.; Marcisovsky, M.; Marcoccia, L.; Marcon, C.; Marin Tobon, C. A.; Marjanovic, M.; Marshall, Z.; Martensson, M. U.; Marti-Garcia, S.; Martin, C. B.; Martin, T. A.; Martin, V. J.; Martin Dit Latour, B.; Martinelli, L.; Martinez, M.; Martinez Agullo, P.; Martinez Outschoorn, V. I.; Martin-Haugh, S.; Martoiu, V. S.; Martyniuk, A. C.; Marzin, A.; Maschek, S. R.; Masetti, L.; Mashimo, T.; Mashinistov, R.; Masik, J.; Maslennikov, A. L.; Massa, L.; Massarotti, P.; Mastrandrea, P.; Mastroberardino, A.; Masubuchi, T.; Matakias, D.; Matic, A.; Matsuzawa, N.; Mättig, P.; Maurer, J.; Maček, B.; Maximov, D. A.; Mazini, R.; Maznas, I.; Mazza, S. M.; Mc Gowan, J. P.; Mc Kee, S. P.; McCarthy, T. G.; McCormack, W. P.; McDonald, E. F.; Mcfayden, J. A.; Mchedlidze, G.; McKay, M. A.; McLean, K. D.; McMahon, S. J.; McNamara, P. C.; McNicol, C. J.; McPherson, R. A.; Mdhluli, J. E.; Meadows, Z. A.; Meehan, S.; Megy, T.; Mehlhase, S.; Mehta, A.; Meirose, B.; Melini, D.; Mellado Garcia, B. R.; Mellenthin, J. D.; Melo, M.; Meloni, F.; Melzer, A.; Mendes Gouveia, E. D.; Meng, L.; Meng, X. T.; Menke, S.; Meoni, E.; Mergelmeyer, S.; Merkt, S. A.; Merlassino, C.; Mermod, P.; Merola, L.; Meroni, C.; Merz, G.; Meshkov, O.; Meshreki, J. K.; Metcalfe, J.; Mete, A. S.; Meyer, C.; Meyer, J. P.; Michetti, M.; Middleton, R. P.; Mijović, L.; Mikenberg, G.; Mikestikova, M.; Mikuž, M.; Mildner, H.; Milic, A.; Milke, C. D.; Miller, D. W.; Milov, A.; Milstead, D. A.; Mina, R. A.; Minaenko, A. A.; Minashvili, I. A.; Mincer, A. I.; Mindur, B.; Mineev, M.; Minegishi, Y.; Mir, L. M.; Miralles Lopez, M.; Mironova, M.; Mirto, A.; Mistry, K. P.; Mitani, T.; Mitrevski, J.; Mitsou, V. A.; Mittal, M.; Miu, O.; Miucci, A.; Miyagawa, P. S.; Mizukami, A.; Mjörnmark, J. U.; Mkrtchyan, T.; Mlynarikova, M.; Moa, T.; Mobius, S.; Mochizuki, K.; Mogg, P.; Mohapatra, S.; Moles-Valls, R.; Mönig, K.; Monnier, E.; Montalbano, A.; Montejo Berlingen, J.; Montella, M.; Monticelli, F.; Monzani, S.; Morange, N.; Moreira De Carvalho, A. L.; Moreno, D.; Moreno Llácer, M.; Moreno Martinez, C.; Morettini, P.; Morgenstern, M.; Morgenstern, S.; Mori, D.; Morii, M.; Morinaga, M.; Morisbak, V.; Morley, A. K.; Mornacchi, G.; Morris, A. P.; Morvaj, L.; Moschovakos, P.; Moser, B.; Mosidze, M.; Moskalets, T.; Moss, J.; Moyse, E. J.; Muanza, S.; Mueller, J.; Mueller, R. S.; Muenstermann, D.; Mullier, G. A.; Mungo, D. P.; Munoz Martinez, J. L.; Munoz Sanchez, F. J.; Murin, P.; Murray, W. J.; Murrone, A.; Muse, J. M.; Muškinja, M.; Mwewa, C.; Myagkov, A. G.; Myers, A. A.; Myers, G.; Myers, J.; Myska, M.; Nachman, B. P.; Nackenhorst, O.; Nag, A. N.; Nagai, K.; Nagano, K.; Nagasaka, Y.; Nagle, J. L.; Nagy, E.; Nairz, A. M.; Nakahama, Y.; Nakamura, K.; Nakamura, T.; Nanjo, H.; Napolitano, F.; Naranjo Garcia, R. F.; Narayan, R.; Naryshkin, I.; Naumann, T.; Navarro, G.; Nechaeva, P. Y.; Nechansky, F.; Neep, T. J.; Negri, A.; Negrini, M.; Nellist, C.; Nelson, C.; Nelson, M. E.; Nemecek, S.; Nessi, M.; Neubauer, M. S.; Neuhaus, F.; Neumann, M.; Newhouse, R.; Newman, P. R.; Ng, C. W.; Ng, Y. S.; Ng, Y. W.; Ngair, B.; Nguyen, H. D.; Nguyen Manh, T.; Nibigira, E.; Nickerson, R. B.; Nicolaidou, R.; Nielsen, D. S.; Nielsen, J.; Niemeyer, M.; Nikiforou, N.; Nikolaenko, V.; Nikolic-Audit, I.; Nikolopoulos, K.; Nilsson, P.; Nindhito, H. R.; Ninomiya, Y.; Nisati, A.; Nishu, N.; Nisius, R.; Nitsche, I.; Nitta, T.; Nobe, T.; Noel, D. L.; Noguchi, Y.; Nomidis, I.; Nomura, M. A.; Nordberg, M.; Novak, J.; Novak, T.; Novgorodova, O.; Novotny, R.; Nozka, L.; Ntekas, K.; Nurse, E.; Oakham, F. G.; Oberlack, H.; Ocariz, J.; Ochi, A.; Ochoa, I.; Ochoa-Ricoux, J. P.; O'Connor, K.; Oda, S.; Odaka, S.; Oerdek, S.; Ogrodnik, A.; Oh, A.; Ohm, C. C.; Oide, H.; Ojeda, M. L.; Okawa, H.; Okazaki, Y.; O'Keefe, M. W.; Okumura, Y.; Okuyama, T.; Olariu, A.; Oleiro Seabra, L. F.; Olivares Pino, S. A.; Oliveira Damazio, D.; Oliver, J. L.; Olsson, M. J.; Olszewski, A.; Olszowska, J.; Öncel, Ö. O.; O'Neil, D. C.; O'neill, A. P.; Onofre, A.; Onyisi, P. U.; Oppen, H.; Oreamuno Madriz, R. G.; Oreglia, M. J.; Orellana, G. E.; Orestano, D.; Orlando, N.; Orr, R. S.; O'Shea, V.; Ospanov, R.; Otero Y Garzon, G.; Otono, H.; Ott, P. S.; Ottino, G. J.; Ouchrif, M.; Ouellette, J.; Ould-Saada, F.; Ouraou, A.; Ouyang, Q.; Owen, M.; Owen, R. E.; Ozcan, V. E.; Ozturk, N.; Pacalt, J.; Pacey, H. A.; Pachal, K.; Pacheco Pages, A.; Padilla Aranda, C.; Pagan Griso, S.; Palacino, G.; Palazzo, S.; Palestini, S.; Palka, M.; Palni, P.; Pandini, C. E.; Panduro Vazquez, J. G.; Pani, P.; Panizzo, G.; Paolozzi, L.; Papadatos, C.; Papageorgiou, K.; Parajuli, S.; Paramonov, A.; Paraskevopoulos, C.; Paredes Hernandez, D.; Paredes Saenz, S. R.; Parida, B.; Park, T. H.; Parker, A. J.; Parker, M. A.; Parodi, F.; Parrish, E. W.; Parsons, J. A.; Parzefall, U.; Pascual Dominguez, L.; Pascuzzi, V. R.; Pasner, J. M.; Pasquali, F.; Pasqualucci, E.; Passaggio, S.; Pastore, F.; Pasuwan, P.; Pataraia, S.; Pater, J. R.; Pathak, A.; Patton, J.; Pauly, T.; Pearkes, J.; Pearson, B.; Pedersen, M.; Pedraza Diaz, L.; Pedro, R.; Peiffer, T.; Peleganchuk, S. V.; Penc, O.; Peng, H.; Peralva, B. S.; Perego, M. M.; Pereira Peixoto, A. P.; Pereira Sanchez, L.; Perepelitsa, D. V.; Perez Codina, E.; Peri, F.; Perini, L.; Pernegger, H.; Perrella, S.; Perrevoort, A.; Peters, K.; Peters, R. F.; Petersen, B. A.; Petersen, T. C.; Petit, E.; Petousis, V.; Petridis, A.; Petridou, C.; Petroff, P.; Petrucci, F.; Pettee, M.; Pettersson, N. E.; Petukhova, K.; Peyaud, A.; Pezoa, R.; Pezzotti, L.; Pham, T.; Phillips, F. H.; Phillips, P. W.; Phipps, M. W.; Piacquadio, G.; Pianori, E.; Picazio, A.; Pickles, R. H.; Piegaia, R.; Pietreanu, D.; Pilcher, J. E.; Pilkington, A. D.; Pinamonti, M.; Pinfold, J. L.; Pitman Donaldson, C.; Pitt, M.; Pizzimento, L.; Pizzini, A.; Pleier, M. A.; Plesanovs, V.; Pleskot, V.; Plotnikova, E.; Podberezko, P.; Poettgen, R.; Poggi, R.; Poggioli, L.; Pogrebnyak, I.; Pohl, D.; Pokharel, I.; Polesello, G.; Poley, A.; Policicchio, A.; Polifka, R.; Polini, A.; Pollard, C. S.; Polychronakos, V.; Ponomarenko, D.; Pontecorvo, L.; Popa, S.; Popeneciu, G. A.; Portales, L.; Portillo Quintero, D. M.; Pospisil, S.; Potamianos, K.; Potrap, I. N.; Potter, C. J.; Potti, H.; Poulsen, T.; Poveda, J.; Powell, T. D.; Pownall, G.; Pozo Astigarraga, M. E.; Pralavorio, P.; Prell, S.; Price, D.; Primavera, M.; Proffitt, M. L.; Proklova, N.; Prokofiev, K.; Prokoshin, F.; Protopopescu, S.; Proudfoot, J.; Przybycien, M.; Pudzha, D.; Puri, A.; Puzo, P.; Pyatiizbyantseva, D.; Qian, J.; Qin, Y.; Quadt, A.; Queitsch-Maitland, M.; Racko, M.; Ragusa, F.; Rahal, G.; Raine, J. A.; Rajagopalan, S.; Ramirez Morales, A.; Ran, K.; Rauch, D. M.; Rauscher, F.; Rave, S.; Ravina, B.; Ravinovich, I.; Rawling, J. H.; Raymond, M.; Read, A. L.; Readioff, N. P.; Reale, M.; Rebuzzi, D. M.; Redlinger, G.; Reeves, K.; Reichert, J.; Reikher, D.; Reiss, A.; Rej, A.; Rembser, C.; Renardi, A.; Renda, M.; Rendel, M. B.; Rennie, A. G.; Resconi, S.; Resseguie, E. D.; Rettie, S.; Reynolds, B.; Reynolds, E.; Rezanova, O. L.; Reznicek, P.; Ricci, E.; Richter, R.; Richter, S.; Richter-Was, E.; Ridel, M.; Rieck, P.; Rifki, O.; Rijssenbeek, M.; Rimoldi, A.; Rimoldi, M.; Rinaldi, L.; Rinn, T. T.; Ripellino, G.; Riu, I.; Rivadeneira, P.; Rivera Vergara, J. C.; Rizatdinova, F.; Rizvi, E.; Rizzi, C.; Roberts, B. R.; Robertson, S. H.; Robin, M.; Robinson, D.; Robles Gajardo, C. M.; Robles Manzano, M.; Robson, A.; Rocchi, A.; Rocco, E.; Roda, C.; Rodriguez Bosca, S.; Rodríguez Vera, A. M.; Roe, S.; Roggel, J.; Røhne, O.; Röhrig, R.; Rojas, R. A.; Roland, B.; Roland, C. P.; Roloff, J.; Romaniouk, A.; Romano, M.; Rompotis, N.; Ronzani, M.; Roos, L.; Rosati, S.; Rosin, G.; Rosser, B. J.; Rossi, E.; Rossi, E.; Rossi, E.; Rossi, L. P.; Rossini, L.; Rosten, R.; Rotaru, M.; Rottler, B.; Rousseau, D.; Rovelli, G.; Roy, A.; Roy, D.; Rozanov, A.; Rozen, Y.; Ruan, X.; Ruggeri, T. A.; Rühr, F.; Ruiz-Martinez, A.; Rummler, A.; Rurikova, Z.; Rusakovich, N. A.; Russell, H. L.; Rustige, L.; Rutherfoord, J. P.; Rüttinger, E. M.; Rybar, M.; Rybkin, G.; Rye, E. B.; Ryzhov, A.; Sabater Iglesias, J. A.; Sabatini, P.; Sabetta, L.; Sacerdoti, S.; Sadrozinski, H. F.; Sadykov, R.; Safai Tehrani, F.; Safarzadeh Samani, B.; Safdari, M.; Saha, P.; Saha, S.; Sahinsoy, M.; Sahu, A.; Saimpert, M.; Saito, M.; Saito, T.; Sakamoto, H.; Salamani, D.; Salamanna, G.; Salnikov, A.; Salt, J.; Salvador Salas, A.; Salvatore, D.; Salvatore, F.; Salvucci, A.; Salzburger, A.; Samarati, J.; Sammel, D.; Sampsonidis, D.; Sampsonidou, D.; Sánchez, J.; Sanchez Pineda, A.; Sandaker, H.; Sander, C. O.; Sanderswood, I. G.; Sandhoff, M.; Sandoval, C.; Sankey, D. P.; Sannino, M.; Sano, Y.; Sansoni, A.; Santoni, C.; Santos, H.; Santpur, S. N.; Santra, A.; Saoucha, K. A.; Sapronov, A.; Saraiva, J. G.; Sasaki, O.; Sato, K.; Sauerburger, F.; Sauvan, E.; Savard, P.; Sawada, R.; Sawyer, C.; Sawyer, L.; Sayago Galvan, I.; Sbarra, C.; Sbrizzi, A.; Scanlon, T.; Schaarschmidt, J.; Schacht, P.; Schaefer, D.; Schaefer, L.; Schaepe, S.; Schäfer, U.; Schaffer, A. C.; Schaile, D.; Schamberger, R. D.; Schanet, E.; Scharf, C.; Scharmberg, N.; Schegelsky, V. A.; Scheirich, D.; Schenck, F.; Schernau, M.; Schiavi, C.; Schildgen, L. K.; Schillaci, Z. M.; Schioppa, E. J.; Schioppa, M.; Schleicher, K. E.; Schlenker, S.; Schmidt-Sommerfeld, K. R.; Schmieden, K.; Schmitt, C.; Schmitt, S.; Schmoeckel, J. C.; Schoeffel, L.; Schoening, A.; Scholer, P. G.; Schopf, E.; Schott, M.; Schouwenberg, J. F.; Schovancova, J.; Schramm, S.; Schroeder, F.; Schulte, A.; Schultz-Coulon, H. C.; Schumacher, M.; Schumm, B. A.; Schune, P.; Schwartzman, A.; Schwarz, T. A.; Schwemling, P.; Schwienhorst, R.; Sciandra, A.; Sciolla, G.; Scornajenghi, M.; Scuri, F.; Scutti, F.; Scyboz, L. M.; Sebastiani, C. D.; Seema, P.; Seidel, S. C.; Seiden, A.; Seidlitz, B. D.; Seiss, T.; Seitz, C.; Seixas, J. M.; Sekhniaidze, G.; Sekula, S. J.; Semprini-Cesari, N.; Sen, S.; Serfon, C.; Serin, L.; Serkin, L.; Sessa, M.; Severini, H.; Sevova, S.; Sforza, F.; Sfyrla, A.; Shabalina, E.; Shahinian, J. D.; Shaikh, N. W.; Shaked Renous, D.; Shan, L. Y.; Shapiro, M.; Sharma, A.; Sharma, A. S.; Shatalov, P. B.; Shaw, K.; Shaw, S. M.; Shehade, M.; Shen, Y.; Sherman, A. D.; Sherwood, P.; Shi, L.; Shimizu, S.; Shimmin, C. O.; Shimogama, Y.; Shimojima, M.; Shipsey, I. P.; Shirabe, S.; Shiyakova, M.; Shlomi, J.; Shmeleva, A.; Shochet, M. J.; Shojaii, J.; Shope, D. R.; Shrestha, S.; Shrif, E. M.; Shulga, E.; Sicho, P.; Sickles, A. M.; Sideras Haddad, E.; Sidiropoulou, O.; Sidoti, A.; Siegert, F.; Sijacki, D.; Jr Silva, M.; Silva Oliveira, M. V.; Silverstein, S. B.; Simion, S.; Simoniello, R.; Simpson-Allsop, C. J.; Simsek, S.; Sinervo, P.; Sinetckii, V.; Singh, S.; Sioli, M.; Siral, I.; Sivoklokov, S. Y.; Sjölin, J.; Skaf, A.; Skorda, E.; Skubic, P.; Slawinska, M.; Sliwa, K.; Slovak, R.; Smakhtin, V.; Smart, B. H.; Smiesko, J.; Smirnov, N.; Smirnov, S. Y.; Smirnov, Y.; Smirnova, L. N.; Smirnova, O.; Smith, E. A.; Smith, H. A.; Smizanska, M.; Smolek, K.; Smykiewicz, A.; Snesarev, A. A.; Snoek, H. L.; Snyder, I. M.; Snyder, S.; Sobie, R.; Soffer, A.; Søgaard, A.; Sohns, F.; Solans Sanchez, C. A.; Soldatov, E. Y.; Soldevila, U.; Solodkov, A. A.; Soloshenko, A.; Solovyanov, O. V.; Solovyev, V.; Sommer, P.; Son, H.; Song, W.; Song, W. Y.; Sopczak, A.; Sopio, A. L.; Sopkova, F.; Sottocornola, S.; Soualah, R.; Soukharev, A. M.; South, D.; Spagnolo, S.; Spalla, M.; Spangenberg, M.; Spanò, F.; Sperlich, D.; Spieker, T. M.; Spigo, G.; Spina, M.; Spiteri, D. P.; Spousta, M.; Stabile, A.; Stamas, B. L.; Stamen, R.; Stamenkovic, M.; Stanecka, E.; Stanislaus, B.; Stanitzki, M. M.; Stankaityte, M.; Stapf, B.; Starchenko, E. A.; Stark, G. H.; Stark, J.; Staroba, P.; Starovoitov, P.; Stärz, S.; Staszewski, R.; Stavropoulos, G.; Stegler, M.; Steinberg, P.; Steinhebel, A. L.; Stelzer, B.; Stelzer, H. J.; Stelzer-Chilton, O.; Stenzel, H.; Stevenson, T. J.; Stewart, G. A.; Stockton, M. C.; Stoicea, G.; Stolarski, M.; Stonjek, S.; Straessner, A.; Strandberg, J.; Strandberg, S.; Strauss, M.; Strebler, T.; Strizenec, P.; Ströhmer, R.; Strom, D. M.; Stroynowski, R.; Strubig, A.; Stucci, S. A.; Stugu, B.; Stupak, J.; Styles, N. A.; Su, D.; Su, W.; Su, X.; Sulin, V. V.; Sullivan, M. J.; Sultan, D. M.; Sultansoy, S.; Sumida, T.; Sun, S.; Sun, X.; Suruliz, K.; Suster, C. J.; Sutton, M. R.; Suzuki, S.; Svatos, M.; Swiatlowski, M.; Swift, S. P.; Swirski, T.; Sydorenko, A.; Sykora, I.; Sykora, M.; Sykora, T.; Ta, D.; Tackmann, K.; Taenzer, J.; Taffard, A.; Tafirout, R.; Tagiev, E.; Takashima, R.; Takeda, K.; Takeshita, T.; Takeva, E. P.; Takubo, Y.; Talby, M.; Talyshev, A. A.; Tam, K. C.; Tamir, N. M.; Tanaka, J.; Tanaka, R.; Tapia Araya, S.; Tapprogge, S.; Tarek Abouelfadl Mohamed, A.; Tarem, S.; Tariq, K.; Tarna, G.; Tartarelli, G. F.; Tas, P.; Tasevsky, M.; Tashiro, T.; Tassi, E.; Tavares Delgado, A.; Tayalati, Y.; Taylor, A. J.; Taylor, G. N.; Taylor, W.; Teagle, H.; Tee, A. S.; Teixeira De Lima, R.; Teixeira-Dias, P.; Ten Kate, H.; Teoh, J. J.; Terada, S.; Terashi, K.; Terron, J.; Terzo, S.; Testa, M.; Teuscher, R. J.; Thais, S. J.; Themistokleous, N.; Theveneaux-Pelzer, T.; Thiele, F.; Thomas, D. W.; Thomas, J. O.; Thomas, J. P.; Thompson, E. A.; Thompson, P. D.; Thomson, E.; Thorpe, E. J.; Ticse Torres, R. E.; Tikhomirov, V. O.; Tikhonov, Y. A.; Timoshenko, S.; Tipton, P.; Tisserant, S.; Todome, K.; Todorova-Nova, S.; Todt, S.; Tojo, J.; Tokár, S.; Tokushuku, K.; Tolley, E.; Tombs, R.; Tomiwa, K. G.; Tomoto, M.; Tompkins, L.; Tornambe, P.; Torrence, E.; Torres, H.; Torró Pastor, E.; Tosciri, C.; Toth, J.; Tovey, D. R.; Traeet, A.; Treado, C. J.; Trefzger, T.; Tresoldi, F.; Tricoli, A.; Trigger, I. M.; Trincaz-Duvoid, S.; Trischuk, D. A.; Trischuk, W.; Trocmé, B.; Trofymov, A.; Troncon, C.; Trovato, F.; Truong, L.; Trzebinski, M.; Trzupek, A.; Tsai, F.; Tseng, J. C.; Tsiareshka, P. V.; Tsirigotis, A.; Tsiskaridze, V.; Tskhadadze, E. G.; Tsopoulou, M.; Tsukerman, I. I.; Tsulaia, V.; Tsuno, S.; Tsybychev, D.; Tu, Y.; Tudorache, A.; Tudorache, V.; Tulbure, T. T.; Tuna, A. N.; Turchikhin, S.; Turgeman, D.; Turk Cakir, I.; Turner, R. J.; Turra, R. T.; Tuts, P. M.; Tzamarias, S.; Tzovara, E.; Uchida, K.; Ukegawa, F.; Unal, G.; Unal, M.; Undrus, A.; Unel, G.; Ungaro, F. C.; Unno, Y.; Uno, K.; Urban, J.; Urquijo, P.; Usai, G.; Uysal, Z.; Vacek, V.; Vachon, B.; Vadla, K. O.; Vafeiadis, T.; Vaidya, A.; Valderanis, C.; Valdes Santurio, E.; Valente, M.; Valentinetti, S.; Valero, A.; Valéry, L.; Vallance, R. A.; Vallier, A.; Valls Ferrer, J. A.; Van Daalen, T. R.; Van Gemmeren, P.; Van Stroud, S.; Van Vulpen, I.; Vanadia, M.; Vandelli, W.; Vandenbroucke, M.; Vandewall, E. R.; Vaniachine, A.; Vannicola, D.; Vari, R.; Varnes, E. W.; Varni, C.; Varol, T.; Varouchas, D.; Varvell, K. E.; Vasile, M. E.; Vasquez, G. A.; Vazeille, F.; Vazquez Furelos, D.; Vazquez Schroeder, T.; Veatch, J.; Vecchio, V.; Veen, M. J.; Veloce, L. M.; Veloso, F.; Veneziano, S.; Ventura, A.; Verbytskyi, A.; Vercesi, V.; Verducci, M.; Vergel Infante, C. M.; Vergis, C.; Verkerke, W.; Vermeulen, A. T.; Vermeulen, J. C.; Vernieri, C.; Vetterli, M. C.; Viaux Maira, N.; Vickey, T.; Vickey Boeriu, O. E.; Viehhauser, G. H.; Vigani, L.; Villa, M.; Villaplana Perez, M.; Villhauer, E. M.; Vilucchi, E.; Vincter, M. G.; Virdee, G. S.; Vishwakarma, A.; Vittori, C.; Vivarelli, I.; Vogel, M.; Vokac, P.; von Buddenbrock, S. E.; Von Toerne, E.; Vorobel, V.; Vorobev, K.; Vos, M.; Vossebeld, J. H.; Vozak, M.; Vranjes, N.; Vranjes Milosavljevic, M.; Vrba, V.; Vreeswijk, M.; Vuillermet, R.; Vukotic, I.; Wada, S.; Wagner, P.; Wagner, W.; Wagner-Kuhr, J.; Wahdan, S.; Wahlberg, H.; Wakasa, R.; Walbrecht, V. M.; Walder, J.; Walker, R.; Walker, S. D.; Walkowiak, W.; Wallangen, V.; Wang, A. M.; Wang, A. Z.; Wang, C.; Wang, C.; Wang, F.; Wang, H.; Wang, H.; Wang, J.; Wang, P.; Wang, Q.; Wang, R. J.; Wang, R.; Wang, R.; Wang, S. M.; Wang, W. T.; Wang, W.; Wang, W. X.; Wang, Y.; Wang, Z.; Wanotayaroj, C.; Warburton, A.; Ward, C. P.; Wardrope, D. R.; Warrack, N.; Watson, A. T.; Watson, M. F.; Watts, G.; Waugh, B. M.; Webb, A. F.; Weber, C.; Weber, M. S.; Weber, S. A.; Weber, S. M.; Weidberg, A. R.; Weingarten, J.; Weirich, M.; Weiser, C.; Wells, P. S.; Wenaus, T.; Wendland, B.; Wengler, T.; Wenig, S.; Wermes, N.; Wessels, M.; Weston, T. D.; Whalen, K.; Wharton, A. M.; White, A. S.; White, A.; White, M. J.; Whiteson, D.; Whitmore, B. W.; Wiedenmann, W.; Wiel, C.; Wielers, M.; Wieseotte, N.; Wiglesworth, C.; Wiik-Fuchs, L. A.; Wilkens, H. G.; Wilkins, L. J.; Williams, H. H.; Williams, S.; Willocq, S.; Windischhofer, P. J.; Wingerter-Seez, I.; Winkels, E.; Winklmeier, F.; Winter, B. T.; Wittgen, M.; Wobisch, M.; Wolf, A.; Wölker, R.; Wollrath, J.; Wolter, M. W.; Wolters, H.; Wong, V. W.; Woods, N. L.; Worm, S. D.; Wosiek, B. K.; Woźniak, K. W.; Wraight, K.; Wu, S. L.; Wu, X.; Wu, Y.; Wuerzinger, J.; Wyatt, T. R.; Wynne, B. M.; Xella, S.; Xia, L.; Xiang, J.; Xiao, X.; Xie, X.; Xiotidis, I.; Xu, D.; Xu, H.; Xu, H.; Xu, L.; Xu, T.; Xu, W.; Xu, Z.; Xu, Z.; Yabsley, B.; Yacoob, S.; Yajima, K.; Yallup, D. P.; Yamaguchi, N.; Yamaguchi, Y.; Yamamoto, A.; Yamatani, M.; Yamazaki, T.; Yamazaki, Y.; Yan, J.; Yan, Z.; Yang, H. J.; Yang, H. T.; Yang, S.; Yang, T.; Yang, X.; Yang, Y.; Yang, Z.; Yao, W. M.; Yap, Y. C.; Yasu, Y.; Yatsenko, E.; Ye, H.; Ye, J.; Ye, S.; Yeletskikh, I.; Yexley, M. R.; Yigitbasi, E.; Yin, P.; Yorita, K.; Yoshihara, K.; Young, C. J.; Young, C.; Yu, J.; Yuan, R.; Yue, X.; Zaazoua, M.; Zabinski, B.; Zacharis, G.; Zaffaroni, E.; Zahreddine, J.; Zaitsev, A. M.; Zakareishvili, T.; Zakharchuk, N.; Zambito, S.; Zanzi, D.; Zaripovas, D. R.; Zeißner, S. V.; Zeitnitz, C.; Zemaityte, G.; Zeng, J. C.; Zenin, O.; Ženiš, T.; Zerwas, D.; Zgubič, M.; Zhang, B.; Zhang, D. F.; Zhang, G.; Zhang, J.; Zhang, K.; Zhang, L.; Zhang, L.; Zhang, M.; Zhang, R.; Zhang, S.; Zhang, X.; Zhang, X.; Zhang, Y.; Zhang, Z.; Zhang, Z.; Zhao, P.; Zhao, Z.; Zhemchugov, A.; Zheng, Z.; Zhong, D.; Zhou, B.; Zhou, C.; Zhou, H.; Zhou, M. S.; Zhou, M.; Zhou, N.; Zhou, Y.; Zhu, C. G.; Zhu, C.; Zhu, H. L.; Zhu, H.; Zhu, J.; Zhu, Y.; Zhuang, X.; Zhukov, K.; Zhulanov, V.; Zieminska, D.; Zimine, N. I.; Zimmermann, S.; Zinonos, Z.; Ziolkowski, M.; Živković, L.; Zobernig, G.; Zoccoli, A.; Zoch, K.; Zorbas, T. G.; Zou, R.; Zwalinski, L. CP Properties of Higgs Boson Interactions with Top Quarks in the tt[over ¯]H and tH Processes Using H→γγ with the ATLAS Detector. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.125.061802.
497|shorty-download|Dieterle, M.; Witthauer, L.; Fix, A.; Abt, S.; Achenbach, P.; Adlarson, P.; Afzal, F.; Aguar Bartolome, P.; Ahmed, Z.; Annand, J. R.; Arends, H. J.; Bashkanov, M.; Beck, R.; Biroth, M.; Borisov, N.; Braghieri, A.; Briscoe, W. J.; Cividini, F.; Collicott, C.; Costanza, S.; Denig, A.; Dolzhikov, A. S.; Downie, E. J.; Drexler, P.; Gardner, S.; Ghosal, D.; Glazier, D. I.; Gorodnov, I.; Gradl, W.; Günther, M.; Gurevich, D.; Heijkenskjöld, L.; Hornidge, D.; Huber, G. M.; Käser, A.; Kashevarov, V. L.; Kay, S.; Keshelashvili, I.; Kondratiev, R.; Korolija, M.; Krusche, B.; Lazarev, A.; Lisin, V.; Livingston, K.; Lutterer, S.; MacGregor, I. J.; Manley, D. M.; Martel, P. P.; Metag, V.; Meyer, W.; Middleton, D. G.; Miskimen, R.; Mornacchi, E.; Mullen, C.; Mushkarenkov, A.; Neganov, A.; Neiser, A.; Oberle, M.; Ostrick, M.; Otte, P. B.; Paudyal, D.; Pedroni, P.; Polonski, A.; Powell, A.; Prakhov, S. N.; Reicherz, G.; Ron, G.; Rostomyan, T.; Sarty, A.; Sfienti, C.; Sokhoyan, V.; Spieker, K.; Steffen, O.; Strakovsky, I. I.; Strub, T.; Supek, I.; Thiel, A.; Thiel, M.; Thomas, A.; Unverzagt, M.; Usov, Y. A.; Wagner, S.; Walford, N. K.; Watts, D. P.; Werthmüller, D.; Wettig, J.; Wolfes, M.; Zana, L. A. Helicity-Dependent Cross Sections for the Photoproduction of π^{0} Pairs from Nucleons. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.125.062001.
498|shorty-download|Nash, D. B.; Smith, M. D.; Parekh, A. K.; Scott, B. C.; Patel, K.; Murphy, K.; DeSalvo, K. B. Reflections on a Post-COVID World: Lessons from the Surge. Population health management. 2020. https://doi.org/10.1089/pop.2020.29001.nas.
499|sucess-download|Singh, O.; Lee, P. Y.; Matysiak, S.; Bermudez, H. Dual mechanism of ionic liquid-induced protein unfolding. Physical chemistry chemical physics : PCCP. 2020. https://doi.org/10.1039/d0cp03138k.
500|sucess-download|Lansford, J. E.; Zietz, S.; Putnick, D. L.; Deater-Deckard, K.; Bradley, R. H.; Costa, M.; Esposito, G.; Bornstein, M. H. Men's and women's views on acceptability of husband-to-wife violence and use of corporal punishment with children in 21 low- and middle-income countries. Child abuse & neglect. 2020. https://doi.org/10.1016/j.chiabu.2020.104692.
501|shorty-download|Blake, J. W.; Giuliano, K. K. Flow Accuracy of IV Smart Pumps Outside of Patient Rooms During COVID-19. AACN advanced critical care. 2020. https://doi.org/10.4037/aacnacc2020241.
502|sucess-download|Abdu-Allah, G. A.; Seong, K. M.; Mittapalli, O.; Ojo, J. A.; Sun, W.; Posos-Parra, O.; Mota-Sanchez, D.; Clark, J. M.; Pittendrigh, B. R. Dietary antioxidants impact DDT resistance in Drosophila melanogaster. PloS one. 2020. https://doi.org/10.1371/journal.pone.0237986.
503|sucess-download|Mäthger, L. M.; Zhao, K.; Herbst, L. Photoreceptors in skate are arranged to allow for a broad horizontal field of view. The Journal of comparative neurology. 2020. https://doi.org/10.1002/cne.25014.
504|sucess-download|You, Q.; Cheng, A. Y.; Gu, X.; Harada, B. T.; Yu, M.; Wu, T.; Ren, B.; Ouyang, Z.; He, C. Direct DNA crosslinking with CAP-C uncovers transcription-dependent chromatin organization at high resolution. Nature biotechnology. 2020. https://doi.org/10.1038/s41587-020-0643-8.
505|sucess-download|Kumar, G.; Bossert, H.; McDonald, D.; Chatzidimitriou, A.; Ardagh, M. A.; Pang, Y.; Lee, C.; Tsapatsis, M.; Abdelrahman, O. A.; Dauenhauer, P. J. Catalysis-in-a-Box: Robotic Screening of Catalytic Materials in the Time of COVID-19 and Beyond. Matter. 2020. https://doi.org/10.1016/j.matt.2020.06.025.
506|sucess-download|Nagurney, A.; Daniele, P.; Nagurney, L. S. Refugee migration networks and regulations: a multiclass, multipath variational inequality framework. Journal of global optimization : an international journal dealing with theoretical and computational aspects of seeking global optima and their applications in science, management and engineering. 2020. https://doi.org/10.1007/s10898-020-00936-6.
507|sucess-download|Roberts, A. The Third and Fatal Shock: How Pandemic Killed the Millennial Paradigm. Public administration review. 2020. https://doi.org/10.1111/puar.13223.
508|sucess-download|Yue, Y.; Li, S.; Qian, Z.; Pereira, R. F.; Lee, J.; Doherty, J. J.; Zhang, Z.; Peng, Y.; Clark, J. M.; Timme-Laragy, A. R.; Park, Y. Perfluorooctanesulfonic acid (PFOS) and perfluorobutanesulfonic acid (PFBS) impaired reproduction and altered offspring physiological functions in Caenorhabditis elegans. Food and chemical toxicology : an international journal published for the British Industrial Biological Research Association. 2020. https://doi.org/10.1016/j.fct.2020.111695.
509|sucess-download|Moriarity, R. J.; Wilton, M. J.; Liberda, E. N.; Tsuji, L. J.; Peltier, R. E. Wood smoke black carbon from Indigenous traditional cultural activities in a subarctic Cree community. International journal of circumpolar health. 2020. https://doi.org/10.1080/22423982.2020.1811517.
510|sucess-download|Sipetas, C.; Keklikoglou, A.; Gonzales, E. J. Estimation of left behind subway passengers through archived data and video image processing. Transportation research. Part C, Emerging technologies. 2020. https://doi.org/10.1016/j.trc.2020.102727.
511|sucess-download|Liu, W.; Xu, W. W.; Tsai, J. J. Developing a multi-level organization-public dialogic communication framework to assess social media-mediated disaster communication and engagement outcomes. Public relations review. 2020. https://doi.org/10.1016/j.pubrev.2020.101949.
512|sucess-download|Carpenter, J. P.; Trust, T.; Green, T. D. Transformative instruction or old wine in new skins? Exploring how and why educators use HyperDocs. Computers & education. 2020. https://doi.org/10.1016/j.compedu.2020.103979.
513|sucess-download|Yi, J.; Qiu, M.; Liu, N.; Tian, L.; Zhu, X.; Decker, E. A.; McClements, D. J. Inhibition of Lipid and Protein Oxidation in Whey-Protein-Stabilized Emulsions Using a Natural Antioxidant: Black Rice Anthocyanins. Journal of agricultural and food chemistry. 2020. https://doi.org/10.1021/acs.jafc.0c03978.
514|sucess-download|McDonald, S. M.; Newton, E.; Strickland, D.; Isler, C.; Haven, K.; Kelley, G.; Chasan-Taber, L.; Kuehn, D.; May, L. E. Influence of Prenatal Aerobic Exercise on Fetal Morphometry. Maternal and child health journal. 2020. https://doi.org/10.1007/s10995-020-03000-7.
515|shorty-download|Mishra, V.; Pope, G.; Lord, S.; Lewia, S.; Lowens, B.; Caine, K.; Sen, S.; Halter, R.; Kotz, D. Continuous Detection of Physiological Stress with Commodity Hardware. ACM transactions on computing for healthcare. 2020. https://doi.org/10.1145/3361562.
516|sucess-download|Miller, J. M.; Hall, D.; Robaszewski, J.; Sharma, P.; Hagan, M. F.; Grason, G. M.; Dogic, Z. All twist and no bend makes raft edges splay: Spontaneous curvature of domain edges in colloidal membranes. Science advances. 2020. https://doi.org/10.1126/sciadv.aba2331.
517|sucess-download|Shrum, T. R.; Markowitz, E.; Buck, H.; Gregory, R.; van der Linden, S.; Attari, S. Z.; Van Boven, L. Behavioural frameworks to understand public perceptions of and risk response to carbon dioxide removal. Interface focus. 2020. https://doi.org/10.1098/rsfs.2020.0002.
518|sucess-download|Goldstein, T.; Wu, Y. C.; Chen, S. Y.; Taniguchi, T.; Watanabe, K.; Varga, K.; Yan, J. Ground and excited state exciton polarons in monolayer MoSe The Journal of chemical physics. 2020. https://doi.org/10.1063/5.0013092.
519|sucess-download|Liu, Y.; Pan, B.; Li, H.; Lang, D.; Zhao, Q.; Zhang, D.; Wu, M.; Steinberg, C. E.; Xing, B. Can the properties of engineered nanoparticles be indicative of their functions and effects in plants? Ecotoxicology and environmental safety. 2020. https://doi.org/10.1016/j.ecoenv.2020.111128.
520|sucess-download|Ma, Y.; Yun, X.; Ruan, Z.; Lu, C.; Shi, Y.; Qin, Q.; Men, Z.; Zou, D.; Du, X.; Xing, B.; Xie, Y. Review of hexachlorocyclohexane (HCH) and dichlorodiphenyltrichloroethane (DDT) contamination in Chinese soils. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.141212.
521|sucess-download|Reljin, N.; Lazaro, J.; Hossain, M. B.; Noh, Y. S.; Cho, C. H.; Chon, K. H. Using the Redundant Convolutional Encoder-Decoder to Denoise QRS Complexes in ECG Signals Recorded with an Armband Wearable Device. Sensors (Basel, Switzerland). 2020. https://doi.org/10.3390/s20164611.
522|sucess-download|Shin, P. K.; Park, S. J.; Kim, M. S.; Kwon, D. Y.; Kim, M. J.; Kim, K.; Chun, S.; Lee, H. J.; Choi, S. W. A Traditional Korean Diet with a Low Dietary Inflammatory Index Increases Anti-Inflammatory IL-10 and Decreases Pro-Inflammatory NF-κB in a Small Dietary Intervention Study. Nutrients. 2020. https://doi.org/10.3390/nu12082468.
523|sucess-download|Brown, A. R.; Gordon, R. A.; Hyland, S. N.; Siegrist, M. S.; Grimes, C. L. Chemical Biology Tools for Examining the Bacterial Cell Wall. Cell chemical biology. 2020. https://doi.org/10.1016/j.chembiol.2020.07.024.
524|sucess-download|Mittal, A.; Manjunath, K.; Ranjan, R. K.; Kaushik, S.; Kumar, S.; Verma, V. COVID-19 pandemic: Insights into structure, function, and hACE2 receptor recognition by SARS-CoV-2. PLoS pathogens. 2020. https://doi.org/10.1371/journal.ppat.1008762.
525|sucess-download|Inan, O. T.; Tenaerts, P.; Prindiville, S. A.; Reynolds, H. R.; Dizon, D. S.; Cooper-Arnold, K.; Turakhia, M.; Pletcher, M. J.; Preston, K. L.; Krumholz, H. M.; Marlin, B. M.; Mandl, K. D.; Klasnja, P.; Spring, B.; Iturriaga, E.; Campo, R.; Desvigne-Nickens, P.; Rosenberg, Y.; Steinhubl, S. R.; Califf, R. M. Digitizing clinical trials. NPJ digital medicine. 2020. https://doi.org/10.1038/s41746-020-0302-y.
526|sucess-download|Clark, S. N.; Alli, A. S.; Brauer, M.; Ezzati, M.; Baumgartner, J.; Toledano, M. B.; Hughes, A. F.; Nimo, J.; Bedford Moses, J.; Terkpertey, S.; Vallarino, J.; Agyei-Mensah, S.; Agyemang, E.; Nathvani, R.; Muller, E.; Bennett, J.; Wang, J.; Beddows, A.; Kelly, F.; Barratt, B.; Beevers, S.; Arku, R. E. High-resolution spatiotemporal measurement of air and environmental noise pollution in Sub-Saharan African cities: Pathways to Equitable Health Cities Study protocol for Accra, Ghana. BMJ open. 2020. https://doi.org/10.1136/bmjopen-2019-035798.
527|shorty-download|Satterfield, B. C.; Savenkova, M. I.; Karatsoreos, I. N.; Jackson, M. L.; Belenky, G.; Van Dongen, H. P. Interleukin-6 (IL-6) response to a simulated night-shift schedule is modulated by brain-derived neurotrophic factor ( Chronobiology international. 2020. https://doi.org/10.1080/07420528.2020.1803901.
528|sucess-download|Chen, Y.; Sun, K.; Sun, H.; Yang, Y.; Han, L.; Zheng, H.; Xing, B. Investigation on parameters optimization to produce hydrochar without carbohydrate carbon. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.141354.
529|sucess-download|Klimova, A. N.; Sandler, S. J. An Epistasis Analysis of Genetics. 2020. https://doi.org/10.1534/genetics.120.303476.
530|sucess-download|Kapoor, A.; Field, T.; Handler, S.; Fisher, K.; Saphirak, C.; Crawford, S.; Fouayzi, H.; Johnson, F.; Spenard, A.; Zhang, N.; Gurwitz, J. H. Characteristics of Long-Term Care Residents That Predict Adverse Events after Hospitalization. Journal of the American Geriatrics Society. 2020. https://doi.org/10.1111/jgs.16770.
531|sucess-download|DeLorenzo, L.; Vander Linden, A.; Bergmann, P. J.; Wagner, G. P.; Siler, C. D.; Irschick, D. J. Using 3D-digital photogrammetry to examine scaling of the body axis in burrowing skinks. Journal of morphology. 2020. https://doi.org/10.1002/jmor.21253.
532|sucess-download|Makabenta, J. M.; Nabawy, A.; Li, C. H.; Schmidt-Malan, S.; Patel, R.; Rotello, V. M. Nanomaterial-based therapeutics for antibiotic-resistant bacterial infections. Nature reviews. Microbiology. 2020. https://doi.org/10.1038/s41579-020-0420-1.
533|sucess-download|Aguirre, T. G.; Ingrole, A.; Fuller, L.; Seek, T. W.; Fiorillo, A. R.; Sertich, J. J.; Donahue, S. W. Differing trabecular bone architecture in dinosaurs and mammals contribute to stiffness and limits on bone strain. PloS one. 2020. https://doi.org/10.1371/journal.pone.0237042.
534|sucess-download|De Gagne, J. C.; Woodward, A.; Koppel, P. D.; Park, H. K. Conceptual and theoretical models for cybercivility in education in health professions: a scoping review protocol. JBI evidence synthesis. 2020. https://doi.org/10.11124/JBISRIR-D-19-00065.
535|sucess-download|Carlozzi, N. E.; Boileau, N. R.; Roché, M. W.; Ready, R. E.; Perlmutter, J. S.; Chou, K. L.; Barton, S. K.; McCormack, M. K.; Stout, J. C.; Cella, D.; Miner, J. A.; Paulsen, J. S. Responsiveness to change over time and test-retest reliability of the PROMIS and Neuro-QoL mental health measures in persons with Huntington disease (HD). Quality of life research : an international journal of quality of life aspects of treatment, care and rehabilitation. 2020. https://doi.org/10.1007/s11136-020-02596-1.
536|sucess-download|Kopsco, H. L.; Xu, G.; Luo, C. Y.; Rich, S. M.; Mather, T. N. Crowdsourced Photographs as an Effective Method for Large-Scale Passive Tick Surveillance. Journal of medical entomology. 2020. https://doi.org/10.1093/jme/tjaa140.
537|sucess-download|Zhang, J. L.; Conlin, C. C.; Li, X.; Layec, G.; Chang, K.; Kalpathy-Cramer, J.; Lee, V. S. Exercise-induced calf muscle hyperemia: Rapid mapping of magnetic resonance imaging using deep learning approach. Physiological reports. 2020. https://doi.org/10.14814/phy2.14563.
538|sucess-download|Cao, X.; Yue, L.; Lian, F.; Wang, C.; Cheng, B.; Lv, J.; Wang, Z.; Xing, B. CuO nanoparticles doping recovered the photocatalytic antialgal activity of graphitic carbon nitride. Journal of hazardous materials. 2020. https://doi.org/10.1016/j.jhazmat.2020.123621.
539|sucess-download|Calabrese, E. J. The Muller-Neel dispute and the fate of cancer risk assessment. Environmental research. 2020. https://doi.org/10.1016/j.envres.2020.109961.
540|shorty-download|Seven, M.; Moraitis, A. M. The Challenges of Cancer Care in the Time of the COVID-19 Pandemic. Cancer nursing. 2020. https://doi.org/10.1097/NCC.0000000000000852.
541|sucess-download|Azevedo, H. S.; Perry, S. L.; Korevaar, P. A.; Das, D. Complexity emerges from chemistry. Nature chemistry. 2020. https://doi.org/10.1038/s41557-020-0537-x.
542|shorty-download|Montgomery, L.; Friedmann, P.; Abraham, A.; Evans, E.; Glass, J.; Ilgen, M. Editorial: Health equity in substance use disorder treatment. Journal of substance abuse treatment. 2020. https://doi.org/10.1016/j.jsat.2020.108101.
543|sucess-download|Yu, K.; Chen, F.; Yue, L.; Luo, Y.; Wang, Z.; Xing, B. CeO Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c01870.
544|sucess-download|Gao, Y.; Kim, P. Y.; Hoagland, D. A.; Russell, T. P. Bidisperse Nanospheres Jammed on a Liquid Surface. ACS nano. 2020. https://doi.org/10.1021/acsnano.0c04682.
545|sucess-download|Ellis, C. L.; Javaid, H.; Smith, E. C.; Venkataraman, D. Hybrid Perovskites with Larger Organic Cations Reveal Autocatalytic Degradation Kinetics and Increased Stability under Light. Inorganic chemistry. 2020. https://doi.org/10.1021/acs.inorgchem.0c01133.
546|sucess-download|Andras, J. P.; Rodriguez-Reillo, W. G.; Truchon, A.; Blanchard, J. L.; Pierce, E. A.; Ballantine, K. A. Rewilding the small stuff: the effect of ecological restoration on prokaryotic communities of peatland soils. FEMS microbiology ecology. 2020. https://doi.org/10.1093/femsec/fiaa144.
547|sucess-download|Gao, J.; Dutta, K.; Zhuang, J.; Thayumanavan, S. Cellular- and Subcellular-Targeted Delivery Using a Simple All-in-One Polymeric Nanoassembly. Angewandte Chemie (International ed. in English). 2020. https://doi.org/10.1002/anie.202008272.
548|sucess-download|Bartlett, M. F.; Fitzgerald, L. F.; Nagarajan, R.; Kent, J. A. Validity and accuracy of calculating oxidative ATP synthesis in vivo during high-intensity skeletal muscle contractions. NMR in biomedicine. 2020. https://doi.org/10.1002/nbm.4381.
549|sucess-download|Arku, R. E.; Brauer, M.; Duong, M.; Wei, L.; Hu, B.; Ah Tse, L.; Mony, P. K.; Lakshmi, P. V.; Pillai, R. K.; Mohan, V.; Yeates, K.; Kruger, L.; Rangarajan, S.; Koon, T.; Yusuf, S.; Hystad, P. Adverse health impacts of cooking with kerosene: A multi-country analysis within the Prospective Urban and Rural Epidemiology Study. Environmental research. 2020. https://doi.org/10.1016/j.envres.2020.109851.
550|sucess-download|Lin, Z.; Gao, S.; Yang, J. S.; Qu, Y.; Zhang, Z.; He, L. A filtration-assisted approach to enhance optical detection of analytes and its application in food matrices. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.127814.
551|sucess-download|Donnelly, C. J.; Jackson, C.; Weir, G.; Alderson, J.; Robinson, M. A. Prescribing joint co-ordinates during model preparation in OpenSim improves lower limb unplanned sidestepping kinematics. Journal of science and medicine in sport. 2020. https://doi.org/10.1016/j.jsams.2020.07.009.
552|sucess-download|Tan, H.; Yue, T.; Xu, Y.; Zhao, J.; Xing, B. Microplastics Reduce Lipid Digestion in Simulated Human Gastrointestinal System. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c02608.
553|sucess-download|Ren, K.; Keshri, P.; Wu, R.; Sun, Z.; Yu, Q.; Tian, Q.; Zhao, B.; Bagheri, Y.; Xie, Y.; You, M. A Genetically Encoded RNA Photosensitizer for Targeted Cell Regulation. Angewandte Chemie (International ed. in English). 2020. https://doi.org/10.1002/anie.202010106.
554|shorty-download|Young-Mason, J. Dying in the Care of Strangers. Clinical nurse specialist CNS. 2020. https://doi.org/10.1097/NUR.0000000000000537.
555|shorty-download|Cortés, Y. I.; Conant, R.; Catov, J. M.; Matthews, K. A.; Crawford, S. L.; Hedderson, M. M.; Thurston, R. C. Impact of nulliparity, hypertensive disorders of pregnancy, and gestational diabetes on vasomotor symptoms in midlife women. Menopause (New York, N.Y.). 2020. https://doi.org/10.1097/GME.0000000000001628.
556|shorty-download|Yirsaw, A.; Baldwin, C. L. Goat γδ T cells. Developmental and comparative immunology. 2020. https://doi.org/10.1016/j.dci.2020.103809.
557|shorty-download|Allen, J. E.; Frantzeskakis, D. J.; Karachalios, N. I.; Kevrekidis, P. G.; Koukouloyannis, V. Solitary and periodic waves in collisionless plasmas: The Adlam-Allen model revisited. Physical review. E. 2020. https://doi.org/10.1103/PhysRevE.102.013209.
558|shorty-download|Aad, G.; Abbott, B.; Abbott, D. C.; Abed Abud, A.; Abeling, K.; Abhayasinghe, D. K.; Abidi, S. H.; AbouZeid, O. S.; Abraham, N. L.; Abramowicz, H.; Abreu, H.; Abulaiti, Y.; Acharya, B. S.; Achkar, B.; Adam, L.; Adam Bourdarios, C.; Adamczyk, L.; Adamek, L.; Adelman, J.; Adersberger, M.; Adiguzel, A.; Adorni, S.; Adye, T.; Affolder, A. A.; Afik, Y.; Agapopoulou, C.; Agaras, M. N.; Aggarwal, A.; Agheorghiesei, C.; Aguilar-Saavedra, J. A.; Ahmad, A.; Ahmadov, F.; Ahmed, W. S.; Ai, X.; Aielli, G.; Akatsuka, S.; Åkesson, T. P.; Akilli, E.; Akimov, A. V.; Al Khoury, K.; Alberghi, G. L.; Albert, J.; Alconada Verzini, M. J.; Alderweireldt, S.; Aleksa, M.; Aleksandrov, I. N.; Alexa, C.; Alexopoulos, T.; Alfonsi, A.; Alfonsi, F.; Alhroob, M.; Ali, B.; Ali, S.; Aliev, M.; Alimonti, G.; Allaire, C.; Allbrooke, B. M.; Allen, B. W.; Allport, P. P.; Aloisio, A.; Alonso, F.; Alpigiani, C.; Alshehri, A. A.; Alunno Camelia, E.; Alvarez Estevez, M.; Alviggi, M. G.; Amaral Coutinho, Y.; Ambler, A.; Ambroz, L.; Amelung, C.; Amidei, D.; Amor Dos Santos, S. P.; Amoroso, S.; Amrouche, C. S.; An, F.; Anastopoulos, C.; Andari, N.; Andeen, T.; Anders, C. F.; Anders, J. K.; Andrean, S. Y.; Andreazza, A.; Andrei, V.; Anelli, C. R.; Angelidakis, S.; Angerami, A.; Anisenkov, A. V.; Annovi, A.; Antel, C.; Anthony, M. T.; Antipov, E.; Antonelli, M.; Antrim, D. J.; Anulli, F.; Aoki, M.; Aparisi Pozo, J. A.; Aparo, M. A.; Aperio Bella, L.; Araujo Ferraz, V.; Araujo Pereira, R.; Arcangeletti, C.; Arce, A. T.; Arduh, F. A.; Arguin, J. F.; Argyropoulos, S.; Arling, J. H.; Armbruster, A. J.; Armstrong, A.; Arnaez, O.; Arnold, H.; Arrubarrena Tame, Z. P.; Artoni, G.; Artz, S.; Asai, S.; Asawatavonvanich, T.; Asbah, N.; Asimakopoulou, E. M.; Asquith, L.; Assahsah, J.; Assamagan, K.; Astalos, R.; Atkin, R. J.; Atkinson, M.; Atlay, N. B.; Atmani, H.; Augsten, K.; Avolio, G.; Ayoub, M. K.; Azuelos, G.; Bachacou, H.; Bachas, K.; Backes, M.; Backman, F.; Bagnaia, P.; Bahmani, M.; Bahrasemani, H.; Bailey, A. J.; Bailey, V. R.; Baines, J. T.; Bakalis, C.; Baker, O. K.; Bakker, P. J.; Bakshi Gupta, D.; Balaji, S.; Baldin, E. M.; Balek, P.; Balli, F.; Balunas, W. K.; Balz, J.; Banas, E.; Bandieramonte, M.; Bandyopadhyay, A.; Banerjee, S.; Barak, L.; Barbe, W. M.; Barberio, E. L.; Barberis, D.; Barbero, M.; Barbour, G.; Barillari, T.; Barisits, M. S.; Barkeloo, J.; Barklow, T.; Barnea, R.; Barnett, B. M.; Barnett, R. M.; Barnovska-Blenessy, Z.; Baroncelli, A.; Barone, G.; Barr, A. J.; Barranco Navarro, L.; Barreiro, F.; Barreiro Guimarães da Costa, J.; Barron, U.; Barsov, S.; Bartels, F.; Bartoldus, R.; Bartolini, G.; Barton, A. E.; Bartos, P.; Basalaev, A.; Basan, A.; Bassalat, A.; Basso, M. J.; Bates, R. L.; Batlamous, S.; Batley, J. R.; Batool, B.; Battaglia, M.; Bauce, M.; Bauer, F.; Bauer, K. T.; Bawa, H. S.; Beacham, J. B.; Beau, T.; Beauchemin, P. H.; Becherer, F.; Bechtle, P.; Beck, H. C.; Beck, H. P.; Becker, K.; Becot, C.; Beddall, A.; Beddall, A. J.; Bednyakov, V. A.; Bedognetti, M.; Bee, C. P.; Beermann, T. A.; Begalli, M.; Begel, M.; Behera, A.; Behr, J. K.; Beisiegel, F.; Belfkir, M.; Bell, A. S.; Bella, G.; Bellagamba, L.; Bellerive, A.; Bellos, P.; Beloborodov, K.; Belotskiy, K.; Belyaev, N. L.; Benchekroun, D.; Benekos, N.; Benhammou, Y.; Benjamin, D. P.; Benoit, M.; Bensinger, J. R.; Bentvelsen, S.; Beresford, L.; Beretta, M.; Berge, D.; Bergeaas Kuutmann, E.; Berger, N.; Bergmann, B.; Bergsten, L. J.; Beringer, J.; Berlendis, S.; Bernardi, G.; Bernius, C.; Bernlochner, F. U.; Berry, T.; Berta, P.; Bertella, C.; Berthold, A.; Bertram, I. A.; Bessidskaia Bylund, O.; Besson, N.; Bethani, A.; Bethke, S.; Betti, A.; Bevan, A. J.; Beyer, J.; Bhattacharya, D. S.; Bhattarai, P.; Bi, R.; Bianchi, R. M.; Biebel, O.; Biedermann, D.; Bielski, R.; Bierwagen, K.; Biesuz, N. V.; Biglietti, M.; Billoud, T. R.; Bindi, M.; Bingul, A.; Bini, C.; Biondi, S.; Birman, M.; Bisanz, T.; Biswal, J. P.; Biswas, D.; Bitadze, A.; Bittrich, C.; Bjørke, K.; Blazek, T.; Bloch, I.; Blocker, C.; Blue, A.; Blumenschein, U.; Bobbink, G. J.; Bobrovnikov, V. S.; Bocchetta, S. S.; Bocci, A.; Boerner, D.; Bogavac, D.; Bogdanchikov, A. G.; Bohm, C.; Boisvert, V.; Bokan, P.; Bold, T.; Bolz, A. E.; Bomben, M.; Bona, M.; Bonilla, J. S.; Boonekamp, M.; Booth, C. D.; Borecka-Bielska, H. M.; Borgna, L. S.; Borisov, A.; Borissov, G.; Bortfeldt, J.; Bortoletto, D.; Boscherini, D.; Bosman, M.; Bossio Sola, J. D.; Bouaouda, K.; Boudreau, J.; Bouhova-Thacker, E. V.; Boumediene, D.; Boutle, S. K.; Boveia, A.; Boyd, J.; Boye, D.; Boyko, I. R.; Bozson, A. J.; Bracinik, J.; Brahimi, N.; Brandt, G.; Brandt, O.; Braren, F.; Brau, B.; Brau, J. E.; Breaden Madden, W. D.; Brendlinger, K.; Brenner, L.; Brenner, R.; Bressler, S.; Brickwedde, B.; Briglin, D. L.; Britton, D.; Britzger, D.; Brock, I.; Brock, R.; Brooijmans, G.; Brooks, W. K.; Brost, E.; Bruckman de Renstrom, P. A.; Bruncko, D.; Bruni, A.; Bruni, G.; Bruni, L. S.; Bruno, S.; Bruschi, M.; Bruscino, N.; Bryngemark, L.; Buanes, T.; Buat, Q.; Buchholz, P.; Buckley, A. G.; Budagov, I. A.; Bugge, M. K.; Bührer, F.; Bulekov, O.; Bullard, B. A.; Burch, T. J.; Burdin, S.; Burgard, C. D.; Burger, A. M.; Burghgrave, B.; Burr, J. T.; Burton, C. D.; Burzynski, J. C.; Büscher, V.; Buschmann, E.; Bussey, P. J.; Butler, J. M.; Buttar, C. M.; Butterworth, J. M.; Butti, P.; Buttinger, W.; Buxo Vazquez, C. J.; Buzatu, A.; Buzykaev, A. R.; Cabras, G.; Cabrera Urbán, S.; Caforio, D.; Cai, H.; Cairo, V. M.; Cakir, O.; Calace, N.; Calafiura, P.; Calderini, G.; Calfayan, P.; Callea, G.; Caloba, L. P.; Caltabiano, A.; Calvente Lopez, S.; Calvet, D.; Calvet, S.; Calvet, T. P.; Calvetti, M.; Camacho Toro, R.; Camarda, S.; Camarero Munoz, D.; Camarri, P.; Camerlingo, M. T.; Cameron, D.; Camincher, C.; Campana, S.; Campanelli, M.; Camplani, A.; Campoverde, A.; Canale, V.; Canesse, A.; Cano Bret, M.; Cantero, J.; Cao, T.; Cao, Y.; Capeans Garrido, M. D.; Capua, M.; Cardarelli, R.; Cardillo, F.; Carducci, G.; Carli, I.; Carli, T.; Carlino, G.; Carlson, B. T.; Carlson, E. M.; Carminati, L.; Carney, R. M.; Caron, S.; Carquin, E.; Carrá, S.; Carter, J. W.; Carter, T. M.; Casado, M. P.; Casha, A. F.; Castillo, F. L.; Castillo Garcia, L.; Castillo Gimenez, V.; Castro, N. F.; Catinaccio, A.; Catmore, J. R.; Cattai, A.; Cavaliere, V.; Cavallaro, E.; Cavasinni, V.; Celebi, E.; Celli, F.; Cerda Alberich, L.; Cerny, K.; Cerqueira, A. S.; Cerri, A.; Cerrito, L.; Cerutti, F.; Cervelli, A.; Cetin, S. A.; Chadi, Z.; Chakraborty, D.; Chan, J.; Chan, W. S.; Chan, W. Y.; Chapman, J. D.; Chargeishvili, B.; Charlton, D. G.; Charman, T. P.; Chau, C. C.; Che, S.; Chekanov, S.; Chekulaev, S. V.; Chelkov, G. A.; Chen, B.; Chen, C.; Chen, C. H.; Chen, H.; Chen, J.; Chen, J.; Chen, J.; Chen, S.; Chen, S. J.; Chen, X.; Chen, Y.; Chen, Y. H.; Cheng, H. C.; Cheng, H. J.; Cheplakov, A.; Cheremushkina, E.; Cherkaoui El Moursli, R.; Cheu, E.; Cheung, K.; Chevalérias, T. J.; Chevalier, L.; Chiarella, V.; Chiarelli, G.; Chiodini, G.; Chisholm, A. S.; Chitan, A.; Chiu, I.; Chiu, Y. H.; Chizhov, M. V.; Choi, K.; Chomont, A. R.; Chouridou, S.; Chow, Y. S.; Christopher, L. D.; Chu, M. C.; Chu, X.; Chudoba, J.; Chwastowski, J. J.; Chytka, L.; Cieri, D.; Ciesla, K. M.; Cinca, D.; Cindro, V.; Cioară, I. A.; Ciocio, A.; Cirotto, F.; Citron, Z. H.; Citterio, M.; Ciubotaru, D. A.; Ciungu, B. M.; Clark, A.; Clark, M. R.; Clark, P. J.; Clawson, S. E.; Clement, C.; Coadou, Y.; Cobal, M.; Coccaro, A.; Cochran, J.; Coelho Lopes De Sa, R.; Cohen, H.; Coimbra, A. E.; Cole, B.; Colijn, A. P.; Collot, J.; Conde Muiño, P.; Connell, S. H.; Connelly, I. A.; Constantinescu, S.; Conventi, F.; Cooper-Sarkar, A. M.; Cormier, F.; Cormier, K. J.; Corpe, L. D.; Corradi, M.; Corrigan, E. E.; Corriveau, F.; Costa, M. J.; Costanza, F.; Costanzo, D.; Cowan, G.; Cowley, J. W.; Crane, J.; Cranmer, K.; Crawley, S. J.; Creager, R. A.; Crépé-Renaudin, S.; Crescioli, F.; Cristinziani, M.; Croft, V.; Crosetti, G.; Cueto, A.; Cuhadar Donszelmann, T.; Cukierman, A. R.; Cunningham, W. R.; Czekierda, S.; Czodrowski, P.; Czurylo, M. M.; Da Cunha Sargedas De Sousa, M. J.; Da Fonseca Pinto, J. V.; Da Via, C.; Dabrowski, W.; Dachs, F.; Dado, T.; Dahbi, S.; Dai, T.; Dallapiccola, C.; Dam, M.; D'amen, G.; D'Amico, V.; Damp, J.; Dandoy, J. R.; Daneri, M. F.; Dann, N. S.; Danninger, M.; Dao, V.; Darbo, G.; Dartsi, O.; Dattagupta, A.; Daubney, T.; D'Auria, S.; David, C.; Davidek, T.; Davis, D. R.; Dawson, I.; De, K.; De Asmundis, R.; De Beurs, M.; De Castro, S.; De Cecco, S.; De Groot, N.; de Jong, P.; De la Torre, H.; De Maria, A.; De Pedis, D.; De Salvo, A.; De Sanctis, U.; De Santis, M.; De Santo, A.; De Vasconcelos Corga, K.; De Vivie De Regie, J. B.; Debenedetti, C.; Dedovich, D. V.; Deiana, A. M.; Del Peso, J.; Delabat Diaz, Y.; Delgove, D.; Deliot, F.; Delitzsch, C. M.; Della Pietra, M.; Della Volpe, D.; Dell'Acqua, A.; Dell'Asta, L.; Delmastro, M.; Delporte, C.; Delsart, P. A.; DeMarco, D. A.; Demers, S.; Demichev, M.; Demontigny, G.; Denisov, S. P.; D'Eramo, L.; Derendarz, D.; Derkaoui, J. E.; Derue, F.; Dervan, P.; Desch, K.; Deterre, C.; Dette, K.; Deutsch, C.; Devesa, M. R.; Deviveiros, P. O.; Di Bello, F. A.; Di Ciaccio, A.; Di Ciaccio, L.; Di Clemente, W. K.; Di Donato, C.; Di Girolamo, A.; Di Gregorio, G.; Di Micco, B.; Di Nardo, R.; Di Petrillo, K. F.; Di Sipio, R.; Diaconu, C.; Dias, F. A.; Dias Do Vale, T.; Diaz, M. A.; Diaz Capriles, F. G.; Dickinson, J.; Diehl, E. B.; Dietrich, J.; Díez Cornell, S.; Dimitrievska, A.; Ding, W.; Dingfelder, J.; Dittus, F.; Djama, F.; Djobava, T.; Djuvsland, J. I.; Do Vale, M. A.; Dobre, M.; Dodsworth, D.; Doglioni, C.; Dolejsi, J.; Dolezal, Z.; Donadelli, M.; Dong, B.; Donini, J.; D'onofrio, A.; D'Onofrio, M.; Dopke, J.; Doria, A.; Dova, M. T.; Doyle, A. T.; Drechsler, E.; Dreyer, E.; Dreyer, T.; Drobac, A. S.; Du, D.; du Pree, T. A.; Duan, Y.; Dubinin, F.; Dubovsky, M.; Dubreuil, A.; Duchovni, E.; Duckeck, G.; Ducu, O. A.; Duda, D.; Dudarev, A.; Dudder, A. C.; Duffield, E. M.; Duflot, L.; Dührssen, M.; Dülsen, C.; Dumancic, M.; Dumitriu, A. E.; Duncan, A. K.; Dunford, M.; Duperrin, A.; Duran Yildiz, H.; Düren, M.; Durglishvili, A.; Duschinger, D.; Dutta, B.; Duvnjak, D.; Dyckes, G. I.; Dyndal, M.; Dysch, S.; Dziedzic, B. S.; Ecker, K. M.; Eggleston, M. G.; Eifert, T.; Eigen, G.; Einsweiler, K.; Ekelof, T.; El Jarrari, H.; El Kosseifi, R.; Ellajosyula, V.; Ellert, M.; Ellinghaus, F.; Elliot, A. A.; Ellis, N.; Elmsheuser, J.; Elsing, M.; Emeliyanov, D.; Emerman, A.; Enari, Y.; Epland, M. B.; Erdmann, J.; Ereditato, A.; Erland, P. A.; Errenst, M.; Escalier, M.; Escobar, C.; Estrada Pastor, O.; Etzion, E.; Evans, H.; Evans, M. O.; Ezhilov, A.; Fabbri, F.; Fabbri, L.; Fabiani, V.; Facini, G.; Faisca Rodrigues Pereira, R. M.; Fakhrutdinov, R. M.; Falciano, S.; Falke, P. J.; Falke, S.; Faltova, J.; Fang, Y.; Fang, Y.; Fanourakis, G.; Fanti, M.; Faraj, M.; Farbin, A.; Farilla, A.; Farina, E. M.; Farooque, T.; Farrington, S. M.; Farthouat, P.; Fassi, F.; Fassnacht, P.; Fassouliotis, D.; Faucci Giannelli, M.; Fawcett, W. J.; Fayard, L.; Fedin, O. L.; Fedorko, W.; Fehr, A.; Feickert, M.; Feligioni, L.; Fell, A.; Feng, C.; Feng, M.; Fenton, M. J.; Fenyuk, A. B.; Ferguson, S. W.; Ferrando, J.; Ferrante, A.; Ferrari, A.; Ferrari, P.; Ferrari, R.; Ferreira de Lima, D. E.; Ferrer, A.; Ferrere, D.; Ferretti, C.; Fiedler, F.; Filipčič, A.; Filthaut, F.; Finelli, K. D.; Fiolhais, M. C.; Fiorini, L.; Fischer, F.; Fisher, W. C.; Fleck, I.; Fleischmann, P.; Flick, T.; Flierl, B. M.; Flores, L.; Flores Castillo, L. R.; Follega, F. M.; Fomin, N.; Foo, J. H.; Forcolin, G. T.; Formica, A.; Förster, F. A.; Forti, A. C.; Fortin, E.; Foti, M. G.; Fournier, D.; Fox, H.; Francavilla, P.; Francescato, S.; Franchini, M.; Franchino, S.; Francis, D.; Franco, L.; Franconi, L.; Franklin, M.; Fray, A. N.; Freeman, P. M.; Freund, B.; Freund, W. S.; Freundlich, E. M.; Frizzell, D. C.; Froidevaux, D.; Frost, J. A.; Fujimoto, M.; Fukunaga, C.; Fullana Torregrosa, E.; Fusayasu, T.; Fuster, J.; Gabrielli, A.; Gabrielli, A.; Gadatsch, S.; Gadow, P.; Gagliardi, G.; Gagnon, L. G.; Galhardo, B.; Gallardo, G. E.; Gallas, E. J.; Gallop, B. J.; Galster, G.; Gamboa Goni, R.; Gan, K. K.; Ganguly, S.; Gao, J.; Gao, Y.; Gao, Y. S.; García, C.; García Navarro, J. E.; García Pascual, J. A.; Garcia-Argos, C.; Garcia-Sciveres, M.; Gardner, R. W.; Garelli, N.; Gargiulo, S.; Garner, C. A.; Garonne, V.; Gasiorowski, S. J.; Gaspar, P.; Gaudiello, A.; Gaudio, G.; Gavrilenko, I. L.; Gavrilyuk, A.; Gay, C.; Gaycken, G.; Gazis, E. N.; Geanta, A. A.; Gee, C. M.; Gee, C. N.; Geisen, J.; Geisen, M.; Gemme, C.; Genest, M. H.; Geng, C.; Gentile, S.; George, S.; Geralis, T.; Gerlach, L. O.; Gessinger-Befurt, P.; Gessner, G.; Ghasemi, S.; Ghasemi Bostanabad, M.; Ghneimat, M.; Ghosh, A.; Ghosh, A.; Giacobbe, B.; Giagu, S.; Giangiacomi, N.; Giannetti, P.; Giannini, A.; Giannini, G.; Gibson, S. M.; Gignac, M.; Gillberg, D.; Gilles, G.; Gingrich, D. M.; Giordani, M. P.; Giraud, P. F.; Giugliarelli, G.; Giugni, D.; Giuli, F.; Gkaitatzis, S.; Gkialas, I.; Gkougkousis, E. L.; Gkountoumis, P.; Gladilin, L. K.; Glasman, C.; Glatzer, J.; Glaysher, P. C.; Glazov, A.; Gledhill, G. R.; Gnesi, I.; Goblirsch-Kolb, M.; Godin, D.; Goldfarb, S.; Golling, T.; Golubkov, D.; Gomes, A.; Goncalves Gama, R.; Gonçalo, R.; Gonella, G.; Gonella, L.; Gongadze, A.; Gonnella, F.; Gonski, J. L.; González de la Hoz, S.; Gonzalez Fernandez, S.; Gonzalez Renteria, C.; Gonzalez Suarez, R.; Gonzalez-Sevilla, S.; Gonzalvo Rodriguez, G. R.; Goossens, L.; Gorasia, N. A.; Gorbounov, P. A.; Gordon, H. A.; Gorini, B.; Gorini, E.; Gorišek, A.; Goshaw, A. T.; Gostkin, M. I.; Gottardo, C. A.; Gouighri, M.; Goussiou, A. G.; Govender, N.; Goy, C.; Gozani, E.; Grabowska-Bold, I.; Graham, E. C.; Gramling, J.; Gramstad, E.; Grancagnolo, S.; Grandi, M.; Gratchev, V.; Gravila, P. M.; Gravili, F. G.; Gray, C.; Gray, H. M.; Grefe, C.; Gregersen, K.; Gregor, I. M.; Grenier, P.; Grevtsov, K.; Grieco, C.; Grieser, N. A.; Grillo, A. A.; Grimm, K.; Grinstein, S.; Grivaz, J. F.; Groh, S.; Gross, E.; Grosse-Knetter, J.; Grout, Z. J.; Grud, C.; Grummer, A.; Grundy, J. C.; Guan, L.; Guan, W.; Gubbels, C.; Guenther, J.; Guerguichon, A.; Guerrero Rojas, J. G.; Guescini, F.; Guest, D.; Gugel, R.; Guillemin, T.; Guindon, S.; Gul, U.; Guo, J.; Guo, W.; Guo, Y.; Guo, Z.; Gupta, R.; Gurbuz, S.; Gustavino, G.; Guth, M.; Gutierrez, P.; Gutschow, C.; Guyot, C.; Gwenlan, C.; Gwilliam, C. B.; Haas, A.; Haber, C.; Hadavand, H. K.; Hadef, A.; Haleem, M.; Haley, J.; Hall, J. J.; Halladjian, G.; Hallewell, G. D.; Hamacher, K.; Hamal, P.; Hamano, K.; Hamdaoui, H.; Hamer, M.; Hamity, G. N.; Han, K.; Han, L.; Han, S.; Han, Y. F.; Hanagaki, K.; Hance, M.; Handl, D. M.; Haney, B.; Hank, M. D.; Hankache, R.; Hansen, E.; Hansen, J. B.; Hansen, J. D.; Hansen, M. C.; Hansen, P. H.; Hanson, E. C.; Hara, K.; Harenberg, T.; Harkusha, S.; Harrison, P. F.; Hartman, N. M.; Hartmann, N. M.; Hasegawa, Y.; Hasib, A.; Hassani, S.; Haug, S.; Hauser, R.; Havener, L. B.; Havranek, M.; Hawkes, C. M.; Hawkings, R. J.; Hayashida, S.; Hayden, D.; Hayes, C.; Hayes, R. L.; Hays, C. P.; Hays, J. M.; Hayward, H. S.; Haywood, S. J.; He, F.; Heath, M. P.; Hedberg, V.; Heer, S.; Heggelund, A. L.; Heidegger, K. K.; Heidorn, W. D.; Heilman, J.; Heim, S.; Heim, T.; Heinemann, B.; Heinrich, J. J.; Heinrich, L.; Hejbal, J.; Helary, L.; Held, A.; Hellesund, S.; Helling, C. M.; Hellman, S.; Helsens, C.; Henderson, R. C.; Heng, Y.; Henkelmann, L.; Henriques Correia, A. M.; Herde, H.; Hernández Jiménez, Y.; Herr, H.; Herrmann, M. G.; Herrmann, T.; Herten, G.; Hertenberger, R.; Hervas, L.; Herwig, T. C.; Hesketh, G. G.; Hessey, N. P.; Hibi, H.; Higashida, A.; Higashino, S.; Higón-Rodriguez, E.; Hildebrand, K.; Hill, J. C.; Hill, K. K.; Hiller, K. H.; Hillier, S. J.; Hils, M.; Hinchliffe, I.; Hinterkeuser, F.; Hirose, M.; Hirose, S.; Hirschbuehl, D.; Hiti, B.; Hladik, O.; Hlaluku, D. R.; Hobbs, J.; Hod, N.; Hodgkinson, M. C.; Hoecker, A.; Hohn, D.; Hohov, D.; Holm, T.; Holmes, T. R.; Holzbock, M.; Hommels, L. B.; Hong, T. M.; Honig, J. C.; Hönle, A.; Hooberman, B. H.; Hopkins, W. H.; Horii, Y.; Horn, P.; Horyn, L. A.; Hou, S.; Hoummada, A.; Howarth, J.; Hoya, J.; Hrabovsky, M.; Hrdinka, J.; Hristova, I.; Hrivnac, J.; Hrynevich, A.; Hryn'ova, T.; Hsu, P. J.; Hsu, S. C.; Hu, Q.; Hu, S.; Hu, Y. F.; Huang, D. P.; Huang, X.; Huang, Y.; Huang, Y.; Hubacek, Z.; Hubaut, F.; Huebner, M.; Huegging, F.; Huffman, T. B.; Huhtinen, M.; Hunter, R. F.; Huo, P.; Huseynov, N.; Huston, J.; Huth, J.; Hyneman, R.; Hyrych, S.; Iacobucci, G.; Iakovidis, G.; Ibragimov, I.; Iconomidou-Fayard, L.; Iengo, P.; Ignazzi, R.; Igonkina, O.; Iguchi, R.; Iizawa, T.; Ikegami, Y.; Ikeno, M.; Iliadis, D.; Ilic, N.; Iltzsche, F.; Imam, H.; Introzzi, G.; Iodice, M.; Iordanidou, K.; Ippolito, V.; Isacson, M. F.; Ishino, M.; Islam, W.; Issever, C.; Istin, S.; Ito, F.; Iturbe Ponce, J. M.; Iuppa, R.; Ivina, A.; Iwasaki, H.; Izen, J. M.; Izzo, V.; Jacka, P.; Jackson, P.; Jacobs, R. M.; Jaeger, B. P.; Jain, V.; Jäkel, G.; Jakobi, K. B.; Jakobs, K.; Jakoubek, T.; Jamieson, J.; Janas, K. W.; Jansky, R.; Janus, M.; Janus, P. A.; Jarlskog, G.; Jaspan, A. E.; Javadov, N.; Javůrek, T.; Javurkova, M.; Jeanneau, F.; Jeanty, L.; Jejelava, J.; Jelinskas, A.; Jenni, P.; Jeong, N.; Jézéquel, S.; Ji, H.; Jia, J.; Jiang, H.; Jiang, Y.; Jiang, Z.; Jiggins, S.; Jimenez Morales, F. A.; Jimenez Pena, J.; Jin, S.; Jinaru, A.; Jinnouchi, O.; Jivan, H.; Johansson, P.; Johns, K. A.; Johnson, C. A.; Jones, R. W.; Jones, S. D.; Jones, S.; Jones, T. J.; Jongmanns, J.; Jorge, P. M.; Jovicevic, J.; Ju, X.; Junggeburth, J. J.; Juste Rozas, A.; Kaczmarska, A.; Kado, M.; Kagan, H.; Kagan, M.; Kahn, A.; Kahra, C.; Kaji, T.; Kajomovitz, E.; Kalderon, C. W.; Kaluza, A.; Kamenshchikov, A.; Kaneda, M.; Kang, N. J.; Kang, S.; Kano, Y.; Kanzaki, J.; Kaplan, L. S.; Kar, D.; Karava, K.; Kareem, M. J.; Karkanias, I.; Karpov, S. N.; Karpova, Z. M.; Kartvelishvili, V.; Karyukhin, A. N.; Kastanas, A.; Kato, C.; Katzy, J.; Kawade, K.; Kawagoe, K.; Kawaguchi, T.; Kawamoto, T.; Kawamura, G.; Kay, E. F.; Kazakos, S.; Kazanin, V. F.; Keeler, R.; Kehoe, R.; Keller, J. S.; Kellermann, E.; Kelsey, D.; Kempster, J. J.; Kendrick, J.; Kennedy, K. E.; Kepka, O.; Kersten, S.; Kerševan, B. P.; Ketabchi Haghighat, S.; Khader, M.; Khalil-Zada, F.; Khandoga, M.; Khanov, A.; Kharlamov, A. G.; Kharlamova, T.; Khoda, E. E.; Khodinov, A.; Khoo, T. J.; Khoriauli, G.; Khramov, E.; Khubua, J.; Kido, S.; Kiehn, M.; Kilby, C. R.; Kim, E.; Kim, Y. K.; Kimura, N.; Kind, O. M.; King, B. T.; Kirchmeier, D.; Kirk, J.; Kiryunin, A. E.; Kishimoto, T.; Kisliuk, D. P.; Kitali, V.; Kitsaki, C.; Kivernyk, O.; Klapdor-Kleingrothaus, T.; Klassen, M.; Klein, C.; Klein, M. H.; Klein, M.; Klein, U.; Kleinknecht, K.; Klimek, P.; Klimentov, A.; Klingl, T.; Klioutchnikova, T.; Klitzner, F. F.; Kluit, P.; Kluth, S.; Kneringer, E.; Knoops, E. B.; Knue, A.; Kobayashi, D.; Kobayashi, T.; Kobel, M.; Kocian, M.; Kodama, T.; Kodys, P.; Koeck, D. M.; Koenig, P. T.; Koffas, T.; Köhler, N. M.; Kolb, M.; Koletsou, I.; Komarek, T.; Kondo, T.; Köneke, K.; Kong, A. X.; König, A. C.; Kono, T.; Konstantinides, V.; Konstantinidis, N.; Konya, B.; Kopeliansky, R.; Koperny, S.; Korcyl, K.; Kordas, K.; Koren, G.; Korn, A.; Korolkov, I.; Korolkova, E. V.; Korotkova, N.; Kortner, O.; Kortner, S.; Kostyukhin, V. V.; Kotsokechagia, A.; Kotwal, A.; Koulouris, A.; Kourkoumeli-Charalampidi, A.; Kourkoumelis, C.; Kourlitis, E.; Kouskoura, V.; Kowalewska, A. B.; Kowalewski, R.; Kozanecki, W.; Kozhin, A. S.; Kramarenko, V. A.; Kramberger, G.; Krasnopevtsev, D.; Krasny, M. W.; Krasznahorkay, A.; Krauss, D.; Kremer, J. A.; Kretzschmar, J.; Krieger, P.; Krieter, F.; Krishnan, A.; Krizka, K.; Kroeninger, K.; Kroha, H.; Kroll, J.; Kroll, J.; Krowpman, K. S.; Kruchonak, U.; Krüger, H.; Krumnack, N.; Kruse, M. C.; Krzysiak, J. A.; Kubota, T.; Kuchinskaia, O.; Kuday, S.; Kuechler, J. T.; Kuehn, S.; Kugel, A.; Kuhl, T.; Kukhtin, V.; Kulchitsky, Y.; Kuleshov, S.; Kulinich, Y. P.; Kuna, M.; Kunigo, T.; Kupco, A.; Kupfer, T.; Kuprash, O.; Kurashige, H.; Kurchaninov, L. L.; Kurochkin, Y. A.; Kurova, A.; Kurth, M. G.; Kuwertz, E. S.; Kuze, M.; Kvam, A. K.; Kvita, J.; Kwan, T.; La Rotonda, L.; La Ruffa, F.; Lacasta, C.; Lacava, F.; Lack, D. P.; Lacker, H.; Lacour, D.; Ladygin, E.; Lafaye, R.; Laforge, B.; Lagouri, T.; Lai, S.; Lakomiec, I. K.; Lammers, S.; Lampl, W.; Lampoudis, C.; Lançon, E.; Landgraf, U.; Landon, M. P.; Lanfermann, M. C.; Lang, V. S.; Lange, J. C.; Langenberg, R. J.; Lankford, A. J.; Lanni, F.; Lantzsch, K.; Lanza, A.; Lapertosa, A.; Laplace, S.; Laporte, J. F.; Lari, T.; Lasagni Manghi, F.; Lassnig, M.; Lau, T. S.; Laudrain, A.; Laurier, A.; Lavorgna, M.; Lawlor, S. D.; Lazzaroni, M.; Le, B.; Le Guirriec, E.; Lebedev, A.; LeBlanc, M.; LeCompte, T.; Ledroit-Guillon, F.; Lee, A. C.; Lee, C. A.; Lee, G. R.; Lee, L.; Lee, S. C.; Lee, S.; Lefebvre, B.; Lefebvre, H. P.; Lefebvre, M.; Leggett, C.; Lehmann, K.; Lehmann, N.; Lehmann Miotto, G.; Leight, W. A.; Leisos, A.; Leite, M. A.; Leitgeb, C. E.; Leitner, R.; Lellouch, D.; Leney, K. J.; Lenz, T.; Leone, R.; Leone, S.; Leonidopoulos, C.; Leopold, A.; Leroy, C.; Les, R.; Lester, C. G.; Levchenko, M.; Levêque, J.; Levin, D.; Levinson, L. J.; Lewis, D. J.; Li, B.; Li, B.; Li, C. Q.; Li, F.; Li, H.; Li, H.; Li, J.; Li, K.; Li, L.; Li, M.; Li, Q.; Li, Q. Y.; Li, S.; Li, X.; Li, Y.; Li, Z.; Li, Z.; Liang, Z.; Liberatore, M.; Liberti, B.; Liblong, A.; Lie, K.; Lim, S.; Lin, C. Y.; Lin, K.; Lin, T. H.; Linck, R. A.; Lindley, R. E.; Lindon, J. H.; Linss, A.; Lionti, A. L.; Lipeles, E.; Lipniacka, A.; Liss, T. M.; Lister, A.; Little, J. D.; Liu, B.; Liu, B. L.; Liu, H. B.; Liu, H.; Liu, J. B.; Liu, J. K.; Liu, K.; Liu, M.; Liu, P.; Liu, Y.; Liu, Y.; Liu, Y. L.; Liu, Y. W.; Livan, M.; Lleres, A.; Llorente Merino, J.; Lloyd, S. L.; Lo, C. Y.; Lobodzinska, E. M.; Loch, P.; Loffredo, S.; Lohse, T.; Lohwasser, K.; Lokajicek, M.; Long, J. D.; Long, R. E.; Longo, L.; Looper, K. A.; Lopez Paz, I.; Lopez Solis, A.; Lorenz, J.; Lorenzo Martinez, N.; Lory, A. M.; Lösel, P. J.; Lösle, A.; Lou, X.; Lou, X.; Lounis, A.; Love, J.; Love, P. A.; Lozano Bahilo, J. J.; Lu, M.; Lu, Y. J.; Lubatti, H. J.; Luci, C.; Lucotte, A.; Luedtke, C.; Luehring, F.; Luise, I.; Luminari, L.; Lund-Jensen, B.; Lutz, M. S.; Lynn, D.; Lyons, H.; Lysak, R.; Lytken, E.; Lyu, F.; Lyubushkin, V.; Lyubushkina, T.; Ma, H.; Ma, L. L.; Ma, Y.; Maccarrone, G.; Macchiolo, A.; Macdonald, C. M.; Machado Miguens, J.; Madaffari, D.; Madar, R.; Mader, W. F.; Madugoda Ralalage Don, M.; Madysa, N.; Maeda, J.; Maeno, T.; Maerker, M.; Magerl, V.; Magini, N.; Magro, J.; Mahon, D. J.; Maidantchik, C.; Maier, T.; Maio, A.; Maj, K.; Majersky, O.; Majewski, S.; Makida, Y.; Makovec, N.; Malaescu, B.; Malecki, P.; Maleev, V. P.; Malek, F.; Mallik, U.; Malon, D.; Malone, C.; Maltezos, S.; Malyukov, S.; Mamuzic, J.; Mancini, G.; Mandić, I.; Manhaes de Andrade Filho, L.; Maniatis, I. M.; Manjarres Ramos, J.; Mankinen, K. H.; Mann, A.; Manousos, A.; Mansoulie, B.; Manthos, I.; Manzoni, S.; Marantis, A.; Marceca, G.; Marchese, L.; Marchiori, G.; Marcisovsky, M.; Marcoccia, L.; Marcon, C.; Marin Tobon, C. A.; Marjanovic, M.; Marshall, Z.; Martensson, M. U.; Marti-Garcia, S.; Martin, C. B.; Martin, T. A.; Martin, V. J.; Martin Dit Latour, B.; Martinelli, L.; Martinez, M.; Martinez Agullo, P.; Martinez Outschoorn, V. I.; Martin-Haugh, S.; Martoiu, V. S.; Martyniuk, A. C.; Marzin, A.; Maschek, S. R.; Masetti, L.; Mashimo, T.; Mashinistov, R.; Masik, J.; Maslennikov, A. L.; Massa, L.; Massarotti, P.; Mastrandrea, P.; Mastroberardino, A.; Masubuchi, T.; Matakias, D.; Matic, A.; Matsuzawa, N.; Mättig, P.; Maurer, J.; Maček, B.; Maximov, D. A.; Mazini, R.; Maznas, I.; Mazza, S. M.; Mc Gowan, J. P.; Mc Kee, S. P.; McCarthy, T. G.; McCormack, W. P.; McDonald, E. F.; Mcfayden, J. A.; Mchedlidze, G.; McKay, M. A.; McLean, K. D.; McMahon, S. J.; McNamara, P. C.; McNicol, C. J.; McPherson, R. A.; Mdhluli, J. E.; Meadows, Z. A.; Meehan, S.; Megy, T.; Mehlhase, S.; Mehta, A.; Meirose, B.; Melini, D.; Mellado Garcia, B. R.; Mellenthin, J. D.; Melo, M.; Meloni, F.; Melzer, A.; Menary, S. B.; Mendes Gouveia, E. D.; Meng, L.; Meng, X. T.; Menke, S.; Meoni, E.; Mergelmeyer, S.; Merkt, S. A.; Merlassino, C.; Mermod, P.; Merola, L.; Meroni, C.; Merz, G.; Meshkov, O.; Meshreki, J. K.; Messina, A.; Metcalfe, J.; Mete, A. S.; Meyer, C.; Meyer, J. P.; Meyer Zu Theenhausen, H.; Miano, F.; Michetti, M.; Middleton, R. P.; Mijović, L.; Mikenberg, G.; Mikestikova, M.; Mikuž, M.; Mildner, H.; Milesi, M.; Milic, A.; Milke, C. D.; Miller, D. W.; Milov, A.; Milstead, D. A.; Mina, R. A.; Minaenko, A. A.; Miñano Moya, M.; Minashvili, I. A.; Mincer, A. I.; Mindur, B.; Mineev, M.; Minegishi, Y.; Mir, L. M.; Mironova, M.; Mirto, A.; Mistry, K. P.; Mitani, T.; Mitrevski, J.; Mitsou, V. A.; Mittal, M.; Miu, O.; Miucci, A.; Miyagawa, P. S.; Mizukami, A.; Mjörnmark, J. U.; Mkrtchyan, T.; Mlynarikova, M.; Moa, T.; Mobius, S.; Mochizuki, K.; Mogg, P.; Mohapatra, S.; Moles-Valls, R.; Mondragon, M. C.; Mönig, K.; Monnier, E.; Montalbano, A.; Montejo Berlingen, J.; Montella, M.; Monticelli, F.; Monzani, S.; Morange, N.; Moreno, D.; Moreno Llácer, M.; Moreno Martinez, C.; Morettini, P.; Morgenstern, M.; Morgenstern, S.; Mori, D.; Morii, M.; Morinaga, M.; Morisbak, V.; Morley, A. K.; Mornacchi, G.; Morris, A. P.; Morvaj, L.; Moschovakos, P.; Moser, B.; Mosidze, M.; Moskalets, T.; Moss, H. J.; Moss, J.; Moyse, E. J.; Muanza, S.; Mueller, J.; Mueller, R. S.; Muenstermann, D.; Mullier, G. A.; Mungo, D. P.; Munoz Martinez, J. L.; Munoz Sanchez, F. J.; Murin, P.; Murray, W. J.; Murrone, A.; Muškinja, M.; Mwewa, C.; Myagkov, A. G.; Myers, A. A.; Myers, J.; Myska, M.; Nachman, B. P.; Nackenhorst, O.; Nag, A. N.; Nagai, K.; Nagano, K.; Nagasaka, Y.; Nagle, J. L.; Nagy, E.; Nairz, A. M.; Nakahama, Y.; Nakamura, K.; Nakamura, T.; Nanjo, H.; Napolitano, F.; Naranjo Garcia, R. F.; Narayan, R.; Naryshkin, I.; Naumann, T.; Navarro, G.; Nechaeva, P. Y.; Nechansky, F.; Neep, T. J.; Negri, A.; Negrini, M.; Nellist, C.; Nelson, M. E.; Nemecek, S.; Nessi, M.; Neubauer, M. S.; Neuhaus, F.; Neumann, M.; Newhouse, R.; Newman, P. R.; Ng, C. W.; Ng, Y. S.; Ng, Y. W.; Ngair, B.; Nguyen, H. D.; Nguyen Manh, T.; Nibigira, E.; Nickerson, R. B.; Nicolaidou, R.; Nielsen, D. S.; Nielsen, J.; Nikiforou, N.; Nikolaenko, V.; Nikolic-Audit, I.; Nikolopoulos, K.; Nilsson, P.; Nindhito, H. R.; Ninomiya, Y.; Nisati, A.; Nishu, N.; Nisius, R.; Nitsche, I.; Nitta, T.; Nobe, T.; Noel, D. L.; Noguchi, Y.; Nomidis, I.; Nomura, M. A.; Nordberg, M.; Novak, J.; Novak, T.; Novgorodova, O.; Novotny, R.; Nozka, L.; Ntekas, K.; Nurse, E.; Oakham, F. G.; Oberlack, H.; Ocariz, J.; Ochi, A.; Ochoa, I.; Ochoa-Ricoux, J. P.; O'Connor, K.; Oda, S.; Odaka, S.; Oerdek, S.; Ogrodnik, A.; Oh, A.; Oh, S. H.; Ohm, C. C.; Oide, H.; Ojeda, M. L.; Okawa, H.; Okazaki, Y.; O'Keefe, M. W.; Okumura, Y.; Okuyama, T.; Olariu, A.; Oleiro Seabra, L. F.; Olivares Pino, S. A.; Oliveira Damazio, D.; Oliver, J. L.; Olsson, M. J.; Olszewski, A.; Olszowska, J.; O'Neil, D. C.; O'neill, A. P.; Onofre, A.; Onyisi, P. U.; Oppen, H.; Oreamuno Madriz, R. G.; Oreglia, M. J.; Orellana, G. E.; Orestano, D.; Orlando, N.; Orr, R. S.; O'Shea, V.; Ospanov, R.; Otero Y Garzon, G.; Otono, H.; Ott, P. S.; Ottino, G. J.; Ouchrif, M.; Ouellette, J.; Ould-Saada, F.; Ouraou, A.; Ouyang, Q.; Owen, M.; Owen, R. E.; Ozcan, V. E.; Ozturk, N.; Pacalt, J.; Pacey, H. A.; Pachal, K.; Pacheco Pages, A.; Padilla Aranda, C.; Pagan Griso, S.; Paganini, M.; Palacino, G.; Palazzo, S.; Palestini, S.; Palka, M.; Pallin, D.; Palni, P.; Panagoulias, I.; Pandini, C. E.; Panduro Vazquez, J. G.; Pani, P.; Panizzo, G.; Paolozzi, L.; Papadatos, C.; Papageorgiou, K.; Parajuli, S.; Paramonov, A.; Paraskevopoulos, C.; Paredes Hernandez, D.; Paredes Saenz, S. R.; Parida, B.; Park, T. H.; Parker, A. J.; Parker, M. A.; Parodi, F.; Parrish, E. W.; Parsons, J. A.; Parzefall, U.; Pascual Dominguez, L.; Pascuzzi, V. R.; Pasner, J. M.; Pasquali, F.; Pasqualucci, E.; Passaggio, S.; Pastore, F.; Pasuwan, P.; Pataraia, S.; Pater, J. R.; Pathak, A.; Patton, J.; Pauly, T.; Pearkes, J.; Pearson, B.; Pedersen, M.; Pedraza Diaz, L.; Pedro, R.; Peiffer, T.; Peleganchuk, S. V.; Penc, O.; Peng, H.; Peralva, B. S.; Perego, M. M.; Pereira Peixoto, A. P.; Pereira Sanchez, L.; Perepelitsa, D. V.; Peri, F.; Perini, L.; Pernegger, H.; Perrella, S.; Perrevoort, A.; Peters, K.; Peters, R. F.; Petersen, B. A.; Petersen, T. C.; Petit, E.; Petridis, A.; Petridou, C.; Petroff, P.; Petrucci, F.; Pettee, M.; Pettersson, N. E.; Petukhova, K.; Peyaud, A.; Pezoa, R.; Pezzotti, L.; Pham, T.; Phillips, F. H.; Phillips, P. W.; Phipps, M. W.; Piacquadio, G.; Pianori, E.; Picazio, A.; Pickles, R. H.; Piegaia, R.; Pietreanu, D.; Pilcher, J. E.; Pilkington, A. D.; Pinamonti, M.; Pinfold, J. L.; Pitman Donaldson, C.; Pitt, M.; Pizzimento, L.; Pleier, M. A.; Pleskot, V.; Plotnikova, E.; Podberezko, P.; Poettgen, R.; Poggi, R.; Poggioli, L.; Pogrebnyak, I.; Pohl, D.; Pokharel, I.; Polesello, G.; Poley, A.; Policicchio, A.; Polifka, R.; Polini, A.; Pollard, C. S.; Polychronakos, V.; Ponomarenko, D.; Pontecorvo, L.; Popa, S.; Popeneciu, G. A.; Portales, L.; Portillo Quintero, D. M.; Pospisil, S.; Potamianos, K.; Potrap, I. N.; Potter, C. J.; Potti, H.; Poulsen, T.; Poveda, J.; Powell, T. D.; Pownall, G.; Pozo Astigarraga, M. E.; Pralavorio, P.; Prell, S.; Price, D.; Primavera, M.; Prince, S.; Proffitt, M. L.; Proklova, N.; Prokofiev, K.; Prokoshin, F.; Protopopescu, S.; Proudfoot, J.; Przybycien, M.; Pudzha, D.; Puri, A.; Puzo, P.; Qian, J.; Qin, Y.; Quadt, A.; Queitsch-Maitland, M.; Qureshi, A.; Racko, M.; Ragusa, F.; Rahal, G.; Raine, J. A.; Rajagopalan, S.; Ramirez Morales, A.; Ran, K.; Rashid, T.; Rauch, D. M.; Rauscher, F.; Rave, S.; Ravina, B.; Ravinovich, I.; Rawling, J. H.; Raymond, M.; Read, A. L.; Readioff, N. P.; Reale, M.; Rebuzzi, D. M.; Redlinger, G.; Reeves, K.; Rehnisch, L.; Reichert, J.; Reikher, D.; Reiss, A.; Rej, A.; Rembser, C.; Renardi, A.; Renda, M.; Rescigno, M.; Resconi, S.; Resseguie, E. D.; Rettie, S.; Reynolds, B.; Reynolds, E.; Rezanova, O. L.; Reznicek, P.; Ricci, E.; Richter, R.; Richter, S.; Richter-Was, E.; Ricken, O.; Ridel, M.; Rieck, P.; Rifki, O.; Rijssenbeek, M.; Rimoldi, A.; Rimoldi, M.; Rinaldi, L.; Ripellino, G.; Riu, I.; Rivadeneira, P.; Rivera Vergara, J. C.; Rizatdinova, F.; Rizvi, E.; Rizzi, C.; Roberts, R. T.; Robertson, S. H.; Robin, M.; Robinson, D.; Robles Gajardo, C. M.; Robles Manzano, M.; Robson, A.; Rocchi, A.; Rocco, E.; Roda, C.; Rodriguez Bosca, S.; Rodriguez Rodriguez, D.; Rodríguez Vera, A. M.; Roe, S.; Røhne, O.; Röhrig, R.; Rojas, R. A.; Roland, B.; Roland, C. P.; Roloff, J.; Romaniouk, A.; Romano, M.; Rompotis, N.; Ronzani, M.; Roos, L.; Rosati, S.; Rosin, G.; Rosser, B. J.; Rossi, E.; Rossi, E.; Rossi, E.; Rossi, L. P.; Rossini, L.; Rosten, R.; Rotaru, M.; Rottler, B.; Rousseau, D.; Rovelli, G.; Roy, A.; Roy, D.; Rozanov, A.; Rozen, Y.; Ruan, X.; Rühr, F.; Ruiz-Martinez, A.; Rummler, A.; Rurikova, Z.; Rusakovich, N. A.; Russell, H. L.; Rustige, L.; Rutherfoord, J. P.; Rüttinger, E. M.; Rybar, M.; Rybkin, G.; Rye, E. B.; Ryzhov, A.; Sabater Iglesias, J. A.; Sabatini, P.; Sacerdoti, S.; Sadrozinski, H. F.; Sadykov, R.; Safai Tehrani, F.; Safarzadeh Samani, B.; Safdari, M.; Saha, P.; Saha, S.; Sahinsoy, M.; Sahu, A.; Saimpert, M.; Saito, M.; Saito, T.; Sakamoto, H.; Salamani, D.; Salamanna, G.; Salazar Loyola, J. E.; Salnikov, A.; Salt, J.; Salvador Salas, A.; Salvatore, D.; Salvatore, F.; Salvucci, A.; Salzburger, A.; Samarati, J.; Sammel, D.; Sampsonidis, D.; Sampsonidou, D.; Sánchez, J.; Sanchez Pineda, A.; Sandaker, H.; Sander, C. O.; Sanderswood, I. G.; Sandhoff, M.; Sandoval, C.; Sankey, D. P.; Sannino, M.; Sano, Y.; Sansoni, A.; Santoni, C.; Santos, H.; Santpur, S. N.; Santra, A.; Sapronov, A.; Saraiva, J. G.; Sasaki, O.; Sato, K.; Sauerburger, F.; Sauvan, E.; Savard, P.; Sawada, R.; Sawyer, C.; Sawyer, L.; Sbarra, C.; Sbrizzi, A.; Scanlon, T.; Schaarschmidt, J.; Schacht, P.; Schachtner, B. M.; Schaefer, D.; Schaefer, L.; Schaeffer, J.; Schaepe, S.; Schäfer, U.; Schaffer, A. C.; Schaile, D.; Schamberger, R. D.; Schanet, E.; Scharmberg, N.; Schegelsky, V. A.; Scheirich, D.; Schenck, F.; Schernau, M.; Schiavi, C.; Schildgen, L. K.; Schillaci, Z. M.; Schioppa, E. J.; Schioppa, M.; Schleicher, K. E.; Schlenker, S.; Schmidt-Sommerfeld, K. R.; Schmieden, K.; Schmitt, C.; Schmitt, S.; Schmitz, S.; Schmoeckel, J. C.; Schoeffel, L.; Schoening, A.; Scholer, P. G.; Schopf, E.; Schott, M.; Schouwenberg, J. F.; Schovancova, J.; Schramm, S.; Schroeder, F.; Schulte, A.; Schultz-Coulon, H. C.; Schumacher, M.; Schumm, B. A.; Schune, P.; Schwartzman, A.; Schwarz, T. A.; Schwemling, P.; Schwienhorst, R.; Sciandra, A.; Sciolla, G.; Scodeggio, M.; Scornajenghi, M.; Scuri, F.; Scutti, F.; Scyboz, L. M.; Sebastiani, C. D.; Seema, P.; Seidel, S. C.; Seiden, A.; Seidlitz, B. D.; Seiss, T.; Seitz, C.; Seixas, J. M.; Sekhniaidze, G.; Sekula, S. J.; Semprini-Cesari, N.; Sen, S.; Serfon, C.; Serin, L.; Serkin, L.; Sessa, M.; Severini, H.; Sevova, S.; Sforza, F.; Sfyrla, A.; Shabalina, E.; Shahinian, J. D.; Shaikh, N. W.; Shaked Renous, D.; Shan, L. Y.; Shapiro, M.; Sharma, A.; Sharma, A. S.; Shatalov, P. B.; Shaw, K.; Shaw, S. M.; Shehade, M.; Shen, Y.; Sherman, A. D.; Sherwood, P.; Shi, L.; Shimizu, S.; Shimmin, C. O.; Shimogama, Y.; Shimojima, M.; Shipsey, I. P.; Shirabe, S.; Shiyakova, M.; Shlomi, J.; Shmeleva, A.; Shochet, M. J.; Shojaii, J.; Shope, D. R.; Shrestha, S.; Shrif, E. M.; Shulga, E.; Sicho, P.; Sickles, A. M.; Sideras Haddad, E.; Sidiropoulou, O.; Sidoti, A.; Siegert, F.; Sijacki, D.; Silva, M.; Silva Oliveira, M. V.; Silverstein, S. B.; Simion, S.; Simoniello, R.; Simpson-Allsop, C. J.; Simsek, S.; Sinervo, P.; Sinetckii, V.; Singh, S.; Sioli, M.; Siral, I.; Sivoklokov, S. Y.; Sjölin, J.; Skaf, A.; Skorda, E.; Skubic, P.; Slawinska, M.; Sliwa, K.; Slovak, R.; Smakhtin, V.; Smart, B. H.; Smiesko, J.; Smirnov, N.; Smirnov, S. Y.; Smirnov, Y.; Smirnova, L. N.; Smirnova, O.; Smith, J. W.; Smizanska, M.; Smolek, K.; Smykiewicz, A.; Snesarev, A. A.; Snoek, H. L.; Snyder, I. M.; Snyder, S.; Sobie, R.; Soffer, A.; Søgaard, A.; Sohns, F.; Solans Sanchez, C. A.; Soldatov, E. Y.; Soldevila, U.; Solodkov, A. A.; Soloshenko, A.; Solovyanov, O. V.; Solovyev, V.; Sommer, P.; Son, H.; Song, W.; Song, W. Y.; Sopczak, A.; Sopio, A. L.; Sopkova, F.; Sotiropoulou, C. L.; Sottocornola, S.; Soualah, R.; Soukharev, A. M.; South, D.; Spagnolo, S.; Spalla, M.; Spangenberg, M.; Spanò, F.; Sperlich, D.; Spieker, T. M.; Spigo, G.; Spina, M.; Spiteri, D. P.; Spousta, M.; Stabile, A.; Stamas, B. L.; Stamen, R.; Stamenkovic, M.; Stanecka, E.; Stanislaus, B.; Stanitzki, M. M.; Stankaityte, M.; Stapf, B.; Starchenko, E. A.; Stark, G. H.; Stark, J.; Staroba, P.; Starovoitov, P.; Stärz, S.; Staszewski, R.; Stavropoulos, G.; Stegler, M.; Steinberg, P.; Steinhebel, A. L.; Stelzer, B.; Stelzer, H. J.; Stelzer-Chilton, O.; Stenzel, H.; Stevenson, T. J.; Stewart, G. A.; Stockton, M. C.; Stoicea, G.; Stolarski, M.; Stonjek, S.; Straessner, A.; Strandberg, J.; Strandberg, S.; Strauss, M.; Strebler, T.; Strizenec, P.; Ströhmer, R.; Strom, D. M.; Stroynowski, R.; Strubig, A.; Stucci, S. A.; Stugu, B.; Stupak, J.; Styles, N. A.; Su, D.; Su, W.; Suchek, S.; Sulin, V. V.; Sullivan, M. J.; Sultan, D. M.; Sultansoy, S.; Sumida, T.; Sun, S.; Sun, X.; Suruliz, K.; Suster, C. J.; Sutton, M. R.; Suzuki, S.; Svatos, M.; Swiatlowski, M.; Swift, S. P.; Swirski, T.; Sydorenko, A.; Sykora, I.; Sykora, M.; Sykora, T.; Ta, D.; Tackmann, K.; Taenzer, J.; Taffard, A.; Tafirout, R.; Takashima, R.; Takeda, K.; Takeshita, T.; Takeva, E. P.; Takubo, Y.; Talby, M.; Talyshev, A. A.; Tam, K. C.; Tamir, N. M.; Tanaka, J.; Tanaka, R.; Tapia Araya, S.; Tapprogge, S.; Tarek Abouelfadl Mohamed, A.; Tarem, S.; Tariq, K.; Tarna, G.; Tartarelli, G. F.; Tas, P.; Tasevsky, M.; Tashiro, T.; Tassi, E.; Tavares Delgado, A.; Tayalati, Y.; Taylor, A. J.; Taylor, G. N.; Taylor, W.; Teagle, H.; Tee, A. S.; Teixeira De Lima, R.; Teixeira-Dias, P.; Ten Kate, H.; Teoh, J. J.; Terada, S.; Terashi, K.; Terron, J.; Terzo, S.; Testa, M.; Teuscher, R. J.; Thais, S. J.; Themistokleous, N.; Theveneaux-Pelzer, T.; Thiele, F.; Thomas, D. W.; Thomas, J. O.; Thomas, J. P.; Thompson, E. A.; Thompson, P. D.; Thomson, E.; Thorpe, E. J.; Ticse Torres, R. E.; Tikhomirov, V. O.; Tikhonov, Y. A.; Timoshenko, S.; Tipton, P.; Tisserant, S.; Todome, K.; Todorova-Nova, S.; Todt, S.; Tojo, J.; Tokár, S.; Tokushuku, K.; Tolley, E.; Tombs, R.; Tomiwa, K. G.; Tomoto, M.; Tompkins, L.; Tornambe, P.; Torrence, E.; Torres, H.; Torró Pastor, E.; Tosciri, C.; Toth, J.; Tovey, D. R.; Traeet, A.; Treado, C. J.; Trefzger, T.; Tresoldi, F.; Tricoli, A.; Trigger, I. M.; Trincaz-Duvoid, S.; Trischuk, D. A.; Trischuk, W.; Trocmé, B.; Trofymov, A.; Troncon, C.; Trovato, F.; Truong, L.; Trzebinski, M.; Trzupek, A.; Tsai, F.; Tseng, J. C.; Tsiareshka, P. V.; Tsirigotis, A.; Tsiskaridze, V.; Tskhadadze, E. G.; Tsopoulou, M.; Tsukerman, I. I.; Tsulaia, V.; Tsuno, S.; Tsybychev, D.; Tu, Y.; Tudorache, A.; Tudorache, V.; Tulbure, T. T.; Tuna, A. N.; Turchikhin, S.; Turgeman, D.; Turk Cakir, I.; Turner, R. J.; Turra, R.; Tuts, P. M.; Tzamarias, S.; Tzovara, E.; Ucchielli, G.; Uchida, K.; Ukegawa, F.; Unal, G.; Undrus, A.; Unel, G.; Ungaro, F. C.; Unno, Y.; Uno, K.; Urban, J.; Urquijo, P.; Usai, G.; Uysal, Z.; Vacek, V.; Vachon, B.; Vadla, K. O.; Vaidya, A.; Valderanis, C.; Valdes Santurio, E.; Valente, M.; Valentinetti, S.; Valero, A.; Valéry, L.; Vallance, R. A.; Vallier, A.; Valls Ferrer, J. A.; Van Daalen, T. R.; Van Gemmeren, P.; Van Vulpen, I.; Vanadia, M.; Vandelli, W.; Vandenbroucke, M.; Vandewall, E. R.; Vaniachine, A.; Vannicola, D.; Vari, R.; Varnes, E. W.; Varni, C.; Varol, T.; Varouchas, D.; Varvell, K. E.; Vasile, M. E.; Vasquez, G. A.; Vazeille, F.; Vazquez Furelos, D.; Vazquez Schroeder, T.; Veatch, J.; Vecchio, V.; Veen, M. J.; Veloce, L. M.; Veloso, F.; Veneziano, S.; Ventura, A.; Venturi, N.; Verbytskyi, A.; Vercesi, V.; Verducci, M.; Vergel Infante, C. M.; Vergis, C.; Verkerke, W.; Vermeulen, A. T.; Vermeulen, J. C.; Vernieri, C.; Vetterli, M. C.; Viaux Maira, N.; Vickey, T.; Vickey Boeriu, O. E.; Viehhauser, G. H.; Vigani, L.; Villa, M.; Villaplana Perez, M.; Villhauer, E. M.; Vilucchi, E.; Vincter, M. G.; Virdee, G. S.; Vishwakarma, A.; Vittori, C.; Vivarelli, I.; Vogel, M.; Vokac, P.; von Buddenbrock, S. E.; Von Toerne, E.; Vorobel, V.; Vorobev, K.; Vos, M.; Vossebeld, J. H.; Vozak, M.; Vranjes, N.; Vranjes Milosavljevic, M.; Vrba, V.; Vreeswijk, M.; Vuillermet, R.; Vukotic, I.; Wada, S.; Wagner, P.; Wagner, W.; Wagner-Kuhr, J.; Wahdan, S.; Wahlberg, H.; Wakasa, R.; Walbrecht, V. M.; Walder, J.; Walker, R.; Walker, S. D.; Walkowiak, W.; Wallangen, V.; Wang, A. M.; Wang, A. Z.; Wang, C.; Wang, F.; Wang, H.; Wang, H.; Wang, J.; Wang, J.; Wang, P.; Wang, Q.; Wang, R. J.; Wang, R.; Wang, R.; Wang, S. M.; Wang, W. T.; Wang, W.; Wang, W. X.; Wang, Y.; Wang, Z.; Wanotayaroj, C.; Warburton, A.; Ward, C. P.; Wardrope, D. R.; Warrack, N.; Washbrook, A.; Watson, A. T.; Watson, M. F.; Watts, G.; Waugh, B. M.; Webb, A. F.; Weber, C.; Weber, M. S.; Weber, S. A.; Weber, S. M.; Weidberg, A. R.; Weingarten, J.; Weirich, M.; Weiser, C.; Wells, P. S.; Wenaus, T.; Wengler, T.; Wenig, S.; Wermes, N.; Werner, M. D.; Wessels, M.; Weston, T. D.; Whalen, K.; Whallon, N. L.; Wharton, A. M.; White, A. S.; White, A.; White, M. J.; Whiteson, D.; Whitmore, B. W.; Wiedenmann, W.; Wiel, C.; Wielers, M.; Wieseotte, N.; Wiglesworth, C.; Wiik-Fuchs, L. A.; Wilkens, H. G.; Wilkins, L. J.; Williams, H. H.; Williams, S.; Willis, C.; Willocq, S.; Windischhofer, P. J.; Wingerter-Seez, I.; Winkels, E.; Winklmeier, F.; Winter, B. T.; Wittgen, M.; Wobisch, M.; Wolf, A.; Wolf, T. M.; Wolff, R.; Wölker, R.; Wollrath, J.; Wolter, M. W.; Wolters, H.; Wong, V. W.; Woods, N. L.; Worm, S. D.; Wosiek, B. K.; Woźniak, K. W.; Wraight, K.; Wu, S. L.; Wu, X.; Wu, Y.; Wuerzinger, J.; Wyatt, T. R.; Wynne, B. M.; Xella, S.; Xi, Z.; Xia, L.; Xiao, X.; Xie, X.; Xiotidis, I.; Xu, D.; Xu, H.; Xu, H.; Xu, L.; Xu, T.; Xu, W.; Xu, Z.; Xu, Z.; Yabsley, B.; Yacoob, S.; Yajima, K.; Yallup, D. P.; Yamaguchi, N.; Yamaguchi, Y.; Yamamoto, A.; Yamatani, M.; Yamazaki, T.; Yamazaki, Y.; Yan, J.; Yan, Z.; Yang, H. J.; Yang, H. T.; Yang, S.; Yang, T.; Yang, X.; Yang, Y.; Yang, Z.; Yao, W. M.; Yap, Y. C.; Yasu, Y.; Yatsenko, E.; Ye, H.; Ye, J.; Ye, S.; Yeletskikh, I.; Yexley, M. R.; Yigitbasi, E.; Yin, P.; Yorita, K.; Yoshihara, K.; Young, C. J.; Young, C.; Yu, J.; Yuan, R.; Yue, X.; Zaazoua, M.; Zabinski, B.; Zacharis, G.; Zaffaroni, E.; Zahreddine, J.; Zaitsev, A. M.; Zakareishvili, T.; Zakharchuk, N.; Zambito, S.; Zanzi, D.; Zaripovas, D. R.; Zeißner, S. V.; Zeitnitz, C.; Zemaityte, G.; Zeng, J. C.; Zenin, O.; Ženiš, T.; Zerwas, D.; Zgubič, M.; Zhang, B.; Zhang, D. F.; Zhang, G.; Zhang, J.; Zhang, K.; Zhang, L.; Zhang, L.; Zhang, M.; Zhang, R.; Zhang, S.; Zhang, X.; Zhang, X.; Zhang, Y.; Zhang, Z.; Zhang, Z.; Zhao, P.; Zhao, Z.; Zhemchugov, A.; Zheng, Z.; Zhong, D.; Zhou, B.; Zhou, C.; Zhou, H.; Zhou, M. S.; Zhou, M.; Zhou, N.; Zhou, Y.; Zhu, C. G.; Zhu, C.; Zhu, H. L.; Zhu, H.; Zhu, J.; Zhu, Y.; Zhuang, X.; Zhukov, K.; Zhulanov, V.; Zieminska, D.; Zimine, N. I.; Zimmermann, S.; Zinonos, Z.; Ziolkowski, M.; Živković, L.; Zobernig, G.; Zoccoli, A.; Zoch, K.; Zorbas, T. G.; Zou, R.; Zwalinski, L. Search for Heavy Higgs Bosons Decaying into Two Tau Leptons with the ATLAS Detector Using pp Collisions at sqrt[s]=13 TeV. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.125.051801.
559|sucess-download|Ma, G.; Kimatu, B. M.; Yang, W.; Pei, F.; Zhao, L.; Du, H.; Su, A.; Hu, Q.; Xiao, H. Preparation of newly identified polysaccharide from Pleurotus eryngii and its anti-inflammation activities potential. Journal of food science. 2020. https://doi.org/10.1111/1750-3841.15375.
560|sucess-download|van de Ven, G. M.; Siegelmann, H. T.; Tolias, A. S. Brain-inspired replay for continual learning with artificial neural networks. Nature communications. 2020. https://doi.org/10.1038/s41467-020-17866-2.
561|sucess-download|Pinheiro, C. F.; Moraes, R.; Carvalho, G. F.; Sestari, L.; Will-Lemos, T.; Bigal, M. E.; Dach, F.; van Emmerik, R.; Bevilaqua-Grossi, D. The Influence of Photophobia on Postural Control in Patients With Migraine. Headache. 2020. https://doi.org/10.1111/head.13908.
562|sucess-download|Saito, Y.; Wang, L.; Zheng, P.; Bian, P.; McCarthy, T. J. A Different Silica Surface: Radical Oxidation of Poly(methylsilsesquioxane) Thin Films and Particles (Tospearl). Langmuir : the ACS journal of surfaces and colloids. 2020. https://doi.org/10.1021/acs.langmuir.0c01477.
563|sucess-download|Kharat, M.; Aberg, J.; Dai, T.; McClements, D. J. Comparison of Emulsion and Nanoemulsion Delivery Systems: The Chemical Stability of Curcumin Decreases as Oil Droplet Size Decreases. Journal of agricultural and food chemistry. 2020. https://doi.org/10.1021/acs.jafc.0c01877.
564|sucess-download|Farias-Pereira, R.; Park, C. S.; Park, Y. Kahweol Reduces Food Intake of Journal of agricultural and food chemistry. 2020. https://doi.org/10.1021/acs.jafc.0c03030.
565|sucess-download|Filice, E.; Dubé, E.; Graham, J. E.; MacDonald, N. E.; Bettinger, J. A.; Greyson, D.; MacDonald, S.; Driedger, S. M.; Kawchuk, G.; Meyer, S. B. Vaccination discourses among chiropractors, naturopaths and homeopaths: A qualitative content analysis of academic literature and Canadian organizational webpages. PloS one. 2020. https://doi.org/10.1371/journal.pone.0236691.
566|sucess-download|Gustin, M. S.; Bank, M. S.; Bishop, K.; Bowman, K.; Branfireun, B.; Chételat, J.; Eckley, C. S.; Hammerschmidt, C. R.; Lamborg, C.; Lyman, S.; Martínez-Cortizas, A.; Sommar, J.; Tsui, M. T.; Zhang, T. Mercury biogeochemical cycling: A synthesis of recent scientific advances. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.139619.
567|sucess-download|Meyer, J. S.; Novak, M. A. Assessment of prenatal stress-related cortisol exposure: focus on cortisol accumulation in hair and nails. Developmental psychobiology. 2020. https://doi.org/10.1002/dev.22021.
568|shorty-download|Mah, A. Y.; Chapman, D. A.; Markowitz, E. M.; Lickel, B. Coping with climate change: Three insights for research, intervention, and communication to promote adaptive coping to climate change. Journal of anxiety disorders. 2020. https://doi.org/10.1016/j.janxdis.2020.102282.
569|sucess-download|Davalbhakta, S.; Advani, S.; Kumar, S.; Agarwal, V.; Bhoyar, S.; Fedirko, E.; Misra, D. P.; Goel, A.; Gupta, L.; Agarwal, V. A Systematic Review of Smartphone Applications Available for Corona Virus Disease 2019 (COVID19) and the Assessment of their Quality Using the Mobile Application Rating Scale (MARS). Journal of medical systems. 2020. https://doi.org/10.1007/s10916-020-01633-3.
570|sucess-download|Rozenkrantz, L.; Bernstein, M. H.; Hemond, C. C. A paradox of social distancing for SARS-CoV-2: loneliness and heightened immunological risk. Molecular psychiatry. 2020. https://doi.org/10.1038/s41380-020-00861-w.
571|sucess-download|Gerson, A. R.; DeSimone, J. G.; Black, E. C.; Dick, M. F.; Groom, D. J. Metabolic reduction after long-duration flight is not related to fat-free mass loss or flight duration in a migratory passerine. The Journal of experimental biology. 2020. https://doi.org/10.1242/jeb.215384.
572|sucess-download|Lim, J.; Hamill, J.; Busa, M. A.; van Emmerik, R. E. Changes in coordination and variability during running as a function of head stability demands. Human movement science. 2020. https://doi.org/10.1016/j.humov.2020.102673.
573|sucess-download|Correia, A. T.; Rodrigues, S.; Ferreira-Martins, D.; Nunes, A. C.; Ribeiro, M. I.; Antunes, S. C. Multi-biomarker approach to assess the acute effects of cerium dioxide nanoparticles in gills, liver and kidney of Oncorhynchus mykiss. Comparative biochemistry and physiology. Toxicology & pharmacology : CBP. 2020. https://doi.org/10.1016/j.cbpc.2020.108842.
574|sucess-download|Godfrey, L. R.; Samonds, K. E.; Baldwin, J. W.; Sutherland, M. R.; Kamilar, J. M.; Allfisher, K. L. Mid-Cenozoic climate change, extinction, and faunal turnover in Madagascar, and their bearing on the evolution of lemurs. BMC evolutionary biology. 2020. https://doi.org/10.1186/s12862-020-01628-1.
575|sucess-download|Agbleke, A. A.; Amitai, A.; Buenrostro, J. D.; Chakrabarti, A.; Chu, L.; Hansen, A. S.; Koenig, K. M.; Labade, A. S.; Liu, S.; Nozaki, T.; Ovchinnikov, S.; Seeber, A.; Shaban, H. A.; Spille, J. H.; Stephens, A. D.; Su, J. H.; Wadduwage, D. Advances in Chromatin and Chromosome Research: Perspectives from Multiple Fields. Molecular cell. 2020. https://doi.org/10.1016/j.molcel.2020.07.003.
576|sucess-download|Pujari, A.; Smith, A. F.; Hall, J. D.; Mei, P.; Chau, K.; Nguyen, D. T.; Sweet, D. T.; Jiménez, J. M. Lymphatic Valves Separate Lymph Flow Into a Central Stream and a Slow-Moving Peri-Valvular Milieu. Journal of biomechanical engineering. 2020. https://doi.org/10.1115/1.4048028.
577|sucess-download|Chatterjee, P.; Williams, M. D.; Coppin, J. D.; Allton, Y.; Choi, H.; Martel, J. A.; Zeber, J. E.; Nelson, R. E.; Donskey, C. J.; Jinadatha, C. Effectiveness of Copper-Impregnated Solid Surfaces on Lowering Microbial Bio-Burden Levels in an Acute Care Hospital. Open forum infectious diseases. 2020. https://doi.org/10.1093/ofid/ofaa238.
578|shorty-download|Schneider, S. A.; Claps, L. E.; Wei, J.; Normark, R. D.; Normark, B. B. Five new species of Aspidiotini (Hemiptera, Diaspididae, Aspidiotinae) from Argentina, with a key to Argentine species. ZooKeys. 2020. https://doi.org/10.3897/zookeys.948.54618.
579|sucess-download|Lonthair, J.; Dichiera, A. M.; Esbaugh, A. J. Mechanisms of acid-base regulation following respiratory alkalosis in red drum (Sciaenops ocellatus). Comparative biochemistry and physiology. Part A, Molecular & integrative physiology. 2020. https://doi.org/10.1016/j.cbpa.2020.110779.
580|sucess-download|Rice, H. M.; Kenny, M.; Ellison, M. A.; Fulford, J.; Meardon, S. A.; Derrick, T. R.; Hamill, J. Tibial stress during running following a repeated calf-raise protocol. Scandinavian journal of medicine & science in sports. 2020. https://doi.org/10.1111/sms.13794.
581|sucess-download|Fonseca, S. T.; Souza, T. R.; Verhagen, E.; van Emmerik, R.; Bittencourt, N. F.; Mendonça, L. D.; Andrade, A. G.; Resende, R. A.; Ocarino, J. M. Sports Injury Forecasting and Complexity: A Synergetic Approach. Sports medicine (Auckland, N.Z.). 2020. https://doi.org/10.1007/s40279-020-01326-4.
582|shorty-download|Audett, M. R.; Maresca, T. J. The whole is greater than the sum of its parts: at the intersection of order, disorder, and kinetochore function. Essays in biochemistry. 2020. https://doi.org/10.1042/EBC20190069.
583|sucess-download|DeSalle, R.; Riley, M. Should Networks Supplant Tree Building? Microorganisms. 2020. https://doi.org/10.3390/microorganisms8081179.
584|sucess-download|López-Ortega, M.; Díaz-Fleischer, F.; Piñero, J. C.; Valdez-Lazalde, J. R.; Hernández-Ortiz, M.; Hernández-Ortiz, V. The Mayan Tropical Rainforest: An Uncharted Reservoir of Tritrophic Host-Fruit Fly-Parasitoid Interactions. Insects. 2020. https://doi.org/10.3390/insects11080495.
585|sucess-download|Zeinert, R. D.; Baniasadi, H.; Tu, B. P.; Chien, P. The Lon Protease Links Nucleotide Metabolism with Proteotoxic Stress. Molecular cell. 2020. https://doi.org/10.1016/j.molcel.2020.07.011.
586|shorty-download|Tan, Y.; Zhang, Z.; Zhou, H.; Xiao, H.; McClements, D. J. Factors impacting lipid digestion and β-carotene bioaccessibility assessed by standardized gastrointestinal model (INFOGEST): oil droplet concentration. Food & function. 2020. https://doi.org/10.1039/d0fo01506g.
587|sucess-download|Frederick, A. M.; Guo, C.; Meyer, A.; Yan, L.; Schneider, S. S.; Liu, Z. The influence of obesity on folate status, DNA methylation and cancer-related gene expression in normal breast tissues from premenopausal women. Epigenetics. 2020. https://doi.org/10.1080/15592294.2020.1805687.
588|sucess-download|Lovley, D. R.; Holmes, D. E. Protein Nanowires: the Electrification of the Microbial World and Maybe Our Own. Journal of bacteriology. 2020. https://doi.org/10.1128/JB.00331-20.
589|shorty-download|Friedmann, P. D.; Abraham, A.; Evans, E.; Glass, J.; Ilgen, M.; Montgomery, L. Editorial: COVID-19 and its impact on SUD treatment. Journal of substance abuse treatment. 2020. https://doi.org/10.1016/j.jsat.2020.108091.
590|sucess-download|da Luz, N.; Kumpel, E. Evaluating the impact of sampling design on drinking water quality monitoring program outcomes. Water research. 2020. https://doi.org/10.1016/j.watres.2020.116217.
591|shorty-download|Sahin, E.; Yesilcinar, I.; Geris, R.; Pasalak, S. I.; Seven, M. The impact of pregnant women's health literacy on their health-promoting lifestyle and teratogenic risk perception. Health care for women international. 2020. https://doi.org/10.1080/07399332.2020.1797036.
592|sucess-download|Cashen, K. K.; Grotevant, H. D. Relational Competence in Emerging Adult Adoptees: Conceptualizing Competence in Close Relationships. Journal of adult development. 2020. https://doi.org/10.1007/s10804-019-09328-x.
593|shorty-download|Cui, W. SOHLHs are essential for fertility regardless of gender or population. Fertility and sterility. 2020. https://doi.org/10.1016/j.fertnstert.2020.06.010.
594|sucess-download|Li, M.; Leidner, B.; Petrović, N.; Prelic, N. Close or Distant Past? The Role of Temporal Distance in Responses to Intergroup Violence From Victim and Perpetrator Perspectives. Personality & social psychology bulletin. 2020. https://doi.org/10.1177/0146167220945890.
595|sucess-download|Conith, A. J.; Kidd, M. R.; Kocher, T. D.; Albertson, R. C. Ecomorphological divergence and habitat lability in the context of robust patterns of modularity in the cichlid feeding apparatus. BMC evolutionary biology. 2020. https://doi.org/10.1186/s12862-020-01648-x.
596|sucess-download|Conboy, H. M.; Kennedy-Metz, L. R.; Avrunin, G. S.; Clarke, L. A.; Osterweil, L. J.; Dias, R. D.; Zenati, M. A. Digital Cognitive Aids to Support Adaptation of Surgical Processes to COVID-19 Protective Policies. IEEE Conference on Cognitive and Computational Aspects of Situation Management (CogSIMA). 2020. https://doi.org/10.1109/cogsima49017.2020.9215995.
597|shorty-download|Keiluweit, M.; Kuyper, T. W. Proteins unbound - how ectomycorrhizal fungi can tap a vast reservoir of mineral-associated organic nitrogen. The New phytologist. 2020. https://doi.org/10.1111/nph.16796.
598|sucess-download|Smith, M.; Weir, G.; Donnelly, C. J.; Alderson, J. Field hockey sport-specific postures during unanticipated sidestepping: Implications for anterior cruciate ligament injury prevention. Journal of sports sciences. 2020. https://doi.org/10.1080/02640414.2020.1794264.
599|sucess-download|Kandaswamy, S.; Hettinger, A. Z.; Hoffman, D. J.; Ratwani, R. M.; Marquard, J. Communication through the electronic health record: frequency and implications of free text orders. JAMIA open. 2020. https://doi.org/10.1093/jamiaopen/ooaa020.
600|sucess-download|Jores, J.; Baldwin, C.; Blanchard, A.; Browning, G. F.; Colston, A.; Gerdts, V.; Goovaerts, D.; Heller, M.; Juleff, N.; Labroussaa, F.; Liljander, A.; Muuka, G.; Nene, V.; Nir-Paz, R.; Sacchini, F.; Summerfield, A.; Thiaucourt, F.; Unger, H.; Vashee, S.; Wang, X.; Salt, J. Contagious Bovine and Caprine Pleuropneumonia: a research community's recommendations for the development of better vaccines. NPJ vaccines. 2020. https://doi.org/10.1038/s41541-020-00214-2.
601|sucess-download|Calabrese, E. J.; Tsatsakis, A.; Agathokleous, E.; Giordano, J.; Calabrese, V. Does Green Tea Induce Hormesis? Dose-response : a publication of International Hormesis Society. 2020. https://doi.org/10.1177/1559325820936170.
602|sucess-download|Gordon, S. P.; Contreras-Moreira, B.; Levy, J. J.; Djamei, A.; Czedik-Eysenberg, A.; Tartaglio, V. S.; Session, A.; Martin, J.; Cartwright, A.; Katz, A.; Singan, V. R.; Goltsman, E.; Barry, K.; Dinh-Thi, V. H.; Chalhoub, B.; Diaz-Perez, A.; Sancho, R.; Lusinska, J.; Wolny, E.; Nibau, C.; Doonan, J. H.; Mur, L. A.; Plott, C.; Jenkins, J.; Hazen, S. P.; Lee, S. J.; Shu, S.; Goodstein, D.; Rokhsar, D.; Schmutz, J.; Hasterok, R.; Catalan, P.; Vogel, J. P. Gradual polyploid genome evolution revealed by pan-genomic analysis of Brachypodium hybridum and its diploid progenitors. Nature communications. 2020. https://doi.org/10.1038/s41467-020-17302-5.
603|shorty-download|Kamine, T. H.; Rembisz, A.; Barron, R. J.; Baldwin, C.; Kromer, M. Decrease in Trauma Admissions with COVID-19 Pandemic. The western journal of emergency medicine. 2020. https://doi.org/10.5811/westjem.2020.5.47780.
604|sucess-download|Young, J. M.; Yeiser, B. G.; Whittington, J. A.; Dutka-Gianelli, J. Maturation of female common snook Centropomus undecimalis: implications for managing protandrous fishes. Journal of fish biology. 2020. https://doi.org/10.1111/jfb.14475.
605|sucess-download|Peng, C.; DuPre, N.; VoPham, T.; Heng, Y. J.; Baker, G. M.; Rubadue, C. A.; Glass, K.; Sonawane, A.; Zeleznik, O.; Kraft, P.; Hankinson, S. E.; Eliassen, A. H.; Hart, J. E.; Laden, F.; Tamimi, R. M. Low dose environmental radon exposure and breast tumor gene expression. BMC cancer. 2020. https://doi.org/10.1186/s12885-020-07184-7.
606|shorty-download|Usman, M.; Gulzar, S.; Wakil, W.; Piñero, J. C.; Leskey, T. C.; Nixon, L. J.; Oliveira-Hofman, C.; Wu, S.; Shapiro-Ilan, D. Potential of entomopathogenic nematodes against the pupal stage of the apple maggot Journal of nematology. 2020. https://doi.org/10.21307/jofnem-2020-079.
607|sucess-download|Dowlatabadi, N.; Banihabib, M. E.; Roozbahani, A.; Randhir, T. O. Enhanced GMCR model for resolving conflicts in a transboundary wetland. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.140816.
608|shorty-download|McClements, D. J. Nano-enabled personalized nutrition: Developing multicomponent-bioactive colloidal delivery systems. Advances in colloid and interface science. 2020. https://doi.org/10.1016/j.cis.2020.102211.
609|sucess-download|Mhiret, D. A.; Dagnew, D. C.; Guzman, C. D.; Alemie, T. C.; Zegeye, A. D.; Tebebu, T. Y.; Langendoen, E. J.; Zaitchik, B. F.; Tilahun, S. A.; Steenhuis, T. S. A nine-year study on the benefits and risks of soil and water conservation practices in the humid highlands of Ethiopia: The Debre Mawi watershed. Journal of environmental management. 2020. https://doi.org/10.1016/j.jenvman.2020.110885.
610|sucess-download|Mello, K.; Taniwaki, R. H.; Paula, F. R.; Valente, R. A.; Randhir, T. O.; Macedo, D. R.; Leal, C. G.; Rodrigues, C. B.; Hughes, R. M. Multiscale land use impacts on water quality: Assessment, planning, and future perspectives in Brazil. Journal of environmental management. 2020. https://doi.org/10.1016/j.jenvman.2020.110879.
611|sucess-download|Navon, D.; Male, I.; Tetrault, E. R.; Aaronson, B.; Karlstrom, R. O.; Albertson, R. C. Hedgehog signaling is necessary and sufficient to mediate craniofacial plasticity in teleosts. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1921856117.
612|sucess-download|Joel, S.; Eastwick, P. W.; Allison, C. J.; Arriaga, X. B.; Baker, Z. G.; Bar-Kalifa, E.; Bergeron, S.; Birnbaum, G. E.; Brock, R. L.; Brumbaugh, C. C.; Carmichael, C. L.; Chen, S.; Clarke, J.; Cobb, R. J.; Coolsen, M. K.; Davis, J.; de Jong, D. C.; Debrot, A.; DeHaas, E. C.; Derrick, J. L.; Eller, J.; Estrada, M. J.; Faure, R.; Finkel, E. J.; Fraley, R. C.; Gable, S. L.; Gadassi-Polack, R.; Girme, Y. U.; Gordon, A. M.; Gosnell, C. L.; Hammond, M. D.; Hannon, P. A.; Harasymchuk, C.; Hofmann, W.; Horn, A. B.; Impett, E. A.; Jamieson, J. P.; Keltner, D.; Kim, J. J.; Kirchner, J. L.; Kluwer, E. S.; Kumashiro, M.; Larson, G.; Lazarus, G.; Logan, J. M.; Luchies, L. B.; MacDonald, G.; Machia, L. V.; Maniaci, M. R.; Maxwell, J. A.; Mizrahi, M.; Muise, A.; Niehuis, S.; Ogolsky, B. G.; Oldham, C. R.; Overall, N. C.; Perrez, M.; Peters, B. J.; Pietromonaco, P. R.; Powers, S. I.; Prok, T.; Pshedetzky-Shochat, R.; Rafaeli, E.; Ramsdell, E. L.; Reblin, M.; Reicherts, M.; Reifman, A.; Reis, H. T.; Rhoades, G. K.; Rholes, W. S.; Righetti, F.; Rodriguez, L. M.; Rogge, R.; Rosen, N. O.; Saxbe, D.; Sened, H.; Simpson, J. A.; Slotter, E. B.; Stanley, S. M.; Stocker, S.; Surra, C.; Ter Kuile, H.; Vaughn, A. A.; Vicary, A. M.; Visserman, M. L.; Wolf, S. Machine learning uncovers the most robust self-report predictors of relationship quality across 43 longitudinal couples studies. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1917036117.
613|sucess-download|Aasi, A.; Aghaei, S. M.; Moore, M. D.; Panchapakesan, B. Pt-, Rh-, Ru-, and Cu-Single-Wall Carbon Nanotubes Are Exceptional Candidates for Design of Anti-Viral Surfaces: A Theoretical Study. International journal of molecular sciences. 2020. https://doi.org/10.3390/ijms21155211.
614|sucess-download|Si, C.; Alpert, P.; Zhang, J. F.; Lin, J.; Wang, Y. Y.; Hong, M. M.; Roiloa, S. R.; Yu, F. H. Capacity for clonal integration in introduced versus native clones of the invasive plant Hydrocotyle vulgaris. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.141056.
615|sucess-download|Broderick, J. P.; Elm, J. J.; Janis, L. S.; Zhao, W.; Moy, C. S.; Dillon, C. R.; Chimowitz, M. I.; Sacco, R. L.; Cramer, S. C.; Wolf, S. L.; Johnston, K. C.; Saver, J. L.; Marshall, R. S.; Brown, D.; Wintermark, M.; Elkind, M. S.; Kamel, H.; Tirschwell, D. L.; Longstreth, W. T.; Chervin, R. D.; Adeoye, O. M.; Barreto, A. D.; Grotta, J. C.; Ramey, S. L.; Lo, W. D.; Feng, W.; Schlaug, G.; Sheth, K. N.; Selim, M.; Naidech, A. M.; Lansberg, M. G.; Lazar, R. M.; Albers, G. W.; Griffin, J. S.; Sirline, L. P.; Frasure, J.; Wright, C. B.; Khatri, P. National Institutes of Health StrokeNet During the Time of COVID-19 and Beyond. Stroke. 2020. https://doi.org/10.1161/STROKEAHA.120.030417.
616|sucess-download|Jackson, B. Direct and trapping-mediated pathways to dissociative chemisorption: CH The Journal of chemical physics. 2020. https://doi.org/10.1063/5.0012252.
617|sucess-download|Dutta, K.; Das, R.; Ling, J.; Monibas, R. M.; Carballo-Jane, E.; Kekec, A.; Feng, D. D.; Lin, S.; Mu, J.; Saklatvala, R.; Thayumanavan, S.; Liang, Y. In Situ Forming Injectable Thermoresponsive Hydrogels for Controlled Delivery of Biomacromolecules. ACS omega. 2020. https://doi.org/10.1021/acsomega.0c02009.
618|sucess-download|Gray, A.; Liu, L.; Facette, M. Flanking Support: How Subsidiary Cells Contribute to Stomatal Form and Function. Frontiers in plant science. 2020. https://doi.org/10.3389/fpls.2020.00881.
619|sucess-download|Gregory, K. J.; Morin, S. M.; Kubosiak, A.; Ser-Dolansky, J.; Schalet, B. J.; Jerry, D. J.; Schneider, S. S. The use of patient-derived breast tissue explants to study macrophage polarization and the effects of environmental chemical exposure. Immunology and cell biology. 2020. https://doi.org/10.1111/imcb.12381.
620|failed-download|Mejia, C.; Libby, B. A.; Bracken, M. L.; Shanley, B.; Holovatska, M. M.; Wanik, J.; Shanley, E.; Waring, M. E. Interest in Digital Dietary Support Among Adults With Kidney Failure Receiving Hemodialysis. Journal of renal nutrition : the official journal of the Council on Renal Nutrition of the National Kidney Foundation. 2020. https://doi.org/10.1053/j.jrn.2020.06.004.
621|sucess-download|Huang, J.; Sun, W.; Seong, K. M.; Mittapalli, O.; Ojo, J.; Coates, B.; Paige, K. N.; Clark, J. M.; Pittendrigh, B. R. Dietary antioxidant vitamin C influences the evolutionary path of insecticide resistance in Drosophila melanogaster. Pesticide biochemistry and physiology. 2020. https://doi.org/10.1016/j.pestbp.2020.104631.
622|sucess-download|Bearak, J.; Popinchalk, A.; Ganatra, B.; Moller, A. B.; Tunçalp, Ö.; Beavin, C.; Kwok, L.; Alkema, L. Unintended pregnancy and abortion by income, region, and the legal status of abortion: estimates from a comprehensive model for 1990-2019. The Lancet. Global health. 2020. https://doi.org/10.1016/S2214-109X(20)30315-6.
623|sucess-download|Stephenson, B. J.; Sotres-Alvarez, D.; Siega-Riz, A. M.; Mossavar-Rahmani, Y.; Daviglus, M. L.; Van Horn, L.; Herring, A. H.; Cai, J. Empirically Derived Dietary Patterns Using Robust Profile Clustering in the Hispanic Community Health Study/Study of Latinos. The Journal of nutrition. 2020. https://doi.org/10.1093/jn/nxaa208.
624|sucess-download|Kassotis, C. D.; Vandenberg, L. N.; Demeneix, B. A.; Porta, M.; Slama, R.; Trasande, L. Endocrine-disrupting chemicals: economic, regulatory, and policy implications. The lancet. Diabetes & endocrinology. 2020. https://doi.org/10.1016/S2213-8587(20)30128-5.
625|sucess-download|Burkart, S.; Marcus, B. H.; Pekow, P.; Rosal, M. C.; Manson, J. E.; Braun, B.; Chasan-Taber, L. The impact of a randomized controlled trial of a lifestyle intervention on postpartum physical activity among at-risk hispanic women: Estudio PARTO. PloS one. 2020. https://doi.org/10.1371/journal.pone.0236408.
626|sucess-download|Lellupitiyage Don, S. S.; Robertson, K. L.; Lin, H. H.; Labriola, C.; Harrington, M. E.; Taylor, S. R.; Farkas, M. E. Nobiletin affects circadian rhythms and oncogenic characteristics in a cell-dependent manner. PloS one. 2020. https://doi.org/10.1371/journal.pone.0236315.
627|sucess-download|Balzer, L. B.; Dominici, F. Randomization versus Real-World Evidence. The New England journal of medicine. 2020. https://doi.org/10.1056/NEJMc2020020.
628|sucess-download|Park, S. Y.; Pekas, E. J.; Headid, R. J.; Son, W. M.; Wooden, T. K.; Song, J.; Layec, G.; Yadav, S. K.; Mishra, P. K.; Pipinos, I. I. Acute mitochondrial antioxidant intake improves endothelial function, antioxidant enzyme activity, and exercise tolerance in patients with peripheral artery disease. American journal of physiology. Heart and circulatory physiology. 2020. https://doi.org/10.1152/ajpheart.00235.2020.
629|sucess-download|Domeignoz-Horta, L. A.; Pold, G.; Liu, X. A.; Frey, S. D.; Melillo, J. M.; DeAngelis, K. M. Microbial diversity drives carbon use efficiency in a model soil. Nature communications. 2020. https://doi.org/10.1038/s41467-020-17502-z.
630|sucess-download|Straight, C. R.; Fedewa, M. V.; Toth, M. J.; Miller, M. S. Improvements in skeletal muscle fiber size with resistance training are age-dependent in older adults: a systematic review and meta-analysis. Journal of applied physiology (Bethesda, Md. : 1985). 2020. https://doi.org/10.1152/japplphysiol.00170.2020.
631|shorty-download|Pietromonaco, P. R.; Overall, N. C. Applying relationship science to evaluate how the COVID-19 pandemic may impact couples' relationships. The American psychologist. 2020. https://doi.org/10.1037/amp0000714.
632|sucess-download|Shaughnessy, C. A.; Barany, A.; McCormick, S. D. 11-Deoxycortisol controls hydromineral balance in the most basal osmoregulating vertebrate, sea lamprey (Petromyzon marinus). Scientific reports. 2020. https://doi.org/10.1038/s41598-020-69061-4.
633|sucess-download|Song, J.; Zhou, G.; Chen, W.; Zhang, Q.; Ali, J.; Hu, Q.; Wang, J.; Wang, C.; Feng, W.; Djurišić, A. B.; Zhu, H.; Zhang, Y.; Russell, T.; Liu, F. Unraveling the Crystallization Kinetics of 2D Perovskites with Sandwich-Type Structure for High-Performance Photovoltaics. Advanced materials (Deerfield Beach, Fla.). 2020. https://doi.org/10.1002/adma.202002784.
634|shorty-download|Zhang, R.; Zhang, Z.; Li, R.; Tan, Y.; Lv, S.; McClements, D. J. Impact of pesticide polarity and lipid phase dimensions on the bioaccessibility of pesticides in agricultural produce consumed with model fatty foods. Food & function. 2020. https://doi.org/10.1039/c9fo03055g.
635|sucess-download|Sloutsky, R.; Dziedzic, N.; Dunn, M. J.; Bates, R. M.; Torres-Ocampo, A. P.; Boopathy, S.; Page, B.; Weeks, J. G.; Chao, L. H.; Stratton, M. M. Heterogeneity in human hippocampal CaMKII transcripts reveals allosteric hub-dependent regulation. Science signaling. 2020. https://doi.org/10.1126/scisignal.aaz0240.
636|sucess-download|Roy, M. A.; Duche, P. R.; Timme-Laragy, A. R. The sulfate metabolite of 3,3'-dichlorobiphenyl (PCB-11) impairs Cyp1a activity and increases hepatic neutral lipids in zebrafish larvae (Danio rerio). Chemosphere. 2020. https://doi.org/10.1016/j.chemosphere.2020.127609.
637|sucess-download|Yang, H.; Yu, H.; Ma, L. J. Accessory Chromosomes in Phytopathology. 2020. https://doi.org/10.1094/PHYTO-03-20-0069-IA.
638|sucess-download|Hällfors, M. H.; Antão, L. H.; Itter, M.; Lehikoinen, A.; Lindholm, T.; Roslin, T.; Saastamoinen, M. Shifts in timing and duration of breeding for 73 boreal bird species over four decades. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1913579117.
639|sucess-download|Wu, Y. C.; Samudrala, S.; McClung, A.; Taniguchi, T.; Watanabe, K.; Arbabi, A.; Yan, J. Up- and Down-Conversion between Intra- and Intervalley Excitons in Waveguide Coupled Monolayer WSe ACS nano. 2020. https://doi.org/10.1021/acsnano.0c04397.
640|sucess-download|Heindel, J. J.; Belcher, S.; Flaws, J. A.; Prins, G. S.; Ho, S. M.; Mao, J.; Patisaul, H. B.; Ricke, W.; Rosenfeld, C. S.; Soto, A. M.; Vom Saal, F. S.; Zoeller, R. T. Data integration, analysis, and interpretation of eight academic CLARITY-BPA studies. Reproductive toxicology (Elmsford, N.Y.). 2020. https://doi.org/10.1016/j.reprotox.2020.05.014.
641|sucess-download|Yang, Y.; Du, Y.; Kaltashov, I. A. The Utility of Native MS for Understanding the Mechanism of Action of Repurposed Therapeutics in COVID-19: Heparin as a Disruptor of the SARS-CoV-2 Interaction with Its Host Cell Receptor. Analytical chemistry. 2020. https://doi.org/10.1021/acs.analchem.0c02449.
642|sucess-download|Knighton, J.; Buchanan, B.; Guzman, C.; Elliott, R.; White, E.; Rahm, B. Predicting flood insurance claims with hydrologic and socioeconomic demographics via machine learning: Exploring the roles of topography, minority populations, and political dissimilarity. Journal of environmental management. 2020. https://doi.org/10.1016/j.jenvman.2020.111051.
643|shorty-download|Westra, H. A.; Norouzian, N.; Poulin, L.; Coyne, A.; Constantino, M. J.; Hara, K.; Olson, D.; Antony, M. M. Testing a deliberate practice workshop for developing appropriate responsivity to resistance markers. Psychotherapy (Chicago, Ill.). 2020. https://doi.org/10.1037/pst0000311.
644|failed-download|Haliczer, L. A.; Woods, S. E.; Dixon-Gordon, K. L. Emotion regulation difficulties and interpersonal conflict in borderline personality disorder. Personality disorders. 2020. https://doi.org/10.1037/per0000436.
645|sucess-download|Zhao, J.; Santa Chalarca, C. F.; Nunes, J. K.; Stone, H. A.; Emrick, T. Self-Propelled Supracolloidal Fibers from Multifunctional Polymer Surfactants and Droplets. Macromolecular rapid communications. 2020. https://doi.org/10.1002/marc.202000334.
646|shorty-download|Gourlay, M. L.; Gourlay, L. L. Correction to: Comparison of 8-year knee osteoarthritis progression in 2 siblings: a case-based review. Clinical rheumatology. 2020. https://doi.org/10.1007/s10067-020-05278-y.
647|sucess-download|Zhu, Y.; Plaza, N.; Kojima, Y.; Yoshida, M.; Zhang, J.; Jellison, J.; Pingali, S. V.; O'Neill, H.; Goodell, B. Nanostructural Analysis of Enzymatic and Non-enzymatic Brown Rot Fungal Deconstruction of the Lignocellulose Cell Wall Frontiers in microbiology. 2020. https://doi.org/10.3389/fmicb.2020.01389.
648|sucess-download|Rodberg, E. Stress-Induced Increases in Locus Coeruleus Norepinephrine Underlie Extinction Learning Deficits. The Journal of neuroscience : the official journal of the Society for Neuroscience. 2020. https://doi.org/10.1523/JNEUROSCI.0677-20.2020.
649|sucess-download|Peltier, R. E.; Wang, J.; Hollenbeck, B. L.; Lanza, J.; Furtado, R. M.; Cyr, J.; Ellison, R. T.; Kobayashi, K. J. Addressing decontaminated respirators: Some methods appear to damage mask integrity and protective function. Infection control and hospital epidemiology. 2020. https://doi.org/10.1017/ice.2020.332.
650|sucess-download|DuPré, N. C.; Heng, Y. J.; Raby, B. A.; Glass, K.; Hart, J. E.; Chu, J. H.; Askew, C.; Eliassen, A. H.; Hankinson, S. E.; Kraft, P.; Laden, F.; Tamimi, R. M. Involvement of fine particulate matter exposure with gene expression pathways in breast tumor and adjacent-normal breast tissue. Environmental research. 2020. https://doi.org/10.1016/j.envres.2020.109535.
651|sucess-download|Lam, A. R.; Leckie, R. M. Subtropical to temperate late Neogene to Quaternary planktic foraminiferal biostratigraphy across the Kuroshio Current Extension, Shatsky Rise, northwest Pacific Ocean. PloS one. 2020. https://doi.org/10.1371/journal.pone.0234351.
652|shorty-download|E, J. Y.; Wang, Z.; Ssekasanvu, J.; Munoz, B.; West, S.; Ludigo, J.; Gray, R.; Nakigozi, G.; Kong, X. Visual Impairment and Eye Diseases in HIV-infected People in the Antiretroviral Therapy (ART) Era in Rakai, Uganda. Ophthalmic epidemiology. 2020. https://doi.org/10.1080/09286586.2020.1791908.
653|sucess-download|Farias-Pereira, R.; Zhang, Z.; Park, C. S.; Kim, D.; Kim, K. H.; Park, Y. Butein inhibits lipogenesis in Caenorhabditis elegans. BioFactors (Oxford, England). 2020. https://doi.org/10.1002/biof.1667.
654|sucess-download|Tapanes, E.; Anestis, S.; Kamilar, J. M.; Bradley, B. J. Does facial hair greying in chimpanzees provide a salient progressive cue of aging? PloS one. 2020. https://doi.org/10.1371/journal.pone.0235610.
655|sucess-download|Stenum, J.; Choi, J. T. Step time asymmetry but not step length asymmetry is adapted to optimize energy cost of split-belt treadmill walking. The Journal of physiology. 2020. https://doi.org/10.1113/JP279195.
656|sucess-download|Sinha, S.; Jones, B. M.; Traniello, I. M.; Bukhari, S. A.; Halfon, M. S.; Hofmann, H. A.; Huang, S.; Katz, P. S.; Keagy, J.; Lynch, V. J.; Sokolowski, M. B.; Stubbs, L. J.; Tabe-Bordbar, S.; Wolfner, M. F.; Robinson, G. E. Behavior-related gene regulatory networks: A new level of organization in the brain. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1921625117.
657|sucess-download|Hernandez, J. S.; Moorman, D. E. Orbitofrontal Cortex Encodes Preference for Alcohol. eNeuro. 2020. https://doi.org/10.1523/ENEURO.0402-19.2020.
658|sucess-download|Pekas, E. J.; Shin, J.; Headid, R. J.; Son, W. M.; Layec, G.; Yadav, S. K.; Scott, S. D.; Park, S. Y. Combined anthocyanins and bromelain supplement improves endothelial function and skeletal muscle oxygenation status in adults: a double-blind placebo-controlled randomised crossover clinical trial. The British journal of nutrition. 2020. https://doi.org/10.1017/S0007114520002548.
659|sucess-download|Stoffolano, J.; Wong, R.; Lo, T.; Ford, B.; Geden, C. J. Effect of chitosan on adult longevity when fed, in no-choice experiments, to Musca domestica L., Tabanus nigrovittatus Macquart, and Phormia regina (Meigen) adults and its consumption in adult Musca domestica L. Pest management science. 2020. https://doi.org/10.1002/ps.5996.
660|sucess-download|Woodward, M.; Ostrander, E.; Jeong, S. P.; Liu, X.; Scott, B.; Unger, M.; Chen, J.; Venkataraman, D.; Debold, E. P. Positional Isomers of a Non-Nucleoside Substrate Differentially Affect Myosin Function. Biophysical journal. 2020. https://doi.org/10.1016/j.bpj.2020.06.024.
661|sucess-download|Headid, R. J.; Pekas, E. J.; Wooden, T. K.; Son, W. M.; Layec, G.; Shin, J.; Park, S. Y. Impacts of prolonged sitting with mild hypercapnia on vascular and autonomic function in healthy recreationally active adults. American journal of physiology. Heart and circulatory physiology. 2020. https://doi.org/10.1152/ajpheart.00354.2020.
662|sucess-download|Lau, A. N.; Li, Z.; Danai, L. V.; Westermark, A. M.; Darnell, A. M.; Ferreira, R.; Gocheva, V.; Sivanand, S.; Lien, E. C.; Sapp, K. M.; Mayers, J. R.; Biffi, G.; Chin, C. R.; Davidson, S. M.; Tuveson, D. A.; Jacks, T.; Matheson, N. J.; Yilmaz, O.; Vander Heiden, M. G. Dissecting cell-type-specific metabolism in pancreatic ductal adenocarcinoma. eLife. 2020. https://doi.org/10.7554/eLife.56782.
663|sucess-download|Baskin, T. I.; Preston, S.; Zelinsky, E.; Yang, X.; Elmali, M.; Bellos, D.; Wells, D. M.; Bennett, M. J. Positioning the Root Elongation Zone Is Saltatory and Receives Input from the Shoot. iScience. 2020. https://doi.org/10.1016/j.isci.2020.101309.
664|sucess-download|Browne, M.; Volberg, R.; Rockloff, M.; Salonen, A. H. The prevention paradox applies to some but not all gambling harms: Results from a Finnish population-representative survey. Journal of behavioral addictions. 2020. https://doi.org/10.1556/2006.2020.00018.
665|sucess-download|Bank, M. S.; Metian, M.; Swarzenski, P. W. Defining Seafood Safety in the Anthropocene. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c03505.
666|sucess-download|Zhao, B.; Tian, Q.; Bagheri, Y.; You, M. Lipid-Oligonucleotide Conjugates for Simple and Efficient Cell Membrane Engineering and Bioanalysis. Current opinion in biomedical engineering. 2020. https://doi.org/10.1016/j.cobme.2019.12.006.
667|sucess-download|Hobson, C. M.; Stephens, A. D. Modeling of Cell Nuclear Mechanics: Classes, Components, and Applications. Cells. 2020. https://doi.org/10.3390/cells9071623.
668|sucess-download|Kim-Spoon, J.; Herd, T.; Brieant, A.; Peviani, K. M.; Lauharatanahirun, N.; Lee, J.; Deater-Deckard, K.; Bickel, W. K.; King-Casas, B. Bidirectional links between adolescent brain function and substance use moderated by cognitive control. Journal of child psychology and psychiatry, and allied disciplines. 2020. https://doi.org/10.1111/jcpp.13285.
669|sucess-download|Tooker, N. B.; Gao, C.; Onnis-Hayden, A.; Gu, A. Z. Impact of oxidation processes on the composition and biodegradability of soluble organic nutrients in wastewater effluents. Water environment research : a research publication of the Water Environment Federation. 2020. https://doi.org/10.1002/wer.1393.
670|sucess-download|Bai, J.; Farias-Pereira, R.; Zhang, Y.; Jang, M.; Park, Y.; Kim, K. H. C. elegans ACAT regulates lipolysis and its related lifespan in fasting through modulation of the genes in lipolysis and insulin/IGF-1 signaling. BioFactors (Oxford, England). 2020. https://doi.org/10.1002/biof.1666.
671|sucess-download|Wang, C. Y.; Liang, S. J.; Wang, S.; Wang, P.; Li, Z.; Wang, Z.; Gao, A.; Pan, C.; Liu, C.; Liu, J.; Yang, H.; Liu, X.; Song, W.; Wang, C.; Cheng, B.; Wang, X.; Chen, K.; Wang, Z.; Watanabe, K.; Taniguchi, T.; Yang, J. J.; Miao, F. Gate-tunable van der Waals heterostructure for reconfigurable neural network vision sensor. Science advances. 2020. https://doi.org/10.1126/sciadv.aba6173.
672|shorty-download|Choi, S. J.; McClements, D. J. Correction to: Nanoemulsions as delivery systems for lipophilic nutraceuticals: strategies for improving their formulation, stability, functionality and bioavailability. Food science and biotechnology. 2020. https://doi.org/10.1007/s10068-020-00785-9.
673|sucess-download|Zhu, K.; Mao, G.; Wu, D.; Yu, C.; Cheng, H.; Xiao, H.; Ye, X.; Linhardt, R. J.; Orfila, C.; Chen, S. Highly Branched RG-I Domain Enrichment Is Indispensable for Pectin Mitigating against High-Fat Diet-Induced Obesity. Journal of agricultural and food chemistry. 2020. https://doi.org/10.1021/acs.jafc.0c02654.
674|sucess-download|Stevenson, S. A.; Piepenburg, A.; Spool, J. A.; Angyal, C. S.; Hahn, A. H.; Zhao, C.; Riters, L. V. Endogenous opioids facilitate intrinsically-rewarded birdsong. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-67684-1.
675|sucess-download|Pereira, M.; Morrell, J. I. Infralimbic Cortex Biases Preference Decision Making for Offspring over Competing Cocaine-Associated Stimuli in New Mother Rats. eNeuro. 2020. https://doi.org/10.1523/ENEURO.0460-19.2020.
676|sucess-download|Iqbal, S.; Ayyub, A.; Iqbal, H.; Chen, X. D. Protein microspheres as structuring agents in lipids: potential for reduction of total and saturated fat in food products. Journal of the science of food and agriculture. 2020. https://doi.org/10.1002/jsfa.10645.
677|shorty-download|Needham, R. A.; Naemi, R.; Hamill, J.; Chockalingam, N. Analysing patterns of coordination and patterns of control using novel data visualisation techniques in vector coding. Foot (Edinburgh, Scotland). 2020. https://doi.org/10.1016/j.foot.2020.101678.
678|sucess-download|Archambault, D.; Cheong, A.; Iverson, E.; Tremblay, K. D.; Mager, J. Protein phosphatase 1 regulatory subunit 35 is required for ciliogenesis, notochord morphogenesis, and cell-cycle progression during murine development. Developmental biology. 2020. https://doi.org/10.1016/j.ydbio.2020.06.011.
679|sucess-download|Hernandez, J. S.; Binette, A. N.; Rahman, T.; Tarantino, J. D.; Moorman, D. E. Chemogenetic Inactivation of Orbitofrontal Cortex Decreases Cue-induced Reinstatement of Ethanol and Sucrose Seeking in Male and Female Wistar Rats. Alcoholism, clinical and experimental research. 2020. https://doi.org/10.1111/acer.14407.
680|sucess-download|Wu, J.; Zhao, J.; Hou, J.; Xing, B. The Fate of p-Nitrophenol in Goethite-Rich and Sulfide-Containing Dynamic Anoxic/Oxic Environments. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c02486.
681|sucess-download|Velez, M.; Chasan-Taber, L.; Goldwater, E.; VanKim, N. Physical Activity and Risk of Diagnosed and Undiagnosed Prediabetes among Males and Females in the National Health and Nutrition Examination Survey, 2007-2014. Journal of diabetes research. 2020. https://doi.org/10.1155/2020/3538746.
682|sucess-download|Reid, A. E.; Ferrer, R. A.; Kadirvel, S.; Biesecker, B. B.; Lewis, K. L.; Biesecker, L. G.; Klein, W. M. Roles of attitudes and injunctive norms in decisional conflict and disclosure following receipt of genome sequencing results. Social science & medicine (1982). 2020. https://doi.org/10.1016/j.socscimed.2020.113147.
683|sucess-download|Edin, M. L.; Duval, C.; Zhang, G.; Zeldin, D. C. Role of linoleic acid-derived oxylipins in cancer. Cancer metastasis reviews. 2020. https://doi.org/10.1007/s10555-020-09904-8.
684|sucess-download|Gance-Cleveland, B.; McDonald, C. C.; Walker, R. K. Use of theory to guide development and application of sensor technologies in Nursing. Nursing outlook. 2020. https://doi.org/10.1016/j.outlook.2020.04.007.
685|sucess-download|Argaw, S. T.; Troncoso-Pastoriza, J. R.; Lacey, D.; Florin, M. V.; Calcavecchia, F.; Anderson, D.; Burleson, W.; Vogel, J. M.; O'Leary, C.; Eshaya-Chauvin, B.; Flahault, A. Cybersecurity of Hospitals: discussing the challenges and working towards mitigating the risks. BMC medical informatics and decision making. 2020. https://doi.org/10.1186/s12911-020-01161-7.
686|sucess-download|Oaks, J. R.; L'Bahy, N.; Cobb, K. A. Insights from a general, full-likelihood Bayesian approach to inferring shared evolutionary events from genomic data: Inferring shared demographic events is challenging. Evolution; international journal of organic evolution. 2020. https://doi.org/10.1111/evo.14052.
687|sucess-download|Chen, X. J.; Ba, L.; Kwak, Y. Neurocognitive underpinnings of cross-cultural differences in risky decision making. Social cognitive and affective neuroscience. 2020. https://doi.org/10.1093/scan/nsaa078.
688|shorty-download|Robinson, K. A.; Pereira, K. E.; Bletz, M. C.; Carter, E. D.; Gray, M. J.; Piovia-Scott, J.; Romansic, J. M.; Woodhams, D. C.; Fritz-Laylin, L. Isolation and maintenance of Batrachochytrium salamandrivorans cultures. Diseases of aquatic organisms. 2020. https://doi.org/10.3354/dao03488.
689|failed-download|Helm, A. F.; McCormick, S. A.; Deater-Deckard, K.; Smith, C. L.; Calkins, S. D.; Bell, M. A. Parenting and Children's Executive Function Stability Across the Transition to School. Infant and child development. 2020. https://doi.org/10.1002/icd.2171.
690|shorty-download|Wojda, S. J.; Marozas, I. A.; Anseth, K. S.; Yaszemski, M. J.; Donahue, S. W. Impact of Release Kinetics on Efficacy of Locally Delivered Parathyroid Hormone for Bone Regeneration Applications. Tissue engineering. Part A. 2020. https://doi.org/10.1089/ten.TEA.2020.0119.
691|failed-download|Lee, D. S.; Mandalaywala, T. M.; Dubuc, C.; Widdig, A.; Higham, J. P. Higher early life mortality with lower infant body mass in a free-ranging primate. The Journal of animal ecology. 2020. https://doi.org/10.1111/1365-2656.13291.
692|sucess-download|Balbach, M.; Gervasi, M. G.; Hidalgo, D. M.; Visconti, P. E.; Levin, L. R.; Buck, J. Metabolic changes in mouse sperm during capacitation†. Biology of reproduction. 2020. https://doi.org/10.1093/biolre/ioaa114.
693|sucess-download|Dougherty, L. R.; Galano, M. M.; Chad-Friedman, E.; Olino, T. M.; Bufferd, S. J.; Klein, D. N. Using Item Response Theory to Compare Irritability Measures in Early Adolescent and Childhood Samples. Assessment. 2020. https://doi.org/10.1177/1073191120936363.
694|sucess-download|Luther, D. C.; Huang, R.; Jeon, T.; Zhang, X.; Lee, Y. W.; Nagaraj, H.; Rotello, V. M. Delivery of drugs, proteins, and nucleic acids using inorganic nanoparticles. Advanced drug delivery reviews. 2020. https://doi.org/10.1016/j.addr.2020.06.020.
695|sucess-download|Rothenberg, W. A.; Lansford, J. E.; Bornstein, M. H.; Chang, L.; Deater-Deckard, K.; Di Giunta, L.; Dodge, K. A.; Malone, P. S.; Oburu, P.; Pastorelli, C.; Skinner, A. T.; Sorbring, E.; Steinberg, L.; Tapanya, S.; Uribe Tirado, L. M.; Yotanyamaneewong, S.; Alampay, L. P.; Al-Hassan, S. M.; Bacchini, D. Effects of Parental Warmth and Behavioral Control on Adolescent Externalizing and Internalizing Trajectories Across Cultures. Journal of research on adolescence : the official journal of the Society for Research on Adolescence. 2020. https://doi.org/10.1111/jora.12566.
696|shorty-download|Weinberger, D. M.; Chen, J.; Cohen, T.; Crawford, F. W.; Mostashari, F.; Olson, D.; Pitzer, V. E.; Reich, N. G.; Russi, M.; Simonsen, L.; Watkins, A.; Viboud, C. Estimation of Excess Deaths Associated With the COVID-19 Pandemic in the United States, March to May 2020. JAMA internal medicine. 2020. https://doi.org/10.1001/jamainternmed.2020.3391.
697|sucess-download|Zahradnik, D.; Jandacka, D.; Beinhauerova, G.; Hamill, J. Associated ACL risk factors differences during an unanticipated volleyball blocking movement. Journal of sports sciences. 2020. https://doi.org/10.1080/02640414.2020.1785727.
698|sucess-download|Winiarski, K. J.; Peterman, W. E.; McGarigal, K. Evaluation of the R package 'resistancega': A promising approach towards the accurate optimization of landscape resistance surfaces. Molecular ecology resources. 2020. https://doi.org/10.1111/1755-0998.13217.
699|shorty-download|Giuliano, K. K. Challenging Precedent: Critical Care Nursing and Medical Product Innovation. American journal of critical care : an official publication, American Association of Critical-Care Nurses. 2020. https://doi.org/10.4037/ajcc2020275.
700|sucess-download|Gupta, A.; Makabenta, J. M.; Schlüter, F.; Landis, R. F.; Das, R.; Cuppels, M.; Rotello, V. M. Functionalized Polymers Enhance Permeability of Antibiotics in Gram-negative MDR Bacteria and Biofilms for Synergistic Antimicrobial Therapy. Advanced therapeutics. 2020. https://doi.org/10.1002/adtp.202000005.
701|sucess-download|Horgan, F. G.; Arida, A.; Ardestani, G.; Almazan, M. L. Temperature-dependent oviposition and nymph performance reveal distinct thermal niches of coexisting planthoppers with similar thresholds for development. PloS one. 2020. https://doi.org/10.1371/journal.pone.0235506.
702|shorty-download|Rohling, M. L.; Ready, R. E.; Dhanani, L. Y.; Suhr, J. A. Shift happens: The gender composition in clinical neuropsychology over five decades. The Clinical neuropsychologist. 2020. https://doi.org/10.1080/13854046.2020.1778791.
703|shorty-download|Al Kharusi, S.; Anton, G.; Badhrees, I.; Barbeau, P. S.; Beck, D.; Belov, V.; Bhatta, T.; Breidenbach, M.; Brunner, T.; Cao, G. F.; Cen, W. R.; Chambers, C.; Cleveland, B.; Coon, M.; Craycraft, A.; Daniels, T.; Darroch, L.; Daugherty, S. J.; Davis, J.; Delaquis, S.; Der Mesrobian-Kabakian, A.; DeVoe, R.; Dilling, J.; Dolgolenko, A.; Dolinski, M. J.; Echevers, J.; Fairbank, W.; Fairbank, D.; Farine, J.; Feyzbakhsh, S.; Fierlinger, P.; Fudenberg, D.; Gautam, P.; Gornea, R.; Gratta, G.; Hall, C.; Hansen, E. V.; Hoessl, J.; Hufschmidt, P.; Hughes, M.; Iverson, A.; Jamil, A.; Jessiman, C.; Jewell, M. J.; Johnson, A.; Karelin, A.; Kaufman, L. J.; Koffas, T.; Kostensalo, J.; Krücken, R.; Kuchenkov, A.; Kumar, K. S.; Lan, Y.; Larson, A.; Lenardo, B. G.; Leonard, D. S.; Li, G. S.; Li, S.; Li, Z.; Licciardi, C.; Lin, Y. H.; MacLellan, R.; McElroy, T.; Michel, T.; Mong, B.; Moore, D. C.; Murray, K.; Nakarmi, P.; Njoya, O.; Nusair, O.; Odian, A.; Ostrovskiy, I.; Piepke, A.; Pocar, A.; Retière, F.; Robinson, A. L.; Rowson, P. C.; Ruddell, D.; Runge, J.; Schmidt, S.; Sinclair, D.; Skarpaas, K.; Soma, A. K.; Stekhanov, V.; Suhonen, J.; Tarka, M.; Thibado, S.; Todd, J.; Tolba, T.; Totev, T. I.; Tsang, R.; Veenstra, B.; Veeraraghavan, V.; Vogel, P.; Vuilleumier, J. L.; Wagenpfeil, M.; Watkins, J.; Weber, M.; Wen, L. J.; Wichoski, U.; Wrede, G.; Wu, S. X.; Xia, Q.; Yahne, D. R.; Yang, L.; Yen, Y. R.; Zeldovich, O. Y.; Ziegler, T. Measurement of the Spectral Shape of the β-Decay of ^{137}Xe to the Ground State of ^{137}Cs in EXO-200 and Comparison with Theory. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.124.232502.
704|sucess-download|Rulu, P.; Sievert, L. L.; Dhall, M.; Bertone-Johnson, E. R. Symptoms at midlife among women in Nagaland, India. American journal of human biology : the official journal of the Human Biology Council. 2020. https://doi.org/10.1002/ajhb.23456.
705|sucess-download|Li, X.; Tang, J.; Zhang, Q.; Gao, B.; Yang, J. J.; Song, S.; Wu, W.; Zhang, W.; Yao, P.; Deng, N.; Deng, L.; Xie, Y.; Qian, H.; Wu, H. Power-efficient neural network with artificial dendrites. Nature nanotechnology. 2020. https://doi.org/10.1038/s41565-020-0722-5.
706|sucess-download|Bundy, J. D.; Ning, H.; Zhong, V. W.; Paluch, A. E.; Lloyd-Jones, D. M.; Wilkins, J. T.; Allen, N. B. Cardiovascular Health Score and Lifetime Risk of Cardiovascular Disease: The Cardiovascular Lifetime Risk Pooling Project. Circulation. Cardiovascular quality and outcomes. 2020. https://doi.org/10.1161/CIRCOUTCOMES.119.006450.
707|sucess-download|He, C.; Han, T.; Liao, X.; Guan, R.; Chen, J. Y.; Tremblay, K. D.; Lu, Z. On the origin of vertebrate body plan: Insights from the endoderm using the hourglass model. Gene expression patterns : GEP. 2020. https://doi.org/10.1016/j.gep.2020.119125.
708|sucess-download|Yazdani, M.; Zhang, G.; Jia, Z.; Shi, J.; Cui, J.; Chen, J. Aromatic interactions with membrane modulate human BK channel activation. eLife. 2020. https://doi.org/10.7554/eLife.55571.
709|sucess-download|Santarella, F.; Sridharan, R.; Marinkovic, M.; Do Amaral, R. J.; Cavanagh, B.; Smith, A.; Kashpur, O.; Gerami-Naini, B.; Garlick, J. A.; O'Brien, F. J.; Kearney, C. J. Scaffolds Functionalized with Matrix from Induced Pluripotent Stem Cell Fibroblasts for Diabetic Wound Healing. Advanced healthcare materials. 2020. https://doi.org/10.1002/adhm.202000307.
710|sucess-download|Pilotte, N.; Cook, D. A.; Pryce, J.; Zulch, M. F.; Minetti, C.; Reimer, L. J.; Williams, S. A. Laboratory evaluation of molecular xenomonitoring using mosquito and tsetse fly excreta/feces to amplify Gates open research. 2020. https://doi.org/10.12688/gatesopenres.13093.2.
711|sucess-download|Xie, M.; Yang, J.; Zhang, J.; Sherman, H. L.; Zhang, Z.; Minter, L. M.; Hammock, B. D.; Park, Y.; Zhang, G. Effects of Linoleic Acid-Rich Diet on Plasma Profiles of Eicosanoids and Development of Colitis in Journal of agricultural and food chemistry. 2020. https://doi.org/10.1021/acs.jafc.0c03024.
712|shorty-download|Smith, S. A.; Carbone, E. T. Reintegrate Empowerment and Health Literacy to Advance Public Health and Healthcare Delivery. Studies in health technology and informatics. 2020. https://doi.org/10.3233/SHTI200053.
713|sucess-download|Ozay, E. I.; Shanthalingam, S.; Torres, J. A.; Osborne, B. A.; Tew, G. N.; Minter, L. M. Protein Kinase C Theta Modulates PCMT1 through hnRNPL to Regulate FOXP3 Stability in Regulatory T Cells. Molecular therapy : the journal of the American Society of Gene Therapy. 2020. https://doi.org/10.1016/j.ymthe.2020.06.012.
714|shorty-download|Stephens, A. D. Chromatin rigidity provides mechanical and genome protection. Mutation research. 2020. https://doi.org/10.1016/j.mrfmmm.2020.111712.
715|sucess-download|Guerrero, D.; Hwang, J.; Boutin, B.; Roeper, T.; Park, J. Is thirty-two three tens and two ones? The embedded structure of cardinal numbers. Cognition. 2020. https://doi.org/10.1016/j.cognition.2020.104331.
716|sucess-download|Joshi, A.; Mahmoud, S. A.; Kim, S. K.; Ogdahl, J. L.; Lee, V. T.; Chien, P.; Yildiz, F. H. c-di-GMP inhibits LonA-dependent proteolysis of TfoY in Vibrio cholerae. PLoS genetics. 2020. https://doi.org/10.1371/journal.pgen.1008897.
717|shorty-download|Townsend, K.; Ness, J.; Hoguet, J.; Stacy, N. I.; Komoroske, L. M.; Lynch, J. M. Testing the Stability of Plasma Protein and Whole Blood RNA in Archived Blood of Loggerhead Sea Turtles, Biopreservation and biobanking. 2020. https://doi.org/10.1089/bio.2020.0026.
718|sucess-download|Bradbury, R. S.; Arguello, I.; Lane, M.; Cooley, G.; Handali, S.; Dimitrova, S. D.; Nascimento, F. S.; Jameson, S.; Hellmann, K.; Tharp, M.; Byers, P.; Montgomery, S. P.; Haynie, L.; Kirmse, B.; Pilotte, N.; Williams, S. A.; Hobbs, C. V. Parasitic Infection Surveillance in Mississippi Delta Children. The American journal of tropical medicine and hygiene. 2020. https://doi.org/10.4269/ajtmh.20-0026.
719|sucess-download|den Hartog, C. R.; Blandino, K. L.; Nash, M. L.; Sjogren, E. R.; Grampetro, M. A.; Moorman, D. E.; Vazey, E. M. Noradrenergic tone mediates marble burying behavior after chronic stress and ethanol. Psychopharmacology. 2020. https://doi.org/10.1007/s00213-020-05589-7.
720|shorty-download|Basu, D.; Salvatore, M.; Ray, D.; Kleinsasser, M.; Purkayastha, S.; Bhattacharyya, R.; Mukherjee, B. A Comprehensive Public Health Evaluation of Lockdown as a Non-pharmaceutical Intervention on COVID-19 Spread in India: National Trends Masking State Level Variations. medRxiv : the preprint server for health sciences. 2020. https://doi.org/10.1101/2020.05.25.20113043.
721|sucess-download|Mahalak, K. K.; Firrman, J.; Lee, J. J.; Bittinger, K.; Nuñez, A.; Mattei, L. M.; Zhang, H.; Fett, B.; Bobokalonov, J.; Arango-Argoty, G.; Zhang, L.; Zhang, G.; Liu, L. S. Triclosan has a robust, yet reversible impact on human gut microbial composition in vitro. PloS one. 2020. https://doi.org/10.1371/journal.pone.0234046.
722|sucess-download|Zhang, R.; Zhang, Z.; McClements, D. J. Nanoemulsions: An emerging platform for increasing the efficacy of nutraceuticals in foods. Colloids and surfaces. B, Biointerfaces. 2020. https://doi.org/10.1016/j.colsurfb.2020.111202.
723|sucess-download|Gao, K.; Kan, Y.; Chen, X.; Liu, F.; Kan, B.; Nian, L.; Wan, X.; Chen, Y.; Peng, X.; Russell, T. P.; Cao, Y.; Jen, A. K. Low-Bandgap Porphyrins for Highly Efficient Organic Solar Cells: Materials, Morphology, and Applications. Advanced materials (Deerfield Beach, Fla.). 2020. https://doi.org/10.1002/adma.201906129.
724|sucess-download|Kumar, V.; Munkhbat, O.; Secinti, H.; Thayumanavan, S. Disassembly of polymeric nanoparticles with enzyme-triggered polymer unzipping: polyelectrolyte complexes vs. amphiphilic nanoassemblies. Chemical communications (Cambridge, England). 2020. https://doi.org/10.1039/d0cc03257c.
725|shorty-download|Bracken, M. L.; Waite, B. M. Self-Efficacy and Nutrition-Related Goal Achievement of MyFitnessPal Users. Health education & behavior : the official publication of the Society for Public Health Education. 2020. https://doi.org/10.1177/1090198120936261.
726|sucess-download|Xu, G.; Wielstra, B.; Rich, S. M. Northern and southern blacklegged (deer) ticks are genetically distinct with different histories and Lyme spirochete infection rates. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-67259-0.
727|shorty-download|Hässler, T.; Ullrich, J.; Bernardino, M.; Shnabel, N.; Laar, C. V.; Valdenegro, D.; Sebben, S.; Tropp, L. R.; Visintin, E. P.; González, R.; Ditlmann, R. K.; Abrams, D.; Selvanathan, H. P.; Brankovic, M.; Wright, S.; von Zimmermann, J.; Pasek, M.; Aydin, A. L.; Žeželj, I.; Pereira, A.; Lantos, N. A.; Sainz, M.; Glenz, A.; Oberpfalzerová, H.; Bilewicz, M.; Kende, A.; Kuzawinska, O.; Otten, S.; Maloku, E.; Noor, M.; Gul, P.; Pistella, J.; Baiocco, R.; Jelic, M.; Osin, E.; Bareket, O.; Biruski, D. C.; Cook, J. E.; Dawood, M.; Droogendyk, L.; Loyo, A. H.; Kelmendi, K.; Ugarte, L. M. Author Correction: A large-scale test of the link between intergroup contact and support for social change. Nature human behaviour. 2020. https://doi.org/10.1038/s41562-020-0915-9.
728|sucess-download|Toro-Uribe, S.; Herrero, M.; Decker, E. A.; López-Giraldo, L. J.; Ibáñez, E. Preparative Separation of Procyanidins from Cocoa Polyphenolic Extract: Comparative Study of Different Fractionation Techniques. Molecules (Basel, Switzerland). 2020. https://doi.org/10.3390/molecules25122842.
729|sucess-download|Sun, X. D.; Yuan, X. Z.; Jia, Y.; Feng, L. J.; Zhu, F. P.; Dong, S. S.; Liu, J.; Kong, X.; Tian, H.; Duan, J. L.; Ding, Z.; Wang, S. G.; Xing, B. Differentially charged nanoplastics demonstrate distinct accumulation in Arabidopsis thaliana. Nature nanotechnology. 2020. https://doi.org/10.1038/s41565-020-0707-4.
730|sucess-download|Liu, Q.; Zhang, Y.; Wang, Y.; Wang, W.; Gu, C.; Huang, S.; Yuan, H.; Dhankher, O. P. Quantitative proteomic analysis reveals complex regulatory and metabolic response of Iris lactea Pall. var. chinensis to cadmium toxicity. Journal of hazardous materials. 2020. https://doi.org/10.1016/j.jhazmat.2020.123165.
731|sucess-download|Geissler, K. H.; Lubin, B.; Ericson, K. M. The association between patient sharing network structure and healthcare costs. PloS one. 2020. https://doi.org/10.1371/journal.pone.0234990.
732|sucess-download|Mandalaywala, T. M.; Tai, C.; Rhodes, M. Children's use of race and gender as cues to social status. PloS one. 2020. https://doi.org/10.1371/journal.pone.0234398.
733|shorty-download|Aad, G.; Abbott, B.; Abbott, D. C.; Abed Abud, A.; Abeling, K.; Abhayasinghe, D. K.; Abidi, S. H.; AbouZeid, O. S.; Abraham, N. L.; Abramowicz, H.; Abreu, H.; Abulaiti, Y.; Acharya, B. S.; Achkar, B.; Adachi, S.; Adam, L.; Adam Bourdarios, C.; Adamczyk, L.; Adamek, L.; Adelman, J.; Adersberger, M.; Adiguzel, A.; Adorni, S.; Adye, T.; Affolder, A. A.; Afik, Y.; Agapopoulou, C.; Agaras, M. N.; Aggarwal, A.; Agheorghiesei, C.; Aguilar-Saavedra, J. A.; Ahmadov, F.; Ahmed, W. S.; Ai, X.; Aielli, G.; Akatsuka, S.; Åkesson, T. P.; Akilli, E.; Akimov, A. V.; Al Khoury, K.; Alberghi, G. L.; Albert, J.; Alconada Verzini, M. J.; Alderweireldt, S.; Aleksa, M.; Aleksandrov, I. N.; Alexa, C.; Alexopoulos, T.; Alfonsi, A.; Alfonsi, F.; Alhroob, M.; Ali, B.; Aliev, M.; Alimonti, G.; Alkire, S. P.; Allaire, C.; Allbrooke, B. M.; Allen, B. W.; Allport, P. P.; Aloisio, A.; Alonso, A.; Alonso, F.; Alpigiani, C.; Alshehri, A. A.; Alvarez Estevez, M.; Álvarez Piqueras, D.; Alviggi, M. G.; Amaral Coutinho, Y.; Ambler, A.; Ambroz, L.; Amelung, C.; Amidei, D.; Amor Dos Santos, S. P.; Amoroso, S.; Amrouche, C. S.; An, F.; Anastopoulos, C.; Andari, N.; Andeen, T.; Anders, C. F.; Anders, J. K.; Andreazza, A.; Andrei, V.; Anelli, C. R.; Angelidakis, S.; Angerami, A.; Anisenkov, A. V.; Annovi, A.; Antel, C.; Anthony, M. T.; Antipov, E.; Antonelli, M.; Antrim, D. J.; Anulli, F.; Aoki, M.; Aparisi Pozo, J. A.; Aperio Bella, L.; Araque, J. P.; Araujo Ferraz, V.; Araujo Pereira, R.; Arcangeletti, C.; Arce, A. T.; Arduh, F. A.; Arguin, J. F.; Argyropoulos, S.; Arling, J. H.; Armbruster, A. J.; Armstrong, A.; Arnaez, O.; Arnold, H.; Arrubarrena Tame, Z. P.; Artoni, G.; Artz, S.; Asai, S.; Asbah, N.; Asimakopoulou, E. M.; Asquith, L.; Assahsah, J.; Assamagan, K.; Astalos, R.; Atkin, R. J.; Atkinson, M.; Atlay, N. B.; Atmani, H.; Augsten, K.; Avolio, G.; Avramidou, R.; Ayoub, M. K.; Azoulay, A. M.; Azuelos, G.; Bachacou, H.; Bachas, K.; Backes, M.; Backman, F.; Bagnaia, P.; Bahmani, M.; Bahrasemani, H.; Bailey, A. J.; Bailey, V. R.; Baines, J. T.; Bajic, M.; Bakalis, C.; Baker, O. K.; Bakker, P. J.; Bakshi Gupta, D.; Balaji, S.; Baldin, E. M.; Balek, P.; Balli, F.; Balunas, W. K.; Balz, J.; Banas, E.; Bandyopadhyay, A.; Banerjee, S.; Bannoura, A. A.; Barak, L.; Barbe, W. M.; Barberio, E. L.; Barberis, D.; Barbero, M.; Barbour, G.; Barillari, T.; Barisits, M. S.; Barkeloo, J.; Barklow, T.; Barnea, R.; Barnes, S. L.; Barnett, B. M.; Barnett, R. M.; Barnovska-Blenessy, Z.; Baroncelli, A.; Barone, G.; Barr, A. J.; Barranco Navarro, L.; Barreiro, F.; Barreiro Guimarães da Costa, J.; Barsov, S.; Bartoldus, R.; Bartolini, G.; Barton, A. E.; Bartos, P.; Basalaev, A.; Basan, A.; Bassalat, A.; Basso, M. J.; Bates, R. L.; Batlamous, S.; Batley, J. R.; Batool, B.; Battaglia, M.; Bauce, M.; Bauer, F.; Bauer, K. T.; Bawa, H. S.; Beacham, J. B.; Beau, T.; Beauchemin, P. H.; Becherer, F.; Bechtle, P.; Beck, H. C.; Beck, H. P.; Becker, K.; Becker, M.; Becot, C.; Beddall, A.; Beddall, A. J.; Bednyakov, V. A.; Bedognetti, M.; Bee, C. P.; Beermann, T. A.; Begalli, M.; Begel, M.; Behera, A.; Behr, J. K.; Beisiegel, F.; Bell, A. S.; Bella, G.; Bellagamba, L.; Bellerive, A.; Bellos, P.; Beloborodov, K.; Belotskiy, K.; Belyaev, N. L.; Benchekroun, D.; Benekos, N.; Benhammou, Y.; Benjamin, D. P.; Benoit, M.; Bensinger, J. R.; Bentvelsen, S.; Beresford, L.; Beretta, M.; Berge, D.; Bergeaas Kuutmann, E.; Berger, N.; Bergmann, B.; Bergsten, L. J.; Beringer, J.; Berlendis, S.; Bernardi, G.; Bernius, C.; Bernlochner, F. U.; Berry, T.; Berta, P.; Bertella, C.; Bertram, I. A.; Bessidskaia Bylund, O.; Besson, N.; Bethani, A.; Bethke, S.; Betti, A.; Bevan, A. J.; Beyer, J.; Bhattacharya, D. S.; Bhattarai, P.; Bi, R.; Bianchi, R. M.; Biebel, O.; Biedermann, D.; Bielski, R.; Bierwagen, K.; Biesuz, N. V.; Biglietti, M.; Billoud, T. R.; Bindi, M.; Bingul, A.; Bini, C.; Biondi, S.; Birman, M.; Bisanz, T.; Biswal, J. P.; Biswas, D.; Bitadze, A.; Bittrich, C.; Bjørke, K.; Black, K. M.; Blazek, T.; Bloch, I.; Blocker, C.; Blue, A.; Blumenschein, U.; Bobbink, G. J.; Bobrovnikov, V. S.; Bocchetta, S. S.; Bocci, A.; Boerner, D.; Bogavac, D.; Bogdanchikov, A. G.; Bohm, C.; Boisvert, V.; Bokan, P.; Bold, T.; Boldyrev, A. S.; Bolz, A. E.; Bomben, M.; Bona, M.; Bonilla, J. S.; Boonekamp, M.; Booth, C. D.; Borecka-Bielska, H. M.; Borisov, A.; Borissov, G.; Bortfeldt, J.; Bortoletto, D.; Boscherini, D.; Bosman, M.; Bossio Sola, J. D.; Bouaouda, K.; Boudreau, J.; Bouhova-Thacker, E. V.; Boumediene, D.; Boutle, S. K.; Boveia, A.; Boyd, J.; Boye, D.; Boyko, I. R.; Bozson, A. J.; Bracinik, J.; Brahimi, N.; Brandt, G.; Brandt, O.; Braren, F.; Brau, B.; Brau, J. E.; Breaden Madden, W. D.; Brendlinger, K.; Brenner, L.; Brenner, R.; Bressler, S.; Brickwedde, B.; Briglin, D. L.; Britton, D.; Britzger, D.; Brock, I.; Brock, R.; Brooijmans, G.; Brooks, W. K.; Brost, E.; Broughton, J. H.; Bruckman de Renstrom, P. A.; Bruncko, D.; Bruni, A.; Bruni, G.; Bruni, L. S.; Bruno, S.; Bruschi, M.; Bruscino, N.; Bryant, P.; Bryngemark, L.; Buanes, T.; Buat, Q.; Buchholz, P.; Buckley, A. G.; Budagov, I. A.; Bugge, M. K.; Bührer, F.; Bulekov, O.; Burch, T. J.; Burdin, S.; Burgard, C. D.; Burger, A. M.; Burghgrave, B.; Burr, J. T.; Burton, C. D.; Burzynski, J. C.; Büscher, V.; Buschmann, E.; Bussey, P. J.; Butler, J. M.; Buttar, C. M.; Butterworth, J. M.; Butti, P.; Buttinger, W.; Buxo Vazquez, C. J.; Buzatu, A.; Buzykaev, A. R.; Cabras, G.; Cabrera Urbán, S.; Caforio, D.; Cai, H.; Cairo, V. M.; Cakir, O.; Calace, N.; Calafiura, P.; Calandri, A.; Calderini, G.; Calfayan, P.; Callea, G.; Caloba, L. P.; Caltabiano, A.; Calvente Lopez, S.; Calvet, D.; Calvet, S.; Calvet, T. P.; Calvetti, M.; Camacho Toro, R.; Camarda, S.; Camarero Munoz, D.; Camarri, P.; Cameron, D.; Caminal Armadans, R.; Camincher, C.; Campana, S.; Campanelli, M.; Camplani, A.; Campoverde, A.; Canale, V.; Canesse, A.; Cano Bret, M.; Cantero, J.; Cao, T.; Cao, Y.; Capeans Garrido, M. D.; Capua, M.; Cardarelli, R.; Cardillo, F.; Carducci, G.; Carli, I.; Carli, T.; Carlino, G.; Carlson, B. T.; Carminati, L.; Carney, R. M.; Caron, S.; Carquin, E.; Carrá, S.; Carter, J. W.; Casado, M. P.; Casha, A. F.; Casper, D. W.; Castelijn, R.; Castillo, F. L.; Castillo Gimenez, V.; Castro, N. F.; Catinaccio, A.; Catmore, J. R.; Cattai, A.; Cavaliere, V.; Cavallaro, E.; Cavalli-Sforza, M.; Cavasinni, V.; Celebi, E.; Ceradini, F.; Cerda Alberich, L.; Cerny, K.; Cerqueira, A. S.; Cerri, A.; Cerrito, L.; Cerutti, F.; Cervelli, A.; Cetin, S. A.; Chadi, Z.; Chakraborty, D.; Chan, W. S.; Chan, W. Y.; Chapman, J. D.; Chargeishvili, B.; Charlton, D. G.; Charman, T. P.; Chau, C. C.; Che, S.; Chekanov, S.; Chekulaev, S. V.; Chelkov, G. A.; Chelstowska, M. A.; Chen, B.; Chen, C.; Chen, C. H.; Chen, H.; Chen, J.; Chen, J.; Chen, S.; Chen, S. J.; Chen, X.; Chen, Y. H.; Cheng, H. C.; Cheng, H. J.; Cheplakov, A.; Cheremushkina, E.; Cherkaoui El Moursli, R.; Cheu, E.; Cheung, K.; Chevalérias, T. J.; Chevalier, L.; Chiarella, V.; Chiarelli, G.; Chiodini, G.; Chisholm, A. S.; Chitan, A.; Chiu, I.; Chiu, Y. H.; Chizhov, M. V.; Choi, K.; Chomont, A. R.; Chouridou, S.; Chow, Y. S.; Chu, M. C.; Chu, X.; Chudoba, J.; Chuinard, A. J.; Chwastowski, J. J.; Chytka, L.; Cieri, D.; Ciesla, K. M.; Cinca, D.; Cindro, V.; Cioară, I. A.; Ciocio, A.; Cirotto, F.; Citron, Z. H.; Citterio, M.; Ciubotaru, D. A.; Ciungu, B. M.; Clark, A.; Clark, M. R.; Clark, P. J.; Clement, C.; Coadou, Y.; Cobal, M.; Coccaro, A.; Cochran, J.; Cohen, H.; Coimbra, A. E.; Colasurdo, L.; Cole, B.; Colijn, A. P.; Collot, J.; Conde Muiño, P.; Connell, S. H.; Connelly, I. A.; Constantinescu, S.; Conventi, F.; Cooper-Sarkar, A. M.; Cormier, F.; Cormier, K. J.; Corpe, L. D.; Corradi, M.; Corrigan, E. E.; Corriveau, F.; Cortes-Gonzalez, A.; Costa, M. J.; Costanza, F.; Costanzo, D.; Cowan, G.; Cowley, J. W.; Crane, J.; Cranmer, K.; Crawley, S. J.; Creager, R. A.; Crépé-Renaudin, S.; Crescioli, F.; Cristinziani, M.; Croft, V.; Crosetti, G.; Cueto, A.; Cuhadar Donszelmann, T.; Cukierman, A. R.; Cunningham, W. R.; Czekierda, S.; Czodrowski, P.; Da Cunha Sargedas De Sousa, M. J.; Da Fonseca Pinto, J. V.; Da Via, C.; Dabrowski, W.; Dachs, F.; Dado, T.; Dahbi, S.; Dai, T.; Dallapiccola, C.; Dam, M.; D'amen, G.; D'Amico, V.; Damp, J.; Dandoy, J. R.; Daneri, M. F.; Dang, N. P.; Dann, N. S.; Danninger, M.; Dao, V.; Darbo, G.; Dartsi, O.; Dattagupta, A.; Daubney, T.; D'Auria, S.; David, C.; Davidek, T.; Davis, D. R.; Dawson, I.; De, K.; De Asmundis, R.; De Beurs, M.; De Castro, S.; De Cecco, S.; De Groot, N.; de Jong, P.; De la Torre, H.; De Maria, A.; De Pedis, D.; De Salvo, A.; De Sanctis, U.; De Santis, M.; De Santo, A.; De Vasconcelos Corga, K.; De Vivie De Regie, J. B.; Debenedetti, C.; Dedovich, D. V.; Deiana, A. M.; Del Peso, J.; Delabat Diaz, Y.; Delgove, D.; Deliot, F.; Delitzsch, C. M.; Della Pietra, M.; Della Volpe, D.; Dell'Acqua, A.; Dell'Asta, L.; Delmastro, M.; Delporte, C.; Delsart, P. A.; DeMarco, D. A.; Demers, S.; Demichev, M.; Demontigny, G.; Denisov, S. P.; D'Eramo, L.; Derendarz, D.; Derkaoui, J. E.; Derue, F.; Dervan, P.; Desch, K.; Deterre, C.; Dette, K.; Deutsch, C.; Devesa, M. R.; Deviveiros, P. O.; Dewhurst, A.; Di Bello, F. A.; Di Ciaccio, A.; Di Ciaccio, L.; Di Clemente, W. K.; Di Donato, C.; Di Girolamo, A.; Di Gregorio, G.; Di Micco, B.; Di Nardo, R.; Di Petrillo, K. F.; Di Sipio, R.; Di Valentino, D.; Diaconu, C.; Dias, F. A.; Dias Do Vale, T.; Diaz, M. A.; Dickinson, J.; Diehl, E. B.; Dietrich, J.; Díez Cornell, S.; Dimitrievska, A.; Ding, W.; Dingfelder, J.; Dittus, F.; Djama, F.; Djobava, T.; Djuvsland, J. I.; Do Vale, M. A.; Dobre, M.; Dodsworth, D.; Doglioni, C.; Dolejsi, J.; Dolezal, Z.; Donadelli, M.; Dong, B.; Donini, J.; D'onofrio, A.; D'Onofrio, M.; Dopke, J.; Doria, A.; Dova, M. T.; Doyle, A. T.; Drechsler, E.; Dreyer, E.; Dreyer, T.; Drobac, A. S.; Du, D.; Duan, Y.; Dubinin, F.; Dubovsky, M.; Dubreuil, A.; Duchovni, E.; Duckeck, G.; Ducourthial, A.; Ducu, O. A.; Duda, D.; Dudarev, A.; Dudder, A. C.; Duffield, E. M.; Duflot, L.; Dührssen, M.; Dülsen, C.; Dumancic, M.; Dumitriu, A. E.; Duncan, A. K.; Dunford, M.; Duperrin, A.; Duran Yildiz, H.; Düren, M.; Durglishvili, A.; Duschinger, D.; Dutta, B.; Duvnjak, D.; Dyckes, G. I.; Dyndal, M.; Dysch, S.; Dziedzic, B. S.; Ecker, K. M.; Edgar, R. C.; Eggleston, M. G.; Eifert, T.; Eigen, G.; Einsweiler, K.; Ekelof, T.; El Jarrari, H.; El Kacimi, M.; El Kosseifi, R.; Ellajosyula, V.; Ellert, M.; Ellinghaus, F.; Elliot, A. A.; Ellis, N.; Elmsheuser, J.; Elsing, M.; Emeliyanov, D.; Emerman, A.; Enari, Y.; Epland, M. B.; Erdmann, J.; Ereditato, A.; Errenst, M.; Escalier, M.; Escobar, C.; Estrada Pastor, O.; Etzion, E.; Evans, H.; Ezhilov, A.; Fabbri, F.; Fabbri, L.; Fabiani, V.; Facini, G.; Faisca Rodrigues Pereira, R. M.; Fakhrutdinov, R. M.; Falciano, S.; Falke, P. J.; Falke, S.; Faltova, J.; Fang, Y.; Fang, Y.; Fanourakis, G.; Fanti, M.; Faraj, M.; Farbin, A.; Farilla, A.; Farina, E. M.; Farooque, T.; Farrell, S.; Farrington, S. M.; Farthouat, P.; Fassi, F.; Fassnacht, P.; Fassouliotis, D.; Faucci Giannelli, M.; Fawcett, W. J.; Fayard, L.; Fedin, O. L.; Fedorko, W.; Fehr, A.; Feickert, M.; Feligioni, L.; Fell, A.; Feng, C.; Feng, M.; Fenton, M. J.; Fenyuk, A. B.; Ferguson, S. W.; Ferrando, J.; Ferrante, A.; Ferrari, A.; Ferrari, P.; Ferrari, R.; Ferreira de Lima, D. E.; Ferrer, A.; Ferrere, D.; Ferretti, C.; Fiedler, F.; Filipčič, A.; Filthaut, F.; Finelli, K. D.; Fiolhais, M. C.; Fiorini, L.; Fischer, F.; Fisher, W. C.; Fleck, I.; Fleischmann, P.; Fletcher, R. R.; Flick, T.; Flierl, B. M.; Flores, L.; Flores Castillo, L. R.; Follega, F. M.; Fomin, N.; Foo, J. H.; Forcolin, G. T.; Formica, A.; Förster, F. A.; Forti, A. C.; Foster, A. G.; Foti, M. G.; Fournier, D.; Fox, H.; Francavilla, P.; Francescato, S.; Franchini, M.; Franchino, S.; Francis, D.; Franconi, L.; Franklin, M.; Fray, A. N.; Freeman, P. M.; Freund, B.; Freund, W. S.; Freundlich, E. M.; Frizzell, D. C.; Froidevaux, D.; Frost, J. A.; Fukunaga, C.; Fullana Torregrosa, E.; Fumagalli, E.; Fusayasu, T.; Fuster, J.; Gabrielli, A.; Gabrielli, A.; Gadatsch, S.; Gadow, P.; Gagliardi, G.; Gagnon, L. G.; Galea, C.; Galhardo, B.; Gallardo, G. E.; Gallas, E. J.; Gallop, B. J.; Galster, G.; Gamboa Goni, R.; Gan, K. K.; Ganguly, S.; Gao, J.; Gao, Y.; Gao, Y. S.; García, C.; García Navarro, J. E.; García Pascual, J. A.; Garcia-Argos, C.; Garcia-Sciveres, M.; Gardner, R. W.; Garelli, N.; Gargiulo, S.; Garonne, V.; Gaspar, P.; Gaudiello, A.; Gaudio, G.; Gavrilenko, I. L.; Gavrilyuk, A.; Gay, C.; Gaycken, G.; Gazis, E. N.; Geanta, A. A.; Gee, C. M.; Gee, C. N.; Geisen, J.; Geisen, M.; Gemme, C.; Genest, M. H.; Geng, C.; Gentile, S.; George, S.; Geralis, T.; Gerlach, L. O.; Gessinger-Befurt, P.; Gessner, G.; Ghasemi, S.; Ghasemi Bostanabad, M.; Ghneimat, M.; Ghosh, A.; Ghosh, A.; Giacobbe, B.; Giagu, S.; Giangiacomi, N.; Giannetti, P.; Giannini, A.; Giannini, G.; Gibson, S. M.; Gignac, M.; Gillberg, D.; Gilles, G.; Gingrich, D. M.; Giordani, M. P.; Giorgi, F. M.; Giraud, P. F.; Giugliarelli, G.; Giugni, D.; Giuli, F.; Gkaitatzis, S.; Gkialas, I.; Gkougkousis, E. L.; Gkountoumis, P.; Gladilin, L. K.; Glasman, C.; Glatzer, J.; Glaysher, P. C.; Glazov, A.; Gledhill, G. R.; Goblirsch-Kolb, M.; Godin, D.; Goldfarb, S.; Golling, T.; Golubkov, D.; Gomes, A.; Goncalves Gama, R.; Gonçalo, R.; Gonella, G.; Gonella, L.; Gongadze, A.; Gonnella, F.; Gonski, J. L.; González de la Hoz, S.; Gonzalez-Sevilla, S.; Gonzalvo Rodriguez, G. R.; Goossens, L.; Gorasia, N. A.; Gorbounov, P. A.; Gordon, H. A.; Gorini, B.; Gorini, E.; Gorišek, A.; Goshaw, A. T.; Gostkin, M. I.; Gottardo, C. A.; Gouighri, M.; Goujdami, D.; Goussiou, A. G.; Govender, N.; Goy, C.; Gozani, E.; Grabowska-Bold, I.; Graham, E. C.; Gramling, J.; Gramstad, E.; Grancagnolo, S.; Grandi, M.; Gratchev, V.; Gravila, P. M.; Gravili, F. G.; Gray, C.; Gray, H. M.; Grefe, C.; Gregersen, K.; Gregor, I. M.; Grenier, P.; Grevtsov, K.; Grieco, C.; Grieser, N. A.; Grillo, A. A.; Grimm, K.; Grinstein, S.; Grivaz, J. F.; Groh, S.; Gross, E.; Grosse-Knetter, J.; Grout, Z. J.; Grud, C.; Grummer, A.; Guan, L.; Guan, W.; Gubbels, C.; Guenther, J.; Guerguichon, A.; Guerrero Rojas, J. G.; Guescini, F.; Guest, D.; Gugel, R.; Guillemin, T.; Guindon, S.; Gul, U.; Guo, J.; Guo, W.; Guo, Y.; Guo, Z.; Gupta, R.; Gurbuz, S.; Gustavino, G.; Guth, M.; Gutierrez, P.; Gutschow, C.; Guyot, C.; Gwenlan, C.; Gwilliam, C. B.; Haas, A.; Haber, C.; Hadavand, H. K.; Haddad, N.; Hadef, A.; Hageböck, S.; Haleem, M.; Haley, J.; Halladjian, G.; Hallewell, G. D.; Hamacher, K.; Hamal, P.; Hamano, K.; Hamdaoui, H.; Hamer, M.; Hamity, G. N.; Han, K.; Han, L.; Han, S.; Han, Y. F.; Hanagaki, K.; Hance, M.; Handl, D. M.; Haney, B.; Hankache, R.; Hansen, E.; Hansen, J. B.; Hansen, J. D.; Hansen, M. C.; Hansen, P. H.; Hanson, E. C.; Hara, K.; Harenberg, T.; Harkusha, S.; Harrison, P. F.; Hartmann, N. M.; Hasegawa, Y.; Hasib, A.; Hassani, S.; Haug, S.; Hauser, R.; Havener, L. B.; Havranek, M.; Hawkes, C. M.; Hawkings, R. J.; Hayden, D.; Hayes, C.; Hayes, R. L.; Hays, C. P.; Hays, J. M.; Hayward, H. S.; Haywood, S. J.; He, F.; Heath, M. P.; Hedberg, V.; Heelan, L.; Heer, S.; Heidegger, K. K.; Heidorn, W. D.; Heilman, J.; Heim, S.; Heim, T.; Heinemann, B.; Heinrich, J. J.; Heinrich, L.; Hejbal, J.; Helary, L.; Held, A.; Hellesund, S.; Helling, C. M.; Hellman, S.; Helsens, C.; Henderson, R. C.; Heng, Y.; Henkelmann, L.; Henkelmann, S.; Henriques Correia, A. M.; Herbert, G. H.; Herde, H.; Herget, V.; Hernández Jiménez, Y.; Herr, H.; Herrmann, M. G.; Herrmann, T.; Herten, G.; Hertenberger, R.; Hervas, L.; Herwig, T. C.; Hesketh, G. G.; Hessey, N. P.; Higashida, A.; Higashino, S.; Higón-Rodriguez, E.; Hildebrand, K.; Hill, E.; Hill, J. C.; Hill, K. K.; Hiller, K. H.; Hillier, S. J.; Hils, M.; Hinchliffe, I.; Hinterkeuser, F.; Hirose, M.; Hirose, S.; Hirschbuehl, D.; Hiti, B.; Hladik, O.; Hlaluku, D. R.; Hoad, X.; Hobbs, J.; Hod, N.; Hodgkinson, M. C.; Hoecker, A.; Hohn, D.; Hohov, D.; Holm, T.; Holmes, T. R.; Holzbock, M.; Hommels, L. B.; Honda, S.; Hong, T. M.; Honig, J. C.; Hönle, A.; Hooberman, B. H.; Hopkins, W. H.; Horii, Y.; Horn, P.; Horyn, L. A.; Hou, S.; Hoummada, A.; Howarth, J.; Hoya, J.; Hrabovsky, M.; Hrdinka, J.; Hristova, I.; Hrivnac, J.; Hrynevich, A.; Hryn'ova, T.; Hsu, P. J.; Hsu, S. C.; Hu, Q.; Hu, S.; Hu, Y. F.; Huang, D. P.; Huang, Y.; Huang, Y.; Hubacek, Z.; Hubaut, F.; Huebner, M.; Huegging, F.; Huffman, T. B.; Huhtinen, M.; Hunter, R. F.; Huo, P.; Hupe, A. M.; Huseynov, N.; Huston, J.; Huth, J.; Hyneman, R.; Hyrych, S.; Iacobucci, G.; Iakovidis, G.; Ibragimov, I.; Iconomidou-Fayard, L.; Idrissi, Z.; Iengo, P.; Ignazzi, R.; Igonkina, O.; Iguchi, R.; Iizawa, T.; Ikegami, Y.; Ikeno, M.; Iliadis, D.; Ilic, N.; Iltzsche, F.; Introzzi, G.; Iodice, M.; Iordanidou, K.; Ippolito, V.; Isacson, M. F.; Ishino, M.; Islam, W.; Issever, C.; Istin, S.; Ito, F.; Iturbe Ponce, J. M.; Iuppa, R.; Ivina, A.; Iwasaki, H.; Izen, J. M.; Izzo, V.; Jacka, P.; Jackson, P.; Jacobs, R. M.; Jaeger, B. P.; Jain, V.; Jäkel, G.; Jakobi, K. B.; Jakobs, K.; Jakoubek, T.; Jamieson, J.; Janas, K. W.; Jansky, R.; Janssen, J.; Janus, M.; Janus, P. A.; Jarlskog, G.; Javadov, N.; Javůrek, T.; Javurkova, M.; Jeanneau, F.; Jeanty, L.; Jejelava, J.; Jelinskas, A.; Jenni, P.; Jeong, J.; Jeong, N.; Jézéquel, S.; Ji, H.; Jia, J.; Jiang, H.; Jiang, Y.; Jiang, Z.; Jiggins, S.; Jimenez Morales, F. A.; Jimenez Pena, J.; Jin, S.; Jinaru, A.; Jinnouchi, O.; Jivan, H.; Johansson, P.; Johns, K. A.; Johnson, C. A.; Jon-And, K.; Jones, R. W.; Jones, S. D.; Jones, S.; Jones, T. J.; Jongmanns, J.; Jorge, P. M.; Jovicevic, J.; Ju, X.; Junggeburth, J. J.; Juste Rozas, A.; Kaczmarska, A.; Kado, M.; Kagan, H.; Kagan, M.; Kahn, A.; Kahra, C.; Kaji, T.; Kajomovitz, E.; Kalderon, C. W.; Kaluza, A.; Kamenshchikov, A.; Kaneda, M.; Kang, N. J.; Kanjir, L.; Kano, Y.; Kantserov, V. A.; Kanzaki, J.; Kaplan, L. S.; Kar, D.; Karava, K.; Kareem, M. J.; Karpov, S. N.; Karpova, Z. M.; Kartvelishvili, V.; Karyukhin, A. N.; Kashif, L.; Kass, R. D.; Kastanas, A.; Kato, C.; Katzy, J.; Kawade, K.; Kawagoe, K.; Kawaguchi, T.; Kawamoto, T.; Kawamura, G.; Kay, E. F.; Kazanin, V. F.; Keeler, R.; Kehoe, R.; Keller, J. S.; Kellermann, E.; Kelsey, D.; Kempster, J. J.; Kendrick, J.; Kennedy, K. E.; Kepka, O.; Kersten, S.; Kerševan, B. P.; Ketabchi Haghighat, S.; Khader, M.; Khalil-Zada, F.; Khandoga, M.; Khanov, A.; Kharlamov, A. G.; Kharlamova, T.; Khoda, E. E.; Khodinov, A.; Khoo, T. J.; Khramov, E.; Khubua, J.; Kido, S.; Kiehn, M.; Kilby, C. R.; Kim, Y. K.; Kimura, N.; Kind, O. M.; King, B. T.; Kirchmeier, D.; Kirk, J.; Kiryunin, A. E.; Kishimoto, T.; Kisliuk, D. P.; Kitali, V.; Kivernyk, O.; Klapdor-Kleingrothaus, T.; Klassen, M.; Klein, M. H.; Klein, M.; Klein, U.; Kleinknecht, K.; Klimek, P.; Klimentov, A.; Klingl, T.; Klioutchnikova, T.; Klitzner, F. F.; Kluit, P.; Kluth, S.; Kneringer, E.; Knoops, E. B.; Knue, A.; Kobayashi, D.; Kobayashi, T.; Kobel, M.; Kocian, M.; Kodys, P.; Koenig, P. T.; Koffas, T.; Köhler, N. M.; Koi, T.; Kolb, M.; Koletsou, I.; Komarek, T.; Kondo, T.; Köneke, K.; Kong, A. X.; König, A. C.; Kono, T.; Konoplich, R.; Konstantinides, V.; Konstantinidis, N.; Konya, B.; Kopeliansky, R.; Koperny, S.; Korcyl, K.; Kordas, K.; Koren, G.; Korn, A.; Korolkov, I.; Korolkova, E. V.; Korotkova, N.; Kortner, O.; Kortner, S.; Kosek, T.; Kostyukhin, V. V.; Kotsokechagia, A.; Kotwal, A.; Koulouris, A.; Kourkoumeli-Charalampidi, A.; Kourkoumelis, C.; Kourlitis, E.; Kouskoura, V.; Kowalewska, A. B.; Kowalewski, R.; Kozakai, C.; Kozanecki, W.; Kozhin, A. S.; Kramarenko, V. A.; Kramberger, G.; Krasnopevtsev, D.; Krasny, M. W.; Krasznahorkay, A.; Krauss, D.; Kremer, J. A.; Kretzschmar, J.; Krieger, P.; Krieter, F.; Krishnan, A.; Krizka, K.; Kroeninger, K.; Kroha, H.; Kroll, J.; Kroll, J.; Krowpman, K. S.; Krstic, J.; Kruchonak, U.; Krüger, H.; Krumnack, N.; Kruse, M. C.; Krzysiak, J. A.; Kubota, T.; Kuchinskaia, O.; Kuday, S.; Kuechler, J. T.; Kuehn, S.; Kugel, A.; Kuhl, T.; Kukhtin, V.; Kukla, R.; Kulchitsky, Y.; Kuleshov, S.; Kulinich, Y. P.; Kuna, M.; Kunigo, T.; Kupco, A.; Kupfer, T.; Kuprash, O.; Kurashige, H.; Kurchaninov, L. L.; Kurochkin, Y. A.; Kurova, A.; Kurth, M. G.; Kuwertz, E. S.; Kuze, M.; Kvam, A. K.; Kvita, J.; Kwan, T.; La Rosa, A.; La Rotonda, L.; La Ruffa, F.; Lacasta, C.; Lacava, F.; Lack, D. P.; Lacker, H.; Lacour, D.; Ladygin, E.; Lafaye, R.; Laforge, B.; Lagouri, T.; Lai, S.; Lakomiec, I. K.; Lammers, S.; Lampl, W.; Lampoudis, C.; Lançon, E.; Landgraf, U.; Landon, M. P.; Lanfermann, M. C.; Lang, V. S.; Lange, J. C.; Langenberg, R. J.; Lankford, A. J.; Lanni, F.; Lantzsch, K.; Lanza, A.; Lapertosa, A.; Laplace, S.; Laporte, J. F.; Lari, T.; Lasagni Manghi, F.; Lassnig, M.; Lau, T. S.; Laudrain, A.; Laurier, A.; Lavorgna, M.; Lawlor, S. D.; Lazzaroni, M.; Le, B.; Le Guirriec, E.; LeBlanc, M.; LeCompte, T.; Ledroit-Guillon, F.; Lee, A. C.; Lee, C. A.; Lee, G. R.; Lee, L.; Lee, S. C.; Lee, S. J.; Lee, S.; Lefebvre, B.; Lefebvre, H. P.; Lefebvre, M.; Legger, F.; Leggett, C.; Lehmann, K.; Lehmann, N.; Lehmann Miotto, G.; Leight, W. A.; Leisos, A.; Leite, M. A.; Leitgeb, C. E.; Leitner, R.; Lellouch, D.; Leney, K. J.; Lenz, T.; Leone, R.; Leone, S.; Leonidopoulos, C.; Leopold, A.; Leroy, C.; Les, R.; Lester, C. G.; Levchenko, M.; Levêque, J.; Levin, D.; Levinson, L. J.; Lewis, D. J.; Li, B.; Li, B.; Li, C. Q.; Li, F.; Li, H.; Li, H.; Li, J.; Li, K.; Li, L.; Li, M.; Li, Q.; Li, Q. Y.; Li, S.; Li, X.; Li, Y.; Li, Z.; Liang, Z.; Liberti, B.; Liblong, A.; Lie, K.; Lim, S.; Lin, C. Y.; Lin, K.; Lin, T. H.; Linck, R. A.; Lindon, J. H.; Lionti, A. L.; Lipeles, E.; Lipniacka, A.; Liss, T. M.; Lister, A.; Litke, A. M.; Little, J. D.; Liu, B.; Liu, B. L.; Liu, H. B.; Liu, H.; Liu, J. B.; Liu, J. K.; Liu, K.; Liu, M.; Liu, P.; Liu, Y.; Liu, Y. L.; Liu, Y. W.; Livan, M.; Lleres, A.; Llorente Merino, J.; Lloyd, S. L.; Lo, C. Y.; Lo Sterzo, F.; Lobodzinska, E. M.; Loch, P.; Loffredo, S.; Lohse, T.; Lohwasser, K.; Lokajicek, M.; Long, J. D.; Long, R. E.; Longo, L.; Looper, K. A.; Lopez, J. A.; Lopez Paz, I.; Lopez Solis, A.; Lorenz, J.; Lorenzo Martinez, N.; Lory, A. M.; Losada, M.; Lösel, P. J.; Lösle, A.; Lou, X.; Lou, X.; Lounis, A.; Love, J.; Love, P. A.; Lozano Bahilo, J. J.; Lu, M.; Lu, Y. J.; Lubatti, H. J.; Luci, C.; Lucotte, A.; Luedtke, C.; Luehring, F.; Luise, I.; Luminari, L.; Lund-Jensen, B.; Lutz, M. S.; Lynn, D.; Lyons, H.; Lysak, R.; Lytken, E.; Lyu, F.; Lyubushkin, V.; Lyubushkina, T.; Ma, H.; Ma, L. L.; Ma, Y.; Maccarrone, G.; Macchiolo, A.; Macdonald, C. M.; Machado Miguens, J.; Madaffari, D.; Madar, R.; Mader, W. F.; Madysa, N.; Maeda, J.; Maeno, T.; Maerker, M.; Maevskiy, A. S.; Magerl, V.; Magini, N.; Mahon, D. J.; Maidantchik, C.; Maier, T.; Maio, A.; Maj, K.; Majersky, O.; Majewski, S.; Makida, Y.; Makovec, N.; Malaescu, B.; Malecki, P.; Maleev, V. P.; Malek, F.; Mallik, U.; Malon, D.; Malone, C.; Maltezos, S.; Malyukov, S.; Mamuzic, J.; Mancini, G.; Mandić, I.; Manhaes de Andrade Filho, L.; Maniatis, I. M.; Manjarres Ramos, J.; Mankinen, K. H.; Mann, A.; Manousos, A.; Mansoulie, B.; Manthos, I.; Manzoni, S.; Marantis, A.; Marceca, G.; Marchese, L.; Marchiori, G.; Marcisovsky, M.; Marcoccia, L.; Marcon, C.; Marin Tobon, C. A.; Marjanovic, M.; Marshall, Z.; Martensson, M. U.; Marti-Garcia, S.; Martin, C. B.; Martin, T. A.; Martin, V. J.; Martin Dit Latour, B.; Martinelli, L.; Martinez, M.; Martinez Outschoorn, V. I.; Martin-Haugh, S.; Martoiu, V. S.; Martyniuk, A. C.; Marzin, A.; Maschek, S. R.; Masetti, L.; Mashimo, T.; Mashinistov, R.; Masik, J.; Maslennikov, A. L.; Massa, L.; Massarotti, P.; Mastrandrea, P.; Mastroberardino, A.; Masubuchi, T.; Matakias, D.; Matic, A.; Matsuzawa, N.; Mättig, P.; Maurer, J.; Maček, B.; Maximov, D. A.; Mazini, R.; Maznas, I.; Mazza, S. M.; Mc Kee, S. P.; McCarthy, T. G.; McCormack, W. P.; McDonald, E. F.; Mcfayden, J. A.; Mchedlidze, G.; McKay, M. A.; McLean, K. D.; McMahon, S. J.; McNamara, P. C.; McNicol, C. J.; McPherson, R. A.; Mdhluli, J. E.; Meadows, Z. A.; Meehan, S.; Megy, T.; Mehlhase, S.; Mehta, A.; Meideck, T.; Meirose, B.; Melini, D.; Mellado Garcia, B. R.; Mellenthin, J. D.; Melo, M.; Meloni, F.; Melzer, A.; Menary, S. B.; Mendes Gouveia, E. D.; Meng, L.; Meng, X. T.; Menke, S.; Meoni, E.; Mergelmeyer, S.; Merkt, S. A.; Merlassino, C.; Mermod, P.; Merola, L.; Meroni, C.; Merz, G.; Meshkov, O.; Meshreki, J. K.; Messina, A.; Metcalfe, J.; Mete, A. S.; Meyer, C.; Meyer, J. P.; Meyer Zu Theenhausen, H.; Miano, F.; Michetti, M.; Middleton, R. P.; Mijović, L.; Mikenberg, G.; Mikestikova, M.; Mikuž, M.; Mildner, H.; Milesi, M.; Milic, A.; Millar, D. A.; Miller, D. W.; Milov, A.; Milstead, D. A.; Mina, R. A.; Minaenko, A. A.; Miñano Moya, M.; Minashvili, I. A.; Mincer, A. I.; Mindur, B.; Mineev, M.; Minegishi, Y.; Mir, L. M.; Mirto, A.; Mistry, K. P.; Mitani, T.; Mitrevski, J.; Mitsou, V. A.; Mittal, M.; Miu, O.; Miucci, A.; Miyagawa, P. S.; Mizukami, A.; Mjörnmark, J. U.; Mkrtchyan, T.; Mlynarikova, M.; Moa, T.; Mochizuki, K.; Mogg, P.; Mohapatra, S.; Moles-Valls, R.; Mondragon, M. C.; Mönig, K.; Monk, J.; Monnier, E.; Montalbano, A.; Montejo Berlingen, J.; Montella, M.; Monticelli, F.; Monzani, S.; Morange, N.; Moreno, D.; Moreno Llácer, M.; Moreno Martinez, C.; Morettini, P.; Morgenstern, M.; Morgenstern, S.; Mori, D.; Morii, M.; Morinaga, M.; Morisbak, V.; Morley, A. K.; Mornacchi, G.; Morris, A. P.; Morvaj, L.; Moschovakos, P.; Moser, B.; Mosidze, M.; Moskalets, T.; Moss, H. J.; Moss, J.; Moyse, E. J.; Muanza, S.; Mueller, J.; Mueller, R. S.; Muenstermann, D.; Mullier, G. A.; Mungo, D. P.; Munoz Martinez, J. L.; Munoz Sanchez, F. J.; Murin, P.; Murray, W. J.; Murrone, A.; Muškinja, M.; Mwewa, C.; Myagkov, A. G.; Myers, A. A.; Myers, J.; Myska, M.; Nachman, B. P.; Nackenhorst, O.; Nag, A. N.; Nagai, K.; Nagano, K.; Nagasaka, Y.; Nagle, J. L.; Nagy, E.; Nairz, A. M.; Nakahama, Y.; Nakamura, K.; Nakamura, T.; Nakano, I.; Nanjo, H.; Napolitano, F.; Naranjo Garcia, R. F.; Narayan, R.; Naryshkin, I.; Naumann, T.; Navarro, G.; Nechaeva, P. Y.; Nechansky, F.; Neep, T. J.; Negri, A.; Negrini, M.; Nellist, C.; Nelson, M. E.; Nemecek, S.; Nemethy, P.; Nessi, M.; Neubauer, M. S.; Neumann, M.; Newhouse, R.; Newman, P. R.; Ng, Y. S.; Ng, Y. W.; Ngair, B.; Nguyen, H. D.; Nguyen Manh, T.; Nibigira, E.; Nickerson, R. B.; Nicolaidou, R.; Nielsen, D. S.; Nielsen, J.; Nikiforou, N.; Nikolaenko, V.; Nikolic-Audit, I.; Nikolopoulos, K.; Nilsson, P.; Nindhito, H. R.; Ninomiya, Y.; Nisati, A.; Nishu, N.; Nisius, R.; Nitsche, I.; Nitta, T.; Nobe, T.; Noguchi, Y.; Nomidis, I.; Nomura, M. A.; Nordberg, M.; Norjoharuddeen, N.; Novak, T.; Novgorodova, O.; Novotny, R.; Nozka, L.; Ntekas, K.; Nurse, E.; Oakham, F. G.; Oberlack, H.; Ocariz, J.; Ochi, A.; Ochoa, I.; Ochoa-Ricoux, J. P.; O'Connor, K.; Oda, S.; Odaka, S.; Oerdek, S.; Ogrodnik, A.; Oh, A.; Oh, S. H.; Ohm, C. C.; Oide, H.; Ojeda, M. L.; Okawa, H.; Okazaki, Y.; O'Keefe, M. W.; Okumura, Y.; Okuyama, T.; Olariu, A.; Oleiro Seabra, L. F.; Olivares Pino, S. A.; Oliveira Damazio, D.; Oliver, J. L.; Olsson, M. J.; Olszewski, A.; Olszowska, J.; O'Neil, D. C.; O'neill, A. P.; Onofre, A.; Onyisi, P. U.; Oppen, H.; Oreglia, M. J.; Orellana, G. E.; Orestano, D.; Orlando, N.; Orr, R. S.; O'Shea, V.; Ospanov, R.; Otero Y Garzon, G.; Otono, H.; Ott, P. S.; Ouchrif, M.; Ouellette, J.; Ould-Saada, F.; Ouraou, A.; Ouyang, Q.; Owen, M.; Owen, R. E.; Ozcan, V. E.; Ozturk, N.; Pacalt, J.; Pacey, H. A.; Pachal, K.; Pacheco Pages, A.; Padilla Aranda, C.; Pagan Griso, S.; Paganini, M.; Palacino, G.; Palazzo, S.; Palestini, S.; Palka, M.; Pallin, D.; Panagoulias, I.; Pandini, C. E.; Panduro Vazquez, J. G.; Pani, P.; Panizzo, G.; Paolozzi, L.; Papadatos, C.; Papageorgiou, K.; Parajuli, S.; Paramonov, A.; Paredes Hernandez, D.; Paredes Saenz, S. R.; Parida, B.; Park, T. H.; Parker, A. J.; Parker, M. A.; Parodi, F.; Parrish, E. W.; Parsons, J. A.; Parzefall, U.; Pascual Dominguez, L.; Pascuzzi, V. R.; Pasner, J. M.; Pasquali, F.; Pasqualucci, E.; Passaggio, S.; Pastore, F.; Pasuwan, P.; Pataraia, S.; Pater, J. R.; Pathak, A.; Pauly, T.; Pearkes, J.; Pearson, B.; Pedersen, M.; Pedraza Diaz, L.; Pedro, R.; Peiffer, T.; Peleganchuk, S. V.; Penc, O.; Peng, H.; Peralva, B. S.; Perego, M. M.; Pereira Peixoto, A. P.; Perepelitsa, D. V.; Peri, F.; Perini, L.; Pernegger, H.; Perrella, S.; Perrevoort, A.; Peters, K.; Peters, R. F.; Petersen, B. A.; Petersen, T. C.; Petit, E.; Petridis, A.; Petridou, C.; Petroff, P.; Petrov, M.; Petrucci, F.; Pettee, M.; Pettersson, N. E.; Petukhova, K.; Peyaud, A.; Pezoa, R.; Pezzotti, L.; Pham, T.; Phillips, F. H.; Phillips, P. W.; Phipps, M. W.; Piacquadio, G.; Pianori, E.; Picazio, A.; Pickles, R. H.; Piegaia, R.; Pietreanu, D.; Pilcher, J. E.; Pilkington, A. D.; Pinamonti, M.; Pinfold, J. L.; Pitt, M.; Pizzimento, L.; Pleier, M. A.; Pleskot, V.; Plotnikova, E.; Podberezko, P.; Poettgen, R.; Poggi, R.; Poggioli, L.; Pogrebnyak, I.; Pohl, D.; Pokharel, I.; Polesello, G.; Poley, A.; Policicchio, A.; Polifka, R.; Polini, A.; Pollard, C. S.; Polychronakos, V.; Ponomarenko, D.; Pontecorvo, L.; Popa, S.; Popeneciu, G. A.; Portales, L.; Portillo Quintero, D. M.; Pospisil, S.; Potamianos, K.; Potrap, I. N.; Potter, C. J.; Potti, H.; Poulsen, T.; Poveda, J.; Powell, T. D.; Pownall, G.; Pozo Astigarraga, M. E.; Pralavorio, P.; Prell, S.; Price, D.; Primavera, M.; Prince, S.; Proffitt, M. L.; Proklova, N.; Prokofiev, K.; Prokoshin, F.; Protopopescu, S.; Proudfoot, J.; Przybycien, M.; Pudzha, D.; Puri, A.; Puzo, P.; Qian, J.; Qin, Y.; Quadt, A.; Queitsch-Maitland, M.; Qureshi, A.; Racko, M.; Ragusa, F.; Rahal, G.; Raine, J. A.; Rajagopalan, S.; Ramirez Morales, A.; Ran, K.; Rashid, T.; Raspopov, S.; Rauch, D. M.; Rauscher, F.; Rave, S.; Ravina, B.; Ravinovich, I.; Rawling, J. H.; Raymond, M.; Read, A. L.; Readioff, N. P.; Reale, M.; Rebuzzi, D. M.; Redelbach, A.; Redlinger, G.; Reeves, K.; Rehnisch, L.; Reichert, J.; Reikher, D.; Reiss, A.; Rej, A.; Rembser, C.; Renda, M.; Rescigno, M.; Resconi, S.; Resseguie, E. D.; Rettie, S.; Reynolds, B.; Reynolds, E.; Rezanova, O. L.; Reznicek, P.; Ricci, E.; Richter, R.; Richter, S.; Richter-Was, E.; Ricken, O.; Ridel, M.; Rieck, P.; Rifki, O.; Rijssenbeek, M.; Rimoldi, A.; Rimoldi, M.; Rinaldi, L.; Ripellino, G.; Riu, I.; Rivera Vergara, J. C.; Rizatdinova, F.; Rizvi, E.; Rizzi, C.; Roberts, R. T.; Robertson, S. H.; Robin, M.; Robinson, D.; Robinson, J. E.; Robles Gajardo, C. M.; Robson, A.; Rocchi, A.; Rocco, E.; Roda, C.; Rodriguez Bosca, S.; Rodriguez Perez, A.; Rodriguez Rodriguez, D.; Rodríguez Vera, A. M.; Roe, S.; Røhne, O.; Röhrig, R.; Rojas, R. A.; Roland, C. P.; Roloff, J.; Romaniouk, A.; Romano, M.; Rompotis, N.; Ronzani, M.; Roos, L.; Rosati, S.; Rosin, G.; Rosser, B. J.; Rossi, E.; Rossi, E.; Rossi, E.; Rossi, L. P.; Rossini, L.; Rosten, R.; Rotaru, M.; Rothberg, J.; Rousseau, D.; Rovelli, G.; Roy, A.; Roy, D.; Rozanov, A.; Rozen, Y.; Ruan, X.; Rühr, F.; Ruiz-Martinez, A.; Rummler, A.; Rurikova, Z.; Rusakovich, N. A.; Russell, H. L.; Rustige, L.; Rutherfoord, J. P.; Rüttinger, E. M.; Rybar, M.; Rybkin, G.; Rye, E. B.; Ryzhov, A.; Sabater Iglesias, J. A.; Sabatini, P.; Sabato, G.; Sacerdoti, S.; Sadrozinski, H. F.; Sadykov, R.; Safai Tehrani, F.; Safarzadeh Samani, B.; Saha, P.; Saha, S.; Sahinsoy, M.; Sahu, A.; Saimpert, M.; Saito, M.; Saito, T.; Sakamoto, H.; Sakharov, A.; Salamani, D.; Salamanna, G.; Salazar Loyola, J. E.; Salnikov, A.; Salt, J.; Salvatore, D.; Salvatore, F.; Salvucci, A.; Salzburger, A.; Samarati, J.; Sammel, D.; Sampsonidis, D.; Sampsonidou, D.; Sánchez, J.; Sanchez Pineda, A.; Sandaker, H.; Sander, C. O.; Sanderswood, I. G.; Sandhoff, M.; Sandoval, C.; Sankey, D. P.; Sannino, M.; Sano, Y.; Sansoni, A.; Santoni, C.; Santos, H.; Santpur, S. N.; Santra, A.; Sapronov, A.; Saraiva, J. G.; Sasaki, O.; Sato, K.; Sauerburger, F.; Sauvan, E.; Savard, P.; Savic, N.; Sawada, R.; Sawyer, C.; Sawyer, L.; Sbarra, C.; Sbrizzi, A.; Scanlon, T.; Schaarschmidt, J.; Schacht, P.; Schachtner, B. M.; Schaefer, D.; Schaefer, L.; Schaeffer, J.; Schaepe, S.; Schäfer, U.; Schaffer, A. C.; Schaile, D.; Schamberger, R. D.; Scharmberg, N.; Schegelsky, V. A.; Scheirich, D.; Schenck, F.; Schernau, M.; Schiavi, C.; Schier, S.; Schildgen, L. K.; Schillaci, Z. M.; Schioppa, E. J.; Schioppa, M.; Schleicher, K. E.; Schlenker, S.; Schmidt-Sommerfeld, K. R.; Schmieden, K.; Schmitt, C.; Schmitt, S.; Schmitz, S.; Schmoeckel, J. C.; Schnoor, U.; Schoeffel, L.; Schoening, A.; Scholer, P. G.; Schopf, E.; Schott, M.; Schouwenberg, J. F.; Schovancova, J.; Schramm, S.; Schroeder, F.; Schulte, A.; Schultz-Coulon, H. C.; Schumacher, M.; Schumm, B. A.; Schune, P.; Schwartzman, A.; Schwarz, T. A.; Schwemling, P.; Schwienhorst, R.; Sciandra, A.; Sciolla, G.; Scodeggio, M.; Scornajenghi, M.; Scuri, F.; Scutti, F.; Scyboz, L. M.; Sebastiani, C. D.; Seema, P.; Seidel, S. C.; Seiden, A.; Seidlitz, B. D.; Seiss, T.; Seixas, J. M.; Sekhniaidze, G.; Sekhon, K.; Sekula, S. J.; Semprini-Cesari, N.; Sen, S.; Serfon, C.; Serin, L.; Serkin, L.; Sessa, M.; Severini, H.; Šfiligoj, T.; Sforza, F.; Sfyrla, A.; Shabalina, E.; Shahinian, J. D.; Shaikh, N. W.; Shaked Renous, D.; Shan, L. Y.; Shank, J. T.; Shapiro, M.; Sharma, A.; Sharma, A. S.; Shatalov, P. B.; Shaw, K.; Shaw, S. M.; Shehade, M.; Shen, Y.; Sherman, A. D.; Sherwood, P.; Shi, L.; Shimizu, S.; Shimmin, C. O.; Shimogama, Y.; Shimojima, M.; Shipsey, I. P.; Shirabe, S.; Shiyakova, M.; Shlomi, J.; Shmeleva, A.; Shochet, M. J.; Shojaii, J.; Shope, D. R.; Shrestha, S.; Shrif, E. M.; Shulga, E.; Sicho, P.; Sickles, A. M.; Sidebo, P. E.; Sideras Haddad, E.; Sidiropoulou, O.; Sidoti, A.; Siegert, F.; Sijacki, D.; Silva, M.; Silva Oliveira, M. V.; Silverstein, S. B.; Simion, S.; Simoniello, R.; Simsek, S.; Sinervo, P.; Sinetckii, V.; Sinev, N. B.; Singh, S.; Sioli, M.; Siral, I.; Sivoklokov, S. Y.; Sjölin, J.; Skorda, E.; Skubic, P.; Slawinska, M.; Sliwa, K.; Slovak, R.; Smakhtin, V.; Smart, B. H.; Smiesko, J.; Smirnov, N.; Smirnov, S. Y.; Smirnov, Y.; Smirnova, L. N.; Smirnova, O.; Smith, J. W.; Smizanska, M.; Smolek, K.; Smykiewicz, A.; Snesarev, A. A.; Snoek, H. L.; Snyder, I. M.; Snyder, S.; Sobie, R.; Soffer, A.; Søgaard, A.; Sohns, F.; Solans Sanchez, C. A.; Soldatov, E. Y.; Soldevila, U.; Solodkov, A. A.; Soloshenko, A.; Solovyanov, O. V.; Solovyev, V.; Sommer, P.; Son, H.; Song, W.; Song, W. Y.; Sopczak, A.; Sopio, A. L.; Sopkova, F.; Sotiropoulou, C. L.; Sottocornola, S.; Soualah, R.; Soukharev, A. M.; South, D.; Spagnolo, S.; Spalla, M.; Spangenberg, M.; Spanò, F.; Sperlich, D.; Spieker, T. M.; Spighi, R.; Spigo, G.; Spina, M.; Spiteri, D. P.; Spousta, M.; Stabile, A.; Stamas, B. L.; Stamen, R.; Stamenkovic, M.; Stanecka, E.; Stanislaus, B.; Stanitzki, M. M.; Stankaityte, M.; Stapf, B.; Starchenko, E. A.; Stark, G. H.; Stark, J.; Stark, S. H.; Staroba, P.; Starovoitov, P.; Stärz, S.; Staszewski, R.; Stavropoulos, G.; Stegler, M.; Steinberg, P.; Steinhebel, A. L.; Stelzer, B.; Stelzer, H. J.; Stelzer-Chilton, O.; Stenzel, H.; Stevenson, T. J.; Stewart, G. A.; Stockton, M. C.; Stoicea, G.; Stolarski, M.; Stonjek, S.; Straessner, A.; Strandberg, J.; Strandberg, S.; Strauss, M.; Strizenec, P.; Ströhmer, R.; Strom, D. M.; Stroynowski, R.; Strubig, A.; Stucci, S. A.; Stugu, B.; Stupak, J.; Styles, N. A.; Su, D.; Suchek, S.; Sulin, V. V.; Sullivan, M. J.; Sultan, D. M.; Sultansoy, S.; Sumida, T.; Sun, S.; Sun, X.; Suruliz, K.; Suster, C. J.; Sutton, M. R.; Suzuki, S.; Svatos, M.; Swiatlowski, M.; Swift, S. P.; Swirski, T.; Sydorenko, A.; Sykora, I.; Sykora, M.; Sykora, T.; Ta, D.; Tackmann, K.; Taenzer, J.; Taffard, A.; Tafirout, R.; Takai, H.; Takashima, R.; Takeda, K.; Takeshita, T.; Takeva, E. P.; Takubo, Y.; Talby, M.; Talyshev, A. A.; Tamir, N. M.; Tanaka, J.; Tanaka, M.; Tanaka, R.; Tapia Araya, S.; Tapprogge, S.; Tarek Abouelfadl Mohamed, A.; Tarem, S.; Tariq, K.; Tarna, G.; Tartarelli, G. F.; Tas, P.; Tasevsky, M.; Tashiro, T.; Tassi, E.; Tavares Delgado, A.; Tayalati, Y.; Taylor, A. J.; Taylor, G. N.; Taylor, W.; Tee, A. S.; Teixeira De Lima, R.; Teixeira-Dias, P.; Ten Kate, H.; Teoh, J. J.; Terada, S.; Terashi, K.; Terron, J.; Terzo, S.; Testa, M.; Teuscher, R. J.; Thais, S. J.; Theveneaux-Pelzer, T.; Thiele, F.; Thomas, D. W.; Thomas, J. O.; Thomas, J. P.; Thompson, A. S.; Thompson, P. D.; Thomsen, L. A.; Thomson, E.; Thorpe, E. J.; Ticse Torres, R. E.; Tikhomirov, V. O.; Tikhonov, Y. A.; Timoshenko, S.; Tipton, P.; Tisserant, S.; Todome, K.; Todorova-Nova, S.; Todt, S.; Tojo, J.; Tokár, S.; Tokushuku, K.; Tolley, E.; Tomiwa, K. G.; Tomoto, M.; Tompkins, L.; Tong, B.; Tornambe, P.; Torrence, E.; Torres, H.; Torró Pastor, E.; Tosciri, C.; Toth, J.; Tovey, D. R.; Traeet, A.; Treado, C. J.; Trefzger, T.; Tresoldi, F.; Tricoli, A.; Trigger, I. M.; Trincaz-Duvoid, S.; Trischuk, D. A.; Trischuk, W.; Trocmé, B.; Trofymov, A.; Troncon, C.; Trovatelli, M.; Trovato, F.; Truong, L.; Trzebinski, M.; Trzupek, A.; Tsai, F.; Tseng, J. C.; Tsiareshka, P. V.; Tsirigotis, A.; Tsiskaridze, V.; Tskhadadze, E. G.; Tsopoulou, M.; Tsukerman, I. I.; Tsulaia, V.; Tsuno, S.; Tsybychev, D.; Tu, Y.; Tudorache, A.; Tudorache, V.; Tulbure, T. T.; Tuna, A. N.; Turchikhin, S.; Turgeman, D.; Turk Cakir, I.; Turner, R. J.; Turra, R. T.; Tuts, P. M.; Tzamarias, S.; Tzovara, E.; Ucchielli, G.; Uchida, K.; Ueda, I.; Ukegawa, F.; Unal, G.; Undrus, A.; Unel, G.; Ungaro, F. C.; Unno, Y.; Uno, K.; Urban, J.; Urquijo, P.; Usai, G.; Uysal, Z.; Vacek, V.; Vachon, B.; Vadla, K. O.; Vaidya, A.; Valderanis, C.; Valdes Santurio, E.; Valente, M.; Valentinetti, S.; Valero, A.; Valéry, L.; Vallance, R. A.; Vallier, A.; Valls Ferrer, J. A.; Van Daalen, T. R.; Van Gemmeren, P.; Van Vulpen, I.; Vanadia, M.; Vandelli, W.; Vandenbroucke, M.; Vandewall, E. R.; Vaniachine, A.; Vannicola, D.; Vari, R.; Varnes, E. W.; Varni, C.; Varol, T.; Varouchas, D.; Varvell, K. E.; Vasile, M. E.; Vasquez, G. A.; Vazeille, F.; Vazquez Furelos, D.; Vazquez Schroeder, T.; Veatch, J.; Vecchio, V.; Veen, M. J.; Veloce, L. M.; Veloso, F.; Veneziano, S.; Ventura, A.; Venturi, N.; Verbytskyi, A.; Vercesi, V.; Verducci, M.; Vergel Infante, C. M.; Vergis, C.; Verkerke, W.; Vermeulen, A. T.; Vermeulen, J. C.; Vetterli, M. C.; Viaux Maira, N.; Vicente Barreto Pinto, M.; Vickey, T.; Vickey Boeriu, O. E.; Viehhauser, G. H.; Vigani, L.; Villa, M.; Villaplana Perez, M.; Vilucchi, E.; Vincter, M. G.; Virdee, G. S.; Vishwakarma, A.; Vittori, C.; Vivarelli, I.; Vogel, M.; Vokac, P.; von Buddenbrock, S. E.; Von Toerne, E.; Vorobel, V.; Vorobev, K.; Vos, M.; Vossebeld, J. H.; Vozak, M.; Vranjes, N.; Vranjes Milosavljevic, M.; Vrba, V.; Vreeswijk, M.; Vuillermet, R.; Vukotic, I.; Wagner, P.; Wagner, W.; Wagner-Kuhr, J.; Wahdan, S.; Wahlberg, H.; Walbrecht, V. M.; Walder, J.; Walker, R.; Walker, S. D.; Walkowiak, W.; Wallangen, V.; Wang, A. M.; Wang, C.; Wang, C.; Wang, F.; Wang, H.; Wang, H.; Wang, J.; Wang, J.; Wang, J.; Wang, P.; Wang, Q.; Wang, R. J.; Wang, R.; Wang, R.; Wang, S. M.; Wang, W. T.; Wang, W.; Wang, W. X.; Wang, Y.; Wang, Z.; Wanotayaroj, C.; Warburton, A.; Ward, C. P.; Wardrope, D. R.; Warrack, N.; Washbrook, A.; Watson, A. T.; Watson, M. F.; Watts, G.; Waugh, B. M.; Webb, A. F.; Webb, S.; Weber, C.; Weber, M. S.; Weber, S. A.; Weber, S. M.; Weidberg, A. R.; Weingarten, J.; Weirich, M.; Weiser, C.; Wells, P. S.; Wenaus, T.; Wengler, T.; Wenig, S.; Wermes, N.; Werner, M. D.; Wessels, M.; Weston, T. D.; Whalen, K.; Whallon, N. L.; Wharton, A. M.; White, A. S.; White, A.; White, M. J.; Whiteson, D.; Whitmore, B. W.; Wiedenmann, W.; Wielers, M.; Wieseotte, N.; Wiglesworth, C.; Wiik-Fuchs, L. A.; Wilk, F.; Wilkens, H. G.; Wilkins, L. J.; Williams, H. H.; Williams, S.; Willis, C.; Willocq, S.; Wilson, J. A.; Wingerter-Seez, I.; Winkels, E.; Winklmeier, F.; Winston, O. J.; Winter, B. T.; Wittgen, M.; Wobisch, M.; Wolf, A.; Wolf, T. M.; Wolff, R.; Wölker, R.; Wollrath, J.; Wolter, M. W.; Wolters, H.; Wong, V. W.; Woods, N. L.; Worm, S. D.; Wosiek, B. K.; Woźniak, K. W.; Wraight, K.; Wu, S. L.; Wu, X.; Wu, Y.; Wyatt, T. R.; Wynne, B. M.; Xella, S.; Xi, Z.; Xia, L.; Xiao, X.; Xiotidis, I.; Xu, D.; Xu, H.; Xu, L.; Xu, T.; Xu, W.; Xu, Z.; Xu, Z.; Yabsley, B.; Yacoob, S.; Yajima, K.; Yallup, D. P.; Yamaguchi, N.; Yamaguchi, Y.; Yamamoto, A.; Yamatani, M.; Yamazaki, T.; Yamazaki, Y.; Yan, Z.; Yang, H. J.; Yang, H. T.; Yang, S.; Yang, X.; Yang, Y.; Yao, W. M.; Yap, Y. C.; Yasu, Y.; Yatsenko, E.; Ye, J.; Ye, S.; Yeletskikh, I.; Yexley, M. R.; Yigitbasi, E.; Yorita, K.; Yoshihara, K.; Young, C. J.; Young, C.; Yu, J.; Yuan, R.; Yue, X.; Yuen, S. P.; Zaazoua, M.; Zabinski, B.; Zacharis, G.; Zaffaroni, E.; Zahreddine, J.; Zaitsev, A. M.; Zakareishvili, T.; Zakharchuk, N.; Zambito, S.; Zanzi, D.; Zaripovas, D. R.; Zeißner, S. V.; Zeitnitz, C.; Zemaityte, G.; Zeng, J. C.; Zenin, O.; Ženiš, T.; Zerwas, D.; Zgubič, M.; Zhang, B.; Zhang, D. F.; Zhang, G.; Zhang, H.; Zhang, J.; Zhang, L.; Zhang, L.; Zhang, M.; Zhang, R.; Zhang, S.; Zhang, X.; Zhang, Y.; Zhang, Z.; Zhang, Z.; Zhao, P.; Zhao, Y.; Zhao, Z.; Zhemchugov, A.; Zheng, Z.; Zhong, D.; Zhou, B.; Zhou, C.; Zhou, M. S.; Zhou, M.; Zhou, N.; Zhou, Y.; Zhu, C. G.; Zhu, C.; Zhu, H. L.; Zhu, H.; Zhu, J.; Zhu, Y.; Zhuang, X.; Zhukov, K.; Zhulanov, V.; Zieminska, D.; Zimine, N. I.; Zimmermann, S.; Zinonos, Z.; Ziolkowski, M.; Živković, L.; Zobernig, G.; Zoccoli, A.; Zoch, K.; Zorbas, T. G.; Zou, R.; Zwalinski, L. Measurement of the Lund Jet Plane Using Charged Particles in 13 TeV Proton-Proton Collisions with the ATLAS Detector. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.124.222002.
734|sucess-download|Li, W.; Zhu, H. W.; Chen, Y. J.; Xiao, H.; Ge, Y. Z.; Hu, H. E.; Li, X. L.; Cao, Y. Bioactivity-guided isolation of anti-inflammatory components from Food science & nutrition. 2020. https://doi.org/10.1002/fsn3.1553.
735|sucess-download|Sun, H.; Calabrese, E. J.; Lin, Z.; Lian, B.; Zhang, X. Similarities between the Yin/Yang Doctrine and Hormesis in Toxicology and Pharmacology. Trends in pharmacological sciences. 2020. https://doi.org/10.1016/j.tips.2020.05.004.
736|sucess-download|Mandalaywala, T. M. Does essentialism lead to racial prejudice? It is not so Black and White. Advances in child development and behavior. 2020. https://doi.org/10.1016/bs.acdb.2020.05.007.
737|sucess-download|Parma, V.; Ohla, K.; Veldhuizen, M. G.; Niv, M. Y.; Kelly, C. E.; Bakke, A. J.; Cooper, K. W.; Bouysset, C.; Pirastu, N.; Dibattista, M.; Kaur, R.; Liuzza, M. T.; Pepino, M. Y.; Schöpf, V.; Pereda-Loth, V.; Olsson, S. B.; Gerkin, R. C.; Rohlfs Domínguez, P.; Albayay, J.; Farruggia, M. C.; Bhutani, S.; Fjaeldstad, A. W.; Kumar, R.; Menini, A.; Bensafi, M.; Sandell, M.; Konstantinidis, I.; Di Pizio, A.; Genovese, F.; Öztürk, L.; Thomas-Danguin, T.; Frasnelli, J.; Boesveldt, S.; Saatci, Ö.; Saraiva, L. R.; Lin, C.; Golebiowski, J.; Hwang, L. D.; Ozdener, M. H.; Guàrdia, M. D.; Laudamiel, C.; Ritchie, M.; Havlícek, J.; Pierron, D.; Roura, E.; Navarro, M.; Nolden, A. A.; Lim, J.; Whitcroft, K. L.; Colquitt, L. R.; Ferdenzi, C.; Brindha, E. V.; Altundag, A.; Macchi, A.; Nunez-Parra, A.; Patel, Z. M.; Fiorucci, S.; Philpott, C. M.; Smith, B. C.; Lundström, J. N.; Mucignat, C.; Parker, J. K.; van den Brink, M.; Schmuker, M.; Fischmeister, F. P.; Heinbockel, T.; Shields, V. D.; Faraji, F.; Santamaría, E.; Fredborg, W. E.; Morini, G.; Olofsson, J. K.; Jalessi, M.; Karni, N.; D'Errico, A.; Alizadeh, R.; Pellegrino, R.; Meyer, P.; Huart, C.; Chen, B.; Soler, G. M.; Alwashahi, M. K.; Welge-Lüssen, A.; Freiherr, J.; de Groot, J. H.; Klein, H.; Okamoto, M.; Singh, P. B.; Hsieh, J. W.; Reed, D. R.; Hummel, T.; Munger, S. D.; Hayes, J. E. More Than Smell-COVID-19 Is Associated With Severe Impairment of Smell, Taste, and Chemesthesis. Chemical senses. 2020. https://doi.org/10.1093/chemse/bjaa041.
738|sucess-download|Hall, K. S.; Hyde, E. T.; Bassett, D. R.; Carlson, S. A.; Carnethon, M. R.; Ekelund, U.; Evenson, K. R.; Galuska, D. A.; Kraus, W. E.; Lee, I. M.; Matthews, C. E.; Omura, J. D.; Paluch, A. E.; Thomas, W. I.; Fulton, J. E. Systematic review of the prospective association of daily step counts with risk of mortality, cardiovascular disease, and dysglycemia. The international journal of behavioral nutrition and physical activity. 2020. https://doi.org/10.1186/s12966-020-00978-9.
739|sucess-download|Hunyadi, J.; Currier, T.; Modarres-Sadeghi, Y.; Flammang, B. E.; Clotfelter, E. D. Morphology, performance and fluid dynamics of the crayfish escape response. The Journal of experimental biology. 2020. https://doi.org/10.1242/jeb.219873.
740|sucess-download|Zheng, B.; McClements, D. J. Formulation of More Efficacious Curcumin Delivery Systems Using Colloid Science: Enhanced Solubility, Stability, and Bioavailability. Molecules (Basel, Switzerland). 2020. https://doi.org/10.3390/molecules25122791.
741|sucess-download|Piñero, J. C.; Shapiro-Ilan, D.; Cooley, D. R.; Tuttle, A. F.; Eaton, A.; Drohan, P.; Leahy, K.; Zhang, A.; Hancock, T.; Wallingford, A. K.; Leskey, T. C. Toward the Integration of an Attract-and-Kill Approach with Entomopathogenic Nematodes to Control Multiple Life Stages of Plum Curculio (Coleoptera: Curculionidae). Insects. 2020. https://doi.org/10.3390/insects11060375.
742|shorty-download|Fowler, A. E.; Irwin, R. E.; Adler, L. S. Parasite defense mechanisms in bees: behavior, immunity, antimicrobials, and symbionts. Emerging topics in life sciences. 2020. https://doi.org/10.1042/ETLS20190069.
743|shorty-download|Troy, L. M. Insights into improving diet quality among postmenopausal women: a matter of context. Menopause (New York, N.Y.). 2020. https://doi.org/10.1097/GME.0000000000001594.
744|sucess-download|Lian, F.; Yu, W.; Zhou, Q.; Gu, S.; Wang, Z.; Xing, B. Size Matters: Nano-Biochar Triggers Decomposition and Transformation Inhibition of Antibiotic Resistance Genes in Aqueous Environments. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c02227.
745|sucess-download|Liu, M.; Fan, P.; Hu, Q.; Russell, T. P.; Liu, Y. Naphthalene-Diimide-Based Ionenes as Universal Interlayers for Efficient Organic Solar Cells. Angewandte Chemie (International ed. in English). 2020. https://doi.org/10.1002/anie.202004432.
746|failed-download|Liu, M.; Fan, P.; Hu, Q.; Russell, T. P.; Liu, Y. Naphthalene-Diimide-Based Ionenes as Universal Interlayers for Efficient Organic Solar Cells. Angewandte Chemie (International ed. in English). 2020. https://doi.org/10.1002/anie.202004432.
747|shorty-download|Hosein, H. I.; Moore, M. D.; Abdel-Moneim, A. S. Known SARS-CoV-2 infections: The tip of an important iceberg. The International journal of health planning and management. 2020. https://doi.org/10.1002/hpm.3006.
748|sucess-download|Lu, W.; Metz, R. B.; Troy, T. P.; Kostko, O.; Ahmed, M. Exciton energy transfer reveals spectral signatures of excited states in clusters. Physical chemistry chemical physics : PCCP. 2020. https://doi.org/10.1039/d0cp02042g.
749|sucess-download|Hilbrecht, M.; Baxter, D.; Abbott, M.; Binde, P.; Clark, L.; Hodgins, D. C.; Manitowabi, D.; Quilty, L.; SpÅngberg, J.; Volberg, R.; Walker, D.; Williams, R. J. The Conceptual Framework of Harmful Gambling: A revised framework for understanding gambling harm. Journal of behavioral addictions. 2020. https://doi.org/10.1556/2006.2020.00024.
750|sucess-download|Velez-Perez, A.; Holder, M. K.; Fountain, S.; Blaustein, J. D. Estradiol Increases Microglial Response to Lipopolysaccharide in the Ventromedial Hypothalamus during the Peripubertal Sensitive Period in Female Mice. eNeuro. 2020. https://doi.org/10.1523/ENEURO.0505-19.2020.
751|sucess-download|McKinnell, J. A.; Miller, L. G.; Singh, R. D.; Gussin, G.; Kleinman, K.; Mendez, J.; Laurner, B.; Catuna, T. D.; Heim, L.; Saavedra, R.; Felix, J.; Torres, C.; Chang, J.; Estevez, M.; Mendez, J.; Tchakalian, G.; Bloomfield, L.; Ceja, S.; Franco, R.; Miner, A.; Hurtado, A.; Hean, R.; Varasteh, A.; Robinson, P. A.; Park, S.; Tam, S.; Tjoa, T.; He, J.; Agrawal, S.; Yamaguchi, S.; Custodio, H.; Nguyen, J.; Bittencourt, C. E.; Evans, K. D.; Mor, V.; McConeghy, K.; Weinstein, R. A.; Hayden, M. K.; Stone, N. D.; Steinberg, K.; Beecham, N.; Montgomery, J.; DeAnn, W.; Peterson, E. M.; Huang, S. S. High Prevalence of Multidrug-Resistant Organism Colonization in 28 Nursing Homes: An "Iceberg Effect". Journal of the American Medical Directors Association. 2020. https://doi.org/10.1016/j.jamda.2020.04.007.
752|sucess-download|Alonge, M.; Wang, X.; Benoit, M.; Soyk, S.; Pereira, L.; Zhang, L.; Suresh, H.; Ramakrishnan, S.; Maumus, F.; Ciren, D.; Levy, Y.; Harel, T. H.; Shalev-Schlosser, G.; Amsellem, Z.; Razifard, H.; Caicedo, A. L.; Tieman, D. M.; Klee, H.; Kirsche, M.; Aganezov, S.; Ranallo-Benavidez, T. R.; Lemmon, Z. H.; Kim, J.; Robitaille, G.; Kramer, M.; Goodwin, S.; McCombie, W. R.; Hutton, S.; Van Eck, J.; Gillis, J.; Eshed, Y.; Sedlazeck, F. J.; van der Knaap, E.; Schatz, M. C.; Lippman, Z. B. Major Impacts of Widespread Structural Variation on Gene Expression and Crop Improvement in Tomato. Cell. 2020. https://doi.org/10.1016/j.cell.2020.05.021.
753|shorty-download|Wang, B.; Yu, H.; Jia, Y.; Dong, Q.; Steinberg, C.; Alabouvette, C.; Edel-Hermann, V.; Kistler, H. C.; Ye, K.; Ma, L. J.; Guo, L. Chromosome-Scale Genome Assembly of Molecular plant-microbe interactions : MPMI. 2020. https://doi.org/10.1094/MPMI-05-20-0116-A.
754|sucess-download|Andey, T.; Attah, M. M.; Akwaaba-Reynolds, N. A.; Cheema, S.; Parvin-Nejad, S.; Acquaah-Mensah, G. K. Enhanced immortalization, Gene: X. 2020. https://doi.org/10.1016/j.gene.2020.100030.
755|sucess-download|Streubel, R.; Liu, X.; Wu, X.; Russell, T. P. Perspective: Ferromagnetic Liquids. Materials (Basel, Switzerland). 2020. https://doi.org/10.3390/ma13122712.
756|sucess-download|Agathokleous, E.; Kitao, M.; Calabrese, E. J. Hormesis: Highly Generalizable and Beyond Laboratory. Trends in plant science. 2020. https://doi.org/10.1016/j.tplants.2020.05.006.
757|sucess-download|Calabrese, E. J. Hormesis and Ginseng: Ginseng Mixtures and Individual Constituents Commonly Display Hormesis Dose Responses, Especially for Neuroprotective Effects. Molecules (Basel, Switzerland). 2020. https://doi.org/10.3390/molecules25112719.
758|sucess-download|Sorout, A. K.; Sarkar, S.; Gangadharaiah, S. Dynamics of impurity in the environment of Dirac fermions. Journal of physics. Condensed matter : an Institute of Physics journal. 2020. https://doi.org/10.1088/1361-648X/ab9d4d.
759|sucess-download|Cools, P.; van Lieshout, L.; Koelewijn, R.; Addiss, D.; Ajjampur, S. S.; Ayana, M.; Bradbury, R. S.; Cantera, J. L.; Dana, D.; Fischer, K.; Imtiaz, R.; Kabagenyi, J.; Lok, J.; McCarthy, J.; Mejia, R.; Mekonnen, Z.; Njenga, S. M.; Othman, N.; Shao, H.; Traub, R.; Van Esbroeck, M.; Vercruysse, J.; Vlaminck, J.; Williams, S. A.; Verweij, J. J.; van Hellemond, J. J.; Levecke, B. First international external quality assessment scheme of nucleic acid amplification tests for the detection of Schistosoma and soil-transmitted helminths, including Strongyloides: A pilot study. PLoS neglected tropical diseases. 2020. https://doi.org/10.1371/journal.pntd.0008231.
760|shorty-download|Young-Mason, J. Nature Documentaries: An Antidote to Anxiety and Fear in the Time of COVID-19 Pandemic. Clinical nurse specialist CNS. 2020. https://doi.org/10.1097/NUR.0000000000000526.
761|sucess-download|Zhang, L.; Li, T.; Wang, G.; Kwang, J. S.; Nittrouer, J. A.; Fu, X.; Parker, G. How canyons evolve by incision into bedrock: Rainbow Canyon, Death Valley National Park, United States. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1911040117.
762|shorty-download|Wang, Z.; Yue, L.; Dhankher, O. P.; Xing, B. Nano-enabled improvements of growth and nutritional quality in food plants driven by rhizosphere processes. Environment international. 2020. https://doi.org/10.1016/j.envint.2020.105831.
763|sucess-download|Alkawaldeh, M. Y.; Choi, J.; Jacelon, C. S. A diabetes self-management tablet-based application for older adults with type 2 diabetes: The ASSISTwell pilot study. Geriatric nursing (New York, N.Y.). 2020. https://doi.org/10.1016/j.gerinurse.2020.05.004.
764|sucess-download|Moyer, J. K.; Finucci, B.; Riccio, M. L.; Irschick, D. J. Dental morphology and microstructure of the Prickly Dogfish Oxynotus bruniensis (Squaliformes: Oxynotidae). Journal of anatomy. 2020. https://doi.org/10.1111/joa.13251.
765|shorty-download|Amagasa, S.; Fukushima, N.; Kikuchi, H.; Oka, K.; Chastin, S.; Tudor-Locke, C.; Owen, N.; Inoue, S. Older Adults' Daily Step Counts and Time in Sedentary Behavior and Different Intensities of Physical Activity. Journal of epidemiology. 2020. https://doi.org/10.2188/jea.JE20200080.
766|sucess-download|Kuenstler, A. S.; Clark, K. D.; Read de Alaniz, J.; Hayward, R. C. Reversible Actuation via Photoisomerization-Induced Melting of a Semicrystalline Poly(Azobenzene). ACS macro letters. 2020. https://doi.org/10.1021/acsmacrolett.0c00328.
767|sucess-download|Doan, S. N.; Venkatesh, S.; Predroza, M.; Tarullo, A.; Meyer, J. S. Maternal expressive suppression moderates the relations between maternal and child hair cortisol. Developmental psychobiology. 2020. https://doi.org/10.1002/dev.21983.
768|sucess-download|Tang, H.; Chen, C. J.; Huang, Z.; Bright, J.; Meng, G.; Liu, R. S.; Wu, N. Plasmonic hot electrons for sensing, photodetection, and solar energy applications: A perspective. The Journal of chemical physics. 2020. https://doi.org/10.1063/5.0005334.
769|sucess-download|Yuan, Q. Y.; Alpert, P.; An, J.; Gao, J. Q.; Han, G. X.; Yu, F. H. Clonal integration in Phagmites australis mitigates effects of oil pollution on greenhouse gas emissions in a coastal wetland. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.140007.
770|sucess-download|Cataldo, A. M.; Cohen, A. L. Framing context effects with reference points. Cognition. 2020. https://doi.org/10.1016/j.cognition.2020.104334.
771|shorty-download|Pozzi, L.; Penna, A.; Bearder, S. K.; Karlsson, J.; Perkin, A.; Disotell, T. R. Cryptic diversity and species boundaries within the Paragalago zanzibaricus species complex. Molecular phylogenetics and evolution. 2020. https://doi.org/10.1016/j.ympev.2020.106887.
772|shorty-download|Bartlett, M. F.; Fitzgerald, L. F.; Nagarajan, R.; Kent, J. A. Reply from Miles F. Bartlett, Liam F. Fitzgerald, Rajakumar Nagarajan and Jane A. Kent. The Journal of physiology. 2020. https://doi.org/10.1113/JP280190.
773|sucess-download|McClung, A.; Mansouree, M.; Arbabi, A. At-will chromatic dispersion by prescribing light trajectories with cascaded metasurfaces. Light, science & applications. 2020. https://doi.org/10.1038/s41377-020-0335-7.
774|sucess-download|Gao, Y.; Kim, M. J.; Kim, J. H.; Jeong, I. H.; Clark, J. M.; Lee, S. H. Transcriptomic identification and characterization of genes responding to sublethal doses of three different insecticides in the western flower thrips, Frankliniella occidentalis. Pesticide biochemistry and physiology. 2020. https://doi.org/10.1016/j.pestbp.2020.104596.
775|sucess-download|Jankovic-Rankovic, J.; Oka, R. C.; Meyer, J. S.; Gettler, L. T. Forced migration experiences, mental well-being, and nail cortisol among recently settled refugees in Serbia. Social science & medicine (1982). 2020. https://doi.org/10.1016/j.socscimed.2020.113070.
776|sucess-download|Zhang, J.; Zhai, J.; Zheng, H.; Li, X.; Wang, Y.; Li, X.; Xing, B. Adsorption, desorption and coadsorption behaviors of sulfamerazine, Pb(II) and benzoic acid on carbon nanotubes and nano-silica. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.139685.
777|sucess-download|Maasch, J. R.; Arzika, A. M.; Cook, C.; Lebas, E.; Pilotte, N.; Grant, J. R.; Williams, S. A.; Keenan, J. D.; Lietman, T. M.; Aiemjoy, K. Rectal Swabs as an Alternative Sample Collection Method to Bulk Stool for the Real-Time PCR Detection of The American journal of tropical medicine and hygiene. 2020. https://doi.org/10.4269/ajtmh.19-0909.
778|sucess-download|Rodriguez, W.; Macveigh-Fierro, D.; Miles, J.; Muller, M. Fated for decay: RNA elements targeted by viral endonucleases. Seminars in cell & developmental biology. 2020. https://doi.org/10.1016/j.semcdb.2020.05.010.
779|shorty-download|Geissler, K. H.; Kaizer, K.; Johnson, J. K.; Doonan, S. M.; Whitehill, J. M. Evaluation of Availability of Survey Data About Cannabis Use. JAMA network open. 2020. https://doi.org/10.1001/jamanetworkopen.2020.6039.
780|sucess-download|Chandler, P. D.; Balasubramanian, R.; Paynter, N.; Giulianini, F.; Fung, T.; Tinker, L. F.; Snetselaar, L.; Liu, S.; Eaton, C.; Tobias, D. K.; Tabung, F. K.; Manson, J. E.; Giovannucci, E. L.; Clish, C.; Rexrode, K. M. Metabolic signatures associated with Western and Prudent dietary patterns in women. The American journal of clinical nutrition. 2020. https://doi.org/10.1093/ajcn/nqaa131.
781|sucess-download|Baker, M. A.; Yokoe, D. S.; Stelling, J.; Kleinman, K.; Kaganov, R. E.; Letourneau, A. R.; Varma, N.; O'Brien, T.; Kulldorff, M.; Babalola, D.; Barrett, C.; Drees, M.; Coady, M. H.; Isaacs, A.; Platt, R.; Huang, S. S. Automated outbreak detection of hospital-associated pathogens: Value to infection prevention programs. Infection control and hospital epidemiology. 2020. https://doi.org/10.1017/ice.2020.233.
782|sucess-download|Cao, X.; Han, Y.; Gu, M.; Du, H.; Song, M.; Zhu, X.; Ma, G.; Pan, C.; Wang, W.; Zhao, E.; Goulette, T.; Yuan, B.; Zhang, G.; Xiao, H. Foodborne Titanium Dioxide Nanoparticles Induce Stronger Adverse Effects in Obese Mice than Non-Obese Mice: Gut Microbiota Dysbiosis, Colonic Inflammation, and Proteome Alterations. Small (Weinheim an der Bergstrasse, Germany). 2020. https://doi.org/10.1002/smll.202001858.
783|shorty-download|Liu, J.; Kharat, M.; Tan, Y.; Zhou, H.; Muriel Mundo, J. L.; McClements, D. J. Impact of fat crystallization on the resistance of W/O/W emulsions to osmotic stress: Potential for temperature-triggered release. Food research international (Ottawa, Ont.). 2020. https://doi.org/10.1016/j.foodres.2020.109273.
784|sucess-download|Wu, C.; Teng, F.; McClements, D. J.; Zhang, S.; Li, Y.; Wang, Z. Effect of cavitation jet processing on the physicochemical properties and structural characteristics of okara dietary fiber. Food research international (Ottawa, Ont.). 2020. https://doi.org/10.1016/j.foodres.2020.109251.
785|sucess-download|Dai, T.; Li, T.; Li, R.; Zhou, H.; Liu, C.; Chen, J.; McClements, D. J. Utilization of plant-based protein-polyphenol complexes to form and stabilize emulsions: Pea proteins and grape seed proanthocyanidins. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.127219.
786|sucess-download|Zhu, S.; Forth, J.; Xie, G.; Chao, Y.; Tian, J.; Russell, T. P.; Shum, H. C. Rapid Multilevel Compartmentalization of Stable All-Aqueous Blastosomes by Interfacial Aqueous-Phase Separation. ACS nano. 2020. https://doi.org/10.1021/acsnano.0c02923.
787|sucess-download|Murray, A. E.; Freudenstein, J.; Gribaldo, S.; Hatzenpichler, R.; Hugenholtz, P.; Kämpfer, P.; Konstantinidis, K. T.; Lane, C. E.; Papke, R. T.; Parks, D. H.; Rossello-Mora, R.; Stott, M. B.; Sutcliffe, I. C.; Thrash, J. C.; Venter, S. N.; Whitman, W. B.; Acinas, S. G.; Amann, R. I.; Anantharaman, K.; Armengaud, J.; Baker, B. J.; Barco, R. A.; Bode, H. B.; Boyd, E. S.; Brady, C. L.; Carini, P.; Chain, P. S.; Colman, D. R.; DeAngelis, K. M.; de Los Rios, M. A.; Estrada-de Los Santos, P.; Dunlap, C. A.; Eisen, J. A.; Emerson, D.; Ettema, T. J.; Eveillard, D.; Girguis, P. R.; Hentschel, U.; Hollibaugh, J. T.; Hug, L. A.; Inskeep, W. P.; Ivanova, E. P.; Klenk, H. P.; Li, W. J.; Lloyd, K. G.; Löffler, F. E.; Makhalanyane, T. P.; Moser, D. P.; Nunoura, T.; Palmer, M.; Parro, V.; Pedrós-Alió, C.; Probst, A. J.; Smits, T. H.; Steen, A. D.; Steenkamp, E. T.; Spang, A.; Stewart, F. J.; Tiedje, J. M.; Vandamme, P.; Wagner, M.; Wang, F. P.; Yarza, P.; Hedlund, B. P.; Reysenbach, A. L. Roadmap for naming uncultivated Archaea and Bacteria. Nature microbiology. 2020. https://doi.org/10.1038/s41564-020-0733-x.
788|sucess-download|Sha, Z.; Chen, Z.; Feng, Y.; Xue, L.; Yang, L.; Cao, L.; Chu, Q. Minerals loaded with oxygen nanobubbles mitigate arsenic translocation from paddy soils to rice. Journal of hazardous materials. 2020. https://doi.org/10.1016/j.jhazmat.2020.122818.
789|sucess-download|Gong, Y.; Cao, C.; Ai, C.; Wen, C.; Wang, L.; Zhao, J.; Han, Y.; Song, S.; Xiao, H. Structural characterization and immunostimulatory activity of a glucan from Cyclina sinensis. International journal of biological macromolecules. 2020. https://doi.org/10.1016/j.ijbiomac.2020.06.020.
790|shorty-download|Weinberger, D. M.; Cohen, T.; Crawford, F. W.; Mostashari, F.; Olson, D.; Pitzer, V. E.; Reich, N. G.; Russi, M.; Simonsen, L.; Watkins, A.; Viboud, C. Estimating the early death toll of COVID-19 in the United States. medRxiv : the preprint server for health sciences. 2020. https://doi.org/10.1101/2020.04.15.20066431.
791|sucess-download|Gross, M. C.; Kaushanskaya, M. Cognitive and Linguistic Predictors of Language Control in Bilingual Children. Frontiers in psychology. 2020. https://doi.org/10.3389/fpsyg.2020.00968.
792|shorty-download|Park, S.; Caldwell, G. E. Response to: Caution needed when interpreting muscle activity patterns during extremely low pedaling cadence. Journal of sport and health science. 2020. https://doi.org/10.1016/j.jshs.2020.06.002.
793|sucess-download|Currier, T. M.; Lheron, S.; Modarres-Sadeghi, Y. A bio-inspired robotic fish utilizes the snap-through buckling of its spine to generate accelerations of more than 20g. Bioinspiration & biomimetics. 2020. https://doi.org/10.1088/1748-3190/ab9a14.
794|sucess-download|Liu, T.; Marcinko, T. M.; Vachet, R. W. Protein-Ligand Affinity Determinations Using Covalent Labeling-Mass Spectrometry. Journal of the American Society for Mass Spectrometry. 2020. https://doi.org/10.1021/jasms.0c00131.
795|sucess-download|Spracklen, C. N.; Horikoshi, M.; Kim, Y. J.; Lin, K.; Bragg, F.; Moon, S.; Suzuki, K.; Tam, C. H.; Tabara, Y.; Kwak, S. H.; Takeuchi, F.; Long, J.; Lim, V. J.; Chai, J. F.; Chen, C. H.; Nakatochi, M.; Yao, J.; Choi, H. S.; Iyengar, A. K.; Perrin, H. J.; Brotman, S. M.; van de Bunt, M.; Gloyn, A. L.; Below, J. E.; Boehnke, M.; Bowden, D. W.; Chambers, J. C.; Mahajan, A.; McCarthy, M. I.; Ng, M. C.; Petty, L. E.; Zhang, W.; Morris, A. P.; Adair, L. S.; Akiyama, M.; Bian, Z.; Chan, J. C.; Chang, L. C.; Chee, M. L.; Chen, Y. I.; Chen, Y. T.; Chen, Z.; Chuang, L. M.; Du, S.; Gordon-Larsen, P.; Gross, M.; Guo, X.; Guo, Y.; Han, S.; Howard, A. G.; Huang, W.; Hung, Y. J.; Hwang, M. Y.; Hwu, C. M.; Ichihara, S.; Isono, M.; Jang, H. M.; Jiang, G.; Jonas, J. B.; Kamatani, Y.; Katsuya, T.; Kawaguchi, T.; Khor, C. C.; Kohara, K.; Lee, M. S.; Lee, N. R.; Li, L.; Liu, J.; Luk, A. O.; Lv, J.; Okada, Y.; Pereira, M. A.; Sabanayagam, C.; Shi, J.; Shin, D. M.; So, W. Y.; Takahashi, A.; Tomlinson, B.; Tsai, F. J.; van Dam, R. M.; Xiang, Y. B.; Yamamoto, K.; Yamauchi, T.; Yoon, K.; Yu, C.; Yuan, J. M.; Zhang, L.; Zheng, W.; Igase, M.; Cho, Y. S.; Rotter, J. I.; Wang, Y. X.; Sheu, W. H.; Yokota, M.; Wu, J. Y.; Cheng, C. Y.; Wong, T. Y.; Shu, X. O.; Kato, N.; Park, K. S.; Tai, E. S.; Matsuda, F.; Koh, W. P.; Ma, R. C.; Maeda, S.; Millwood, I. Y.; Lee, J.; Kadowaki, T.; Walters, R. G.; Kim, B. J.; Mohlke, K. L.; Sim, X. Identification of type 2 diabetes loci in 433,540 East Asian individuals. Nature. 2020. https://doi.org/10.1038/s41586-020-2263-3.
796|sucess-download|Pozo, R. A.; LeFlore, E. G.; Duthie, A. B.; Bunnefeld, N.; Jones, I. L.; Minderman, J.; Rakotonarivo, O. S.; Cusack, J. J. A multispecies assessment of wildlife impacts on local community livelihoods. Conservation biology : the journal of the Society for Conservation Biology. 2020. https://doi.org/10.1111/cobi.13565.
797|sucess-download|Weir, G.; Willwacher, S.; Trudeau, M. B.; Wyatt, H.; Hamill, J. The Influence of Prolonged Running and Footwear on Lower Extremity Joint Stiffness. Medicine and science in sports and exercise. 2020. https://doi.org/10.1249/MSS.0000000000002416.
798|shorty-download|Reid, A. E.; Hancock, D. W.; Minott, C.; Moser, S. E. Does attending a college with more heavy drinking peers increase risk of heavy drinking and consequences? A prospective national analysis. Psychology of addictive behaviors : journal of the Society of Psychologists in Addictive Behaviors. 2020. https://doi.org/10.1037/adb0000639.
799|sucess-download|Lin, H. H.; Robertson, K. L.; Bisbee, H. A.; Farkas, M. E. Oncogenic and Circadian Effects of Small Molecules Directly and Indirectly Targeting the Core Circadian Clock. Integrative cancer therapies. 2020. https://doi.org/10.1177/1534735420924094.
800|sucess-download|Straight, C. R.; Ringham, O. R.; Bartley, J. M.; Keilich, S. R.; Kuchel, G. A.; Haynes, L.; Miller, M. S. Influenza Infection has Fiber Type-Specific Effects on Cellular and Molecular Skeletal Muscle Function in Aged Mice. The journals of gerontology. Series A, Biological sciences and medical sciences. 2020. https://doi.org/10.1093/gerona/glaa136.
801|sucess-download|Ozay, E. I.; Shanthalingam, S.; Sherman, H. L.; Torres, J. A.; Osborne, B. A.; Tew, G. N.; Minter, L. M. Cell-Penetrating Anti-Protein Kinase C Theta Antibodies Act Intracellularly to Generate Stable, Highly Suppressive Regulatory T Cells. Molecular therapy : the journal of the American Society of Gene Therapy. 2020. https://doi.org/10.1016/j.ymthe.2020.05.020.
802|sucess-download|Williams, K. M.; Fessler, M. K.; Bloomfield, R. A.; Sandke, W. D.; Malekshahi, C. R.; Keroack, C. D.; Duignan, P. J.; Torquato, S. D.; Williams, S. A. A novel quantitative real-time PCR diagnostic assay for fecal and nasal swab detection of an otariid lungworm, International journal for parasitology. Parasites and wildlife. 2020. https://doi.org/10.1016/j.ijppaw.2020.04.012.
803|sucess-download|Parsons, K. J.; Rigg, A.; Conith, A. J.; Kitchener, A. C.; Harris, S.; Zhu, H. Skull morphology diverges between urban and rural populations of red foxes mirroring patterns of domestication and macroevolution. Proceedings. Biological sciences. 2020. https://doi.org/10.1098/rspb.2020.0763.
804|sucess-download|Di Rosa, G.; Brunetti, G.; Scuto, M.; Trovato Salinaro, A.; Calabrese, E. J.; Crea, R.; Schmitz-Linneweber, C.; Calabrese, V.; Saul, N. Healthspan Enhancement by Olive Polyphenols in International journal of molecular sciences. 2020. https://doi.org/10.3390/ijms21113893.
805|sucess-download|Deshpande, N.; Ramesh, A.; Nandi, D.; Nguyen, A.; Brouillard, A.; Kulkarni, A. Supramolecular Polysaccharide Nanotheranostics that Inhibit Cancer Cells Growth and Monitor Targeted Therapy Response. Nanotheranostics. 2020. https://doi.org/10.7150/ntno.44703.
806|sucess-download|Kumar, R.; Muthukumar, M. Surface Tension of Dielectric-Air Interfaces. The journal of physical chemistry. B. 2020. https://doi.org/10.1021/acs.jpcb.0c01430.
807|sucess-download|Yang, Y.; Rushton, S.; Park, H. K.; Son, H.; Woodward, A.; Mcconnell, E.; Hendrix, C. C. Understanding the Associations between Caregiver Characteristics and Cognitive Function of Adults with Cancer: A Scoping Review. Asia-Pacific journal of oncology nursing. 2020. https://doi.org/10.4103/apjon.apjon_3_20.
808|sucess-download|Lin, H. H.; Robertson, K. L.; Lellupitiyage Don, S. S.; Taylor, S. R.; Farkas, M. E. Chemical modulation of circadian rhythms and assessment of cellular behavior via indirubin and derivatives. Methods in enzymology. 2020. https://doi.org/10.1016/bs.mie.2020.04.011.
809|sucess-download|Agathokleous, E.; Barceló, D.; Tsatsakis, A.; Calabrese, E. J. Hydrocarbon-induced hormesis: 101 years of evidence at the margin? Environmental pollution (Barking, Essex : 1987). 2020. https://doi.org/10.1016/j.envpol.2020.114846.
810|sucess-download|Gao, W.; Guo, J.; Xie, L.; Peng, C.; He, L.; Wan, X.; Hou, R. Washing fresh tea leaves before picking decreases pesticide residues in tea. Journal of the science of food and agriculture. 2020. https://doi.org/10.1002/jsfa.10553.
811|sucess-download|Kabami, J.; Balzer, L. B.; Saddiki, H.; Ayieko, J.; Kwarisiima, D.; Atukunda, M.; Charlebois, E. D.; Clark, T. D.; Koss, C. A.; Ruel, T.; Bukusi, E. A.; Cohen, C. R.; Musoke, P.; Petersen, M. L.; Havlir, D. V.; Kamya, M. R.; Chamie, G. Population-level viral suppression among pregnant and postpartum women in a universal test and treat trial. AIDS (London, England). 2020. https://doi.org/10.1097/QAD.0000000000002564.
812|sucess-download|Billing, A.; Henrique Correia, M.; Kelly, D. A.; Li, G. L.; Bergan, J. F. Synaptic Connections of Aromatase Circuits in the Medial Amygdala Are Sex Specific. eNeuro. 2020. https://doi.org/10.1523/ENEURO.0489-19.2020.
813|shorty-download|Backley, S.; Knee, A.; Pekow, P.; Markenson, G.; White, K. O.; Schoen, C.; Chasan-Taber, L. Prenatal Depression and Risk of Short Interpregnancy Interval in a Predominantly Puerto Rican Population. Journal of women's health (2002). 2020. https://doi.org/10.1089/jwh.2019.8201.
814|shorty-download|Tu, J.; Zhao, J.; Liu, G.; Tang, C.; Han, Y.; Cao, X.; Jia, J.; Ji, G.; Xiao, H. Solid state fermentation by Fomitopsis pinicola improves physicochemical and functional properties of wheat bran and the bran-containing products. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.127046.
815|sucess-download|Schaming, T. D.; Sutherland, C. S. Landscape- and local-scale habitat influences on occurrence and detection probability of Clark's nutcrackers: Implications for conservation. PloS one. 2020. https://doi.org/10.1371/journal.pone.0233726.
816|sucess-download|Huang, R.; Li, C. H.; Cao-Milán, R.; He, L. D.; Makabenta, J. M.; Zhang, X.; Yu, E.; Rotello, V. M. Polymer-Based Bioorthogonal Nanocatalysts for the Treatment of Bacterial Biofilms. Journal of the American Chemical Society. 2020. https://doi.org/10.1021/jacs.0c01758.
817|shorty-download|Song, M.; Lan, Y.; Wu, X.; Han, Y.; Wang, M.; Zheng, J.; Li, Z.; Li, F.; Zhou, J.; Xiao, J.; Cao, Y.; Xiao, H. The chemopreventive effect of 5-demethylnobiletin, a unique citrus flavonoid, on colitis-driven colorectal carcinogenesis in mice is associated with its colonic metabolites. Food & function. 2020. https://doi.org/10.1039/d0fo00616e.
818|sucess-download|Gourlay, M. L.; Gourlay, L. L. Comparison of 8-year knee osteoarthritis progression in 2 siblings: a case-based review. Clinical rheumatology. 2020. https://doi.org/10.1007/s10067-020-05181-6.
819|sucess-download|Mitra, A.; Shanthalingam, S.; Sherman, H. L.; Singh, K.; Canakci, M.; Torres, J. A.; Lawlor, R.; Ran, Y.; Golde, T. E.; Miele, L.; Thayumanavan, S.; Minter, L. M.; Osborne, B. A. CD28 Signaling Drives Notch Ligand Expression on CD4 T Cells. Frontiers in immunology. 2020. https://doi.org/10.3389/fimmu.2020.00735.
820|sucess-download|Giguere, C.; Dubey, H. V.; Sarsani, V. K.; Saddiki, H.; He, S.; Flaherty, P. SCSIM: Jointly simulating correlated single-cell and bulk next-generation DNA sequencing data. BMC bioinformatics. 2020. https://doi.org/10.1186/s12859-020-03550-1.
821|sucess-download|Angkuratipakorn, T.; Chung, C.; Koo, C. K.; Mundo, J. L.; McClements, D. J.; Decker, E. A.; Singkhonrat, J. Development of food-grade Pickering oil-in-water emulsions: Tailoring functionality using mixtures of cellulose nanocrystals and lauric arginate. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.127039.
822|shorty-download|Balzer, L. B.; Ayieko, J.; Kwarisiima, D.; Chamie, G.; Charlebois, E. D.; Schwab, J.; van der Laan, M. J.; Kamya, M. R.; Havlir, D. V.; Petersen, M. L. Far from MCAR: Obtaining Population-level Estimates of HIV Viral Suppression. Epidemiology (Cambridge, Mass.). 2020. https://doi.org/10.1097/EDE.0000000000001215.
823|sucess-download|Asscheman, J. S.; Deater-Deckard, K.; Lauharatanahirun, N.; van Lier, P. A.; Koot, S.; King-Casas, B.; Kim-Spoon, J. Associations between peer attachment and neural correlates of risk processing across adolescence. Developmental cognitive neuroscience. 2020. https://doi.org/10.1016/j.dcn.2020.100772.
824|sucess-download|Drizin, J. H.; Whitcomb, B. W.; Hsieh, T. C.; Gorman, J. R. Higher reproductive concerns associated with fertility consultation: a cross-sectional study of young adult male cancer survivors. Supportive care in cancer : official journal of the Multinational Association of Supportive Care in Cancer. 2020. https://doi.org/10.1007/s00520-020-05527-5.
825|sucess-download|Wu, D.; Li, F.; Chen, Q.; Wu, M.; Duan, W.; Zhao, Q.; Pan, B.; Xing, B. Mediation of rhodamine B photodegradation by biochar. Chemosphere. 2020. https://doi.org/10.1016/j.chemosphere.2020.127082.
826|sucess-download|Osycka-Salut, C. E.; Martínez-León, E.; Gervasi, M. G.; Castellano, L.; Davio, C.; Chiarante, N.; Franchi, A. M.; Ribeiro, M. L.; Díaz, E. S.; Perez-Martinez, S. Fibronectin induces capacitation-associated events through the endocannabinoid system in bull sperm. Theriogenology. 2020. https://doi.org/10.1016/j.theriogenology.2020.04.031.
827|sucess-download|Gratz, K. L.; Berghoff, C. R.; Richmond, J. R.; Vidaña, A. G.; Dixon-Gordon, K. L. Examining posttraumatic stress disorder as a predictor of treatment response to dialectical behavior therapy. Journal of clinical psychology. 2020. https://doi.org/10.1002/jclp.22961.
828|sucess-download|Yuan, Q.; Xue, H.; Lv, J.; Wang, J.; Shi, S.; Russell, T. P.; Wang, D. Size-Dependent Interfacial Assembly of Graphene Oxide at Water-Oil Interfaces. The journal of physical chemistry. B. 2020. https://doi.org/10.1021/acs.jpcb.0c02687.
829|sucess-download|Holec, S. A.; Woerman, A. L. Evidence of distinct α-synuclein strains underlying disease heterogeneity. Acta neuropathologica. 2020. https://doi.org/10.1007/s00401-020-02163-5.
830|sucess-download|DeSimone, J. G.; Ramirez, M. G.; Elowe, C. R.; Griego, M. S.; Breuner, C. W.; Gerson, A. R. Developing a Stopover-CORT hypothesis: Corticosterone predicts body composition and refueling rate in Gray Catbirds during migratory stopover. Hormones and behavior. 2020. https://doi.org/10.1016/j.yhbeh.2020.104776.
831|sucess-download|Yu, X.; Cao, X.; Yue, L.; Zhao, J.; Chen, F.; Wang, Z.; Xing, B. Phosphate induced surface transformation alleviated the cytotoxicity of Y The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.139276.
832|sucess-download|Dhawan, G.; Kapoor, R.; Dhawan, R.; Singh, R.; Monga, B.; Giordano, J.; Calabrese, E. J. Low dose radiation therapy as a potential life saving treatment for COVID-19-induced acute respiratory distress syndrome (ARDS). Radiotherapy and oncology : journal of the European Society for Therapeutic Radiology and Oncology. 2020. https://doi.org/10.1016/j.radonc.2020.05.002.
833|sucess-download|Stefan, M. S.; Pekow, P. S.; Shea, C. M.; Hughes, A. M.; Hill, N. S.; Steingrub, J. S.; Lindenauer, P. K. Protocol for two-arm pragmatic cluster randomized hybrid implementation-effectiveness trial comparing two education strategies for improving the uptake of noninvasive ventilation in patients with severe COPD exacerbation. Implementation science communications. 2020. https://doi.org/10.1186/s43058-020-00028-2.
834|sucess-download|Su, S.; Shahriyari, L. RGS5 plays a significant role in renal cell carcinoma. Royal Society open science. 2020. https://doi.org/10.1098/rsos.191422.
835|sucess-download|Lessard, C. B.; Rodriguez, E.; Ladd, T. B.; Minter, L. M.; Osborne, B. A.; Miele, L.; Golde, T. E.; Ran, Y. γ-Secretase modulators exhibit selectivity for modulation of APP cleavage but inverse γ-secretase modulators do not. Alzheimer's research & therapy. 2020. https://doi.org/10.1186/s13195-020-00622-5.
836|shorty-download|Medina, E. M.; Buchler, N. E. Chytrid fungi. Current biology : CB. 2020. https://doi.org/10.1016/j.cub.2020.02.076.
837|sucess-download|Fritz-Laylin, L. K. The evolution of animal cell motility. Current biology : CB. 2020. https://doi.org/10.1016/j.cub.2020.03.026.
838|sucess-download|Wolak, C.; Ma, H. J.; Soubry, N.; Sandler, S. J.; Reyes-Lamothe, R.; Keck, J. L. Interaction with single-stranded DNA-binding protein localizes ribonuclease HI to DNA replication forks and facilitates R-loop removal. Molecular microbiology. 2020. https://doi.org/10.1111/mmi.14529.
839|sucess-download|Correia, K. F.; Dodge, L. E.; Farland, L. V.; Hacker, M. R.; Ginsburg, E.; Whitcomb, B. W.; Wise, L. A.; Missmer, S. A. Confounding and effect measure modification in reproductive medicine research. Human reproduction (Oxford, England). 2020. https://doi.org/10.1093/humrep/deaa051.
840|sucess-download|Castellani, C. M.; Torres-Ocampo, A. P.; Breffke, J.; White, A. B.; Chambers, J. J.; Stratton, M. M.; Maresca, T. J. Live-cell FLIM-FRET using a commercially available system. Methods in cell biology. 2020. https://doi.org/10.1016/bs.mcb.2020.02.002.
841|sucess-download|Mazar, A.; Zorn, M.; Becker, N.; Volberg, R. A. Gambling formats, involvement, and problem gambling: which types of gambling are more risky? BMC public health. 2020. https://doi.org/10.1186/s12889-020-08822-2.
842|shorty-download|Berry, M.; Lee-Trimble, M. E.; Santangelo, C. D. Topological transitions in the configuration space of non-Euclidean origami. Physical review. E. 2020. https://doi.org/10.1103/PhysRevE.101.043003.
843|sucess-download|Kim, H. J.; Paquin, L.; Barney, C. W.; So, S.; Chen, B.; Suo, Z.; Crosby, A. J.; Hayward, R. C. Low-Voltage Reversible Electroadhesion of Ionoelastomer Junctions. Advanced materials (Deerfield Beach, Fla.). 2020. https://doi.org/10.1002/adma.202000600.
844|sucess-download|Wu, R.; Karunanayake Mudiyanselage, A. P.; Ren, K.; Sun, Z.; Tian, Q.; Zhao, B.; Bagheri, Y.; Lutati, D.; Keshri, P.; You, M. Ratiometric Fluorogenic RNA-Based Sensors for Imaging Live-Cell Dynamics of Small Molecules. ACS applied bio materials. 2020. https://doi.org/10.1021/acsabm.9b01237.
845|sucess-download|Sharma, A.; Kwak, J. G.; Kolewe, K. W.; Schiffman, J. D.; Forbes, N. S.; Lee, J. In Vitro Reconstitution of an Intestinal Mucus Layer Shows That Cations and pH Control the Pore Structure That Regulates Its Permeability and Barrier Function. ACS applied bio materials. 2020. https://doi.org/10.1021/acsabm.9b00851.
846|sucess-download|Li, W.; Li, Y. Entropy, mutual information, and systematic measures of structured spiking neural networks. Journal of theoretical biology. 2020. https://doi.org/10.1016/j.jtbi.2020.110310.
847|sucess-download|Mijović, H.; Greyson, D.; Gemmell, E.; Trottier, M. È.; Vivion, M.; Graham, J. E.; Dubé, È.; Bettinger, J. A. Perinatal health care providers' approaches to recommending and providing pertussis vaccination in pregnancy: a qualitative study. CMAJ open. 2020. https://doi.org/10.9778/cmajo.20190215.
848|sucess-download|Pearson, G. L.; Savenkova, M.; Barnwell, J. J.; Karatsoreos, I. N. Circadian desynchronization alters metabolic and immune responses following lipopolysaccharide inoculation in male mice. Brain, behavior, and immunity. 2020. https://doi.org/10.1016/j.bbi.2020.05.033.
849|sucess-download|Chen, H.; Wang, K.; Xiao, H.; Hu, Z.; Zhao, L. Structural Characterization and Pro-inflammatory Activity of a Thaumatin-Like Protein from Pulp Tissues of Journal of agricultural and food chemistry. 2020. https://doi.org/10.1021/acs.jafc.0c01320.
850|sucess-download|Liu, B.; Wu, R.; Gong, S.; Xiao, H.; Thayumanavan, S. In Situ Formation of Polymeric Nanoassemblies Using an Efficient Reversible Click Reaction. Angewandte Chemie (International ed. in English). 2020. https://doi.org/10.1002/anie.202004017.
851|sucess-download|Vandenberg, L. N.; Najmi, A.; Mogus, J. P. Agrochemicals with estrogenic endocrine disrupting properties: Lessons Learned? Molecular and cellular endocrinology. 2020. https://doi.org/10.1016/j.mce.2020.110860.
852|sucess-download|Cohen, A. L.; Starns, J. J.; Rotello, C. M.; Cataldo, A. M. Estimating the proportion of guilty suspects and posterior probability of guilt in lineups using signal-detection models. Cognitive research: principles and implications. 2020. https://doi.org/10.1186/s41235-020-00219-4.
853|shorty-download|Kulu, I.; Huang, R.; Kalyanaraman, B.; Rotello, V. M. A modified and simplified method for purification of gold nanoparticles. MethodsX. 2020. https://doi.org/10.1016/j.mex.2020.100896.
854|sucess-download|Chen, J.; Liu, X.; Chen, J. Targeting Intrinsically Disordered Proteins through Dynamic Interactions. Biomolecules. 2020. https://doi.org/10.3390/biom10050743.
855|sucess-download|Jia, L.; Shi, J.; Long, C.; Lian, F.; Xing, B. VOCs adsorption on activated carbon with initial water vapor contents: Adsorption mechanism and modified characteristic curves. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.139184.
856|sucess-download|Zhang, X.; Fedeli, S.; Gopalakrishnan, S.; Huang, R.; Gupta, A.; Luther, D. C.; Rotello, V. M. Protection and Isolation of Bioorthogonal Metal Catalysts by Using Monolayer-Coated Nanozymes. Chembiochem : a European journal of chemical biology. 2020. https://doi.org/10.1002/cbic.202000207.
857|shorty-download|Peltier, R. E.; Goldman, G. T. It's not about transparency: politics is intruding into USEPA science and it could cost the public's health. Journal of exposure science & environmental epidemiology. 2020. https://doi.org/10.1038/s41370-020-0229-z.
858|sucess-download|Yang, Q.; Zuo, C.; Liu, X.; Yang, Z.; Zhou, H. Risk Response for Municipal Solid Waste Crisis Using Ontology-Based Reasoning. International journal of environmental research and public health. 2020. https://doi.org/10.3390/ijerph17093312.
859|failed-download|Sharma, A.; Raman, V.; Lee, J.; Forbes, N. S. Mucus blocks probiotics but increases penetration of motile pathogens and induces TNF-α and IL-8 secretion. Biotechnology and bioengineering. 2020. https://doi.org/10.1002/bit.27383.
860|shorty-download|Lindenauer, P. K.; Stefan, M. S.; Pekow, P. S.; Mazor, K. M.; Priya, A.; Spitzer, K. A.; Lagu, T. C.; Pack, Q. R.; Pinto-Plata, V. M.; ZuWallack, R. Association Between Initiation of Pulmonary Rehabilitation After Hospitalization for COPD and 1-Year Survival Among Medicare Beneficiaries. JAMA. 2020. https://doi.org/10.1001/jama.2020.4437.
861|sucess-download|Adler, L. S.; Barber, N. A.; Biller, O. M.; Irwin, R. E. Flowering plant composition shapes pathogen infection intensity and reproduction in bumble bee colonies. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.2000074117.
862|sucess-download|Medina, E. M.; Robinson, K. A.; Bellingham-Johnstun, K.; Ianiri, G.; Laplante, C.; Fritz-Laylin, L. K.; Buchler, N. E. Genetic transformation of eLife. 2020. https://doi.org/10.7554/eLife.52741.
863|sucess-download|Wu, X.; Xue, L.; Tata, A.; Song, M.; Neto, C. C.; Xiao, H. Bioactive Components of Polyphenol-Rich and Non-Polyphenol-Rich Cranberry Fruit Extracts and Their Chemopreventive Effects on Colitis-Associated Colon Cancer. Journal of agricultural and food chemistry. 2020. https://doi.org/10.1021/acs.jafc.0c02604.
864|sucess-download|Ramesh, A.; Kumar, S.; Brouillard, A.; Nandi, D.; Kulkarni, A. A Nitric Oxide (NO) Nanoreporter for Noninvasive Real-Time Imaging of Macrophage Immunotherapy. Advanced materials (Deerfield Beach, Fla.). 2020. https://doi.org/10.1002/adma.202000648.
865|sucess-download|Agathokleous, E.; Calabrese, E. J. Environmental toxicology and ecotoxicology: How clean is clean? Rethinking dose-response analysis. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.138769.
866|sucess-download|Wang, T.; Zheng, L.; Liu, Y.; Tang, W.; Fang, T.; Xing, B. A novel ternary magnetic Fe The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.138928.
867|sucess-download|Næss, S.; Kjellevold, M.; Dahl, L.; Nerhus, I.; Midtbø, L. K.; Bank, M. S.; Rasinger, J. D.; Markhus, M. W. Effects of seafood consumption on mercury exposure in Norwegian pregnant women: A randomized controlled trial. Environment international. 2020. https://doi.org/10.1016/j.envint.2020.105759.
868|shorty-download|Yang, F.; Zhang, Q.; Jian, H.; Wang, C.; Xing, B.; Sun, H.; Hao, Y. Effect of biochar-derived dissolved organic matter on adsorption of sulfamethoxazole and chloramphenicol. Journal of hazardous materials. 2020. https://doi.org/10.1016/j.jhazmat.2020.122598.
869|sucess-download|Canakci, M.; Singh, K.; Munkhbat, O.; Shanthalingam, S.; Mitra, A.; Gordon, M.; Osborne, B. A.; Thayumanavan, S. Targeting CD4 Biomacromolecules. 2020. https://doi.org/10.1021/acs.biomac.0c00442.
870|sucess-download|Chait, Y.; Germain, M. J.; Hollot, C. V.; Horowitz, J. The Role of Feedback Control Design in Developing Anemia Management Protocols. Annals of biomedical engineering. 2020. https://doi.org/10.1007/s10439-020-02520-1.
871|sucess-download|Nolden, A. A.; McGeary, J. E.; Hayes, J. E. Predominant Qualities Evoked by Quinine, Sucrose, and Capsaicin Associate With PROP Bitterness, but not TAS2R38 Genotype. Chemical senses. 2020. https://doi.org/10.1093/chemse/bjaa028.
872|sucess-download|Zheng, B.; Zheng, B.; Carr, A. J.; Yu, X.; McClements, D. J.; Bhatia, S. R. Emulsions Stabilized by Inorganic Nanoclays and Surfactants: Stability, Viscosity, and Implications for Applications. Inorganica chimica acta. 2020. https://doi.org/10.1016/j.ica.2020.119566.
873|sucess-download|Agrawal, U.; Gopalakrishnan, S.; Vasseur, R. Universality and quantum criticality in quasiperiodic spin chains. Nature communications. 2020. https://doi.org/10.1038/s41467-020-15760-5.
874|sucess-download|Cheong, A.; Archambault, D.; Degani, R.; Iverson, E.; Tremblay, K. D.; Mager, J. Nuclear-encoded mitochondrial ribosomal proteins are required to initiate gastrulation. Development (Cambridge, England). 2020. https://doi.org/10.1242/dev.188714.
875|sucess-download|Chen, W.; Ma, H.; Xing, B. Electrospinning of multifunctional cellulose acetate membrane and its adsorption properties for ionic dyes. International journal of biological macromolecules. 2020. https://doi.org/10.1016/j.ijbiomac.2020.04.249.
876|sucess-download|Liao, W.; Wang, Z.; Han, Y.; Qi, Y.; Liu, J.; Xie, J.; Tian, Y.; Lei, Q.; Chen, R.; Sun, M.; Tang, L.; Gong, G.; Zhao, Y. Design, synthesis and biological activity of novel 2,3,4,5-tetra-substituted thiophene derivatives as PI3Kα inhibitors with potent antitumor activity. European journal of medicinal chemistry. 2020. https://doi.org/10.1016/j.ejmech.2020.112309.
877|sucess-download|Dubiel, K.; Henry, C.; Spenkelink, L. M.; Kozlov, A. G.; Wood, E. A.; Jergic, S.; Dixon, N. E.; van Oijen, A. M.; Cox, M. M.; Lohman, T. M.; Sandler, S. J.; Keck, J. L. Development of a single-stranded DNA-binding protein fluorescent fusion toolbox. Nucleic acids research. 2020. https://doi.org/10.1093/nar/gkaa320.
878|sucess-download|Dai, H.; Leung, C. E.; Corradini, M. G.; Xiao, H.; Kinchla, A. J. Increasing the nutritional value of strawberry puree by adding xylo-oligosaccharides. Heliyon. 2020. https://doi.org/10.1016/j.heliyon.2020.e03769.
879|sucess-download|Villali, J.; Dark, J.; Brechtel, T. M.; Pei, F.; Sindi, S. S.; Serio, T. R. Nucleation seed size determines amyloid clearance and establishes a barrier to prion appearance in yeast. Nature structural & molecular biology. 2020. https://doi.org/10.1038/s41594-020-0416-6.
880|sucess-download|Nazif-Muñoz, J. I.; Spengler, J. D.; Arku, R. E.; Oulhote, Y. Solid fuel use and early child development disparities in Ghana: analyses by gender and urbanicity. Journal of exposure science & environmental epidemiology. 2020. https://doi.org/10.1038/s41370-020-0224-4.
881|sucess-download|Noh, J.; Yoo, K. D.; Bae, W.; Lee, J. S.; Kim, K.; Cho, J. H.; Lee, H.; Kim, D. K.; Lim, C. S.; Kang, S. W.; Kim, Y. L.; Kim, Y. S.; Kim, G.; Lee, J. P. Prediction of the Mortality Risk in Peritoneal Dialysis Patients using Machine Learning Models: A Nation-wide Prospective Cohort in Korea. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-64184-0.
882|sucess-download|Blocher McTigue, W. C.; Perry, S. L. Protein Encapsulation Using Complex Coacervates: What Nature Has to Teach Us. Small (Weinheim an der Bergstrasse, Germany). 2020. https://doi.org/10.1002/smll.201907671.
883|sucess-download|Zulch, M. F.; Pilotte, N.; Grant, J. R.; Minetti, C.; Reimer, L. J.; Williams, S. A. Selection and exploitation of prevalent, tandemly repeated genomic targets for improved real-time PCR-based detection of Wuchereria bancrofti and Plasmodium falciparum in mosquitoes. PloS one. 2020. https://doi.org/10.1371/journal.pone.0232325.
884|sucess-download|Larin, I.; Zhang, Y.; Gasparian, A.; Gan, L.; Miskimen, R.; Khandaker, M.; Dale, D.; Danagoulian, S.; Pasyuk, E.; Gao, H.; Ahmidouch, A.; Ambrozewicz, P.; Baturin, V.; Burkert, V.; Clinton, E.; Deur, A.; Dolgolenko, A.; Dutta, D.; Fedotov, G.; Feng, J.; Gevorkyan, S.; Glamazdin, A.; Guo, L.; Isupov, E.; Ito, M. M.; Klein, F.; Kowalski, S.; Kubarovsky, A.; Kubarovsky, V.; Lawrence, D.; Lu, H.; Ma, L.; Matveev, V.; Morrison, B.; Micherdzinska, A.; Nakagawa, I.; Park, K.; Pedroni, R.; Phelps, W.; Protopopescu, D.; Rimal, D.; Romanov, D.; Salgado, C.; Shahinyan, A.; Sober, D.; Stepanyan, S.; Tarasov, V. V.; Taylor, S.; Vasiliev, A.; Wood, M.; Ye, L.; Zihlmann, B. Precision measurement of the neutral pion lifetime. Science (New York, N.Y.). 2020. https://doi.org/10.1126/science.aay6641.
885|sucess-download|Woll, A.; Quick, K. K.; Mazzei, C.; Selameab, T.; Miller, J. L. Working With Interpreters as a Team in Health Care (WITH Care) Curriculum Tool Kit for Oral Health Professions. MedEdPORTAL : the journal of teaching and learning resources. 2020. https://doi.org/10.15766/mep_2374-8265.10894.
886|sucess-download|Venturelli, M.; Ruzzante, F.; Villa, F.; Rudi, D.; Tarperi, C.; Milanese, C.; Cavedon, V.; Fonte, C.; Picelli, A.; Smania, N.; Calabria, E.; Skafidas, S.; Fochi, S.; Romanelli, M. G.; Layec, G.; Schena, F. Response: Commentary: Neuromuscular and Muscle Metabolic Functions in MELAS Before and After Resistance Training: A Case Study. Frontiers in physiology. 2020. https://doi.org/10.3389/fphys.2020.00337.
887|sucess-download|Li, T.; Yang, L.; Wu, Y.; Wang, J.; Jia, B.; Hu, Q.; Russell, T. P.; Zhan, X. Comparison of Fused-Ring Electron Acceptors with One- and Multidimensional Conformations. ACS applied materials & interfaces. 2020. https://doi.org/10.1021/acsami.0c04674.
888|sucess-download|Toro-Uribe, S.; Ibañez, E.; Decker, E. A.; Villamizar-Jaimes, A. R.; López-Giraldo, L. J. Food-Safe Process for High Recovery of Flavonoids from Cocoa Beans: Antioxidant and HPLC-DAD-ESI-MS/MS Analysis. Antioxidants (Basel, Switzerland). 2020. https://doi.org/10.3390/antiox9050364.
889|sucess-download|Niu, C.; Yang, Y.; Huynh, A.; Nazy, I.; Kaltashov, I. A. Platelet Factor 4 Interactions with Short Heparin Oligomers: Implications for Folding and Assembly. Biophysical journal. 2020. https://doi.org/10.1016/j.bpj.2020.04.012.
890|sucess-download|Niu, C.; Zhao, Y.; Bobst, C. E.; Savinov, S. N.; Kaltashov, I. A. Identification of Protein Recognition Elements within Heparin Chains Using Enzymatic Foot-Printing in Solution and Online SEC/MS. Analytical chemistry. 2020. https://doi.org/10.1021/acs.analchem.0c00115.
891|sucess-download|Marcus, J. L.; Sewell, W. C.; Balzer, L. B.; Krakower, D. S. Artificial Intelligence and Machine Learning for HIV Prevention: Emerging Approaches to Ending the Epidemic. Current HIV/AIDS reports. 2020. https://doi.org/10.1007/s11904-020-00490-6.
892|shorty-download|Geng, Y.; Chattopadhyay, A. N.; Zhang, X.; Jiang, M.; Luther, D. C.; Gopalakrishnan, S.; Rotello, V. M. Nano Assessing Nano: Nanosensor-Enabled Detection of Cell Phenotypic Changes Identifies Nanoparticle Toxicological Effects at Ultra-Low Exposure Levels. Small (Weinheim an der Bergstrasse, Germany). 2020. https://doi.org/10.1002/smll.202002084.
893|shorty-download|Lord, S. J.; Velle, K. B.; Mullins, R. D.; Fritz-Laylin, L. K. SuperPlots: Communicating reproducibility and variability in cell biology. The Journal of cell biology. 2020. https://doi.org/10.1083/jcb.202001064.
894|sucess-download|Figueiredo, M. L.; Figueiredo Neto, M.; Salameh, J. W.; Decker, R. E.; Letteri, R.; Chan-Seng, D.; Emrick, T. Ligand-Mediated Targeting of Cytokine Interleukin-27 Enhances Its Bioactivity Molecular therapy. Methods & clinical development. 2020. https://doi.org/10.1016/j.omtm.2020.03.022.
895|sucess-download|Arbabi, A.; Arbabi, E.; Mansouree, M.; Han, S.; Kamali, S. M.; Horie, Y.; Faraon, A. Increasing efficiency of high numerical aperture metasurfaces using the grating averaging technique. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-64198-8.
896|sucess-download|Jia, Z.; Schmit, J. D.; Chen, J. Amyloid assembly is dominated by misregistered kinetic traps on an unbiased energy landscape. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1911153117.
897|sucess-download|Calabrese, E. J.; Agathokleous, E. Theodosius Dobzhansky's view on biology and evolution v.2.0: "Nothing in biology makes sense except in light of evolution and evolution's dependence on hormesis-mediated acquired resilience that optimizes biological performance and numerous diverse short and longer term protective strategies". Environmental research. 2020. https://doi.org/10.1016/j.envres.2020.109559.
898|sucess-download|Kumar, R.; Ferrie, R. P.; Balmert, L. C.; Kienzl, M.; Rifas-Shiman, S. L.; Gold, D. R.; Sordillo, J. E.; Kleinman, K.; Camargo, C. A.; Litonjua, A. A.; Oken, E.; Cook-Mills, J. M. Associations of α- and γ-tocopherol during early life with lung function in childhood. The Journal of allergy and clinical immunology. 2020. https://doi.org/10.1016/j.jaci.2020.04.019.
899|sucess-download|Becker, N.; Cordeiro, L. S.; Poudel, K. C.; Sibiya, T. E.; Sayer, A. G.; Sibeko, L. N. Individual, household, and community level barriers to ART adherence among women in rural Eswatini. PloS one. 2020. https://doi.org/10.1371/journal.pone.0231952.
900|sucess-download|Migueles, J. H.; Cadenas-Sanchez, C.; Aguiar, E. J.; Molina-Garcia, P.; Solis-Urra, P.; Mora-Gonzalez, J.; García-Mármol, E.; Shiroma, E. J.; Labayen, I.; Chillón, P.; Löf, M.; Tudor-Locke, C.; Ortega, F. B. Step-Based Metrics and Overall Physical Activity in Children With Overweight or Obesity: Cross-Sectional Study. JMIR mHealth and uHealth. 2020. https://doi.org/10.2196/14841.
901|sucess-download|Sloutsky, R.; Stratton, M. M. Functional implications of CaMKII alternative splicing. The European journal of neuroscience. 2020. https://doi.org/10.1111/ejn.14761.
902|sucess-download|de Andrade E Souza Mazuchi, F.; Mochizuki, L.; Hamill, J.; Franciulli, P. M.; Bigongiari, A.; de Almeida Martins, I. T.; Ervilha, U. F. Joint-Position Sense Accuracy Is Equally Affected by Vision among Children with and without Cerebral Palsy. Journal of motor behavior. 2020. https://doi.org/10.1080/00222895.2020.1756732.
903|sucess-download|Lin, D.; Long, X.; Xiao, L.; Wu, Z.; Chen, H.; Zhang, Q.; Wu, D.; Qin, W.; Xing, B. Study on the functional properties and structural characteristics of soybean soluble polysaccharides by mixed bacteria fermentation and microwave treatment. International journal of biological macromolecules. 2020. https://doi.org/10.1016/j.ijbiomac.2020.04.133.
904|shorty-download|Gómez Penedo, J. M.; Coyne, A. E.; Constantino, M. J.; Krieger, T.; Hayes, A. M.; Grosse Holtforth, M. Theory-specific patient change processes and mechanisms in different cognitive therapies for depression. Journal of consulting and clinical psychology. 2020. https://doi.org/10.1037/ccp0000502.
905|sucess-download|Li, M.; Tian, X.; Garg, S.; Rufford, T. E.; Zhao, P.; Wu, Y.; Yago, A. J.; Ge, L.; Rudolph, V.; Wang, G. Modulated Sn Oxidation States over a Cu ACS applied materials & interfaces. 2020. https://doi.org/10.1021/acsami.0c00412.
906|sucess-download|Martinez, D. A.; Cai, J.; Oke, J. B.; Jarrell, A. S.; Feijoo, F.; Appelbaum, J.; Klein, E.; Barnes, S.; Levin, S. R. Where is my infusion pump? Harnessing network dynamics for improved hospital equipment fleet management. Journal of the American Medical Informatics Association : JAMIA. 2020. https://doi.org/10.1093/jamia/ocaa033.
907|sucess-download|Salicioni, A. M.; Gervasi, M. G.; Sosnik, J.; Tourzani, D. A.; Nayyab, S.; Caraballo, D. A.; Visconti, P. E. Testis-specific serine kinase protein family in male fertility and as targets for non-hormonal male contraception†. Biology of reproduction. 2020. https://doi.org/10.1093/biolre/ioaa064.
908|sucess-download|Mistikawy, J. A.; Mackowiak, T. J.; Butler, M. J.; Mischenko, I. C.; Cernak, R. S.; Richardson, J. B. Chromium, manganese, nickel, and cobalt mobility and bioavailability from mafic-to-ultramafic mine spoil weathering in western Massachusetts, USA. Environmental geochemistry and health. 2020. https://doi.org/10.1007/s10653-020-00566-7.
909|sucess-download|Hafer, J. F.; Boyer, K. A. Comparisons of Knee Extensor Functional Demand During Gait by Age, Physical Activity Level, and the Impact of Acute Exercise and Walking Speed. Journal of applied biomechanics. 2020. https://doi.org/10.1123/jab.2019-0361.
910|sucess-download|Quinn, B.; Giuliano, K. K.; Baker, D. Non-ventilator health care-associated pneumonia (NV-HAP): Best practices for prevention of NV-HAP. American journal of infection control. 2020. https://doi.org/10.1016/j.ajic.2020.03.006.
911|sucess-download|Tang, H.; Zhang, S.; Huang, T.; Cui, F.; Xing, B. pH-Dependent adsorption of aromatic compounds on graphene oxide: An experimental, molecular dynamics simulation and density functional theory investigation. Journal of hazardous materials. 2020. https://doi.org/10.1016/j.jhazmat.2020.122680.
912|sucess-download|Benjamin-Chung, J.; Pilotte, N.; Ercumen, A.; Grant, J. R.; Maasch, J. R.; Gonzalez, A. M.; Ester, A. C.; Arnold, B. F.; Rahman, M.; Haque, R.; Hubbard, A. E.; Luby, S. P.; Williams, S. A.; Colford, J. M. Comparison of multi-parallel qPCR and double-slide Kato-Katz for detection of soil-transmitted helminth infection among children in rural Bangladesh. PLoS neglected tropical diseases. 2020. https://doi.org/10.1371/journal.pntd.0008087.
913|sucess-download|Bauernfeind, A. L.; Babbitt, C. C. Metabolic changes in human brain evolution. Evolutionary anthropology. 2020. https://doi.org/10.1002/evan.21831.
914|sucess-download|Jiang, Y.; Chakroun, R.; Gu, P.; Gröschel, A. H.; Russell, T. P. Soft Polymer Janus Nanoparticles at Liquid-Liquid Interfaces. Angewandte Chemie (International ed. in English). 2020. https://doi.org/10.1002/anie.202004162.
915|sucess-download|Troller-Renfree, S. V.; Brito, N. H.; Desai, P. M.; Leon-Santos, A. G.; Wiltshire, C. A.; Motton, S. N.; Meyer, J. S.; Isler, J.; Fifer, W. P.; Noble, K. G. Infants of mothers with higher physiological stress show alterations in brain function. Developmental science. 2020. https://doi.org/10.1111/desc.12976.
916|shorty-download|Kumar, D.; Russell, T. P.; Davidovitch, B.; Menon, N. Publisher Correction: Stresses in thin sheets at fluid interfaces. Nature materials. 2020. https://doi.org/10.1038/s41563-020-0691-y.
917|sucess-download|Sun, H.; Li, L.; Russell, T. P.; Shi, S. Photoresponsive Structured Liquids Enabled by Molecular Recognition at Liquid-Liquid Interfaces. Journal of the American Chemical Society. 2020. https://doi.org/10.1021/jacs.0c02555.
918|sucess-download|Chen, H.; Zhao, R.; Hu, J.; Wei, Z.; McClements, D. J.; Liu, S.; Li, B.; Li, Y. One-Step Dynamic Imine Chemistry for Preparation of Chitosan-Stabilized Emulsions Using a Natural Aldehyde: Acid Trigger Mechanism and Regulation and Gastric Delivery. Journal of agricultural and food chemistry. 2020. https://doi.org/10.1021/acs.jafc.9b08301.
919|sucess-download|Tamashunas, A. C.; Tocco, V. J.; Matthews, J.; Zhang, Q.; Atanasova, K. R.; Paschall, L.; Pathak, S.; Ratnayake, R.; Stephens, A. D.; Luesch, H.; Licht, J. D.; Lele, T. P. High-throughput gene screen reveals modulators of nuclear shape. Molecular biology of the cell. 2020. https://doi.org/10.1091/mbc.E19-09-0520.
920|sucess-download|Jaremka, L. M.; Ackerman, J. M.; Gawronski, B.; Rule, N. O.; Sweeny, K.; Tropp, L. R.; Metz, M. A.; Molina, L.; Ryan, W. S.; Vick, S. B. Common Academic Experiences No One Talks About: Repeated Rejection, Impostor Syndrome, and Burnout. Perspectives on psychological science : a journal of the Association for Psychological Science. 2020. https://doi.org/10.1177/1745691619898848.
921|sucess-download|Fu, T.; Liu, X.; Gao, H.; Ward, J. E.; Liu, X.; Yin, B.; Wang, Z.; Zhuo, Y.; Walker, D. J.; Joshua Yang, J.; Chen, J.; Lovley, D. R.; Yao, J. Bioinspired bio-voltage memristors. Nature communications. 2020. https://doi.org/10.1038/s41467-020-15759-y.
922|sucess-download|Alizadeh-Sani, M.; Mohammadian, E.; McClements, D. J. Eco-friendly active packaging consisting of nanostructured biopolymer matrix reinforced with TiO Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.126782.
923|sucess-download|Westling, T.; Cowden, C.; Mwananyanda, L.; Kapasa, M. L.; Machona, S.; Pierre, C.; Mitra, N.; Hamer, D. H.; Coffin, S. E. Impact of chlorhexidine baths on suspected sepsis and bloodstream infections in hospitalized neonates in Zambia. International journal of infectious diseases : IJID : official publication of the International Society for Infectious Diseases. 2020. https://doi.org/10.1016/j.ijid.2020.03.043.
924|sucess-download|Malik, N.; Wahlbeck, K. A.; Thompson, L. K. Strategies for identifying dynamic regions in protein complexes: Flexibility changes accompany methylation in chemotaxis receptor signaling states. Biochimica et biophysica acta. Biomembranes. 2020. https://doi.org/10.1016/j.bbamem.2020.183312.
925|sucess-download|Kanniyappan, U.; Wang, B.; Yang, C.; Ghassemi, P.; Litorja, M.; Suresh, N.; Wang, Q.; Chen, Y.; Pfefer, T. J. Performance test methods for near-infrared fluorescence imaging. Medical physics. 2020. https://doi.org/10.1002/mp.14189.
926|shorty-download|Bashkanov, M.; Watts, D. P.; Kay, S. J.; Abt, S.; Achenbach, P.; Adlarson, P.; Afzal, F.; Ahmed, Z.; Akondi, C. S.; Annand, J. R.; Arends, H. J.; Beck, R.; Biroth, M.; Borisov, N.; Braghieri, A.; Briscoe, W. J.; Cividini, F.; Collicott, C.; Costanza, S.; Denig, A.; Downie, E. J.; Drexler, P.; Fegan, S.; Fix, A.; Gardner, S.; Ghosal, D.; Glazier, D. I.; Gorodnov, I.; Gradl, W.; Günther, M.; Gurevich, D.; Heijkenskjöld, L.; Hornidge, D.; Huber, G. M.; Käser, A.; Kashevarov, V. L.; Korolija, M.; Krusche, B.; Lazarev, A.; Livingston, K.; Lutterer, S.; MacGregor, I. J.; Manley, D. M.; Martel, P. P.; Miskimen, R.; Mornacchi, E.; Mullen, C.; Neganov, A.; Neiser, A.; Ostrick, M.; Otte, P. B.; Paudyal, D.; Pedroni, P.; Powell, A.; Prakhov, S. N.; Ron, G.; Sarty, A.; Sfienti, C.; Sokhoyan, V.; Spieker, K.; Steffen, O.; Strakovsky, I. I.; Strub, T.; Supek, I.; Thiel, A.; Thiel, M.; Thomas, A.; Usov, Y. A.; Wagner, S.; Walford, N. K.; Werthmüller, D.; Wettig, J.; Wolfes, M.; Zachariou, N.; Zana, L. A. Signatures of the d^{*}(2380) Hexaquark in d(γ,pn[over →]). Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.124.132001.
927|sucess-download|Kumar, D.; Russell, T. P.; Davidovitch, B.; Menon, N. Stresses in thin sheets at fluid interfaces. Nature materials. 2020. https://doi.org/10.1038/s41563-020-0640-9.
928|sucess-download|Korner, K.; Kuenstler, A. S.; Hayward, R. C.; Audoly, B.; Bhattacharya, K. A nonlinear beam model of photomotile structures. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1915374117.
929|sucess-download|Allyn, A. J.; Alexander, M. A.; Franklin, B. S.; Massiot-Granier, F.; Pershing, A. J.; Scott, J. D.; Mills, K. E. Comparing and synthesizing quantitative distribution models and qualitative vulnerability assessments to project marine species distributions under climate change. PloS one. 2020. https://doi.org/10.1371/journal.pone.0231595.
930|shorty-download|Bian, P.; Steinitz-Kannan, M.; McCarthy, T. J. Reply to Comment on "Amoebae Assemble Synthetic Spherical Particles To Form Reproducible Constructs". Langmuir : the ACS journal of surfaces and colloids. 2020. https://doi.org/10.1021/acs.langmuir.0c00903.
931|sucess-download|Waters, E. R.; Vierling, E. Plant small heat shock proteins - evolutionary and functional diversity. The New phytologist. 2020. https://doi.org/10.1111/nph.16536.
932|sucess-download|Deol, K. K.; Eyles, S. J.; Strieter, E. R. Quantitative Middle-Down MS Analysis of Parkin-Mediated Ubiquitin Chain Assembly. Journal of the American Society for Mass Spectrometry. 2020. https://doi.org/10.1021/jasms.0c00058.
933|sucess-download|Weerasinghe, A.; Wirth, B. D.; Maroudas, D. Elastic Properties of Plasma-Exposed Tungsten Predicted by Molecular-Dynamics Simulations. ACS applied materials & interfaces. 2020. https://doi.org/10.1021/acsami.0c01381.
934|sucess-download|Abdullah, M.; Nelson, R. J.; Kittilstved, K. R. On the formation of superoxide radicals on colloidal ATiO Nanoscale advances. 2020. https://doi.org/10.1039/d0na00106f.
935|sucess-download|Santos-Concejero, J.; González-Mohíno, F.; González-Ravé, J. M.; Perrey, S.; Dewolf, A. H.; Yates, B. A.; Ušaj, A.; Debevec, T.; González-Rayas, J. M.; Rayas-Gómez, A. L.; González-Yáñez, J. M.; Lepers, R.; Stapley, P.; Louis, J.; Proessl, F.; Nikolaidis, P. T.; Knechtle, B.; Muniz-Pumares, D.; Hunter, B.; Bottoms, L.; Bontemps, B.; Valenzuela, P. L.; Boullosa, D.; Del Coso, J.; Blagrove, R. C.; Hayes, P. R.; Millet, G. P.; Malatesta, D.; de Almeida Costa Campos, Y.; Pereira Guimarães, M.; Macedo Vianna, J.; Fernandes da Silva, S.; Silva Marques de Azevedo, P. H.; Paris, H. L.; Leist, M. A.; Lige, M. T.; Malysa, W.; Oumsang, A. S.; Sinai, E. C.; Hansen, R. K.; Secher, N. H.; Volianitis, S.; Hottenrott, L.; Hottenrott, K.; Gronwald, T.; Senefeld, J. W.; Fernandes, R. J.; Vilas-Boas, J. P.; Riveros-Rivera, A.; Böning, D.; Craighead, D. H.; Kipp, S.; Kram, R.; Zinner, C.; Sperlich, B.; Holmberg, H. C.; Muniz-Pardos, B.; Sutehall, S.; Angeloudis, K.; Guppy, F. M.; Bosch, A.; Pitsiladis, Y.; Andrade, D. C.; Del Rio, R.; Ramirez-Campillo, R.; Lopes, T. R.; Silva, B. M.; Ives, S. J.; Weyand, P. G.; Brietzke, C.; Franco-Alvarenga, P. E.; Meireles dos Santos, T.; Pires, F. O.; Layec, G.; Hoogkamer, W.; Balestrini, C. S.; Goss, C. S.; Gabler, M. C.; Escalera, A.; Bielko, S. A.; Chapman, R. F. Commentaries on Viewpoint: Physiology and fast marathons. Journal of applied physiology (Bethesda, Md. : 1985). 2020. https://doi.org/10.1152/japplphysiol.00167.2020.
936|sucess-download|Kavunja, H. W.; Biegas, K. J.; Banahene, N.; Stewart, J. A.; Piligian, B. F.; Groenevelt, J. M.; Sein, C. E.; Morita, Y. S.; Niederweis, M.; Siegrist, M. S.; Swarts, B. M. Photoactivatable Glycolipid Probes for Identifying Mycolate-Protein Interactions in Live Mycobacteria. Journal of the American Chemical Society. 2020. https://doi.org/10.1021/jacs.0c01065.
937|sucess-download|Darszon, A.; Nishigaki, T.; López-González, I.; Visconti, P. E.; Treviño, C. L. Differences and Similarities: The Richness of Comparative Sperm Physiology. Physiology (Bethesda, Md.). 2020. https://doi.org/10.1152/physiol.00033.2019.
938|sucess-download|Arts, K.; Melero, Y.; Webster, G.; Sharma, N.; Tintarev, N.; Tait, E.; Mellish, C.; Sripada, S.; MacMaster, A. M.; Sutherland, H.; Horrill, C.; Lambin, X.; van der Wal, R. On the merits and pitfalls of introducing a digital platform to aid conservation management: Volunteer data submission and the mediating role of volunteer coordinators. Journal of environmental management. 2020. https://doi.org/10.1016/j.jenvman.2020.110497.
939|sucess-download|Peng, Y.; Gan, R.; Li, H.; Yang, M.; McClements, D. J.; Gao, R.; Sun, Q. Absorption, metabolism, and bioactivity of vitexin: recent advances in understanding the efficacy of an important nutraceutical. Critical reviews in food science and nutrition. 2020. https://doi.org/10.1080/10408398.2020.1753165.
940|sucess-download|Barney, C. W.; Dougan, C. E.; McLeod, K. R.; Kazemi-Moridani, A.; Zheng, Y.; Ye, Z.; Tiwari, S.; Sacligil, I.; Riggleman, R. A.; Cai, S.; Lee, J. H.; Peyton, S. R.; Tew, G. N.; Crosby, A. J. Cavitation in soft matter. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1920168117.
941|sucess-download|Gu, Y.; Liu, Y.; Russell, T. P. Fullerene-Based Interlayers for Breaking Energy Barriers in Organic Solar Cells. ChemPlusChem. 2020. https://doi.org/10.1002/cplu.202000082.
942|sucess-download|Sueviriyapan, N.; Tso, C. F.; Herzog, E. D.; Henson, M. A. Astrocytic Modulation of Neuronal Activity in the Suprachiasmatic Nucleus: Insights from Mathematical Modeling. Journal of biological rhythms. 2020. https://doi.org/10.1177/0748730420913672.
943|sucess-download|Yu, Z.; Shen, J.; Li, Z.; Yao, J.; Li, W.; Xue, L.; Vandenberg, L. N.; Yin, D. Obesogenic Effect of Sulfamethoxazole on Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.9b07889.
944|sucess-download|Coomey, J. H.; Sibout, R.; Hazen, S. P. Grass secondary cell walls, Brachypodium distachyon as a model for discovery. The New phytologist. 2020. https://doi.org/10.1111/nph.16603.
945|sucess-download|Miao, X.; Sun, T.; Barletta, H.; Mager, J.; Cui, W. Loss of RBBP4 results in defective inner cell mass, severe apoptosis, hyperacetylated histones and preimplantation lethality in mice†. Biology of reproduction. 2020. https://doi.org/10.1093/biolre/ioaa046.
946|sucess-download|Tomaskovic-Devey, D.; Rainey, A.; Avent-Holt, D.; Bandelj, N.; Boza, I.; Cort, D.; Godechot, O.; Hajdu, G.; Hällsten, M.; Henriksen, L. F.; Hermansen, A. S.; Hou, F.; Jung, J.; Kanjuo-Mrčela, A.; King, J.; Kodama, N.; Kristal, T.; Křížková, A.; Lippényi, Z.; Melzer, S. M.; Mun, E.; Penner, A.; Petersen, T.; Poje, A.; Safi, M.; Thaning, M.; Tufail, Z. Rising between-workplace inequalities in high-income countries. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1918249117.
947|sucess-download|Hilvert, E.; Hoover, J.; Sterling, A.; Schroeder, S. Comparing Tense and Agreement Productivity in Boys With Fragile X Syndrome, Children With Developmental Language Disorder, and Children With Typical Development. Journal of speech, language, and hearing research : JSLHR. 2020. https://doi.org/10.1044/2019_JSLHR-19-00022.
948|sucess-download|Torres-Ocampo, A. P.; Özden, C.; Hommer, A.; Gardella, A.; Lapinskas, E.; Samkutty, A.; Esposito, E.; Garman, S. C.; Stratton, M. M. Characterization of CaMKIIα holoenzyme stability. Protein science : a publication of the Protein Society. 2020. https://doi.org/10.1002/pro.3869.
949|sucess-download|Richardson, J. B. Urban forests near municipal solid waste incinerators do not show elevated trace metal or rare earth element concentrations across three cities in the northeast USA. Environmental science and pollution research international. 2020. https://doi.org/10.1007/s11356-020-08439-3.
950|sucess-download|Andrieu, C.; Montigny, A.; Bibonne, A.; Despin-Guitard, E.; Alfandari, D.; Théveneau, E. MMP14 is required for delamination of chick neural crest cells independently of its catalytic activity. Development (Cambridge, England). 2020. https://doi.org/10.1242/dev.183954.
951|sucess-download|Foulkes, A. S.; Balasubramanian, R.; Qian, J.; Reilly, M. P. Non-random sampling leads to biased estimates of transcriptome association. Scientific reports. 2020. https://doi.org/10.1038/s41598-020-62575-x.
952|sucess-download|Barraza, A. D.; Komoroske, L. M.; Allen, C. D.; Eguchi, T.; Gossett, R.; Holland, E.; Lawson, D. D.; LeRoux, R. A.; Lorenzi, V.; Seminoff, J. A.; Lowe, C. G. Persistent organic pollutants in green sea turtles (Chelonia mydas) inhabiting two urbanized Southern California habitats. Marine pollution bulletin. 2020. https://doi.org/10.1016/j.marpolbul.2020.110979.
953|sucess-download|Huang, Y.; Liu, C.; Cui, P.; Dang, F.; Li, M.; Xing, B.; Zhou, D. Copper(I) Promotes Silver Sulfide Dissolution and Increases Silver Phytoavailability. Environmental science & technology. 2020. https://doi.org/10.1021/acs.est.0c00929.
954|sucess-download|Shimosaka, T.; McCarthy, T. J. Sessile Liquid Features as Molds for Silicone Elastomers. Langmuir : the ACS journal of surfaces and colloids. 2020. https://doi.org/10.1021/acs.langmuir.0c00225.
955|sucess-download|Moore, B. C.; Francis, R.; Foster, A.; Kelly, D. A.; Does, M.; Kim, D. K.; Groenewald, H. B.; Myburgh, J. G. Morphological changes associated with Nile crocodile (Crocodylus niloticus) phallic glans inflation. Journal of morphology. 2020. https://doi.org/10.1002/jmor.21126.
956|sucess-download|Castellanos-García, L. J.; Gokhan Elci, S.; Vachet, R. W. Reconstruction, analysis, and segmentation of LA-ICP-MS imaging data using Python for the identification of sub-organ regions in tissues. The Analyst. 2020. https://doi.org/10.1039/c9an02472g.
957|sucess-download|Su, H. I.; Kwan, B.; Whitcomb, B. W.; Shliakhsitsava, K.; Dietz, A. C.; Stark, S. S.; Martinez, E.; Sluss, P. M.; Sammel, M. D.; Natarajan, L. Modeling Variation in the Reproductive Lifespan of Female Adolescent and Young Adult Cancer Survivors Using AMH. The Journal of clinical endocrinology and metabolism. 2020. https://doi.org/10.1210/clinem/dgaa172.
958|shorty-download|Blair, J.; Gwiazdowski, R.; Borrelli, A.; Hotchkiss, M.; Park, C.; Perrett, G.; Hanner, R. Towards a catalogue of biodiversity databases: An ontological case study. Biodiversity data journal. 2020. https://doi.org/10.3897/BDJ.8.e32765.
959|shorty-download|Griffith, D. M.; Jaeger, E. C.; Valdez, L. A.; Schaefer Solle, N.; Garcia, D. O.; Alexander, L. R. Developing a "Tailor-Made" Precision Lifestyle Medicine Intervention for Weight Control among Middle-aged Latino Men. Ethnicity & disease. 2020. https://doi.org/10.18865/ed.30.S1.203.
960|sucess-download|Kiely, D. P.; Wysocki, A. B. Federal funding of nursing research by the National Institutes of Health (NIH): 1993 to 2017. Nursing outlook. 2020. https://doi.org/10.1016/j.outlook.2019.12.006.
961|sucess-download|Minetti, C.; Pilotte, N.; Zulch, M.; Canelas, T.; Tettevi, E. J.; Veriegh, F. B.; Osei-Atweneboana, M. Y.; Williams, S. A.; Reimer, L. J. Field evaluation of DNA detection of human filarial and malaria parasites using mosquito excreta/feces. PLoS neglected tropical diseases. 2020. https://doi.org/10.1371/journal.pntd.0008175.
962|sucess-download|Hobson, C. M.; Kern, M.; O'Brien, E. T.; Stephens, A. D.; Falvo, M. R.; Superfine, R. Correlating nuclear morphology and external force with combined atomic force microscopy and light sheet imaging separates roles of chromatin and lamin A/C in nuclear mechanics. Molecular biology of the cell. 2020. https://doi.org/10.1091/mbc.E20-01-0073.
963|sucess-download|McClements, D. J. Development of Next-Generation Nutritionally Fortified Plant-Based Milk Substitutes: Structural Design Principles. Foods (Basel, Switzerland). 2020. https://doi.org/10.3390/foods9040421.
964|sucess-download|Reznik-Zellen, R.; Carroll, A. J.; Harrington, E. G.; Joubert, D. J.; Nix, T.; Alpi, K. M. Building visualization skills through investigating the Journal of the Medical Library Association : JMLA. 2020. https://doi.org/10.5195/jmla.2020.775.
965|sucess-download|Kang, L.; Ye, S.; Jing, K.; Fan, Y.; Chen, Q.; Zhang, N.; Zhang, B. A Segmented Logistic Regression Approach to Evaluating Change in Caesarean Section Rate with Reform of Birth Planning Policy in Two Regions in China from 2012 to 2016. Risk management and healthcare policy. 2020. https://doi.org/10.2147/RMHP.S230923.
966|sucess-download|Winsor, A. M.; Ihle, M.; Taylor, L. A. Methods for independently manipulating palatability and color in small insect prey. PloS one. 2020. https://doi.org/10.1371/journal.pone.0231205.
967|sucess-download|Muse, M. E.; Titus, A. J.; Salas, L. A.; Wilkins, O. M.; Mullen, C.; Gregory, K. J.; Schneider, S. S.; Crisi, G. M.; Jawale, R. M.; Otis, C. N.; Christensen, B. C.; Arcaro, K. F. Enrichment of CpG island shore region hypermethylation in epigenetic breast field cancerization. Epigenetics. 2020. https://doi.org/10.1080/15592294.2020.1747748.
968|sucess-download|Karn, A.; Zhao, C.; Yang, F.; Cui, J.; Gao, Z.; Wang, M.; Wang, F.; Xiao, H.; Zheng, J. Critical reviews in food science and nutrition. 2020. https://doi.org/10.1080/10408398.2020.1746234.
969|sucess-download|Berg, O. K.; Kwon, O. S.; Hureau, T. J.; Clifton, H. L.; Thurston, T. S.; Le Fur, Y.; Jeong, E. K.; Trinity, J. D.; Richardson, R. S.; Wang, E.; Layec, G. Skeletal Muscle Mitochondrial Adaptations to Maximal Strength Training in Older Adults. The journals of gerontology. Series A, Biological sciences and medical sciences. 2020. https://doi.org/10.1093/gerona/glaa082.
970|sucess-download|Cheung, A. Y.; Qu, L. J.; Russinova, E.; Zhao, Y.; Zipfel, C. Update on Receptors and Signaling. Plant physiology. 2020. https://doi.org/10.1104/pp.20.00275.
971|shorty-download|Young-Mason, J. How to Argue With Kindness and Care. Clinical nurse specialist CNS. 2020. https://doi.org/10.1097/NUR.0000000000000513.
972|sucess-download|Jiang, Z.; Dai, Y.; Du, T. Comparison of the energetic, environmental, and economic performances of three household-based modern bioenergy utilization systems in China. Journal of environmental management. 2020. https://doi.org/10.1016/j.jenvman.2020.110481.
973|sucess-download|Rothenberg, W. A.; Lansford, J. E.; Bacchini, D.; Bornstein, M. H.; Chang, L.; Deater-Deckard, K.; Di Giunta, L.; Dodge, K. A.; Malone, P. S.; Oburu, P.; Pastorelli, C.; Skinner, A. T.; Sorbring, E.; Steinberg, L.; Tapanya, S.; Tirado, L. M.; Yotanyamaneewong, S.; Alampay, L. P.; Al-Hassan, S. M. Cross-cultural effects of parent warmth and control on aggression and rule-breaking from ages 8 to 13. Aggressive behavior. 2020. https://doi.org/10.1002/ab.21892.
974|sucess-download|Duan, J. J.; Bauer, L. S.; Van Driesche, R.; Schmude, J. M.; Petrice, T.; Chandler, J. L.; Elkinton, J. Effects of Extreme Low Winter Temperatures on the Overwintering Survival of the Introduced Larval Parasitoids Spathius galinae and Tetrastichus planipennisi: Implications for Biological Control of Emerald Ash Borer in North America. Journal of economic entomology. 2020. https://doi.org/10.1093/jee/toaa048.
975|sucess-download|Medina, M. A.; Oza, G.; Sharma, A.; Arriaga, L. G.; Hernández Hernández, J. M.; Rotello, V. M.; Ramirez, J. T. Triple-Negative Breast Cancer: A Review of Conventional and Advanced Therapeutic Strategies. International journal of environmental research and public health. 2020. https://doi.org/10.3390/ijerph17062078.
976|sucess-download|Dhuguru, J.; Skouta, R. Role of Indole Scaffolds as Pharmacophores in the Development of Anti-Lung Cancer Agents. Molecules (Basel, Switzerland). 2020. https://doi.org/10.3390/molecules25071615.
977|sucess-download|Lawrence, M. J.; Raby, G. D.; Teffer, A. K.; Jeffries, K. M.; Danylchuk, A. J.; Eliason, E. J.; Hasler, C. T.; Clark, T. D.; Cooke, S. J. Best practices for non-lethal blood sampling of fish via the caudal vasculature. Journal of fish biology. 2020. https://doi.org/10.1111/jfb.14339.
978|shorty-download|Nazif-Munoz, J. I.; Cuadrado, C.; Oulhote, Y.; Spengler, J. Do Election Laws Restricting Public Road Publicity Reduce Road Traffic Crashes and Their Consequences? Epidemiology (Cambridge, Mass.). 2020. https://doi.org/10.1097/EDE.0000000000001194.
979|shorty-download|Reecht, G.; Krane, N.; Lotze, C.; Zhang, L.; Briseno, A. L.; Franke, K. J. Vibrational Excitation Mechanism in Tunneling Spectroscopy beyond the Franck-Condon Model. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.124.116804.
980|sucess-download|Nazif-Muñoz, J. I.; Batomen, B.; Oulhote, Y.; Spengler, J.; Nandi, A. State or market? How to effectively decrease alcohol-related crash fatalities and injuries. Journal of epidemiology and community health. 2020. https://doi.org/10.1136/jech-2019-213191.
981|sucess-download|Peng, C.; Heng, Y. J.; Lu, D.; DuPre, N. C.; Kensler, K. H.; Glass, K.; Zeleznik, O. A.; Kraft, P.; Feldman, D.; Hankinson, S. E.; Rexrode, K.; Eliassen, A. H.; Tamimi, R. M. Prediagnostic 25-Hydroxyvitamin D Concentrations in Relation to Tumor Molecular Alterations and Risk of Breast Cancer Recurrence. Cancer epidemiology, biomarkers & prevention : a publication of the American Association for Cancer Research, cosponsored by the American Society of Preventive Oncology. 2020. https://doi.org/10.1158/1055-9965.EPI-19-1217.
982|failed-download|Lau, H. K.; Rattan, S.; Fu, H.; Garcia, C. G.; Barber, D. M.; Kiick, K. L.; Crosby, A. J. Micromechanical Properties of Microstructured Elastomeric Hydrogels. Macromolecular bioscience. 2020. https://doi.org/10.1002/mabi.201900360.
983|sucess-download|Ma, N.; Du, H.; Ma, G.; Yang, W.; Han, Y.; Hu, Q.; Xiao, H. Characterization of the Immunomodulatory Mechanism of a Journal of agricultural and food chemistry. 2020. https://doi.org/10.1021/acs.jafc.0c00219.
984|sucess-download|Zhao, J.; Ning, F.; Cao, X.; Yao, H.; Wang, Z.; Xing, B. Photo-transformation of graphene oxide in the presence of co-existing metal ions regulated its toxicity to freshwater algae. Water research. 2020. https://doi.org/10.1016/j.watres.2020.115735.
985|shorty-download|Benjamin, E.; Ziss, B. E.; George, B. R. Representation Is Never Perfect, But Are Parents Even Representatives? The American journal of bioethics : AJOB. 2020. https://doi.org/10.1080/15265161.2020.1730505.
986|sucess-download|Lebeaux, R. M.; Doherty, B. T.; Gallagher, L. G.; Zoeller, R. T.; Hoofnagle, A. N.; Calafat, A. M.; Karagas, M. R.; Yolton, K.; Chen, A.; Lanphear, B. P.; Braun, J. M.; Romano, M. E. Maternal serum perfluoroalkyl substance mixtures and thyroid hormone concentrations in maternal and cord sera: The HOME Study. Environmental research. 2020. https://doi.org/10.1016/j.envres.2020.109395.
987|sucess-download|Koppenhӧfer, A. M.; Wu, S.; Kostromytska, O. S. Microsclerotial Granular Formulation of the Entomopathogenic Fungus Metarhizium brunneum and Its Combinations With Hydrogel and Imidacloprid Against the Annual Bluegrass Weevil (Coleoptera: Curculionidae). Journal of economic entomology. 2020. https://doi.org/10.1093/jee/toaa052.
988|sucess-download|Wang, Y.; Yang, J.; Wang, W.; Sanidad, K. Z.; Cinelli, M. A.; Wan, D.; Hwang, S. H.; Kim, D.; Lee, K. S.; Xiao, H.; Hammock, B. D.; Zhang, G. Soluble epoxide hydrolase is an endogenous regulator of obesity-induced intestinal barrier dysfunction and bacterial translocation. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1916189117.
989|sucess-download|Xie, G.; Forth, J.; Zhu, S.; Helms, B. A.; Ashby, P. D.; Shum, H. C.; Russell, T. P. Hanging droplets from liquid surfaces. Proceedings of the National Academy of Sciences of the United States of America. 2020. https://doi.org/10.1073/pnas.1922045117.
990|sucess-download|Westafer, L. M.; Kunz, A.; Bugajska, P.; Hughes, A.; Mazor, K. M.; Schoenfeld, E. M.; Stefan, M. S.; Lindenauer, P. K. Provider Perspectives on the Use of Evidence-based Risk Stratification Tools in the Evaluation of Pulmonary Embolism: A Qualitative Study. Academic emergency medicine : official journal of the Society for Academic Emergency Medicine. 2020. https://doi.org/10.1111/acem.13908.
991|sucess-download|Naimi, A. I.; Whitcomb, B. W. Estimating Risk Ratios and Risk Differences Using Regression. American journal of epidemiology. 2020. https://doi.org/10.1093/aje/kwaa044.
992|shorty-download|Holden, J. F.; Bardwell, C. P.; Kashyap, S. Draft Genome Sequence of Desulfurobacterium thermolithotrophum Strain HR11, a Novel Thermophilic Autotrophic Subspecies from a Deep-Sea Hydrothermal Vent. Microbiology resource announcements. 2020. https://doi.org/10.1128/MRA.00167-20.
993|sucess-download|Kharat, M.; Skrzynski, M.; Decker, E. A.; McClements, D. J. Enhancement of chemical stability of curcumin-enriched oil-in-water emulsions: Impact of antioxidant type and concentration. Food chemistry. 2020. https://doi.org/10.1016/j.foodchem.2020.126653.
994|shorty-download|Yu, H. R.; Motloch, P.; Pen, U. L.; Yu, Y.; Wang, H.; Mo, H.; Yang, X.; Jing, Y. Probing Primordial Chirality with Galaxy Spins. Physical review letters. 2020. https://doi.org/10.1103/PhysRevLett.124.101302.
995|sucess-download|Duan, Q.; Liu, M. J.; Kita, D.; Jordan, S. S.; Yeh, F. J.; Yvon, R.; Carpenter, H.; Federico, A. N.; Garcia-Valencia, L. E.; Eyles, S. J.; Wang, C. S.; Wu, H. M.; Cheung, A. Y. FERONIA controls pectin- and nitric oxide-mediated male-female interaction. Nature. 2020. https://doi.org/10.1038/s41586-020-2106-2.
996|sucess-download|Zhang, R.; Zhang, Z.; Li, R.; Tan, Y.; Lv, S.; McClements, D. J. Impact of Pesticide Type and Emulsion Fat Content on the Bioaccessibility of Pesticides in Natural Products. Molecules (Basel, Switzerland). 2020. https://doi.org/10.3390/molecules25061466.
997|sucess-download|Chen, Y.; Huang, F.; McClements, D. J.; Xie, B.; Sun, Z.; Deng, Q. Oligomeric Procyanidin Nanoliposomes Prevent Melanogenesis and UV Radiation-Induced Skin Epithelial Cell (HFF-1) Damage. Molecules (Basel, Switzerland). 2020. https://doi.org/10.3390/molecules25061458.
998|sucess-download|Cao, Y.; Ma, C.; Chen, H.; Zhang, J.; White, J. C.; Chen, G.; Xing, B. Xylem-based long-distance transport and phloem remobilization of copper in Salix integra Thunb. Journal of hazardous materials. 2020. https://doi.org/10.1016/j.jhazmat.2020.122428.
999|sucess-download|Bank, M. S. The mercury science-policy interface: History, evolution and progress of the Minamata Convention. The Science of the total environment. 2020. https://doi.org/10.1016/j.scitotenv.2020.137832.