forked from Igalia/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AUTHORS
1011 lines (1009 loc) · 37.5 KB
/
AUTHORS
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
# Names should be added to this file with this pattern:
#
# For individuals:
# Name <email address>
#
# For organizations:
# Organization <fnmatch pattern>
#
# See python fnmatch module documentation for more information.
Aaron Boushley <[email protected]>
Aaron Jacobs <[email protected]>
Aaron Leventhal <[email protected]>
Aaron Randolph <[email protected]>
Aaryaman Vasishta <[email protected]>
Abhijeet Kandalkar <[email protected]>
Abhishek Agarwal <[email protected]>
Abhishek Kanike <[email protected]>
Abhishek Singh <[email protected]>
Adam Bonner <[email protected]>
Adam Kallai <[email protected]>
Adam Roben <[email protected]>
Adam Treat <[email protected]>
Addanki Gandhi Kishor <[email protected]>
Adenilson Cavalcanti <[email protected]>
Aditya Bhargava <[email protected]>
Adrian Belgun <[email protected]>
Ahmet Emir Ercin <[email protected]>
Ajay Berwal <[email protected]>
Ajay Berwal <[email protected]>
Ajith Kumar V <[email protected]>
Aku Kotkavuo <[email protected]>
Aldo Culquicondor <[email protected]>
Aleksandar Stojiljkovic <[email protected]>
Alex Gabriel <[email protected]>
Alex Gartrell <[email protected]>
Alex Henrie <[email protected]>
Alex Scheele <[email protected]>
Alexander Douglas <[email protected]>
Alexander Shalamov <[email protected]>
Alexander Sulfrian <[email protected]>
Alexandre Abreu <[email protected]>
Alexandru Chiculita <[email protected]>
Alexey Korepanov <[email protected]>
Alexey Kuts <[email protected]>
Alexey Kuzmin <[email protected]>
Alexis Brenon <[email protected]>
Alexis La Goutte <[email protected]>
Alexis Menard <[email protected]>
Alfredo Hernandez <[email protected]>
Ali Vathi <[email protected]>
Allan Sandfeld Jensen <[email protected]>
Alper Çakan <[email protected]>
Ambarish Rapte <[email protected]>
Amey Jahagirdar <[email protected]>
Amit Sarkar <[email protected]>
Amogh Bihani <[email protected]>
Amos Lim <[email protected]>
Amos Lim <[email protected]>
Amruth Raj <[email protected]>
Amruth Raj <[email protected]>
Anand Ratn <[email protected]>
Anastasios Cassiotis <[email protected]>
anatoly techtonik <[email protected]>
Ancil George <[email protected]>
Andra Paraschiv <[email protected]>
Andrei Borza <[email protected]>
Andrei Parvu <[email protected]>
Andrei Parvu <[email protected]>
Andrew Boyarshin <[email protected]>
Andrew Brampton <[email protected]>
Andrew Hung <[email protected]>
Andrew MacPherson <[email protected]>
Andrew Tulloch <[email protected]>
Anish Patankar <[email protected]>
Ankit Kumar <[email protected]>
Ankur Verma <[email protected]>
Anna Henningsen <[email protected]>
Anne Kao <[email protected]>
Anssi Hannula <[email protected]>
Anthony Halliday <[email protected]>
Anton Obzhirov <[email protected]>
Antonin Hildebrand <[email protected]>
Antonio Gomes <[email protected]>
Anuj Kumar Sharma <[email protected]>
Arjun Karthik <[email protected]>
Arman Ghotb <[email protected]>
Armin Burgmeier <[email protected]>
Arnaud Renevier <[email protected]>
Arpita Bahuguna <[email protected]>
Arthur Lussos <[email protected]>
Arun Kulkarni <[email protected]>
Arun Kumar <[email protected]>
Arun Mankuzhi <[email protected]>
Arunoday Sarkar <[email protected]>
Arunprasad Rajkumar <[email protected]>
Arunprasad Rajkumar <[email protected]>
Ashish Kumar Gupta <[email protected]>
Ashlin Joseph <[email protected]>
Asish Singh <[email protected]>
Attila Dusnoki <[email protected]>
Avinaash Doreswamy <[email protected]>
Ayush Khandelwal <[email protected]>
Balazs Kelemen <[email protected]>
Baul Eun <[email protected]>
Behara Mani Shyam Patro <[email protected]>
Bem Jones-Bey <[email protected]>
Bem Jones-Bey <[email protected]>
Ben Fiola <[email protected]>
Ben Karel <[email protected]>
Ben Noordhuis <[email protected]>
Benjamin Dupont <[email protected]>
Benjamin Jemlich <[email protected]>
Bernard Cafarelli <[email protected]>
Bernhard M. Wiedemann <[email protected]>
Bhagirathi Satpathy <[email protected]>
Bhanukrushana Rout <[email protected]>
Biljith Jayan <[email protected]>
Bobby Powers <[email protected]>
Branden Archer <[email protected]>
Brendan Kirby <[email protected]>
Brendan Long <[email protected]>
Brian G. Merrell <[email protected]>
Brian Konzman, SJ <[email protected]>
Brian Luft <[email protected]>
Brian Merrell, Novell Inc. <[email protected]>
Brian Yip <[email protected]>
Bruno Calvignac <[email protected]>
Bruno de Oliveira Abinader <[email protected]>
Bruno Roy <[email protected]>
Bryan Donlan <[email protected]>
Bryce Thomas <[email protected]>
Byounghoon Yoon <[email protected]>
Byoungkwon Ko <[email protected]>
Byungwoo Lee <[email protected]>
Caesar Wang <[email protected]>
Caio Marcelo de Oliveira Filho <[email protected]>
Caitlin Potter <[email protected]>
Calvin Mei <[email protected]>
Cameron Gutman <[email protected]>
Catalin Badea <[email protected]>
Cathie Chen <[email protected]>
Cem Kocagil <[email protected]>
Chakshu Ahuja <[email protected]>
Chamal De Silva <[email protected]>
Chandan Padhi <[email protected]>
Chandra Shekar Vallala <[email protected]>
Chandramouli Sanchi <[email protected]>
Chang Shu <[email protected]>
Changbin Shao <[email protected]>
Changjun Yang <[email protected]>
ChangSeok Oh <[email protected]>
Changwan Hong <[email protected]>
Changyeon Kim <[email protected]>
Chanho Park <[email protected]>
Chansik Yun <[email protected]>
Chaobin Zhang <[email protected]>
Charles Vaughn <[email protected]>
Choongwoo Han <[email protected]>
Chris Greene <[email protected]>
Chris Harrelson <[email protected]>
Chris Nardi <[email protected]>
Chris Szurgot <[email protected]>
Chris Tserng <[email protected]>
Chris Vasselli <[email protected]>
Christophe Dumez <[email protected]>
Christopher Dale <[email protected]>
Claudio DeSouza <[email protected]>
Clemens Fruhwirth <[email protected]>
Clement Scheelfeldt Skau <[email protected]>
Clinton Staley <[email protected]>
Connor Pearson <[email protected]>
Craig Schlenter <[email protected]>
Csaba Osztrogonác <[email protected]>
Daegyu Lee <[email protected]>
Dai Chunyang <[email protected]>
Daiwei Li <[email protected]>
Damien Marié <[email protected]>
Dan McCombs <[email protected]>
Daniel Bevenius <[email protected]>
Daniel Bomar <[email protected]>
Daniel Carvalho Liedke <[email protected]>
Daniel Charles <[email protected]>
Daniel Imms <[email protected]>
Daniel Johnson <[email protected]>
Daniel Lockyer <[email protected]>
Daniel Nishi <[email protected]>
Daniel Platz <[email protected]>
Daniel Shaulov <[email protected]>
Daniel Trebbien <[email protected]>
Daniel Waxweiler <[email protected]>
Dániel Bátyai <[email protected]>
Dániel Vince <[email protected]>
Darshini KN <[email protected]>
David Benjamin <[email protected]>
David Davidovic <[email protected]>
David Erceg <[email protected]>
David Fox <[email protected]>
David Futcher <[email protected]>
David Leen <[email protected]>
David McAllister <[email protected]>
David Michael Barr <[email protected]>
David Spellman <[email protected]>
Dax Kelson <[email protected]>
Debashish Samantaray <[email protected]>
Debug Wang <[email protected]>
Deepak Dilip Borade <[email protected]>
Deepak Mittal <[email protected]>
Deepak Singla <[email protected]>
Deokjin Kim <[email protected]>
Derek Halman <[email protected]>
Devlin Cronin <[email protected]>
Diana Suvorova <[email protected]>
Diego Ferreiro Val <[email protected]>
Dillon Sellars <[email protected]>
Divya Bansal <[email protected]>
Dominic Farolino <[email protected]>
Dominic Jodoin <[email protected]>
Dominik Röttsches <[email protected]>
Don Woodward <[email protected]>
Donghee Na <[email protected]>
Dong-hee Na <[email protected]>
Dongie Agnir <[email protected]>
Dongjun Kim <[email protected]>
Dongseong Hwang <[email protected]>
Dongwoo Joshua Im <[email protected]>
Dongyu Lin <[email protected]>
Donna Wu <[email protected]>
Douglas F. Turner <[email protected]>
Dustin Doloff <[email protected]>
Ebrahim Byagowi <[email protected]>
Ebrahim Byagowi <[email protected]>
Eden Wang <[email protected]>
Eduardo Lima (Etrunko) <[email protected]>
Eduardo Lima (Etrunko) <[email protected]>
Edward Baker <[email protected]>
Edward Crossman <[email protected]>
Eero Häkkinen <[email protected]>
Eero Häkkinen <[email protected]>
Egor Starkov <[email protected]>
Ehsan Akhgari <[email protected]>
Elan Ruusamäe <[email protected]>
Ergun Erdogmus <[email protected]>
Eric Ahn <[email protected]>
Eric Rescorla <[email protected]>
Erik Hill <[email protected]>
Erik Sjölund <[email protected]>
Eriq Augustine <[email protected]>
Ernesto Mudu <[email protected]>
Etienne Laurin <[email protected]>
Eugene Kim <[email protected]>
Eunseok Oh <[email protected]>
Evan Peterson <[email protected]>
Evan Wallace <[email protected]>
Evangelos Foutras <[email protected]>
Evgeniy Dushistov <[email protected]>
Evgeny Agafonchikov <[email protected]>
Fabien Tassin <[email protected]>
Felix H. Dahlke <[email protected]>
Fengrong Fang <[email protected]>
Fernando Jiménez Moreno <[email protected]>
Finbar Crago <[email protected]>
François Beaufort <[email protected]>
Francois Kritzinger <[email protected]>
Francois Rauch <[email protected]>
Frankie Dintino <[email protected]>
Franklin Ta <[email protected]>
Frédéric Jacob <[email protected]>
Frédéric Wang <[email protected]>
Fu Junwei <[email protected]>
Gaetano Mendola <[email protected]>
Gajendra N <[email protected]>
Gajendra Singh <[email protected]>
Ganesh Borle <[email protected]>
Gao Chun <[email protected]>
Gao Chun <[email protected]>
Gautham Banasandra <[email protected]>
George Adams <[email protected]>
George Joseph <[email protected]>
George Liaskos <[email protected]>
Georgy Buranov <[email protected]>
Gergely Nagy <[email protected]>
Getulio Sánchez <[email protected]>
Gideon Pyzer <[email protected]>
Girish Kumar M <[email protected]>
Gitanshu Mehndiratta <[email protected]>
Giuseppe Iuculano <[email protected]>
Gnanasekar Somanathan <[email protected]>
Gordana Cmiljanovic <[email protected]>
Goutham Jagannatha <[email protected]>
Graham Yoakum <[email protected]>
Greg Visser <[email protected]>
Gregory Davis <[email protected]>
Grzegorz Czajkowski <[email protected]>
Guangzhen Li <[email protected]>
Gurpreet Kaur <[email protected]>
Gustav Tiger <[email protected]>
Gyuyoung Kim <[email protected]>
Gzob Qq <[email protected]>
Habib Virji <[email protected]>
Haeun Kim <[email protected]>
Haeun Kim <[email protected]>
Haitao Feng <[email protected]>
Halley Zhao <[email protected]>
Halton Huo <[email protected]>
Halton Huo <[email protected]>
Hans Hillen <[email protected]>
Haojian Wu <[email protected]>
Hari Singh <[email protected]>
Harpreet Singh Khurana <[email protected]>
Harshikesh Kumar <[email protected]>
Hassan Salehe Matar <[email protected]>
Hautio Kari <[email protected]>
Heejin R. Chung <[email protected]>
Heeyoun Lee <[email protected]>
Himanshu Joshi <[email protected]>
Holger Kraus <[email protected]>
Hong Zheng <[email protected]>
Hongbo Min <[email protected]>
Horia Olaru <[email protected]>
Horia Olaru <[email protected]>
Hosung You <[email protected]>
Huapeng Li <[email protected]>
Huayong Xu <[email protected]>
Hugo Holgersson <[email protected]>
Hui Wang <[email protected]>
Huiwon Jo <[email protected]>
Huy Duong <[email protected]>
Hwanseung Lee <[email protected]>
Hwanseung Lee <[email protected]>
Hyemi Shin <[email protected]>
HyeockJin Kim <[email protected]>
Hyungchan Kim <[email protected]>
Hyungwook Lee <[email protected]>
Hyungwook Lee <[email protected]>
Hyunjune Kim <[email protected]>
Hyunki Baik <[email protected]>
Ian Cullinan <[email protected]>
Ian Scott <[email protected]>
Ibrar Ahmed <[email protected]>
Ilia Demianenko <[email protected]>
Ilia K <[email protected]>
Ilya Konstantinov <[email protected]>
Ion Rosca <[email protected]>
Irmak Kavasoglu <[email protected]>
Isaac Murchie <[email protected]>
Isaac Reilly <[email protected]>
Ivan Naydonov <[email protected]>
Ivan Sham <[email protected]>
Jack Bates <[email protected]>
Jacob Clark <[email protected]>
Jacob Mandelson <[email protected]>
Jaehun Lim <[email protected]>
Jaehyun Lee <[email protected]>
Jaekyeom Kim <[email protected]>
Jaemin Seo <[email protected]>
Jaeseok Yoon <[email protected]>
Jaewon Choi <[email protected]>
Jaeyong Bae <[email protected]>
Jaime Soriano Pastor <[email protected]>
Jake Helfert <[email protected]>
Jake Hendy <[email protected]>
Jakob Weigert <[email protected]>
Jakub Machacek <[email protected]>
James Burton <[email protected]>
James Choi <[email protected]>
James Stanley <[email protected]>
James Vega <[email protected]>
James Wei <[email protected]>
James Willcox <[email protected]>
Jan Rucka <[email protected]>
Jan Sauer <[email protected]>
Janwar Dinata <[email protected]>
Jared Shumway <[email protected]>
Jared Sohn <[email protected]>
Jared Wein <[email protected]>
Jari Karppanen <[email protected]>
Jay Oster <[email protected]>
Jay Soffian <[email protected]>
Jeado Ko <[email protected]>
Jeffrey C <[email protected]>
Jeongeun Kim <[email protected]>
Jeongmin Kim <[email protected]>
Jeongwoo Park <[email protected]>
Jeremy Noring <[email protected]>
Jeremy Spiegel <[email protected]>
Jeroen Van den Berghe <[email protected]>
Jerry Lin <[email protected]>
Jesper Storm Bache <[email protected]>
Jesse Miller <[email protected]>
Jesus Sanchez-Palencia <[email protected]>
Jiadong Zhu <[email protected]>
Jiajia Qin <[email protected]>
Jianjun Zhu <[email protected]>
Jianneng Zhong <[email protected]>
Jiawei Shao <[email protected]>
Jie Chen <[email protected]>
Jihoon Chung <[email protected]>
Jihoon Chung <[email protected]>
Jihun Brent Kim <[email protected]>
Jin Yang <[email protected]>
Jincheol Jo <[email protected]>
Jingwei Liu <[email protected]>
Jingyi Wei <[email protected]>
Jinho Bang <[email protected]>
Jinsong Fan <[email protected]>
Jinwoo Song <[email protected]>
Jinyoung Hur <[email protected]>
Jitendra Kumar Sahoo <[email protected]>
Joachim Bauch <[email protected]>
Joachim Bauch <[email protected]>
Joanmarie Diggs <[email protected]>
Joe Knoll <[email protected]>
Joe Thomas <[email protected]>
Joel Stanley <[email protected]>
Johannes Rudolph <[email protected]>
John Yani <[email protected]>
John Yoo <[email protected]>
Johnson Lin <[email protected]>
Jonathan Frazer <[email protected]>
Jonathan Garbee <[email protected]>
Jonathan Hacker <[email protected]>
Jongdeok Kim <[email protected]>
Jongheon Kim <[email protected]>
JongKwon Lee <[email protected]>
Jongsoo Lee <[email protected]>
Joone Hur <[email protected]>
Jorge Villatoro <[email protected]>
Joseph Gentle <[email protected]>
Joseph Lolak <[email protected]>
Josh Triplett <[email protected]>
Josh Triplett <[email protected]>
Joshua Lock <[email protected]>
Joshua Roesslein <[email protected]>
Josué Ratelle <[email protected]>
Josyula Venkat Narasimham <[email protected]>
Juan Jose Lopez Jaimez <[email protected]>
Juhui Lee <[email protected]>
Julien Brianceau <[email protected]>
Julien Isorce <[email protected]>
Julien Racle <[email protected]>
Jun Fang <[email protected]>
Jun Jiang <[email protected]>
Junchao Han <[email protected]>
Junghoon Lee <[email protected]>
JungJik Lee <[email protected]>
Jungkee Song <[email protected]>
Junmin Zhu <[email protected]>
Justin Okamoto <[email protected]>
Justin Ribeiro <[email protected]>
Jüri Valdmann <[email protected]>
Kai Jiang <[email protected]>
Kai Köhne <[email protected]>
Kai Uwe Broulik <[email protected]>
Kal Conley <[email protected]>
Kalyan Kondapally <[email protected]>
Kamil Jiwa <[email protected]>
Kamil Rytarowski <[email protected]>
Kangil Han <[email protected]>
Kangyuan Shu <[email protected]>
Karan Thakkar <[email protected]>
Kartikey Bhatt <[email protected]>
Kaspar Brand <[email protected]>
Kaustubh Atrawalkar <[email protected]>
Kaustubh Atrawalkar <[email protected]>
Ke He <[email protected]>
Keene Pan <[email protected]>
Keith Chen <[email protected]>
Kenneth Rohde Christiansen <[email protected]>
Kenneth Strickland <[email protected]>
Kenneth Zhou <[email protected]>
Keonho Kim <[email protected]>
Ketan Goyal <[email protected]>
Kevin Gibbons <[email protected]>
Kevin Lee Helpingstine <[email protected]>
Kevin M. McCormick <[email protected]>
Khasim Syed Mohammed <[email protected]>
Kihong Kwon <[email protected]>
Kihoon Ko <[email protected]>
Kihwang Kim <[email protected]>
Kim Christensen <[email protected]>
Kimberly Hunter <[email protected]>
Kingshuk Jana <[email protected]>
Kirill Bobyrev <[email protected]>
Kirill Ovchinnikov <[email protected]>
Kirk Shoop <[email protected]>
Klemen Forstnerič <[email protected]>
Kodam Nagaraju <[email protected]>
Konrad Dzwinel <[email protected]>
Krishna Chaitanya <[email protected]>
Kristof Kosztyo <[email protected]>
Krzysztof Czech <[email protected]>
Krzysztof Wolanski <[email protected]>
Kunal Thakar <[email protected]>
Kushal Pisavadia <[email protected]>
Kwangho Shin <[email protected]>
Kyle Nahrgang <[email protected]>
Kyle Plumadore <[email protected]>
Kyounga Ra <[email protected]>
Kyoungdeok Kwon <[email protected]>
Kyung Yeol Kim <[email protected]>
Kyungtae Kim <[email protected]>
Kyungyoung Heo <[email protected]>
Laszlo Gombos <[email protected]>
Laszlo Radanyi <[email protected]>
Lauren Yeun Kim <[email protected]>
Lauri Oherd <[email protected]>
Lavar Askew <[email protected]>
Legend Lee <[email protected]>
Leith Bade <[email protected]>
Lenny Khazan <[email protected]>
Leo Wolf <[email protected]>
Leon Han <[email protected]>
Leung Wing Chung <[email protected]>
Li Yin <[email protected]>
Lidwine Genevet <[email protected]>
Lingyun Cai <[email protected]>
Lionel Landwerlin <[email protected]>
Lizhi Fan <[email protected]>
Loo Rong Jie <[email protected]>
Lorenzo Stoakes <[email protected]>
Lu Guanqun <[email protected]>
Luca Di Domenico <[email protected]>
Lucie Brozkova <[email protected]>
Luiz Von Dentz <[email protected]>
Luka Dojcilovic <[email protected]>
Luke Inman-Semerau <[email protected]>
Luke Zarko <[email protected]>
Luoxi Pan <[email protected]>
Maarten Lankhorst <[email protected]>
Magnus Danielsson <[email protected]>
Mahesh Kulkarni <[email protected]>
Mahesh Machavolu <[email protected]>
Maksim Kolesin <[email protected]>
Maksim Sisov <[email protected]>
Malcolm Wang <[email protected]>
Mallikarjuna Rao V <[email protected]>
Manish Chhajer <[email protected]>
Manish Jethani <[email protected]>
Manojkumar Bhosale <[email protected]>
Manuel Braun <[email protected]>
Mao Yujie <[email protected]>
Mao Yujie <[email protected]>
Marc des Garets <[email protected]>
Marcin Wiacek <[email protected]>
Marco Rodrigues <[email protected]>
Mario Pistrich <[email protected]>
Mario Sanchez Prada <[email protected]>
Mariusz Mlynski <[email protected]>
Mark Hahnenberg <[email protected]>
Mark Seaborn <[email protected]>
Martijn Croonen <[email protected]>
Martin Bednorz <[email protected]>
Martin Rogalla <[email protected]>
Martina Kollarova <[email protected]>
Masahiro Yado <[email protected]>
Masaru Nishida <[email protected]>
Matej Knopp <[email protected]>
Matheus Bratfisch <[email protected]>
Mathias Bynens <[email protected]>
Mathieu Meisser <[email protected]>
Matt Arpidone <[email protected]>
Matt Strum <[email protected]>
Matt Zeunert <[email protected]>
Matthew Bauer <[email protected]>
Matthew Demarest <[email protected]>
Matthew Robertson <[email protected]>
Matthew Turk <[email protected]>
Matthew Willis <[email protected]>
Matthias Reitinger <[email protected]>
Matthieu Rigolot <[email protected]>
Max Perepelitsyn <[email protected]>
Max Vujovic <[email protected]>
Mayank Gupta <[email protected]>
Mayur Kankanwadi <[email protected]>
Md Sami Uddin <[email protected]>
Michael Cirone <[email protected]>
Michael Gilbert <[email protected]>
Michael Lopez <[email protected]>
Michael Morrison <[email protected]>
Michael Müller <[email protected]>
Michael Schechter <[email protected]>
Michaël Zasso <[email protected]>
Michael Zugelder <[email protected]>
Mihai Maerean <[email protected]>
Mihai Tica <[email protected]>
Mihai Tica <[email protected]>
Mike Pennisi <[email protected]>
Mike Tilburg <[email protected]>
Mikhail Pozdnyakov <[email protected]>
Milko Leporis <[email protected]>
Milton Chiang <[email protected]>
Minggang Wang <[email protected]>
Mingmin Xie <[email protected]>
Minjeong Lee <[email protected]>
Minseok Koo <[email protected]>
Minsoo Max Koo <[email protected]>
Miran Karic <[email protected]>
Mirela Budaes <[email protected]>
Mirela Budaes <[email protected]>
Miyoung Shin <[email protected]>
Mohamed I. Hammad <[email protected]>
Mohamed Mansour <[email protected]>
Mohammad Azam <[email protected]>
Mohammed Wajahat Ali Siddiqui <[email protected]>
Mohan Reddy <[email protected]>
Mohit Bhalla <[email protected]>
Mrunal Kapade <[email protected]>
Myeongjin Cho <[email protected]>
Myles C. Maxfield <[email protected]>
Myung-jong Kim <[email protected]>
Nagarajan Narayanan <[email protected]>
Nagarjuna Atluri <[email protected]>
Naiem Shaik <[email protected]>
Naoki Takano <[email protected]>
Naveen Bobbili <[email protected]>
Naveen Bobbili <[email protected]>
Naveen Kumar Devaraj <[email protected]>
Naveen Kumar S G <[email protected]>
Nayan Kumar K <[email protected]>
Neal Gompa <[email protected]>
Ned Williamson <[email protected]>
Nedeljko Babic <[email protected]>
Nikhil Bansal <[email protected]>
Nikhil Sahni <[email protected]>
Nikita Ofitserov <[email protected]>
Niklas Hambüchen <[email protected]>
Niklas Schulze <[email protected]>
Nikola Kovacs <[email protected]>
Nils Schneider <[email protected]>
Nils Schneider <[email protected]>
Ningxin Hu <[email protected]>
Nitish Mehrotra <[email protected]>
Noj Vek <[email protected]>
Nolan Cao <[email protected]>
Oleksii Kadurin <[email protected]>
Olli Raula (Old name Olli Syrjälä) <[email protected]>
Omar Sandoval <[email protected]>
Pan Deng <[email protected]>
Parag Radke <[email protected]>
Paritosh Kumar <[email protected]>
Patrasciuc Sorin Cristian <[email protected]>
Patrick Chan <[email protected]>
Patrick Kettner <[email protected]>
Patrick Riordan <[email protected]>
Patrick Stein <[email protected]>
Patrik Ackland <[email protected]>
Paul Adolph <[email protected]>
Paul Kehrer <[email protected]>
Paul Lind <[email protected]>
Paul Nettleship <[email protected]>
Paul Robinson <[email protected]>
Paul Roskell <[email protected]>
Paul Sapunaru <[email protected]>
Paul Wicks <[email protected]>
Pavan Kumar Emani <[email protected]>
Pavel Ivanov <[email protected]>
Pawel Forysiuk <[email protected]>
Paweł Hajdan jr <[email protected]>
Payal Pandey <[email protected]>
Peng Hu <[email protected]>
Peng Jiang <[email protected]>
Peng Xinchao <[email protected]>
Peter Bright <[email protected]>
Peter Brophy <[email protected]>
Peter Collingbourne <[email protected]>
Peter Gal <[email protected]>
Peter Molnar <[email protected]>
Peter Snyder <[email protected]>
Philip Hanson <[email protected]>
Philipp Hancke <[email protected]>
Philipp Hancke <[email protected]>
Philippe Beauchamp <[email protected]>
Philippe Beaudoin <[email protected]>
PhistucK <[email protected]>
Pierre Neter <[email protected]>
Pierre-Antoine LaFayette <[email protected]>
Po-Chun Chang <[email protected]>
Pramod Begur Srinath <[email protected]>
Pranay Kumar <[email protected]>
Prashant Hiremath <[email protected]>
Prashant Nevase <[email protected]>
Prashant Patil <[email protected]>
Praveen Akkiraju <[email protected]>
Preeti Nayak <[email protected]>
Pritam Nikam <[email protected]>
Puttaraju R <[email protected]>
Qi Yang <[email protected]>
Qiankun Miao <[email protected]>
Qing Zhang <[email protected]>
Radu Stavila <[email protected]>
Radu Velea <[email protected]>
Rafael Antognolli <[email protected]>
Raghavendra Ghatage <[email protected]>
Raghu Ram Nagaraj <[email protected]>
Rahul Gupta <[email protected]>
Rajneesh Rana <[email protected]>
Raman Tenneti <[email protected]>
Ramkumar Gokarnesan <[email protected]>
Ramkumar Ramachandra <[email protected]>
Ramya Vadlamudi <[email protected]>
Randy Posynick <[email protected]>
Raphael Kubo da Costa <[email protected]>
Raveendra Karu <[email protected]>
Ravi Nanjundappa <[email protected]>
Ravi Phaneendra Kasibhatla <[email protected]>
Ravi Phaneendra Kasibhatla <[email protected]>
Réda Housni Alaoui <[email protected]>
Refael Ackermann <[email protected]>
Renata Hodovan <[email protected]>
Rene Bolldorf <[email protected]>
Rene Ladan <[email protected]>
Richard Baranyi <[email protected]>
Richard Li <[email protected]>
Rijubrata Bhaumik <[email protected]>
Riku Voipio <[email protected]>
Rob Buis <[email protected]>
Rob Wu <[email protected]>
Robert Bear Travis <[email protected]>
Robert Bear Travis <[email protected]>
Robert Bradford <[email protected]>
Robert Goldberg <[email protected]>
Robert Hogan <[email protected]>
Robert Nagy <[email protected]>
Robert Sesek <[email protected]>
Roland Takacs <[email protected]>
Romain Pokrzywka <[email protected]>
Rosen Dash <[email protected]>
Rosen Dash <[email protected]>
ruben <[email protected]>
Ruben Terrazas <[email protected]>
Rufus Hamade <[email protected]>
Ruiyi Luo <[email protected]>
Ryan Ackley <[email protected]>
Ryan Norton <[email protected]>
Ryan Sleevi <[email protected]>
Ryan Yoakum <[email protected]>
Ryuan Choi <[email protected]>
Saikrishna Arcot <[email protected]>
Salvatore Iovene <[email protected]>
Sam Larison <[email protected]>
Sam McDonald <[email protected]>
Sanggi Hong <[email protected]>
Sanghee Lee <[email protected]>
Sanghyun Park <[email protected]>
Sanghyup Lee <[email protected]>
Sangjoon Je <[email protected]>
Sangwoo Ko <[email protected]>
Sanjoy Pal <[email protected]>
Sanjoy Pal <[email protected]>
Sanne Wouda <[email protected]>
Santosh Mahto <[email protected]>
Sarath Singapati <[email protected]>
Sarath Singapati <[email protected]>
Sarath Singapati <[email protected]>
Saravanan KR <[email protected]>
Sathish Kuppuswamy <[email protected]>
Satoshi Matsuzaki <[email protected]>
Sayan Nayak <[email protected]>
Scott Blomquist <[email protected]>
Scott D Phillips <[email protected]>
Sean Bryant <[email protected]>
Sean DuBois <[email protected]>
Sebastian Amend <[email protected]>
Sebastian Krzyszkowiak <[email protected]>
Seo Sanghyeon <[email protected]>
Seokju Kwon <[email protected]>
SeongTae Jeong <[email protected]>
Sergey Kipet <[email protected]>
Sergey Putilin <[email protected]>
Sergey Shekyan <[email protected]>
Sergio Carlos Morales Angeles <[email protected]>
Sergiy Byelozyorov <[email protected]>
Seshadri Mahalingam <[email protected]>
Seungkyu Lee <[email protected]>
Sevan Janiyan <[email protected]>
Shahriar Rostami <[email protected]>
Shail Singhal <[email protected]>
Shane Hansen <[email protected]>
ShankarGanesh K <[email protected]>
Shanmuga Pandi M <[email protected]>
Shaobo Yan <[email protected]>
Shashi Kumar <[email protected]>
Sherry Mou <[email protected]>
Shez Baig <[email protected]>
Shigeki Ohtsu <[email protected]>
Shiliu Wang <[email protected]>
Shiliu Wang <[email protected]>
Shilpa Shri <[email protected]>
Shirish S <[email protected]>
Shiva Kumar <[email protected]>
Shivakumar JM <[email protected]>
Shouqun Liu <[email protected]>
Shouqun Liu <[email protected]>
Shreeram Kushwaha <[email protected]>
Shreyas Gopal <[email protected]>
Shreyas VA <[email protected]>
Shubham Agrawal <[email protected]>
Siba Samal <[email protected]>
Siddharth Bagai <[email protected]>
Siddharth Shankar <[email protected]>
Simon Arlott <[email protected]>
Simon La Macchia <[email protected]>
Siva Kumar Gunturi <[email protected]>
Sohan Jyoti Ghosh <[email protected]>
Sohan Jyoti Ghosh <[email protected]>
Song YeWen <[email protected]>
Sooho Park <[email protected]>
Soojung Choi <[email protected]>
Soorya R <[email protected]>
Soren Dreijer <[email protected]>
Srirama Chandra Sekhar Mogali <[email protected]>
Staphany Park <[email protected]>
Stephen Searles <[email protected]>
Steve Sanders <[email protected]>
Steven Pennington <[email protected]>
Steven Roussey <[email protected]>
Subrahmanya Praveen Munukutla <[email protected]>
Suchit Agrawal <[email protected]>
Sudarsana Babu Nagineni <[email protected]>
Sudarshan Parthasarathy <[email protected]>
Sujae Jo <[email protected]>
Sujith S S <[email protected]>
Sunchang Li <[email protected]>
Suneel Kota <[email protected]>
Sungguk Lim <[email protected]>
Sungmann Cho <[email protected]>
Sungmann Cho <[email protected]>
Sunil Ratnu <[email protected]>
Sunitha Srivatsa <[email protected]>
Suvanjan Mukherjee <[email protected]>
Suyambulingam R M <[email protected]>
Suyash Sengar <[email protected]>
Swarali Raut <[email protected]>
Swati Jaiswal <[email protected]>
Sylvain Zimmer <[email protected]>
Sylvestre Ledru <[email protected]>
Szabolcs David <[email protected]>
Szymon Piechowicz <[email protected]>
Taehoon Lee <[email protected]>
Takashi Fujita <[email protected]>
Takeshi Kurosawa <[email protected]>
Tanay Chowdhury <[email protected]>
Tanvir Rizvi <[email protected]>
Tapu Kumar Ghose <[email protected]>
Taylor Price <[email protected]>
Ted Kim <[email protected]>
Ted Vessenes <[email protected]>
Teodora Novkovic <[email protected]>
Thiago Farina <[email protected]>
Thiago Marcos P. Santos <[email protected]>
Thomas Butter <[email protected]>
Thomas Conti <[email protected]>
Tiago Vignatti <[email protected]>
Tibor Dusnoki <[email protected]>
Tim Ansell <[email protected]>
Tim Niederhausen <[email protected]>
Timo Gurr <[email protected]>
Timo Reimann <[email protected]>
Timo Witte <[email protected]>
Ting Shao <[email protected]>
Tom Callaway <[email protected]>
Tom Harwood <[email protected]>
Tomas Popela <[email protected]>
Torsten Kurbad <[email protected]>
Trent Willis <[email protected]>
Trevor Perrin <[email protected]>
Tripta Gupta <[email protected]>
U. Artie Eoff <[email protected]>
Umar Hansa <[email protected]>
Upendra Gowda <[email protected]>
Uzair Jaleel <[email protected]>
Vaibhav Agrawal <[email protected]>
Valentin Ilie <[email protected]>
Vamshikrishna Yellenki <[email protected]>
Vani Hegde <[email protected]>
Varun Chowdhary Paturi <[email protected]>
Vartul Katiyar <[email protected]>
Vedran Šajatović <[email protected]>
Vernon Tang <[email protected]>
Viatcheslav Ostapenko <[email protected]>
Victor Costan <[email protected]>
Viet-Trung Luu <[email protected]>
Vinay Anantharaman <[email protected]>
Vipul Bhasin <[email protected]>
Visa Putkinen <[email protected]>
Vishal Bhatnagar <[email protected]>
Vivek Galatage <[email protected]>
Volker Sorge <[email protected]>
Waihung Fu <[email protected]>
WenSheng He <[email protected]>
Wesley Lancel <[email protected]>
Wesley Wigham <[email protected]>
Wesley Wigham <[email protected]>
Will Hirsch <[email protected]>
Will Shackleton <[email protected]>
William Xie <[email protected]>
Xiang Long <[email protected]>
Xiangze Zhang <[email protected]>
Xiaofeng Zhang <[email protected]>
Xiaolei Yu <[email protected]>
Xiaoshu Zhang <[email protected]>
Xiaoyin Liu <[email protected]>
Xinchao He <[email protected]>
Xing Zhang <[email protected]>
Xinghua Cao <[email protected]>
Xu Samuel <[email protected]>
Xu Xing <[email protected]>
Xuefei Ren <[email protected]>
Xueqing Huang <[email protected]>
Xun Sun <[email protected]>
Xunran Ding <[email protected]>
Xunran Ding <[email protected]>
Yael Aharon <[email protected]>
Yan Wang <[email protected]>
Yang Gu <[email protected]>
Yannic Bonenberger <[email protected]>
Yarin Kaul <[email protected]>
Yash Vempati <[email protected]>
Ye Liu <[email protected]>
Yeol Park <[email protected]>
Yi Shen <[email protected]>
Yi Sun <[email protected]>
Yichen Jiang <[email protected]>
Yifei Yu <[email protected]>
Yizhou Jiang <[email protected]>
Yoav Weiss <[email protected]>
Yoav Zilberberg <[email protected]>
Yong Shin <[email protected]>
Yong Wang <[email protected]>
Yongha Lee <[email protected]>
Yongsheng Zhu <[email protected]>
Yoonjae Cho <[email protected]>
Yoshinori Sano <[email protected]>
Youngho Seo <[email protected]>
Youngjin Choi <[email protected]>
YoungKi Hong <[email protected]>
Youngmin Yoo <[email protected]>
Youngsoo Choi <[email protected]>
Youngsun Suh <[email protected]>
Yuhong Sha <[email protected]>
Yumikiyo Osanai <[email protected]>
Yunchao He <[email protected]>
Yupei Wang <[email protected]>
Yura Yaroshevich <[email protected]>
Yuri Gorobets <[email protected]>
Yuriy Taraday <[email protected]>
Yuvanesh Natarajan <[email protected]>
Zeno Albisser <[email protected]>
Zeqin Chen <[email protected]>
Zhaoze Zhou <[email protected]>
Zheda Chen <[email protected]>
Zheng Chuang <[email protected]>
Zhenyu Liang <[email protected]>
Zhenyu Shan <[email protected]>
Zhifei Fang <[email protected]>
Zhuoyu Qian <[email protected]>
Ziran Sun <[email protected]>
Zoltan Herczeg <[email protected]>
Zoltan Kuscsik <[email protected]>
Zsolt Borbely <[email protected]>
方觉 (Fang Jue) <[email protected]>
Rajesh Mahindra <[email protected]>
Yuan-Pin Yu <[email protected]>
Vinoth Chandar <[email protected]>
Zheng Xu <[email protected]>
ACCESS CO., LTD. <*@access-company.com>
Akamai Inc. <*@akamai.com>
ARM Holdings <*@arm.com>
BlackBerry Limited <*@blackberry.com>
Canonical Limited <*@canonical.com>
Cloudflare, Inc. <*@cloudflare.com>
Code Aurora Forum <*@codeaurora.org>
Collabora Limited <*@collabora.com>
Comodo CA Limited
Cosium <*@cosium.com>
Endless Mobile, Inc. <*@endlessm.com>
Estimote, Inc. <*@estimote.com>
Facebook, Inc. <*@fb.com>
Facebook, Inc. <*@oculus.com>
Google Inc. <*@google.com>
Hewlett-Packard Development Company, L.P. <*@hp.com>
IBM Inc. <*@*.ibm.com>
IBM Inc. <*@ibm.com>
Igalia S.L. <*@igalia.com>
Impossible Dreams Network <*@impossibledreams.net>
LG Electronics, Inc. <*@lge.com>
Loongson Technology Corporation Limited. <*@loongson.cn>
Macadamian <*@macadamian.com>
MIPS Technologies, Inc. <*@mips.com>
Mozilla Corporation <*@mozilla.com>
Neverware Inc. <*@neverware.com>
NIKE, Inc. <*@nike.com>
NVIDIA Corporation <*@nvidia.com>
Opera Software ASA <*@opera.com>
Optical Tone Ltd <*@opticaltone.com>
Rakuten Kobo Inc. <*@kobo.com>
Rakuten Kobo Inc. <*@rakuten.com>
Seznam.cz, a.s. <*@firma.seznam.cz>