forked from svigerske/trac-to-github
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsage_trac_users.xml
5628 lines (5628 loc) · 99.6 KB
/
sage_trac_users.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<contributors>
<contributor
name="Tanay Wakhare"
trac="09wakharet"/>
<contributor
name="Simon Masson"
trac="6MON"/>
<contributor
name="Ahmed Khulaif Alharbi"
trac="A.Alharbi"/>
<contributor
name="Alan J.X. Guo"
altname="郭嘉祥"
trac="AJXGuo"/>
<contributor
name="Anders Jonsson"
trac="AJonsson"/>
<contributor
name="Adrien Brochier"
trac="Adrien"/>
<contributor
name="Fakabbir Amin"
trac="Aeimi"/>
<contributor
name="Andy Huchala"
trac="Ahuchala"/>
<contributor
name="Akash Goel"
trac="Akashii"/>
<contributor
name="alastair baillie strong"
trac="AlastairBS"/>
<contributor
name="Alec Mihailovs"
trac="AlecMihailovs"/>
<contributor
name="Alex Ghitza"
trac="AlexGhitza"/>
<contributor
name="Alexander Dreyer"
trac="AlexanderDreyer"/>
<contributor
name="Patrick Hammer"
trac="Alligadi"/>
<contributor
name="Ambrish"
trac="Ambrish"/>
<contributor
name="Alexandre Boubaker"
trac="AosoraXI"/>
<contributor
name="Alejadro Argaez"
trac="ArgaezG"/>
<contributor
name="Ben Breen"
trac="BenBreen"/>
<contributor
name="Olaf Bochmann"
trac="Bochmann"/>
<contributor
name="Charles Bouillaguet"
trac="Bouillaguet"/>
<contributor
name="Bruce Westbury"
trac="Bruce"/>
<contributor
name="Christyves"
trac="Christyves"/>
<contributor
name="Chwas Abas Ahmed"
trac="Chwas"/>
<contributor
name="Clifton Cunningham"
trac="Clifton"/>
<contributor
name="Dana C. Ernst"
trac="DanaErnst"/>
<contributor
name="Daniel Mulholland"
trac="Mulholland"/>
<contributor
name="Daniel Recoskie"
trac="DanielRecoskie"/>
<contributor
name="David Lowry-Duda"
trac="DavidLowry"/>
<contributor
name="Dayne Sorvisto"
trac="DayneSorvisto"/>
<contributor
name="Hans Fotsing Tetsing"
trac="Dicolevrai"/>
<contributor
name="George Kevin Fuller"
trac="Dinosaurathon"/>
<contributor
name="Donggeon, Yhee"
trac="Donggeon"/>
<contributor
name="Dorota Mazur"
trac="DorotaMazur"/>
<contributor
name="Eric Schmidt"
trac="Eric119"/>
<contributor
name="Francis Rhys Ward"
trac="FRWard"/>
<contributor
name="Charles Fougeron"
trac="Fougeroc"/>
<contributor
name="Frank Polte"
trac="FrankPolte"/>
<contributor
name="Gary McConnell"
trac="GaryMak"/>
<contributor
name="Georg S. Weber"
trac="GeorgSWeber"/>
<contributor
name="Michael Hoffman"
trac="GoblinInventor"/>
<contributor
name="Gokhan Sever"
trac="GokhanSever"/>
<contributor
name="Hosein Hadipour"
trac="Hadipour"/>
<contributor
name="Hamed"
trac="Varamini"/>
<contributor
trac="Henryk.Trappmann"/>
<contributor
name="Hester Graves"
trac="Hester"/>
<contributor
name="Dominique Ingoglia"
trac="Ingoglia"/>
<contributor
name="Ira Hanson"
trac="IraHanson"/>
<contributor
name="Judith Braunsteiner"
trac="JBraunsteiner"/>
<contributor
name="Jenny Cooley"
trac="JCooley"/>
<contributor
name="Jens-Dietrich Bauch"
trac="JDB"/>
<contributor
name="Jose Guzman"
trac="JGuzman"/>
<contributor
name="Jesse Levitt"
trac="JSLevitt"/>
<contributor
name="Jim Stark"
trac="JStarx"/>
<contributor
name="Jacqueline Karla Alves da Silva"
trac="JacquelineKarla"/>
<contributor
name="Jonathan Axtell"
trac="Jaxtell"/>
<contributor
name="Jayant Apte"
trac="Jayant"/>
<contributor
name="Jesus Torrado-Cacho"
trac="JesusTorrado"/>
<contributor
name="Joal Heagney"
trac="JoalHeagney"/>
<contributor
name="John Connor"
trac="JohnConnor"/>
<contributor
name="Brandon Barker"
trac="Jondice"/>
<contributor
name="Jorge Sanchez"
trac="Sanchez"/>
<contributor
name="Juan Luis Cano Rodríguez"
trac="Juanlu001"/>
<contributor
name="Mato Nagel"
trac="Kamhamea"/>
<contributor
name="Kehengsite Liao"
trac="Kehengsite"/>
<contributor
name="Koen van de Sande"
trac="Koen"/>
<contributor
name="Albert Yiamakis"
trac="Kojirion"/>
<contributor
name="Konrad Dabrowski"
trac="Konrad127123"/>
<contributor
name="Konstantin Kliakhandler"
trac="Kosta"/>
<contributor
name="B Krishnan Iyer"
trac="Krishiyer"/>
<contributor
name="Ludovic Alarie-Vézina"
trac="LAV"/>
<contributor
name="Luis Berlioz"
trac="LBerlioz"/>
<contributor
name="Florian Langenhagen"
trac="Lakin"/>
<contributor
name="Laurel Drane"
trac="LaurelD1987"/>
<contributor
name="Andreas Ruscheinski"
trac="LostPw"/>
<contributor
trac="Loufer"/>
<contributor
name="Luiz Aquino"
trac="LuizAquino"/>
<contributor
name="Marina Gresham"
trac="MGresham"/>
<contributor
name="Matthew Groesbeck"
trac="MGroesbeck"/>
<contributor
name="Malcolm Rupert"
trac="MRupert"/>
<contributor
name="Nathaniel Skinner"
trac="Madrosity"/>
<contributor
name="Cedric"
trac="ManDay"/>
<contributor
name="Sergios Lenis"
trac="Mantis"/>
<contributor
name="Maria Monks Gillespie"
trac="MariaMonks"/>
<contributor
name="Martin Rubey"
trac="Martin"/>
<contributor
name="Martin Pépin"
trac="MartinPepin"/>
<contributor
name="Martin Cross"
trac="MartinX"/>
<contributor
name="Matthieu Dien"
trac="MatthieuDien"/>
<contributor
name="Eren Mehmet Kiral"
trac="Mehmet"/>
<contributor
name="Michael David Williams"
trac="MikeTheWilliams"/>
<contributor
name="Edward Mokurai Cherlin"
trac="Mokurai"/>
<contributor
trac="Moredread"/>
<contributor
name="Hugues Mounier"
trac="Mounier"/>
<contributor
name="Monique van Beek"
trac="MvanBeek"/>
<contributor
name="Neil McKay"
trac="NeilMcKay"/>
<contributor
name="Nevena Milojkovic"
trac="NevenaMilojkovic"/>
<contributor
name="Niels Duif"
trac="Niels"/>
<contributor
name="Nils Skoruppa"
trac="NilsSkoruppa"/>
<contributor
name="M.H. Nimesha Jinarajadasa"
trac="NimeshMora"/>
<contributor
name="Bak JinYeong"
trac="NoSyu"/>
<contributor
name="Oleksandr Motsak"
trac="OleksandrMotsak"/>
<contributor
name="Thomas Paetzold"
trac="PAETZOLDT"/>
<contributor
name="Panagiotis Papasotiriou"
trac="Pap"/>
<contributor
name="Dilshan Pathirana"
trac="Pathi"/>
<contributor
name="Paul Brouwers"
trac="Brouwers"/>
<contributor
name="Pierre Cagne"
trac="PierreCagne"/>
<contributor
name="PolyBoRi team"
trac="PolyBoRi"/>
<contributor
name="Jonathan Hayase"
trac="PythonNut"/>
<contributor
name="Eric Webster"
trac="QuantumKing"/>
<contributor
name="Robert John Barker"
trac="RJBarker"/>
<contributor
name="Rémi Maurice"
trac="RMaurice"/>
<contributor
name="Rolf Morel"
trac="RMorel"/>
<contributor
name="Rajesh Veeranki"
trac="Rajesh_Veeranki"/>
<contributor
name="Ralph Overstreet"
trac="Ralph"/>
<contributor
name="Randall L. Rathbun"
trac="Randall"/>
<contributor
name="Razvan Barbulescu"
trac="RazvanBarbulescu"/>
<contributor
name="Rex Ying"
trac="RexY"/>
<contributor
name="Rik Schepens"
trac="RikSchepens"/>
<contributor
name="Robert Jacobson"
trac="RobertJacobson"/>
<contributor
name="Rudi Pendavingh"
trac="Rudi"/>
<contributor
name="Adam Schultze"
trac="Schultzeal"/>
<contributor
name="Seung Jin Lee"
trac="SeungJinLee"/>
<contributor
name="Matt"
trac="SevenThunders"/>
<contributor
name="Surya Teja Gavva"
trac="Sgavva"/>
<contributor
name="Shanzhao Wang"
trac="Shan"/>
<contributor
name="Charlie Sharpsteen"
trac="Sharpie"/>
<contributor
name="Shashank Shalgar"
trac="Shashank"/>
<contributor
name="Simon King"
trac="SimonKing"/>
<contributor
name="Simon Pepin Lehalleur"
trac="SimonPL"/>
<contributor
name="Julien Puydt"
trac="Snark"/>
<contributor
name="Stefan"
trac="Stefan"/>
<contributor
name="Sina"
trac="SundanCe"/>
<contributor
name="Nicu Tofan"
trac="TNick"/>
<contributor
name="todd"
trac="TheBlackCat"/>
<contributor
name="Timothy Clemans"
trac="TimothyClemans"/>
<contributor
name="Tom Draper"
trac="TomDraper"/>
<contributor
name="Tristan Vaccon"
trac="TristanVaccon"/>
<contributor
name="Vincent Schmidt"
trac="ULBPyVin"/>
<contributor
name="Varsheeth Talluri"
trac="Varsheeth"/>
<contributor
name="Dario Asprone"
trac="Vaush"/>
<contributor
name="Vincent Neri"
trac="Vincent.Neri"/>
<contributor
name="Viviane Pons"
trac="VivianePons"/>
<contributor
name="Winfried Bruns"
trac="Winfried"/>
<contributor
name="Xavier Caruso"
trac="Caruso"/>
<contributor
name="Yannic Vargas"
trac="Yannic"/>
<contributor
name="Yarden Pasternak"
trac="Ypas"/>
<contributor
name="Brian Manion"
trac="Zaxis"/>
<contributor
name="Yasemin Kara"
trac="_kara"/>
<contributor
trac="a.serrano"/>
<contributor
name="Alexander Vasilyev"
trac="a.vasilyev"/>
<contributor
name="Aaditya Thakkar"
trac="aaditya_thakkar"/>
<contributor
name="aakarsh"
trac="aakarsh"/>
<contributor
name="Alejandra Alvarado"
trac="aalvarado2"/>
<contributor
name="Amitabh Anand"
trac="aanand"/>
<contributor
trac="aapitzsch"/>
<contributor
name="Ashutosh Ahelleya"
trac="aashu12"/>
<contributor
name="Angelica Babei"
trac="ababei"/>
<contributor
name="Lev Shamardin"
trac="abbot"/>
<contributor
name="Arnaud Bergeron"
trac="abergeron"/>
<contributor
name="Abhinandan Ojha"
trac="abhics8396"/>
<contributor
name="Abhinav Kumar"
trac="abhinavk"/>
<contributor
name="Abhishek Garg"
trac="abhishek255"/>
<contributor
name="Abhishek Vinjamoori"
trac="abhishekvinj"/>
<contributor
name="Abid Hasan Mujtaba"
trac="abid_naqvi83"/>
<contributor
name="Alexandre Blondin Masse"
trac="abmasse"/>
<contributor
name="Adèle Bourgeois"
trac="abourgeois"/>
<contributor
name="Adrien Brochard"
trac="abrochard"/>
<contributor
name="Alex C. Becker"
trac="acbecker"/>
<contributor
name="Achard"
trac="achard"/>
<contributor
name="Ali Chouria"
trac="achouria"/>
<contributor
name="Adrian C. Keister"
trac="ackbach"/>
<contributor
trac="aclaesson"/>
<contributor
name="Alex Leone"
trac="acleone"/>
<contributor
name="Andrew Crites"
trac="acrites"/>
<contributor
name="Adam Sorkin"
trac="adam"/>
<contributor
name="Adam Voss"
trac="adam.voss"/>
<contributor
name="Adarsh Gupta"
trac="adarsh713"/>
<contributor
name="Adarsh Saraf"
trac="adarshsaraf123"/>
<contributor
trac="adavid"/>
<contributor
trac="adeines"/>
<contributor
name="Alessandro De Luca"
trac="adeluca"/>
<contributor
name="Amit Deo"
trac="adeo"/>
<contributor
name="Andrei Halanay"
trac="adhalanay"/>
<contributor
name="Abraham D. Smith"
trac="adsmith"/>
<contributor
name="Amaury Durand"
trac="adurand"/>
<contributor
name="Andreas Enge"
trac="aenge"/>
<contributor
name="Antonio Russo"
trac="aerusso"/>
<contributor
name="Anastassia Etropolski"
trac="aetropolski"/>
<contributor
name="Andrew Fiori"
trac="afiori"/>
<contributor
name="Andrew Fleckenstein"
trac="afleckenstein"/>
<contributor
name="Amanda Francis"
trac="afrancis"/>
<contributor
name="Alizée Gagnon"
trac="agagnon"/>
<contributor
name="Andrew Gainer-Dewar"
trac="agd"/>
<contributor
name="Andrzej Giniewicz"
trac="aginiewicz"/>
<contributor
name="Alain Giorgetti"
trac="agiorgetti"/>
<contributor
name="AHD"
trac="ahd"/>
<contributor
name="Alejandro Morales"
trac="ahmorales"/>
<contributor
name="Alexander Hupfer"
trac="ahupfer"/>
<contributor
name="Anton Isopoussu"
trac="aisopous"/>
<contributor
name="fuentes marc"
trac="aitzkora"/>
<contributor
name="Akshay Ajagekar"
trac="ajagekar.akshay"/>
<contributor
name="Alexander J. Dunlap"
trac="ajdunlap"/>
<contributor
name="Ajeesh Ravindran"
trac="ajeeshr"/>
<contributor
name="Alastair Irving"
trac="ajirving"/>
<contributor
name="Austin Roberts"
trac="ajroberts"/>
<contributor
name="Abderaouf Khalfi"
trac="akhalfi"/>
<contributor
name="Akhilesh P."
trac="akhi"/>
<contributor
name="Akshay Deep"
trac="akki95"/>
<contributor
name="Andrew Musselman"
trac="akm"/>
<contributor
name="Angelos Koutsianas"
trac="akoutsianas"/>
<contributor
name="Amit Kumar"
trac="aktech"/>
<contributor
name="Avi Kulkarni"
trac="akulkarn"/>
<contributor
name="alain filbois"
trac="alain054"/>
<contributor
name="Aaron Lauve"
trac="alauve"/>
<contributor
name="alberto besana"
trac="alberto"/>
<contributor
name="Alec Edgington"
trac="alec.edgington"/>
<contributor
name="Alex Nowak"
trac="alex_nowak"/>
<contributor
name="Jercaianu Alexandru"
trac="alexandru.jercaianu"/>
<contributor
name="Alex Cowan"
trac="alexc"/>
<contributor
name="Alexandre De Zotti"
trac="alexd"/>
<contributor
name="Alex J. Best"
trac="alexjbest"/>
<contributor
name="Alexander Kass"
trac="alexjkass"/>
<contributor
name="Alexander Konovalov"
trac="alexk"/>
<contributor
name="Ali Ajouz"
trac="aliajouz"/>
<contributor
trac="aliashamieh"/>
<contributor
name="Alina Bucur"
trac="alina"/>
<contributor
name="Allen Knutson"
trac="allenk"/>
<contributor
name="martin"
trac="allmar"/>
<contributor
trac="alon"/>
<contributor
name="Aloÿs Dufour"
trac="aloys.dufour"/>
<contributor
name="Arthur Lubovsky"
trac="alubovsky"/>
<contributor
name="Alyson Deines"
trac="aly.deines"/>
<contributor
name="Andrew Lyasoff"
trac="alyasoff"/>
<contributor
name="Andrew K. MacLeay"
trac="amacleay"/>
<contributor
name="Alicia Marino"
trac="amarino"/>
<contributor
name="Alasdair McAndrew"
trac="amca01"/>
<contributor
trac="amhou"/>
<contributor
name="Amir Sagiv"
trac="amirsagiv"/>
<contributor
name="Amit Sethi"
trac="amit_usual"/>
<contributor
trac="amitjamadagni"/>
<contributor
name="Amritanshu Prasad"
trac="amri"/>
<contributor
name="Alba Málaga"
trac="ams"/>
<contributor
trac="amusselman"/>
<contributor
name="Amy Feaver"
trac="amy"/>
<contributor
name="Amy Glen"
trac="amyglen"/>
<contributor
name="Amy Pang"
trac="amypang"/>
<contributor
name="Ana Clara Garcia Elsener"
trac="anaelsener"/>
<contributor
name="Akshar Nair"
trac="anair"/>
<contributor
name="Arnaud Bergeron"
trac="anakha"/>
<contributor
name="Anas Husain"
trac="anas_husain"/>
<contributor
name="Andrej Vodopivec"
trac="andrejv"/>
<contributor
name="Andrew Mathas"
trac="andrew.mathas"/>
<contributor
trac="andrewsilver"/>
<contributor
name="Andy Howell"
trac="andy"/>
<contributor
name="Andrew Barr"
trac="andyasb"/>
<contributor
name="Alexis Newton"
trac="anewton"/>
<contributor
name="Ankur Omar"
trac="ankur_omar"/>
<contributor
name="Anna Haensch"
trac="annahaensch"/>
<contributor
name="Anna Somoza Henares"
trac="annasomoza"/>
<contributor
name="Anne Ho"
trac="annemho"/>
<contributor
name="Andy Novocin"
trac="anovocin"/>
<contributor
name="anshulgoyal43"
trac="anshulgoyal43"/>
<contributor
name="M.J. Soto"
trac="anteprandium"/>
<contributor
name="Antoine Leudière"
trac="antoine-leudiere"/>
<contributor
name="Anton Todorov"
trac="anton_t"/>
<contributor
name="Anubhab Baksi"
trac="anubhab91"/>
<contributor
name="Anton Osinenko"
trac="aosinenko"/>
<contributor
name="Andreas Paeffgen"
trac="apaeffgen"/>
<contributor
name="Andreas Paffenholz"
trac="apaffenholz"/>
<contributor
name="Aidan Nyquist"
trac="aquist"/>
<contributor
name="Alex Raichev"
trac="araichev"/>
<contributor
trac="gmail.com"/>
<contributor
name="Aran Carmon"
trac="aranc"/>
<contributor
name="Anja Randecker"
trac="arandecker"/>
<contributor
trac="arattan"/>
<contributor
name="Ares Ribó Mor"
trac="ares"/>
<contributor
name="Aravindh Krishnamoorthy"
trac="ark"/>
<contributor
name="Armin Straub"
trac="arminstraub"/>
<contributor
name="Drew Armstrong"
trac="armstrong"/>
<contributor
name="Antonio Rojas"
trac="arojas"/>
<contributor
name="Arpad Deak-Chevillard"
trac="arpaddeak"/>
<contributor
name="Arpit Merchant"
trac="arpitdm"/>
<contributor
name="Adriana Salerno"
trac="asalerno"/>
<contributor
name="Friedrich Wiemer"
trac="asante"/>
<contributor
name="Anders S Buch"
trac="asbuch"/>
<contributor
name="Anne Schilling"
trac="aschilling"/>
<contributor
name="Adrian Seyboldt"
trac="aseyboldt"/>
<contributor
name="Aaron Meurer"
trac="asmeurer"/>
<contributor
name="Asra Ali"
trac="asra"/>
<contributor
name="Eran Assaf"
trac="assaferan"/>
<contributor
name="Ander"
trac="asteele"/>
<contributor
name="Asutosh Hota"
trac="asutosh7hota"/>
<contributor
name="Antoine Teutsch"
trac="ateutsch"/>
<contributor
name="Adam Towsley"
trac="atowsley"/>
<contributor
name="Jason Aubrey"
trac="aubreyja"/>
<contributor
name="Aurel Page"
trac="aurel"/>
<contributor
name="Aurélien Ooms"
trac="aureooms"/>
<contributor
name="Anthony Varilly-Alvarado"
trac="avarilly"/>
<contributor
name="Adrian She"
trac="aveniras"/>
<contributor
name="Avinandan Das"
trac="avinandan"/>
<contributor
name="Adam Webb"
trac="awebb"/>
<contributor
name="Arvind Ayyer"
trac="ayyer"/>
<contributor
name="Jernej Azarija"
trac="azi"/>
<contributor
name="Alexandre Prusch Züge"
trac="azuge"/>
<contributor
name="Owen Densmore"
trac="backspaces"/>
<contributor
name="Thomas Bächler"
trac="baechler"/>
<contributor
name="Karl Semich"
trac="baffo32"/>
<contributor
name="Baldur Sigurðsson"
trac="baldur"/>
<contributor
name="Barry Balof"
trac="balofba"/>
<contributor
name="Sadineni Sairam"
trac="balusadineni"/>
<contributor
name="Ben Antieau"
trac="bantieau"/>
<contributor
name="Razvan Barbulescu"
trac="barbules"/>
<contributor
name="Barinder Banwait"
trac="barinder"/>
<contributor
name="Mark Bauer"
trac="bauerm"/>
<contributor
name="Bogdan Banu"
trac="bbanu"/>
<contributor
name="Benjamin Barros"
trac="bbarros"/>
<contributor
name="Benjamin Bowman"
trac="bbow314"/>
<contributor
name="Brandon DRAVIE"
trac="bdravie"/>
<contributor
name="Beatriz Galiana"
trac="beagaliana"/>
<contributor
name="Pin-Hung Kao"
trac="beankao"/>
<contributor
name="Brandon Dutra"
trac="bedutra"/>
<contributor
name="Ben Edwards"
trac="bedwards"/>
<contributor
name="Benjamin Hackl"
trac="behackl"/>
<contributor
name="Isabella Tobin"
trac="bellatobin"/>
<contributor
name="Benjamin"
trac="benjamin"/>
<contributor
trac="locrian.net"/>
<contributor
name="Benjamin Jones"
trac="benjaminfjones"/>
<contributor
name="Ben Reynwar"
trac="benreynwar"/>
<contributor
trac="bensmith"/>
<contributor
name="Benjamin Adam Strasser"
trac="benstrasser"/>
<contributor
name="François Bergeron"
trac="bergeron"/>
<contributor
name="Berkin Malkoç"
trac="berkin"/>
<contributor
name="Bernard Deconinck"
trac="bern4rd"/>
<contributor
name="Bernhard Esslinger"
trac="bernhard.esslinger"/>
<contributor
name="Benton Girdler"
trac="bgi229"/>
<contributor
name="Bryan Gilbert"
trac="bgilbert"/>
<contributor
name="Bryan Gillespie"
trac="bgillespie"/>
<contributor
name="Bennet Goeckner"
trac="bgoeckner"/>
<contributor
name="Ben Goodrich"
trac="bgoodri"/>
<contributor