-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommit_InternalQA_Filtered.sql
1294 lines (1284 loc) · 126 KB
/
Commit_InternalQA_Filtered.sql
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
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1:3306
-- Generation Time: Jun 14, 2019 at 01:19 PM
-- Server version: 5.7.19
-- PHP Version: 5.6.31
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `refactoringproject`
--
-- --------------------------------------------------------
--
-- Table structure for table `iqa`
--
DROP TABLE IF EXISTS `iqa`;
CREATE TABLE IF NOT EXISTS `iqa` (
`URL` text NOT NULL,
`CommitID` varchar(100) NOT NULL,
`IQA` varchar(150) NOT NULL,
KEY `commitid` (`CommitID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `iqa`
--
INSERT INTO `iqa` (`URL`, `CommitID`, `IQA`) VALUES
('https://github.com/Pi4J/pi4j', '000a02433ae27348082ee0008fe65e3568f21508', 'abstraction'),
('https://github.com/CampagneLaboratory/goby', '000d011444d9bd24028e59b23e2e20842c9da876', 'abstraction'),
('https://github.com/adangel/pmd', '002bb4a596fe2a53e079311c72a0a7dcd0286511', 'coupling'),
('https://github.com/ModeShape/modeshape', '007bdbe3db9568eae14b4ae438c5914b020ee98d', 'composition'),
('https://github.com/hank/feathercoinj', '00cb8a4abd7a11e94b6f6b0b9552b2001f25ecfa', 'complexity'),
('https://github.com/tinkerpop/rexster', '00e89ef9bde9cda2af1fedd704ed56aedb9840be', 'abstraction'),
('https://github.com/ist-dsi/fenix', '0161ed4c1ce5be9fb4db3f15fe5df1f304a9e4b0', 'composition'),
('https://github.com/cowtowncoder/low-gc-membuffers', '01680cd1c286708dcc1d2ecbc06646d1aba106e4', 'abstraction'),
('https://github.com/lucmoreau/ProvToolbox', '017a5f76027c8e3e411734d6e9ad926be31fc2fd', 'inheritance'),
('https://github.com/orientechnologies/orientdb', '01e0c3868d58af462d9f5a53f01aedea717de6e2', 'inheritance'),
('https://github.com/kirkch/SandboxMosaic', '01e0c5c7770f563ee6ce9a039acd2535e2e19b90', 'abstraction'),
('https://github.com/futures/fcrepo4', '0224771828de8da5543d64061476e7b7201387e5', 'abstraction'),
('https://github.com/molgenis/molgenis-legacy', '024724e1bc580a892c88fb822bd95b812aa88be4', 'inheritance'),
('https://github.com/IsNull/xattrj', '0365bcfd7d1ffe627d372bf1aa72d6b944bbe1ed', 'abstraction'),
('https://github.com/BroadleafCommerce/BroadleafCommerce', '036cbcc827b22b719a6c4b863e4c641ed18b7183', 'inheritance'),
('https://github.com/seanp33/pento', '037b45eb3265391c75ba166a8fa337e7fa77a771', 'abstraction'),
('https://github.com/jmimo/netty-icap', '03ed1447a79bd71f9f902e5bb32ef25886aa0397', 'encapsulation'),
('https://github.com/nebulostore/nebulostore', '045dc64d4ff11936876ab19df64c3dd3658b6ef2', 'inheritance'),
('https://github.com/forcedotcom/aura', '046d5362ae850b8720133d601aff7c7ad3d06212', 'size & complexity'),
('https://github.com/kpacha/java-kata', '047b5c891f9aa8f2157573ca22a339297ea1f8ac', 'composition'),
('https://github.com/apache/karaf-cellar', '049c61c4ac19e0f2f5af5ab4568e77763bf81f84', 'composition'),
('https://github.com/jdbc-bare/spring-jdbc-bare', '04fa5d4b99989d96a478fd788b0e821aba9f32d6', 'inheritance'),
('https://github.com/undertow-io/undertow', '0504ee4fc9653fb9987a7bd3a1191bd93317420b', 'abstraction'),
('https://github.com/mneedham/neo4j-fork', '0515bb5b19bec22a7f864bbd1b2b57be2f7e290e', 'abstraction'),
('https://github.com/SonarCommunity/sonar-php', '05630d5f3942a18c7ca40866bfa963de81863b6c', 'complexity'),
('https://github.com/SpringSource/spring-ide', '056ba53d2604d02452514571efecbbe257ac114a', 'abstraction'),
('https://github.com/stoicflame/enunciate', '059c43b306553754b8bca0b40c87b1c8bf52c047', 'inheritance'),
('https://github.com/helun/Ektorp', '05d88e1c19040b6455625cb08113500d2be0ceaf', 'complexity'),
('https://github.com/OpenGamma/OG-Platform', '05d9a851f61848991e893dfb7d76f22a68fca4b3', 'coupling'),
('https://github.com/broadgsa/gatk-protected', '05e69b62940f47845355cca8fd28bd234f2ac4ee', 'complexity'),
('https://github.com/mneedham/neo4j-fork', '064132b1676a5c795daf138d46d96952a195006d', 'abstraction'),
('https://github.com/xwiki/xwiki-platform', '0694bd0c7fed582466370a64f890b1efd46a2dc7', 'inheritance'),
('https://github.com/cdi-spec/cdi-tck', '06975ddd9adf669e8e2fa1e406fb748648b5d028', 'inheritance'),
('https://github.com/42BV/jarb', '06e892365ec5ecef05df28690a4ccaccf5c4e452', 'composition'),
('https://github.com/imagej/imagej', '06f104b748d52f5d229a6cb5109e29c8df158024', 'complexity'),
('https://github.com/blootsvoets/jmml', '072f877d4581c20b0b7259468acd37f770d3b0e2', 'coupling'),
('https://github.com/SamirTalwar/Quacker', '07614aa826b7b50a5c88106a20d8e9db89ee6002', 'inheritance'),
('https://github.com/ArcBees/Jukito', '07b657b0190261e47e6c8b58d7a83553c09c5c49', 'inheritance'),
('https://github.com/jmkgreen/morphia', '07bc39015db51be24c655a2719fb11a8a1953f0e', 'inheritance'),
('https://github.com/sksamuel/jqm4gwt', '07cc23bf808d1a5e840b6a7d57d4d0d8a78a03f2', 'abstraction'),
('https://github.com/eclipse/dltk.core', '080c249740a67a710857f82f6ace5c24f317a96e', 'inheritance'),
('https://github.com/jtbdevelopment/e-eye-o', '08bb597f379d4f868d01efd47adf708eae942c47', 'inheritance'),
('https://github.com/SonarCommunity/sonar-dotnet', '08db4cfee2cf85377e6535e447d7350e97683d61', 'complexity'),
('https://github.com/shevek/spring-rich-client', '08df27b22679d95c532b2e1ef082035f2e925e56', 'complexity'),
('https://github.com/eclipse/bpmn2-modeler', '09202c0d82be02bf5979c2cd627acdd8d5b709da', 'composition'),
('https://github.com/npina/performanceTest', '0921796ab6415681e09e5870450227ee7414a326', 'abstraction'),
('https://github.com/SonarCommunity/sonar-javascript', '094adc5b7b2a7d1e2406b5ceb6d81b85246e1120', 'complexity'),
('https://github.com/Benoker/DockingFrames', '0976cda3d786eca49d7630d4f3c66219f5b9bff9', 'abstraction'),
('https://github.com/jdcasey/cartographer', '0982bfab6b8fd9b52c5d3806f07e75213721ab12', 'composition'),
('https://github.com/killbill/killbill-client-java', '098c1f0fd46a7844c1a6a36f10588b094e5f9ddc', 'inheritance'),
('https://github.com/antlr/stringtemplate4', '098ea617270404419252aad78c4611b1920c2ab4', 'inheritance'),
('https://github.com/shevek/spring-rich-client', '098fbe687d2aa290e12b46ffeaf3f6921469afef', 'abstraction'),
('https://github.com/BMintern/gson', '09ba39420d1e1afa1f77ed4f0a7f3a1f4501622c', 'polymorphism'),
('https://github.com/oberasoftware/jasdb', '09ce9aa6739652ba0d99c4a0a397c0991966754d', 'inheritance'),
('https://github.com/SpringSource/spring-boot', '0a730beb2a518a1ffc9bb363f25de239331e2336', 'abstraction'),
('https://github.com/wolips/wolips', '0a7a013167b6ae5bdceb534c9e8c2ae509302fd7', 'complexity'),
('https://github.com/Comcast/cmb', '0aa150baab20b1166738273e2b91442c6c382f46', 'abstraction'),
('https://github.com/Netflix/feign', '0aac921f312127aa2afa6f4fdacd38de88311d1a', 'inheritance'),
('https://github.com/apache/shiro', '0aad0e87529a0562ed50911aff5ceea9bfacab5e', 'inheritance'),
('https://github.com/rkapsi/ardverk-dht', '0b3387692ed36af122004f3fb0627df1bbd6b8f4', 'complexity'),
('https://github.com/apache/cayenne', '0b6a42405d96ec44c718fc088999a309628f32fc', 'inheritance'),
('https://github.com/openfigis/vme', '0bd7ade93ac8db3f3fff665e9d664b6ec590cde7', 'composition'),
('https://github.com/baakind/autoscale-common', '0c1d50e25139f237ad6bd73fc198988cbd5299bb', 'abstraction'),
('https://github.com/christophd/citrus', '0c35e381af5877fbd1611369a95901dadf6a3973', 'complexity'),
('https://github.com/immutables/org.immutables', '0c5e9fa235cdc37ef71bea53c38c014740f52840', 'abstraction'),
('https://github.com/metispro/metispro-common', '0c6da4b7b8cf2eedf0a272dc9938176a8c90c60e', 'abstraction'),
('https://github.com/fluxroot/pulse', '0c7f1f64d3da4dc1049def9fe43d481bbe195e7c', 'complexity'),
('https://github.com/wblancqu/designpatterns-RealDolmen', '0d5e102eee1737502bd246634d0713a7ce9e2c23', 'abstraction'),
('https://github.com/estatio/estatio', '0dc98ff98c52aa5c77a2c395d4ee86527bcca95b', 'coupling'),
('https://github.com/korpling/ANNIS', '0dce81697bba4f83a8b47e6d30dd4031c4a5e314', 'inheritance'),
('https://github.com/pdt-eg/Core-Plugin', '0e773664d29d6f5e24ca5ebcc88a373ad580ec41', 'coupling'),
('https://github.com/OpenGamma/OG-Platform', '0ed552d8908c3eb57cf642fa583129a5cb10c462', 'composition'),
('https://github.com/SonarCommunity/sonar-dotnet', '0eedef5ec5bdd052bb407506f93290e82f4243c3', 'complexity'),
('https://github.com/broadgsa/gatk', '0f3049652a72e2abebc14a79140fe66d200045f0', 'abstraction'),
('https://github.com/xXKeyleXx/MyPet', '0f4fcb13f47462461800a53612675d964b02a220', 'inheritance'),
('https://github.com/jonatas/mktc-platform', '0f528d00254fd77010d062d87476e602ce8aa967', 'abstraction'),
('https://github.com/BitResolution/xTest', '0fb04c65f6e6b6070d18906866422017591b3ca9', 'coupling'),
('https://github.com/apache/cayenne', '103f48cb34edf47e725ce98e1c5296bd1c6aea0c', 'inheritance'),
('https://github.com/xwiki/xwiki-platform', '105dd1ff8f20b84371b9721f5f55d9bec566321c', 'inheritance'),
('https://github.com/DigitalPebble/behemoth', '106c2df20cfe5319968ede85a06b3d89fdb0f954', 'complexity'),
('https://github.com/Iamkhova/ks-aethanengine', '107763f4087fa654baabffcba756aaf9000b7603', 'inheritance'),
('https://github.com/cucumber/cucumber-jvm', '10c07317c03d62168391cbc10b4d0ce64f4a7f94', 'encapsulation'),
('https://github.com/code4craft/webmagic', '110412297925415549cca50cfc0be78c30360171', 'abstraction'),
('https://github.com/hibernate/hibernate-search', '1169bb2fde841f9cb139178a36bcac5a32f80e6e', 'abstraction'),
('https://github.com/jtbdevelopment/e-eye-o', '11bb40a6da5d71b0f2ab8cde23d3f610d35df538', 'inheritance'),
('https://github.com/geotools/geotools', '11d606062851becc59399b65966ab2d44687f89c', 'coupling'),
('https://github.com/apache/jena', '126a9dcbfd19f61705a999567a0c6c6ca5e9a82d', 'abstraction'),
('https://github.com/RegalOwl/HyperConomy', '126e76bc657149b5e25eb49828a5eb91d11f66bb', 'abstraction'),
('https://github.com/openmrs/openmrs-module-registrationcore', '129dc5f47dcb9c3241b26593b0b6d9a8727b5093', 'inheritance'),
('https://github.com/ekirkilevics/Magnolia', '12cace56184bd821634294afeebe701a1b3f876d', 'inheritance'),
('https://github.com/SpringSource/spring-data-mongodb', '12ddfcc9f94cf8226f5f4fc863d33f9e18f872b2', 'inheritance'),
('https://github.com/HUSACCT/HUSACCT', '12ea041034bec3d00ed92cc2e3a28f07808228d7', 'inheritance'),
('https://github.com/md-5/SpecialSource', '132584eda4f0860c9d14f4c142e684a027a128b8', 'inheritance'),
('https://github.com/jqno/equalsverifier', '134138d076ba8e7fc58002fda3c5cf501fbfe500', 'inheritance'),
('https://github.com/korpling/ANNIS', '137aaa90e5cd2cafc955f56a0f597050156b935b', 'abstraction'),
('https://github.com/forge/core', '1391473c9fe1fb6f201a767445896497028626a9', 'abstraction'),
('https://github.com/bobmcwhirter/drools', '13c14769dd22f023fe277ad1a7d2e3d164aa2755', 'coupling'),
('https://github.com/chirino/hawtdb', '13e15bba3742983de043d4cfb300c79a887eaeac', 'abstraction'),
('https://github.com/choreos/choreos_middleware', '13e89cf93a13ea889c577112ff92dbe6566fe98c', 'coupling'),
('https://github.com/wocommunity/wonder', '1414641a39d6a7b208ba59d70a942a0287e26828', 'inheritance'),
('https://github.com/brunoborges/camel-twitter', '141f93434beebfa25d6c3b9feaf0d40a8055afeb', 'abstraction & inheritance '),
('https://github.com/obiba/onyx', '142a4cc3f364c1343f2c430be2b46878a06a12af', 'coupling'),
('https://github.com/odata4j/odata4j', '142fd8869c33ce4ef22a31815e59b9cb838f3093', 'coupling'),
('https://github.com/airlift/airship', '14f4ec225f9cfd4a9c0342366c345b8900a43f79', 'abstraction'),
('https://github.com/Igalia/libreplan', '1503b6e175582f0d9365aa46e79b27a10a1de63f', 'abstraction'),
('https://github.com/sk89q/commandhelper', '152a6a2589956a8e7e8e29c121163007e3f871ac', 'abstraction'),
('https://github.com/riptano/hector-jpa', '155e73243cc8afc5635f8dc834f06e1aaaaf17a4', 'inheritance'),
('https://github.com/apache/mina-sshd', '15d2ed1511f58b151041637d5ced0350745a0d38', 'abstraction'),
('https://github.com/SonarSource/sonar', '15e9f443eed5c74be9abe4738b07d62fe335c8e6', 'complexity'),
('https://github.com/SonarCommunity/sonar-javascript', '15ed8e1881f3f686d30e131d294da5016d124610', 'complexity'),
('https://github.com/arquillian/arquillian-core', '1614501674555a71506c5804489855918b19f60c', 'abstraction'),
('https://github.com/ekirkilevics/Magnolia', '164f497bca3be296850b7f0b6d58cb6965e73670', 'composition'),
('https://github.com/seam/social', '166eb60fbd84cbec49fbad59ae2bb8eb720e4101', 'coupling'),
('https://github.com/michalxo/LogFilterBase', '16b8b9a36ea86159fadf6cf8bff11eded1af780c', 'abstraction'),
('https://github.com/stoicflame/enunciate', '17276a95caa6c22cc8cb9c58586fdbd70570c94d', 'complexity & coupling'),
('https://github.com/vietj/chromattic', '1764f8132c336d2b06dc6d8f271d6f591534ba6c', 'inheritance'),
('https://github.com/astubbs/spring-modules', '1779a3d2642290282b61b2662e7aa78555d93dcd', 'coupling & abstraction'),
('https://github.com/codereligion/beast', '179bc7f806b4e00f8973dbd67278c929ecbba8ca', 'cohesion'),
('https://github.com/rabbitmq/rabbitmq-java-client', '17a35d42bf77c2ecf067b0c8293c5254a13e4b8f', 'abstraction'),
('https://github.com/futures/fcrepo4', '17da4039df39b5543a2cceb904e1c04f83477222', 'inheritance'),
('https://github.com/SpringSource/spring-data-commons', '1805aad718ada5f0991350f38d5a8443b4a68542', 'abstraction'),
('https://github.com/apache/roller', '181208ff847c3ff0bcc855538cda7e1587eacdc1', 'encapsulation'),
('https://github.com/SpringSource/spring-shell', '1874b7acdb2d8a6ffb4ef83e23751f64b1be29f8', 'coupling'),
('https://github.com/wocommunity/wonder', '1879cf27ae454d836e926be436b458147f334a3d', 'inheritance'),
('https://github.com/estatio/estatio', '188c9786d8cf63bd80b67b1e890df3afc685249c', 'coupling'),
('https://github.com/l2jserver2/l2jserver2', '1909bb06ccc7b309e4d26d9f631463aad2784b04', 'abstraction'),
('https://github.com/apache/camel', '194befa4f81bfab03f32a891b0c580f3a39d6aa5', 'abstraction'),
('https://github.com/wocommunity/wonder', '19922c0d66661f7221ed6bd2f2243c14bd73fc92', 'inheritance'),
('https://github.com/mneedham/neo4j-fork', '19a5c12acb1daf508e2e56d89714bf5005e9829a', 'abstraction'),
('https://github.com/rolisv/odata4j-fork', '19c52e798ae1b27101c8a4080f376b920dac7019', 'inheritance'),
('https://github.com/hector-client/hector', '1a076607786963bb5b9b348150c23724478676cd', 'inheritance'),
('https://github.com/Graylog2/graylog2-server', '1a372952dc5faa06ee5e300f45555db169c6b1c1', 'coupling'),
('https://github.com/xwiki/xwiki-platform', '1a66ea2d3363d1af62df78fbce5bb9ef91b1596e', 'complexity'),
('https://github.com/SpringSource/spring-roo', '1a8ba947af74b5400ac9d8b8de23d51bcb690271', 'inheritance'),
('https://github.com/sonatype/sisu', '1a9e9d657d49dc7b35870400bb838c3734995ce9', 'abstraction'),
('https://github.com/bedatadriven/renjin', '1b15dba656d418c052a7cfda7b4550271068fb6b', 'abstraction'),
('https://github.com/hibernate/hibernate-ogm', '1b69c827117604c9c9fac83c62a99aa748d9c01c', 'inheritance'),
('https://github.com/mikera/vectorz', '1b7cf83dfe8667d280b2384ff91bed013c19cd43', 'composition'),
('https://github.com/apache/maven-integration-testing', '1bc27aada0a3323b0bf60e7f987c1288f0b5450d', 'inheritance'),
('https://github.com/krosenvold/findbugs', '1bfe10fce9758c7653cf5121ecdef7074c8325ca', 'inheritance'),
('https://github.com/HUSACCT/HUSACCT', '1c52237df62d1910d38c5a04c01b32108434883d', 'abstraction'),
('https://github.com/BroadleafCommerce/BroadleafCommerce', '1c9dae0f24f0d8833d7194e3a65daa8da39032de', 'inheritance'),
('https://github.com/lexicalscope/jewelcli', '1cb7d8a363f4705cbca1399879fd545a799c27d4', 'coupling'),
('https://github.com/MassiveCraft/Factions', '1ccefc93b58e9aea6e3100eaf9caef414efdba4e', 'complexity'),
('https://github.com/eclipse/vert.x', '1cef521997f5ad792c6d9bb708a57e58a975d01b', 'composition'),
('https://github.com/arquillian/arquillian-container-tomcat', '1cfe1fd3ba789a909e1bacc0692a48a24ed27210', 'composition'),
('https://github.com/ceylon/ceylon-ide-eclipse', '1d2f7040fc0056bae05e7e0785f7a22c09a423e9', 'abstraction'),
('https://github.com/jri/deepamehta', '1d5fcb22f34549cb88579fd9359c42ce7f4985f3', 'composition'),
('https://github.com/gephi/gephi', '1dbcbdc04d8a4c390e1e889c77afd8d81a5720e6', 'encapsulation'),
('https://github.com/openmrs/openmrs-module-reporting', '1df17d9d491258ef6e725dd13322cdc243d9478a', 'composition'),
('https://github.com/dynjs/dynjs', '1e5c1fe2ba9ac46803cd3d7c704de851869750fa', 'abstraction'),
('https://github.com/metispro/metispro-common', '1e6d02fd35087582844a8838a036f240987ed0db', 'abstraction'),
('https://github.com/monrealis/skaitvardziai', '1e8519bbbd0f3585ae570d17c5292293312f1f1c', 'inheritance'),
('https://github.com/xXKeyleXx/MyPet', '1e8ceb0203604b493defe3e59eb91b966bf200d2', 'abstraction'),
('https://github.com/eclipse/orion.server', '1e90072aa20697bc8c18be7f31aedbfd985f6169', 'inheritance'),
('https://github.com/apache/activemq', '1ec71bdff17f6d11d50d77ff98db1c9a70e5d7b4', 'encapsulation'),
('https://github.com/AxonFramework/AxonFramework', '1f1f69e088abdd1156941924e8366e8fbb21661a', 'complexity'),
('https://github.com/hazelcast/hazelcast-heartattacker', '1f66ddb608a223880aadfa841576adb03c215040', 'complexity'),
('https://github.com/SonarCommunity/sonar-php', '1f676bd5f6d9c49074a7ff07adeecc40924b0f03', 'complexity'),
('https://github.com/ox-it/wl-assignment2', '1f6cff6583a92120e706da6c3461c824b0eef8ab', 'coupling'),
('https://github.com/SonarCommunity/sonar-php', '1f847bc0c6c201116f13f45f289f612ac75248c0', 'complexity'),
('https://github.com/42BV/jarb', '1fa6c9910b92e25261f051f68a6d4a804b01df28', ' abstraction'),
('https://github.com/apache/maven', '200d2f9935c537bf91328150192386d4fbf11554', 'inheritance'),
('https://github.com/jbosstools/jbosstools-vpe', '202aea2b178894a8e5d142a6d254b00f130c8eaf', 'composition'),
('https://github.com/droolsjbpm/optaplanner', '205320581fc0ccd66fdcb476cf9b00d86a7d252f', 'inheritance'),
('https://github.com/eclipse/jetty.project', '205ef85ead2c7ea169e4aebdabcf9f24b66de15d', 'complexity\n'),
('https://github.com/carlspring/strongbox', '207b266de44c64a0555aa1d8792e636dd27ea28f', 'abstraction'),
('https://github.com/jclouds/jclouds', '20c3426fc8c02743025139854d7e2c4049a8e4ae', 'complexity'),
('https://github.com/camunda/camunda-bpm-platform', '20e3cad2bacff5dade34748912118648fcba024e', 'inheritance'),
('https://github.com/estatio/estatio', '20e85d91a5e83568fd19dc8fb128db6a0d1378e4', 'inheritance'),
('https://github.com/SpringSource/spring-data-mongodb', '21048f211d0cc71e6deec4033c5477cdf9c6e009', 'inheritance'),
('https://github.com/exoplatform/kernel', '210e05949baf2f3bcab246ec409bd3538c7ca034', 'coupling'),
('https://github.com/jbosstools/jbosstools-base', '21a0469f696de0910add6c49aa843f6943d020dd', 'inheritance'),
('https://github.com/softwaremill/softwaremill-common', '21b21df357660b6778369265ae429ceadbde55bb', 'encapsulation'),
('https://github.com/jqno/equalsverifier', '21ba9204fc85718bb5e1cf4c09d0d62ee71ca44e', 'complexity'),
('https://github.com/timmolter/XChange', '21c0da4fe4640916fa8a84420808a1fb318047b2', 'inheritance'),
('https://github.com/intelie/lognit-cli', '21dbf5a43e137f589a65fedf2f4ae60a844af948', 'complexity'),
('https://github.com/Milkphany/PotatoRental', '220dd28646f1879d9aeee13eb57357cf5ec67093', 'abstraction'),
('https://github.com/astubbs/spring-modules', '221029dc09b338beade371f1daf0373ba577b9b2', 'coupling '),
('https://github.com/wocommunity/wonder', '2216f385a3e16a43739edb14fbf246f9ee381e54', 'inheritance'),
('https://github.com/HUSACCT/HUSACCT', '228a9df59df8a9503d3012dc77ca8affaaf87cba', 'inheritance'),
('https://github.com/RegalOwl/HyperConomy', '22b91f23a5c73a150bce698fc2b69b3c3a36a485', 'abstraction'),
('https://github.com/phrstbrn/Jobs', '22c4c406e288a444e88bde4d6302d2fb327fd937', 'abstraction'),
('https://github.com/antlr/stringtemplate4', '22d09f70e50fa485bd0927918204fa8d8e793598', 'complexity'),
('https://github.com/HUSACCT/HUSACCT', '22e818542e0a26dc43b091352bbc0ec27ec47563', 'abstraction'),
('https://github.com/stickfigure/objectify', '235b3562c8b07a4fb46cfe9197eb280c552c79cd', 'inheritance'),
('https://github.com/kristofa/brave', '238fcd7660fe62952ed72777869658500044d6d8', 'coupling'),
('https://github.com/cloudera/search', '23c01531f4ce80f0730f0b5219495344d61379dc', 'inheritance'),
('https://github.com/DozerMapper/dozer', '2437f5ae3146aa7a11b4fb81c58c46452c52fb94', 'inheritance'),
('https://github.com/stormpath/stormpath-sdk-java', '2495e2645ea5401ddf79c815d8e12fcb0b266330', 'coupling'),
('https://github.com/openmrs/openmrs-module-webservices.rest', '251064d1d247bd26af0657c1b89577c26a2c6eef', 'inheritance'),
('https://github.com/anderssv/jzx-weboo', '251d69fdef3a6a8124aef7d881945ea3eeacfc3d', 'abstraction'),
('https://github.com/gufi/OpenLogViewer', '2523f54ee50532f5793460b89749edeab8697ac2', 'complexity'),
('https://github.com/NuclearW/Slice', '256259fce214ac327da338e6e9e580d0faedf362', 'inheritance'),
('https://github.com/christophd/citrus', '2583da49ef75794deda45a0a83087af0babdb073', 'complexity'),
('https://github.com/SpringSource/eclipse-integration-cloudfoundry', '259a6cb8d8345f687aa7f7a75ad1b6a84f2dbc5c', 'abstraction'),
('https://github.com/apache/commons-math', '25a6b32fe16ff1e048c6667f05c19e0cb5b24090', 'composition'),
('https://github.com/mifos/head', '25eab09cb02a5ea3149264400f21deacb5a8853c', 'inheritance'),
('https://github.com/bguerout/jongo', '2658c16d089ab347065bcaf766aa320e384e96f7', 'polymorphism'),
('https://github.com/threerings/tripleplay', '265a94d25aebc411b0d16eda2ab1bac30790e51b', 'abstraction\n'),
('https://github.com/kongchen/swagger-maven-plugin', '265aabb6c33b202c95d13a226de804835927d6d8', 'inheritance'),
('https://github.com/hibernate/hibernate-validator', '2680f575d8bab5dfa46e2d496044bb8516bfa27d', 'composition\n'),
('https://github.com/jdbc-bare/spring-jdbc-bare', '2689751c2b9f66d06552581941fcba3b60197c4a', 'cohesion\n'),
('https://github.com/52North/SensorWebClient', '26aa1ff6d400f6c1bf0244e187b44f2b6943b672', 'encapsulation'),
('https://github.com/codereligion/reflect', '26be4b5063e6552a519ec29783b990550dec29c6', 'complexity'),
('https://github.com/camunda/camunda-bpm-platform', '26ed02124acd223c2e2a021d036ccbf2676edb8f', 'complexity'),
('https://github.com/tuxdna/semanticvectors', '270023033bde5ff51611de0031d43d9b31fa3852', 'encapsulation'),
('https://github.com/metamx/druid', '273205f217e6f730ff6905155e8841ad3aaa67e1', 'abstraction'),
('https://github.com/orfjackal/dimdwarf', '274398f3e595be2bc8bc877aedb177571870b31e', 'complexity'),
('https://github.com/jqno/equalsverifier', '274ec24bb62b409cdb847f34e9f758ca9a309142', 'complexity\n'),
('https://github.com/skyscreamer/nevado', '27771c80ddf2ffed685c8bed46ea6041ef71c98b', 'inheritance'),
('https://github.com/apache/maven', '2783afc4bf0a498d48c4268715b0cdf89693deb6', 'inheritance'),
('https://github.com/TexasDigitalLibrary/Vireo', '27ecc4bd2157916f0ad4285a208d8a9c781eefb4', 'inheritance'),
('https://github.com/OpenGamma/OG-Platform', '27eef2f22b09337cffc329b0eca748b84057164a', 'abstraction'),
('https://github.com/OpenNMS/opennms', '280f0bc3e3d403f8bb3307bf814d6a795f9c24a2', 'abstraction'),
('https://github.com/nathanmarz/storm-contrib', '28801fc3b7334605f267219519d85741d8f62964', 'abstraction'),
('https://github.com/jclouds/jclouds', '28aadccb49540d20dda7e68e52b8265a285843fb', 'abstraction'),
('https://github.com/johncarl81/parceler', '28b889d875af3f445fecf0a40acef0e57283932a', 'inheritance'),
('https://github.com/sonatype/gshell', '290f280234992faedd797c92606c59311fb67134', 'abstraction'),
('https://github.com/kohsuke/msv', '291cddfd85863a1c0611a7a8822fc095f9f4fb41', 'complexity'),
('https://github.com/apache/cayenne', '292c2984a92815eb6624e2f6d2b61688dfa9725d', 'inheritance\n'),
('https://github.com/SonarSource/sonar', '2930b4cde87a1dc3536c1ba66fb04fd582070ecc', 'complexity\n'),
('https://github.com/Pi4J/pi4j', '29609f54d95979b38eb92022ce00ff8befca2c7d', 'abstraction'),
('https://github.com/nathanmarz/storm', '297ee5a439c8b082ab5ffc0061d657687e1221ad', 'abstraction'),
('https://github.com/SonarCommunity/sonar-dotnet', '299ca85c1c3c5fb60a14852ed8b2bbfc60244370', 'complexity'),
('https://github.com/zxing/zxing', '29d7d6443e0a9276a6240c4144550ca9807e0d56', 'abstraction '),
('https://github.com/diosmosis/drones', '2a08e4a46eb8ce006643921ffd492ac5e11a6cd6', 'abstraction'),
('https://github.com/masterthought/cucumber-reporting', '2a1f6bf1f5cc762c4196012efee579b534f949e5', 'complexity'),
('https://github.com/carrotsearch/smartsprites', '2a5c410ef19aca9408ef471772a57ee4030ef4de', 'abstraction'),
('https://github.com/mlallaouret/ComputerDatabase', '2a7f43880fd868bf2aad8f215988874e5caf84c8', 'coupling'),
('https://github.com/goldmansachs/gs-collections', '2aa92f1f773a0a11c7460e7d3c5e4e757ee841db', 'inheritance'),
('https://github.com/dCache/dcache', '2afbbc2ab85c208847c3124222f532ed5804b953', 'encapsulation\n'),
('https://github.com/jsr107/RI', '2b471ff9336cd951a4cbe040908a79467a6b0824', 'complexity\n'),
('https://github.com/apache/karaf-cellar', '2b4997c7b217b0d1c6d5297f6f4f0aa397a45bc6', 'inheritance'),
('https://github.com/edipofederle/architecture-representation', '2bc9f6db90b675a8c00e5183f109c6b7f55430a8', 'abstraction'),
('https://github.com/resteasy/Resteasy', '2bfc96d4024623b176d1448dae9d1b12827c21ac', 'inheritance'),
('https://github.com/bguerout/jongo', '2c21c4e1d15bbbdf7f317be1dd902f1b33efe559', 'inheritance'),
('https://github.com/mneedham/neo4j-fork', '2ccaa35b39604fc0ecd4f4b062c6de4a3c8b4b78', 'abstraction'),
('https://github.com/shantanusharma/closure-compiler', '2cdc02065b5eafecf598a883ee45397bc7657626', 'inheritance\n'),
('https://github.com/axtimwalde/mpicbg', '2cf4f0b9d65923007eedad13e9b61bc8394954d2', 'inheritance'),
('https://github.com/xXKeyleXx/MyPet', '2d16e6a9ec8a14fd9850faa387f044f595b13942', 'inheritance\n'),
('https://github.com/OpenNMS/opennms', '2d30b75214e68f8825b2659a5ff9fc527e6ab29a', 'abstraction'),
('https://github.com/rabbitmq/rabbitmq-java-client', '2d337d949bfa6f594ef500e3a2cb7b063b7831e3', 'abstraction\n'),
('https://github.com/mneedham/neo4j-fork', '2d391918b0bac3e37b979ac0e2dda026f2328615', 'abstraction'),
('https://github.com/apache/cayenne', '2d3f999b0360936d25a9f08d7eea7e2dd07dbe04', 'encapsulation\n'),
('https://github.com/lmcgrath/conways-game-of-life', '2d76c80f492656ad964d565e71ece2f38ebdbe9b', 'abstraction\n'),
('https://github.com/scrutmydocs/scrutmydocs', '2ddbf82a9b7d16bfc94876473a4465839601eba5', 'abstraction'),
('https://github.com/rainbof/nyxtools', '2de7d9c36d8dae30644af7d41cdac2f2e5b2bfdc', 'encapsulation'),
('https://github.com/uklance/acme-slots', '2df512d769de9345fd48d8484e13cf5f6001921b', 'complexity'),
('https://github.com/apache/tez', '2e2312646d25ac0fc40b9cca443f83d3e10b392b', 'abstraction'),
('https://github.com/idega/com.idega.core', '2e3be506c6e4e7504cdf287100a1dabd868fd87e', 'inheritance'),
('https://github.com/nikolaspapirniywork/Algorithms_summer_2013', '2ec7d35966587f8a2e2638b9e4b1738f22ef0ba6', 'abstraction'),
('https://github.com/jenkinsci/svnkit', '2ee2f14119da9d2f1cfba2b1b824b14384c6b9d5', 'inheritance'),
('https://github.com/StuartMacKay/transform-swf', '2fcbe669ea7e89edc260a670fdc80fba55bce28f', 'coupling'),
('https://github.com/droolsjbpm/drools', '3007f2c42783b038c082ae5f83962e64ecbacd6e', 'coupling'),
('https://github.com/OpenHFT/Java-Lang', '3020937f98cb896f489b17350ab318fb412b6407', 'abstraction'),
('https://github.com/BMintern/gson', '30a7fbc11eeed535b5e5bd33386b34d897547cfa', 'inheritance'),
('https://github.com/jknack/handlebars.java', '30a9b860a8580118b1e56f1ff0215d4fd6c3bd63', 'inheritance'),
('https://github.com/caelum/vraptor', '310dca90ecc64e7e2458e1ecb28b85fde244bd85', 'complexity\n'),
('https://github.com/CoreMedia/jangaroo-tools', '3134c60dd4d94a2d73c7446fa235dfaf107c18e2', 'inheritance'),
('https://github.com/kirkch/SandboxMosaic', '3190eaa6bec14294c80d975c953f470bd2a47c17', 'abstraction'),
('https://github.com/eclipse/birt', '3205466df57ae789fba321b14ed4fccf5a285020', 'inheritance'),
('https://github.com/charite/jannovar', '321ee36265b54a59f094c93f5e52689a22fd947a', 'inheritance'),
('https://github.com/christophd/citrus', '32241f6e38c78da33e3b76b292ba051fc1079a97', 'complexity\n'),
('https://github.com/robbert/closure-compiler', '325025731e0aabcf1344d1dbf55bf28927b9b722', 'inheritance'),
('https://github.com/pilhuhn/rhq', '326f801c85208670e4879f843fdd01dbae061150', 'composition & \ninheritance'),
('https://github.com/forcedotcom/phoenix', '32d49812a9cb41880eec2c33067112a9509dadc0', 'abstraction'),
('https://github.com/Mobicents/mediaserver', '32f9fc134818a807c3b34318c3790fa69f7b5d87', 'coupling'),
('https://github.com/jdbc-bare/spring-jdbc-bare', '33252495cfea895f61aef38c56b59a660ef5ae75', 'inheritance'),
('https://github.com/BaseXdb/basex', '3341fe01f7336faeeecd9a139eb5696fee650f40', 'abstraction'),
('https://github.com/SonarSource/sonar', '334c4356cf894c8db0358ff662633c4189a42e6c', 'complexity'),
('https://github.com/PEXPlugins/PermissionsEx', '33ab96dc1260db9ecc38bac2e47044292f5f8b02', 'inheritance'),
('https://github.com/jmock-developers/jmock-library', '347702c0b1efd191772fffb505e2f25af648db2f', 'inheritance'),
('https://github.com/kohsuke/hudson', '34a07739f359b2ec173ffebeadab50ce667d4c24', 'inheritance'),
('https://github.com/aludwiko/fluentbuilder', '34b5e4e7fa04d63001d25ede88170ce0248802ca', 'inheritance'),
('https://github.com/melexis/activiti', '34cd1cbc9d248aaf9e2d664bb8062b4d3f4d7f5d', 'inheritance'),
('https://github.com/Sage-Bionetworks/Synapse-Repository-Services', '34d7f522599069e87fa9483b96ea2c41cf166956', 'inheritance'),
('https://github.com/apache/httpcore', '3560d53a611d057b73718e67231d6e26bc8f9d5c', 'coupling'),
('https://github.com/SpringSource/spring-data-commons', '35697d639ab39f50c42d80038ae99d98d43d9827', 'abstraction'),
('https://github.com/hueller/spring-activiti', '36873d0d47b12265b4cc7d30b33d4a6574e3538b', 'complexity\n'),
('https://github.com/bazaarvoice/jolt', '369519955de019a79c78ec903a22377781474ae7', 'polymorphism'),
('https://github.com/jOOQ/jOOQ', '36c98e4cc45cec91af46602a6ec89b596a113e62', 'coupling \ncomposition'),
('https://github.com/metamx/druid', '377151beda5db983bad14cbe4823babd1527b393', 'abstraction'),
('https://github.com/PEXPlugins/PermissionsEx', '377cfd113461abfca53468905ab3b82b313d510d', 'inheritance'),
('https://github.com/xwiki/xwiki-commons', '37bb3db7246e56eb4d3b70c88e865ae707a2db6e', 'complexity'),
('https://github.com/apache/cxf', '37fa0f860fb9cea02de8a792567e76ff2dc6627e', 'inheritance '),
('https://github.com/SonarSource/sonar', '380241e75968446018fba19e65df8ffe549bf1da', 'complexity'),
('https://github.com/immutables/org.immutables', '382481b381da35964a1153f408a052d87b2d8ff1', 'inheritance'),
('https://github.com/apache/ode-jacob', '38592a08262b5aee93b83e4ea0c0f6eaa86a0c95', 'abstraction\n'),
('https://github.com/apache/cayenne', '387a520dd7d54ae3497ff86a1d1c654f1dd90510', 'inheritance\n'),
('https://github.com/crashub/crash', '388dc05a5c05737d499f49c6b7816af4d26984a6', 'coupling'),
('https://github.com/ist-dsi/fenix', '38ca074be7d661080d0d2d3c9498d4b87533be24', 'abstraction'),
('https://github.com/bindian0509/bharat', '38d867355a1076316e326045717f0beb0a45e59c', 'polymorphism'),
('https://github.com/Jasig/openregistry', '38fd9e031febb4a3073f011cfef99da9bc1d2cac', 'coupling'),
('https://github.com/dana-i2cat/opennaas', '392147b4e6a81f45c863b8f4c6760223b199384c', 'encapsulation'),
('https://github.com/jqno/equalsverifier', '3942f47aba0c0185f195b691206bf3a4bfa3b5f9', 'complexity'),
('https://github.com/apache/cayenne', '394c07c3be94c96b047fe08453a8d800925aeacc', 'inheritance'),
('https://github.com/wstrange/GoogleAuth', '396d8f19ce6bb472e7e27bb8ae8754941a840f43', 'encapsulation\n'),
('https://github.com/neurord/stochdiff', '398022df9a61a35d16086e894701ed83350683e5', 'coupling'),
('https://github.com/collectionspace/services', '39bd6cb403303d585fea1807b9276cf4252a3b0b', 'abstraction'),
('https://github.com/SonarSource/sonar', '3a742bb8b929c6e1d7f12405fd82935b75c287de', 'coupling'),
('https://github.com/roboguice/roboguice', '3a8a12c4b25cae0e3a35791eb9ab049b1d9d4f93', 'inheritance'),
('https://github.com/bitronix/btm', '3a905989b92d0268106e531b945239dc19264831', 'coupling'),
('https://github.com/joshelser/cosmos', '3a9bf3844450e0b962f746c9e4f3e60237d922a7', 'abstraction'),
('https://github.com/masterthought/cucumber-reporting', '3aac7045ddb72f0006479a57bac9eeaa64afea53', 'complexity'),
('https://github.com/SpringSource/spring-ide', '3afca633d9057be6792eb45cc494e02ead5646dd', 'abstraction'),
('https://github.com/pluto-atom-4/testng', '3b2881b877fe7515d1f774f2f06755ceb56a09e7', 'composition'),
('https://github.com/SonarSource/sonar', '3b39dd732cc5a892cba690ed34e081c351749532', 'inheritance'),
('https://github.com/Activiti/Activiti', '3b649b72c334a617620e922723503b06450629e5', 'inheritance'),
('https://github.com/sk89q/commandhelper', '3bc4671e16393da49d2d481dab331dd22b75abaf', 'abstraction'),
('https://github.com/ata4/disunity', '3bd93df05933b2d8fb373d31494af8916b4fe40a', 'encapsulation'),
('https://github.com/jclouds/jclouds', '3c41116782bfc2fd362064010abafe0f6cfd0ae2', 'abstraction'),
('https://github.com/SpaceManiac/PermissionsBukkit', '3ce1baf632c1d1b3bb58181768dacffe0f1d99c4', 'inheritance'),
('https://github.com/hpehl/piriti', '3d2ffb6e34153e40399eb22ab47d24ff2c46c51e', 'inheritance\n'),
('https://github.com/deegree/deegree3', '3d64b5f70be01b9cd94a18009e997c7963c64211', 'complexity\n'),
('https://github.com/droolsjbpm/jbpm-form-builder', '3db73518f17952f1f7ebdd69ccc2302bbdaf9514', 'coupling'),
('https://github.com/SonarSource/sonar', '3e2ef8e0ed81e268f6143f170b8d5fc39fcf38b5', 'inheritance'),
('https://github.com/RegalOwl/HyperConomy', '3e7e2f3deabe3c0c94059d1717ff607f1e6671cf', 'abstraction\n'),
('https://github.com/MongoLink/mongolink', '3e95ee1c4222d6741e822cf1a3f837dbe684b31c', 'abstraction'),
('https://github.com/tyrus-project/tyrus', '3eba417cfd2b953f7b9712f26d6f3b14f13aca09', 'abstraction'),
('https://github.com/apache/jena', '3ef5291ef1185b272f6e629cbe969b189ccb82a0', 'abstraction\n'),
('https://github.com/eclipse/eclipse.platform.swt', '3f16243f15249d0c5b9acd8d735db116a6188e83', 'encapsulation'),
('https://github.com/timmolter/XChange', '3f29273f80a64a2447934b25a3eaf45829c6e7f8', 'inheritance'),
('https://github.com/apache/isis', '3f3050414cdef080eb2fe57702d0e94d827e990a', 'inheritance'),
('https://github.com/qos-ch/slf4j', '3f4e079e373e2a475631b45948f54f77497576fa', 'abstraction\n'),
('https://github.com/wolfc/microcontainer', '3f873ecd4728cf1c31f41dab78116a6a7bfea356', 'inheritance'),
('https://github.com/apache/camel', '3f8fb8dc9a961fbc772d21af42470269d802767b', 'complexity'),
('https://github.com/SpoutDev/Spout', '3f9eb21bbec81d0b6cea6b5cc2ecc104e2543472', 'inheritance'),
('https://github.com/mikaelsvensson/backup', '400bd4a23ec6709e50faf1ae563119cbd95bee84', 'coupling'),
('https://github.com/ggrandes/chainmq', '40315167344f36e819b617bdaaa275773f3c08b0', 'abstraction'),
('https://github.com/Quantas/Managed', '40500a8d25c387775d15c0c1ad1f102d9cffaaa0', 'inheritance'),
('https://github.com/openengsb/openengsb-framework', '408574f59f6c1262d4fd9ef5ecc15818bca824f4', 'abstraction'),
('https://github.com/mwinkels/xom', '40ab89ab02c71b4f29ac16e492727f77de5afc03', 'coupling\n'),
('https://github.com/Atmosphere/atmosphere', '40f2de03a2d6b9744d61ab6b10c2f445a3c990a2', 'coupling'),
('https://github.com/tpbvieira/hadoop-analyzer', '40fd1e7cf85d45b2ed67693f2a45a2c0dba72a18', 'coupling'),
('https://github.com/overturetool/overture', '415034a282fa28d45431d0c5f61ee9606f281301', 'inheritance'),
('https://github.com/xwiki/xwiki-platform', '4164b0a5529fd0e1a3dfc3bb9e3af711f99a56b5', 'complexity'),
('https://github.com/collectionspace/application', '4169c40bc3007edf16151b9d2c5717bd0c2343e2', 'abstraction\n'),
('https://github.com/rabbitmq/rabbitmq-java-client', '416be6ca47802a8ed5d5654fbf042b0a4f8b0e9b', 'abstraction'),
('https://github.com/mifos/head', '41bdbf780583735f32dc8781b5bbc27eac1008bb', 'coupling'),
('https://github.com/mneedham/neo4j-fork', '41e1b13e28b03020e47ed71b3a865b07e9479e8b', 'abstraction'),
('https://github.com/ist-dsi/fenix', '41f80f7685fc62b3beda47c0b7db791e948ac294', 'inheritance'),
('https://github.com/CloudBees-community/cloud-resource-commons', '420c31cab33775f4aa0966b603315c1f4b69b976', 'abstraction'),
('https://github.com/jclouds/jclouds', '428709f1a8f91e6d9f2301f90fa7ee039aca3c98', 'abstraction'),
('https://github.com/amnotbot/amnotbot', '429925c114b99ee543547eb8918c63d871dfa22f', 'inheritance'),
('https://github.com/Omertron/api-themoviedb', '42ff59d4ba6e03982f97ebc201a671887a53d3c3', 'complexity'),
('https://github.com/pietermartin/umlg', '4318b7a2a1f745eb90d9e2971b78a1c4618f902c', 'abstraction'),
('https://github.com/leizy/spark', '431ca39be51352dfcdacc87de7e64c2af313558d', 'inheritance'),
('https://github.com/apache/roller', '433c25b700705180973308c8f5c1ad5f458128a3', 'encapsulation'),
('https://github.com/wocommunity/wonder', '434e44cb089e6da47d4fb76ae623a379a6a70ef3', 'inheritance'),
('https://github.com/cpesch/RouteConverter', '43802e4004fcdceec415466bcbd5fbd283821789', 'coupling'),
('https://github.com/sakai-mirror/sections', '43824060c8470db804e1c62d9e5655e689a44825', 'inheritance'),
('https://github.com/hazelcast/hazelcast', '43cb8b8efaf66e08359e4ded78b14d16d125a797', 'abstraction\n'),
('https://github.com/structr/structr', '43df292495645f8de0b7cb72cfdf8999593de2c0', 'inheritance'),
('https://github.com/rhuss/jolokia', '43fe403e115406a206000c8eb001158689e97a4e', 'complexity\n'),
('https://github.com/deegree/deegree3', '44072bc478d4d31f28ccbdd35ae04f9a2adff7fd', 'complexity'),
('https://github.com/yubin154/lightflow', '442d96b8c99d289a16ead68c948b02760f7cbf10', 'abstraction\n'),
('https://github.com/OpenGamma/OG-Platform', '44a855c83345985e13a7d44a8589381fbaab8c2e', 'composition'),
('https://github.com/SonarSource/sonar', '44c499e6b2186b16ff1aa60ad4c9e22f7b0c64fa', 'complexity\n'),
('https://github.com/hibernate/hibernate-validator', '44c66d35cb1134a23b68a232be89773132cda7a0', 'composition'),
('https://github.com/droolsjbpm/drools-chance', '44d40077960a8e4dcdffaa12f06c031916972412', 'polymorphism '),
('https://github.com/charite/jannovar', '45009807675d108c14f2340ef145675a5234e830', 'inheritance'),
('https://github.com/mpi2/PhenotypeArchive', '451c35f9c2f5f9b485cdbbb34aba38a21fbefb01', 'inheritance'),
('https://github.com/cmader/qSKOS', '45446d54e43bb861d19e4f256ce55056bfe69fec', 'inheritance'),
('https://github.com/Emergya/GoFleetLSServer', '45764d6c340f391780d4382828ffa47802f54a2b', 'coupling'),
('https://github.com/Omertron/api-thetvdb', '4589aef640fc367919bea0db1da23991a5cf5a51', 'complexity'),
('https://github.com/adangel/pmd', '4593909dccd02f12f13172a60b0b2288fbde14f1', 'complexity'),
('https://github.com/BroadleafCommerce/BroadleafCommerce', '45c6f9f3507d36d5e3d473ab2a59cae51b725adf', 'abstraction'),
('https://github.com/apache/maven', '45d1e985aae8347f8a1dea9d6471f0558c7016c8', 'inheritance'),
('https://github.com/krosenvold/findbugs', '45da10f0c5e04b312914a66e42a34df9474a2279', 'inheritance'),
('https://github.com/42BV/jarb', '45dfb025391fabc6b93c291a18bb0e390815e37a', 'inheritance'),
('https://github.com/ceylon/ceylon-ide-eclipse', '466321986943bbf8a265848e13f004b069b68a5a', 'abstraction'),
('https://github.com/apache/incubator-drill', '4689468ef11a70c782f64af451807e1e10cdce65', 'abstraction'),
('https://github.com/SonarSource/sonar', '469ecd7eb9b89351fd10d7e8d033a5292a683f0e', 'coupling'),
('https://github.com/cpesch/RouteConverter', '4722bcc8994acaabc8fb43808bcd452fa13545af', 'abstraction'),
('https://github.com/weld/core', '476a2e7790c8ffd6dca76aedc4d8c127cb9192ad', 'inheritance'),
('https://github.com/allr/fastr', '47884f5a63a1534e8a9a9efa3c16fa75b0890980', 'inheritance'),
('https://github.com/vietj/chromattic', '47ba623e2f5664353e3fa9543ba4ffa091539602', 'inheritance'),
('https://github.com/LiveRamp/hank', '47c0d3ef99cc40789aad6d6052289c8f34ace025', 'abstraction'),
('https://github.com/resthub/resthub-spring-stack', '4889d4b3ec85dce5b09fc9a383afce1d7676a8c5', 'inheritance'),
('https://github.com/SpringSource/eclipse-integration-cloudfoundry', '48a6df8a9f391ee21cafd47e40652980ce87ea3a', 'abstraction'),
('https://github.com/resteasy/Resteasy', '48e5c1d2546d7293b67e3f6e928f6f5b46347ba7', 'inheritance'),
('https://github.com/BitResolution/xTest', '48faa009bdd05001601a4789b7ff955efcec014c', 'coupling'),
('https://github.com/deegree/deegree3', '49408696fd78816a0f526b0ee5f4c9b8cde658d3', 'complexity\n'),
('https://github.com/JavaMoney/javamoney', '49649025a128437f4fccb2c0aae679128547b922', 'abstraction'),
('https://github.com/SonarSource/sonar-java', '49cbaa68082cc3b2637d79dee0d7267d230ffe68', 'complexity'),
('https://github.com/jclouds/jclouds', '49f1d0760e06415143688bd7ac2ec2f2efcb2170', 'abstraction\n'),
('https://github.com/mpi2/PhenotypeArchive', '4a1f2df00d40f8ec61f7f844b01b74fec9fa508b', 'inheritance'),
('https://github.com/ops4j/org.ops4j.pax.construct', '4a55e1cffc13e13042899dfbdca36cf43c374210', 'complexity\n'),
('https://github.com/volodk/nicebean', '4aa8a65397472f651b37d27b29155de2adf5bfec', 'abstraction'),
('https://github.com/jmimo/netty-icap', '4bc6492bf7217da3786ba3649182b07d0c42f94e', 'complexity'),
('https://github.com/mysema/querydsl', '4bf76058d80e3024c64004f2fa46cf2c17cb35c7', 'inheritance'),
('https://github.com/kirkch/SandboxMosaic', '4c156c81ac6af17811a6160cdf1ed200170b02f1', 'abstraction'),
('https://github.com/bedatadriven/renjin', '4c1878f5f723232ca854b461e4372e884dc285a7', 'inheritance'),
('https://github.com/SonarSource/sonar-java', '4c1f56672c72c2a80583f7307a614eb99d4faf18', 'complexity'),
('https://github.com/ColoradoSchoolOfMines/kinect_exhibit', '4c264336592fea590a1b2f420c6efeeee21b4158', 'coupling'),
('https://github.com/openEHR/java-libs', '4c6ef95a09ef0c20c9c76431b9b7ce08c70faac7', 'inheritance'),
('https://github.com/kongchen/swagger-maven-plugin', '4c946f55af5b2b3735ed4c80ba3f36e8df9c9bf5', 'inheritance'),
('https://github.com/pcm32/LayoutPipeline', '4d11b053deeb75c8711dccbc72257d80e2711454', 'abstraction'),
('https://github.com/ceylon/ceylon-ide-eclipse', '4d40b529294ab9357d331258817a4488035c4f6d', 'abstraction'),
('https://github.com/SonarSource/sonar-java', '4d4390c65d68aab6e67e974525eecac86eb00e6d', 'complexity'),
('https://github.com/farin/JCloisterZone', '4d4b3e17b35e6a308167c1f847e4d5e9e173719a', 'coupling\n'),
('https://github.com/teiid/teiid', '4d88875e9376a9da4ebf5e9dd941faedd5035e41', 'abstraction'),
('https://github.com/mapstruct/mapstruct', '4d8bc29347e37bcf22d121829802e7f58603afbb', 'inheritance'),
('https://github.com/apache/cayenne', '4e10848fa234bf42a3155df7cc5742a09ffb5816', 'inheritance'),
('https://github.com/DataTorrent/Malhar', '4e120e30b849a30a96a95638814fb84ab5276e7c', 'abstraction\n'),
('https://github.com/SonarSource/sonar', '4e3996e3bdd48f3a3cd7bff1439f86c033a681c0', 'coupling'),
('https://github.com/jnorthrup/sphlib', '4e4cc17a17df14d24ff177ead3c7057ff9c090ac', 'inheritance\n'),
('https://github.com/mcenirm/cydep', '4e51393a61559e7de71b5d9eb4e66e3ae3bbfcfb', 'coupling\n'),
('https://github.com/airlift/airship', '4e807676dde0f4873bec771636711a9768ef2f12', 'inheritance'),
('https://github.com/Palatis/danbooru-gallery-android', '4e97f5e797d42f3237c6c8e3a2ee76496bad6e6f', 'abstraction'),
('https://github.com/hale/dungeon', '4ea26ead609260eb75bd9ce21975a7c4fede13b8', 'complexity'),
('https://github.com/AxonFramework/AxonFramework', '4ea9bcf71236461deecd2d65750ce6aab92331a8', 'coupling'),
('https://github.com/Sage-Bionetworks/Synapse-Repository-Services', '4ecc8120eeabfd49eb2865e956cfc688e1939231', 'coupling'),
('https://github.com/mzielinski/scjp', '4f75d696d7958f4fa42dc3917e76b75e0b7bf15f', 'inheritance'),
('https://github.com/eclipse/vert.x', '4f7a5c93cdbc5459ad6bf0cde5a2b001ff6aebfd', 'composition'),
('https://github.com/forcedotcom/phoenix', '4f951fff3bb620e0b8785ac878801c3e63aa158d', 'abstraction'),
('https://github.com/OpenNMS/opennms', '4fe287419ca710a5381706af7c94df7ece777d6d', 'inheritance'),
('https://github.com/jenkinsci/svnkit', '501090dc914b17912b082299d007402bb00eea1a', 'inheritance'),
('https://github.com/SpringSource/spring-ide', '50626286a7772a00da6bb5ccf46452649c99c394', 'abstraction'),
('https://github.com/sonatype/gshell', '50b92e271347e6118234c2d85333a2d515b46006', 'abstraction'),
('https://github.com/axtimwalde/mpicbg', '5106d87c6f463c2743131ed43073c65cf9f896a7', 'inheritance\n'),
('https://github.com/camunda/camunda-bpm-platform', '510c373bf805d58862b20e00ac019deef3ac7ba9', 'abstraction'),
('https://github.com/richfaces/cdk', '51105191e93c24505f59fdb53cd9ee4a9486e2ad', 'abstraction\n'),
('https://github.com/ebean-orm/avaje-ebeanorm', '5122ea4b4dcb2447fcec568a7b6b4672cc972671', 'inheritance'),
('https://github.com/rabbitmq/rabbitmq-java-client', '513e3c3b2f7c1a524dd8928ce053c07de18ec813', 'abstraction'),
('https://github.com/martinrist/java-sandbox', '51594d9151cc15f7ae845bdae928c3349beb3371', 'inheritance'),
('https://github.com/structr/structr', '51647e6d2ccb541b373d206bb0fefcc0c81a860d', 'inheritance'),
('https://github.com/bcdev/beam', '51686d4370c8c66d5e26234fff8bb1d2a0602197', 'abstraction\n'),
('https://github.com/apache/mina-sshd', '517163a4c51335d7422b782ac4f240729d460cde', 'abstraction'),
('https://github.com/molgenis/molgenis', '5191660808707108060c9d659a90d41aa8bf15a4', 'complexity\n'),
('https://github.com/conventions/core', '51aef28ba2632e61ef59ec346c9c9a93745b678f', 'inheritance & composition'),
('https://github.com/Xorlev/gatekeeper', '51cc7a0ee0a8e94657152e9bc32c8b6198a9d483', 'encapsulation'),
('https://github.com/irstv/orbisgis', '51cd6902c937be1099c5007e0cd4899a63b3c141', 'inheritance\n'),
('https://github.com/xXKeyleXx/MyPet', '52334080e6933970e99c4a23d4e473f21085a4a7', 'abstraction'),
('https://github.com/l2jserver2/l2jserver2', '52d4be0bf24fc124b1a8630bf07a3a63c169dd61', 'abstraction'),
('https://github.com/OpenGamma/OG-Platform', '537a39981d74b0fdb74ea4e69fb5c45ea3e05e02', 'composition'),
('https://github.com/dimalabs/ozone', '53bb5bda61b55b1a38806f0a60dd3ce0590c3fd7', 'abstraction'),
('https://github.com/jboss-reddeer/reddeer', '53bf11b2c15913c29e9c66468a68475dbe2051fd', 'abstraction'),
('https://github.com/pietermartin/umlg', '53da683099a935fea1e603cc95590f5747ef1e86', 'composition'),
('https://github.com/SonarSource/sonar', '53fdf23671b1ae1ebf1541705ab49d6c30f72bd4', 'inheritance'),
('https://github.com/johannbarbie/RestNucleus-Boilerplate', '540d7655a6906039e3a2bd6258a170ce634fbae1', 'inheritance\n'),
('https://github.com/droolsjbpm/drools', '543d81fc16696aaf43ea1bbb6befa8f9d776acc9', 'abstraction'),
('https://github.com/eclipse/eclipse.platform.ui', '5450ee45bfb63d1d3b26b514651e0516034e02db', 'inheritance\n'),
('https://github.com/semperos/screwdriver', '54a391e14b629d78e57155006dc849a165ca2d1c', 'abstraction'),
('https://github.com/apache/cayenne', '54a449fad25dc91e17ef5fc163378413a7a3c5fc', 'inheritance'),
('https://github.com/cismet/cids-custom-sudplan', '54cc530f7c671ebc04c5575e18dac232fafb579e', 'coupling'),
('https://github.com/herve-quiroz/tubular', '54f4d6059d2f2a66a1d2983caad174ff37c2944d', 'complexity\n'),
('https://github.com/karuana/STANly_Server', '54f6b25cbd1beb71e7bc5063d6b4e5ee60816585', 'composition \n'),
('https://github.com/pawelkaczor/jfxflow', '556322fa0a45ee49c6f8d32b7af70f746e6233dc', 'coupling'),
('https://github.com/jtalks-org/jcommune', '55920990e4e5a1d2d3f134bb396cbe271641055d', 'encapsulation'),
('https://github.com/movsim/movsim', '55a4a97110bc1597eea3a9aec7c4568f1d6a66fb', 'encapsulation\n'),
('https://github.com/mbosecke/Pebble', '55c1948a4214b711d878b4e386fe048f13536f42', 'inheritance\n'),
('https://github.com/haku/cmstoad', '55e4709bff2db485a43dfeea2bab9f399321a568', 'complexity'),
('https://github.com/datasalt/pangool', '5602d36a80e4518bf81d9342b4ddfeb0f91fe8fa', 'inheritance'),
('https://github.com/eclipse/cdt', '5688a0ac9f9482b9d70252275268ed6cd60b1ff5', 'composition'),
('https://github.com/JavaMoney/javamoney', '568b35b5c685f94191685d861e0c90d1695e1b23', 'inheritance'),
('https://github.com/molgenis/molgenis', '56ad18f5d4967b4dd359bff5e3104078daeb3af9', 'abstraction\n'),
('https://github.com/eclipse/cdt', '56f19f3711a45bf7d58c1eaa23a0094020946512', 'coupling'),
('https://github.com/masterthought/cucumber-reporting', '572c4c61c312c06798438c7cc98cda687c0d697e', 'encapsulation\n'),
('https://github.com/apache/cloudstack', '57d0931b4950d202994d1b6609329502a60a9edf', 'inheritance'),
('https://github.com/laforge49/JActor', '586e9ebc65ab013351ab27e9bce2b4be36946f3a', 'polymorphism\n'),
('https://github.com/kohsuke/hudson', '588f9edf4096974e530fb983fea9d831366caf05', 'abstraction'),
('https://github.com/apache/maven', '589db485fd3b0eb1993e6d09646dd153a07eb9ea', 'inheritance'),
('https://github.com/jOOQ/jOOQ', '58d3979bec6384fcefb3ce8811eb9215b3466d68', 'composition & coupling\n'),
('https://github.com/jbosstools/jbosstools-webservices', '58d7300a02fba5381b8009e47c8f385b1e021ff8', 'inheritance'),
('https://github.com/msbarnar/yingreduce', '5923811d94c77c4d2a6283eca53d3fe7cf01f55f', 'coupling'),
('https://github.com/marytts/marytts', '592dfdf7374d2f5746a9e6e3c3b627e82110ead6', 'coupling'),
('https://github.com/christophd/citrus', '595aef58ef511d3cddbe824cb9acdda434c9a5a0', 'complexity'),
('https://github.com/eclipse/eclipse.jdt.ui', '596bd83c48bcd779b8a55fae18d65a80bda01443', 'abstraction\n'),
('https://github.com/obiba/onyx', '59922665b60a5764dd854d178d96ecd0cc105255', 'coupling\n'),
('https://github.com/apache/shiro', '5a304ddb491f87ca2da45d96f0ac2a716955b68c', 'composition'),
('https://github.com/cloudsmith/geppetto', '5a371e85cb2c09cac7e49971a3323e80c406e9a5', 'inheritance'),
('https://github.com/isopov/checkstyle', '5a6be4c757437373caf8e7d675f5bc1aa6a9ae38', 'complexity'),
('https://github.com/apache/cayenne', '5a76895d01dda45568f564b0f254b637d7f5b239', 'inheritance'),
('https://github.com/scrutmydocs/scrutmydocs', '5a976ccf552a35a887e778786589ab911b3e3352', 'abstraction'),
('https://github.com/apache/cxf', '5a9a2a09887c69cdfeff5eac22996ab35fbfc0cf', 'abstraction'),
('https://github.com/mseaton/openmrs-contrib-databaseexporter', '5aa704e8511d14b776c77ba85430ad7f29b9ba2d', 'inheritance'),
('https://github.com/agilebirds/openflexo', '5ac30ae7131ebe17bfa8e011dbcb01b72e1eb690', 'abstraction\n'),
('https://github.com/OpenGamma/OG-Platform', '5accaa803e2c1e766a9b8d1ef875e3ccdf73c668', 'composition'),
('https://github.com/jboss-fuse/fuse', '5acf136572fc5d42419adc93ff6e4e7c81ec71cc', 'encapsulation\n'),
('https://github.com/SpringSource/spring-ide', '5b94d7919c227fe3271131ffc4efd89bc87fc5c4', 'abstraction\n'),
('https://github.com/JacORB/JacORB', '5bf5566f306002904619e6b6d6fc0070060170d8', 'encapsulation'),
('https://github.com/hazelcast/hazelcast', '5c126950860bd477c1313bd51994bd9369a3f905', 'complexity'),
('https://github.com/apache/isis', '5c56c8128049298a1ac1e9afd8171a561c2c919c', 'polymorphism\n'),
('https://github.com/trygvis/unix-maven-plugin', '5c87c4aae1df14b0c1b9cf67712285aa4d4c1e60', 'complexity'),
('https://github.com/nathanmarz/storm', '5cdfc047cc5d3fbf4797c56e4befb6f6e282d58d', 'abstraction'),
('https://github.com/UnquietCode/Flapi', '5d58923dadc62edfda668cd2fdd9a5e51f6deb5d', 'abstraction'),
('https://github.com/jboss-switchyard/components', '5d6ea9654decdee04e512f3a814e457b2c279939', 'composition'),
('https://github.com/adamfisk/LittleProxy', '5d7f778cc3da4e7839ebb861492eeaf2064f5093', 'composition'),
('https://github.com/SonarCommunity/sonar-javascript', '5d9b7b4486151999d30d2f3d311dd7c342f16eab', 'complexity'),
('https://github.com/apache/logging-log4j2', '5e48367f9075a5672cac247f74434295e58459f6', 'composition');
INSERT INTO `iqa` (`URL`, `CommitID`, `IQA`) VALUES
('https://github.com/SpoutDev/Spout', '5e50e6d8ccc518fc36b316f6dc39f17781ddbf31', 'abstraction'),
('https://github.com/jclouds/jclouds', '5e82bbfa462cf3a537fef4d6a42eba7bed87de55', 'inheritance'),
('https://github.com/pressgang-ccms/PressGangCCMSCSPClient', '5e8c6b2ebba44efa2544ec7b7fc076c70d4799e7', 'abstraction'),
('https://github.com/aoprisan/net.oauth', '5ebb943944d41f4f7811498af1323f980f4d6884', 'composition'),
('https://github.com/pmerienne/formation-mongodb', '5ec81af88293e29bdb00f020aec9479c04e5b5be', 'abstraction\n'),
('https://github.com/hazelcast/hazelcast', '5eda2222dbb2eb5a41b649eeb0e3293798b737aa', 'complexity'),
('https://github.com/eclipse/dltk.core', '5efb3e466bf764423caef81ac8569ad96525f17c', 'inheritance'),
('https://github.com/eclipse/vert.x', '5f0dabc9ea0761ddbac953f0df2943c230de6fe2', 'composition'),
('https://github.com/SonarSource/sonar', '5f79d13360162ec93cc3813915791baacb19d4f6', 'coupling'),
('https://github.com/SpringSource/spring-boot', '5f8fbfd73aa6c5fa3bb9e1c15a0cb381c93f8c44', 'abstraction\n'),
('https://github.com/ist-dsi/fenix', '5fa0509210abc3f8020f1614635dde2aa7ff0a0e', 'inheritance\n'),
('https://github.com/rorygibson/statik', '6015513183a9458b05570fdae24c318ed9c2a4c0', 'abstraction'),
('https://github.com/apache/camel', '605710dd26419c4f005bc64663591eaa92a3f151', 'abstraction\n'),
('https://github.com/SonarSource/sonar-java', '6096c238c2179029ae5e570db135d252919eaccd', 'complexity'),
('https://github.com/hazelcast/hazelcast-heartattacker', '609d68af3d3d7d742ce8f22485ea62c99b7958f0', 'complexity'),
('https://github.com/bcdev/beam', '610c13f628b9234fe068d52e7754e04893619a3d', 'polymorphism\n'),
('https://github.com/spheras/messic', '61490dc4e0eba9ffeb5e499a320cb9d1951d94d4', 'inheritance'),
('https://github.com/Cognifide/Slice', '6170aec042bdc5430dd9dc840d46487c93389b7a', 'inheritance'),
('https://github.com/OpenGamma/OG-Platform', '61e56f2f25e5a4d1e0e44171bbbfd2046c16eefc', 'coupling'),
('https://github.com/burris/dwr', '61fd881e394c174d9d25fa578ae1e1ba6d98bdc6', 'abstraction'),
('https://github.com/FasterXML/jackson-databind', '6231c4d1f2f30b6f40d89d78883f52b4206d731f', 'complexity'),
('https://github.com/eugenp/tutorials', '62f9269903ed5fdd2004082b7869bf87b191c2a9', 'inheritance'),
('https://github.com/ist-dsi/fenix', '63090c3efa962987011b0e20dfcbb621021c3ecc', 'abstraction\n'),
('https://github.com/SonarSource/sonar', '63e52abdc39b84f2f32281e4e2bc7ec791a86685', 'complexity'),
('https://github.com/eclipse/eclipse.platform.swt', '63f803a737d416603789d25d5eba7834fce0e4c9', 'encapsulation'),
('https://github.com/errai/errai', '641b6925449a8e52f624df841e506643a69a34f1', 'abstraction'),
('https://github.com/teiid/teiid', '646311de47b0ba6a2f1c8f83b6cfabe9b63c5020', 'complexity'),
('https://github.com/SonarSource/sonar-java', '64960986b5ef89443930450bd565181e6889143e', 'complexity'),
('https://github.com/christophd/citrus', '64ce5c64c50e34dda799eae680e134843826b9ae', 'complexity'),
('https://github.com/broadgsa/gatk', '653475ce128ff238f67211d5df9ccb2b49cdfd2d', 'inheritance'),
('https://github.com/VanillaDev/Vanilla', '6543cb1062a0aa0864e6512c3a3e163f48c3298b', 'abstraction'),
('https://github.com/droolsjbpm/jbpm', '6555165d4f78b30b8fd9c9becc66e96f607871a0', 'complexity'),
('https://github.com/ColoradoSchoolOfMines/interface_sdk', '6590406dfe245c514e8d9987de3c15603df41823', 'coupling'),
('https://github.com/xwiki/xwiki-platform', '65e4a70a9d5557151a31883b2c231da894f0dee3', 'complexity'),
('https://github.com/Minequest/Core-Bukkit', '65e67f799ef161bc688a384469606e992093cdb8', 'abstraction'),
('https://github.com/wolfses/pmd_STANly', '65f58b24e147c177773a04c77eb3aadf7123e345', 'cohesion'),
('https://github.com/hazelcast/hazelcast-heartattacker', '660fdc4db6cb393bf322cfa0abac379b03854703', 'inheritance'),
('https://github.com/apache/karaf-cellar', '662d5a468066602c1e25c42bd61c061db3464414', 'composition'),
('https://github.com/hazelcast/hazelcast-heartattacker', '6630cf43f5d586e4467af9db3dcf79d7708de261', 'complexity'),
('https://github.com/deegree/deegree3', '664f51ada0b54ba0787652bfe2f7dbae3a1426b3', 'complexity'),
('https://github.com/dhiller/jenkinsstatus', '66650102dacb22dc3ece4c29341de6157fb4466d', 'abstraction'),
('https://github.com/luizabrahao/ag-common', '6670d70893550df3f2a7aed67be636370601ebc0', 'composition\n'),
('https://github.com/apache/cayenne', '667e69b615edf9519322b8608c8f6172be40a868', 'inheritance'),
('https://github.com/workhabitinc/dandy', '668266095b1eef004096f431b703efcb20f98565', 'abstraction'),
('https://github.com/overturetool/overture', '66b9224fd0d34b2bd4847707dada80ed3a075d73', 'abstraction'),
('https://github.com/wolips/wolips', '670150381a3a67252108c308a25d637da2f7b468', 'complexity'),
('https://github.com/joelittlejohn/embedmongo-maven-plugin', '67055a051f85c4ae292407ab9eb9213d7e1c8847', 'inheritance'),
('https://github.com/Governance/s-ramp', '671b0d37c479d768fef3e2dee37e783775fdf92f', 'inheritance'),
('https://github.com/imagej/imagej', '67adca765f75bb1e1815369eba1ad050073725ae', 'composition'),
('https://github.com/JavaMoney/javamoney', '67bf5b0d99aa3ff00a19b777983415af440e184a', 'abstraction'),
('https://github.com/HUSACCT/HUSACCT', '6843e4d1fae059bd34d6a87608bcd6a0a4387c6f', 'abstraction'),
('https://github.com/kalecser/jpatchaca', '68559bfc97130c04e9ea940ca06bda9205d76085', 'coupling'),
('https://github.com/ecki/seeburger-vfs2', '686f10acda82f858b51fddffdc9cab09f43e8867', 'abstraction'),
('https://github.com/stoicflame/enunciate', '688433f2520d4f92a257be06c7dd0c4d7a05cbf0', 'encapsulation'),
('https://github.com/ekirkilevics/Magnolia', '688bde7590e4194f194407b62523ce274cc17617', 'coupling'),
('https://github.com/egonw/cdk', '689832d2319125457f3ed83077bda1b8ef7f9c0f', 'complexity'),
('https://github.com/SonarCommunity/sonar-dotnet', '68d707a040ec5be5186f89639f0640a5b204ec6c', 'complexity'),
('https://github.com/threerings/playn', '6952a972edf23ea6fbfab3ea9a33ece7bfef8a37', 'abstraction'),
('https://github.com/ncombat/ncombat', '69686d7f81780437039a948a6e6ec363b7f5be32', 'inheritance'),
('https://github.com/ops4j/org.ops4j.pax.construct', '698e74276d51b430fc5f9d9bfd50e5e593c39763', 'complexity'),
('https://github.com/diosmosis/drones', '69b82af9f4b529f35ad207025d25e4bacd37506b', 'coupling'),
('https://github.com/apache/commons-math', '6a14866cfcb0503b4f63819f05194e2cb83277a3', 'complexity'),
('https://github.com/softwaremill/softwaremill-common', '6a5e283c991a7f1bba10d27f6c2b0ed805f14e35', 'inheritance'),
('https://github.com/pressgang-ccms/PressGangCCMSCSPClient', '6b0d93f641e97a0d69265ba965eda57dcabe53d8', 'abstraction'),
('https://github.com/JChemPaint/jchempaint', '6b2242fe7b92ace47386eb513d5bb8a95b69272e', 'coupling'),
('https://github.com/openmrs/openmrs-module-reporting', '6b2cd4279a49378c3e47d98a2b51bb07f0067446', 'composition'),
('https://github.com/skyscreamer/nevado', '6b588cbca7336ff64ef6fdad9018791ddae75023', 'abstraction'),
('https://github.com/LiveRamp/jack', '6be61bb9c447b848ff02e35f9962bf3a5f87c644', 'polymorphism'),
('https://github.com/apache/tomee', '6c0c7183a21eed5f5f39be21a13c0c80b0b51d54', 'inheritance'),
('https://github.com/Ondrej-vojtisek/bbmri', '6c549bf116fe13483242b369ff9407b7f488aba4', 'complexity'),
('https://github.com/filip26/api-machine', '6dba3f27e0de8f3ad178b67afee2fbaa2ad2b12c', 'abstraction'),
('https://github.com/jboss-fuse/fuse', '6dda74381e4de5dcf37df60b9b7631a052d5f1da', 'abstraction'),
('https://github.com/eclipse/birt', '6df73d2772790c83053034cfd4678dd98f896e53', 'inheritance'),
('https://github.com/apache/geronimo-yoko', '6e0a2827b5dfdb8bcf03b7bc32bb751350477e2c', 'encapsulation\n'),
('https://github.com/bazaarvoice/jolt', '6e4811e84a12059ce52972ebac5b26721a85e709', 'polymorphism'),
('https://github.com/md-5/SpecialSource', '6ea97c26c88917de30a8499ee412e87a46ba37ef', 'inheritance'),
('https://github.com/odata4j/odata4j', '6ebe5a71cf5dc4ccee896853dce3e17af6badc8c', 'inheritance'),
('https://github.com/hazelcast/hazelcast', '6f1ac35ba333d31b9e92bd313ecbd228214096db', 'complexity\n'),
('https://github.com/jqno/equalsverifier', '6f245990b0c6cb1c1ef7b21af03e816b9173b329', 'inheritance'),
('https://github.com/arquillian/arquillian-graphene', '6f3da36ceab3e0adb8e2e50e7a7cb4457b85c0cf', 'inheritance'),
('https://github.com/SonarSource/sonar', '6f685db7b96840f7cc607ceb03f42dd9864275b0', 'inheritance'),
('https://github.com/carlspring/strongbox', '6f85587d3625ea6bdd338f1df180df2d0693cd54', 'abstraction'),
('https://github.com/sk89q/commandhelper', '6fb848e4e6c42827849a27ea6359abe005473f46', 'coupling'),
('https://github.com/crow-misia/fisshplate', '702de72a8b1bfd9c9655ef5f7abfcef3988e2d32', 'complexity'),
('https://github.com/constretto/constretto-core', '706dbe8af0107016e7996eadc8492f8aa27f55b5', 'abstraction'),
('https://github.com/ha-jdbc/ha-jdbc', '7073a7bbb1d910dab77d60fa536ebc8645a5f918', 'abstraction'),
('https://github.com/wspringer/spring-me', '707f43d9c17256908d60bc88e915609d09ed8019', 'abstraction'),
('https://github.com/apache/maven', '70f22200a03ed18545b27295c1469014f2616139', 'composition\n'),
('https://github.com/forcedotcom/phoenix', '710f18a6cd86e96e24b119dabb9637074d0f3dec', 'encapsulation'),
('https://github.com/OpenGamma/OG-Platform', '711aa6753ce0f912d9eaf94c1e088fc17319fb8e', 'composition'),
('https://github.com/mneedham/neo4j-fork', '71f3ec6de1a51ec613beab997a7323b0ae39141e', 'abstraction'),
('https://github.com/hazelcast/hazelcast-heartattacker', '72172fb6b92b622a47558aaff357d1da17bf70f8', 'complexity'),
('https://github.com/cdaller/security_taint_propagation', '72b6e805323afa5c7860ec4fab22546d9b2251f1', 'composition'),
('https://github.com/krasserm/ipf', '72bce2e169581e19dd529e260472ff95a674821c', 'encapsulation'),
('https://github.com/eclipse/cdt', '72be877f9b44acdbaae9314f6e47136031ee7719', 'inheritance'),
('https://github.com/ArcBees/GWTP', '730607ce750b9a0e9a950cfbbf11bc169528b54c', 'coupling'),
('https://github.com/kclemens/osm', '7317e9bab653ef2c936f269c600e77bab956702c', 'complexity'),
('https://github.com/codehaus/xsite-git', '73500e09c6bf6d926743d1580de9d9d72b4f7278', 'composition'),
('https://github.com/gwt-maven-plugin/gwt-maven-plugin', '735decc69e83028f61a80090354d7a71190d4456', 'composition'),
('https://github.com/overturetool/overture', '736848274ff7ccab6e2c16df43dd0813c92d6916', 'inheritance'),
('https://github.com/quintesse/java-websockets-rws', '736c7ad5a6b2c10b4e2a1d972056b7d86aed7269', 'inheritance'),
('https://github.com/rhuss/jolokia', '736fe43fd8c989eb3824d4e04c21bd0b8ffe52ba', 'complexity'),
('https://github.com/Sangraama/server_phase_I', '73bbf78b2f2449979d60c614c7956d6f9c07570f', 'polymorphism\n'),
('https://github.com/mindstream99/Cornerstone', '742e3473e9fe0096f625e358ec790379d237516d', 'abstraction'),
('https://github.com/DozerMapper/dozer', '74534a8f58f75495b07cc3482379e048f29192ed', 'inheritance'),
('https://github.com/pentaho/pentaho-reporting', '74a6b0a85748220dd1c77433ab5baba84f45245c', 'complexity'),
('https://github.com/reveal-technologies/sitewhere-client', '74b3696e136e32fe8ecdb376ad04c425982bf083', 'inheritance'),
('https://github.com/PocketsUnited/facebook-graph-api-wrapper', '7515e76fc5a739d8ec30b4f560efa4ee94cd6b0b', 'abstraction'),
('https://github.com/RegalOwl/HyperConomy', '758318d536fc0d3ddefe719864558810a6ede318', 'abstraction'),
('https://github.com/crow-misia/fisshplate', '75b4a747b290cddc3cd3c88b3b60d0202764cc01', 'complexity'),
('https://github.com/apache/roller', '765335c09a8f0497ee5a2092d8c535d008f58cf6', 'encapsulation'),
('https://github.com/apache/shiro', '766b9f1dd4a65759384cfd21f2e936ac2f486fa4', 'complexity\n'),
('https://github.com/joshsh/ripple', '76d2e6e527effd1133fcfa22c7965c53a535c1e6', 'coupling'),
('https://github.com/izhamoidsin/Diploma', '76ec9cfc1bd3571f16d856a0bbf418e7b553bde7', 'abstraction\n'),
('https://github.com/apache/maven', '76f692cc5ee9702722c1b788e03bca8f7a3646c0', 'inheritance'),
('https://github.com/sakai-mirror/entitybroker', '7721ac4401aa11339869b402dc5d70bca3d3ce20', 'abstraction'),
('https://github.com/vijaykbs/spring-core-example', '77249c320d86677fa5a70ac921a4798eaf981679', 'coupling\n'),
('https://github.com/eclipse/cdt', '7768ee8e9ea0d2e630df043a32f405eab678958a', 'complexity'),
('https://github.com/vietj/chromattic', '7775f780a70446aceb0a0351b008cf9c9f56d02d', 'inheritance'),
('https://github.com/jboss-fuse/fuse', '7784970cc75748a7f15c4569446f714759e8d8b8', 'abstraction'),
('https://github.com/42BV/jarb', '77ad75c031ddf86529bde94a698e7a5b636195b0', 'inheritance'),
('https://github.com/SpoutDev/Spout', '77ca2cb827b0a0b10f18d609fa5fd707c62376f7', 'abstraction\n'),
('https://github.com/droolsjbpm/drools-chance', '77e23656fa181198aace8fe414093d34b46f5156', 'inheritance'),
('https://github.com/joseteodoro/JDX', '77f738eb38ddc55e795186e405875b36ec9ce444', 'inheritance'),
('https://github.com/HUSACCT/HUSACCT', '787873c6f9121f1a2fe00ea391040a5e97490fe3', 'inheritance'),
('https://github.com/levkhomich/semargl', '789d296b72cfd4dc89fb77482e46fdf4546ddb87', 'complexity'),
('https://github.com/jtalks-org/jcommune', '78a7ecad808ff22b091ea9388bc8fed2056b4ee8', 'complexity'),
('https://github.com/dCache/dcache', '799ccf4965780c4bb36a52a67cdf8b43b499285f', 'coupling'),
('https://github.com/erdincyilmazel/Cambridge', '79a72030b67866aae979ae855c9c3034c1f4048f', 'inheritance\n'),
('https://github.com/chrisvest/stormpot', '79f1855129d0a03548291ad5076031a0313cab9e', 'complexity'),
('https://github.com/junit-team/junit', '7ae75535efbb7a95ac62cfa1d0ccb626cc23e8c7', 'inheritance\n'),
('https://github.com/jclouds/jclouds', '7af2fc2081304b5b13959491af2fac5454a126fb', 'complexity'),
('https://github.com/JodaOrg/joda-beans', '7b3bddc8d5c27ebfe1efbcb390ebdc4dec7b81bb', 'abstraction\n'),
('https://github.com/VanillaDev/Vanilla', '7beab43625201912c188bc67ea9e5dd6e7b2a164', 'inheritance'),
('https://github.com/SonarSource/sonar', '7c3da87ee6fe5cc4b26d049c0bb1e38e884d1b0b', 'complexity\n'),
('https://github.com/apache/cayenne', '7c808f10097987f2addc1bd1b20a2da6da88c69a', 'inheritance'),
('https://github.com/hibernate/hibernate-search', '7cbf0baaed7a78fdea51a14fa047deb0aa05571a', 'abstraction'),
('https://github.com/SpoutDev/Spout', '7cd2c9144d35913144fb49a88d84e62e79bad452', 'abstraction'),
('https://github.com/SonarSource/sonar', '7cf57c2495bd16c2e7056c0ff47fc962a8ff432f', 'coupling'),
('https://github.com/krinsdeath/Privileges', '7d07222f00c581dce91cc4a8753350608071597a', 'inheritance\n'),
('https://github.com/cloudera/cdk', '7d2c8aaf4ab7e67c6d035c58bf81ee92c92269a8', 'inheritance\n'),
('https://github.com/haraldk/TwelveMonkeys', '7d35400595f413f2428d2c3e7b6bba20d9752017', 'encapsulation'),
('https://github.com/mneedham/neo4j-fork', '7d558c7d93db588a7507571279652006467559a3', 'abstraction\n'),
('https://github.com/SonarSource/sonar', '7d5ec581146ace44efb85ef4cfd94296e0da03aa', 'inheritance'),
('https://github.com/irstv/orbisgis', '7d865b7eb378b9dbfa2a949696cc1ff2b1b1e8ef', 'inheritance'),
('https://github.com/dlhartveld/queryable', '7d90cd3f6f0ec2493589d91d3ff616fdf6287d49', 'inheritance'),
('https://github.com/scrutmydocs/scrutmydocs', '7d9f8e893cb26bcfa73e88d2fa40cb6d24eebef9', 'abstraction'),
('https://github.com/FasterXML/jackson-databind', '7e4e1158e7e2bf84e508cd1d76fccf933a97c2db', 'abstraction'),
('https://github.com/xXKeyleXx/MyPet', '7e4f4ead03c8e5295a446b2fed659edfd4a0f88c', 'inheritance'),
('https://github.com/hazelcast/hazelcast-heartattacker', '7e6155b5e6f5b992de216f97dd1be874ab6e1712', 'complexity'),
('https://github.com/ekirkilevics/Magnolia', '7f00d63aa8500a6732fe1467dc4e03b4d7348f13', 'abstraction'),
('https://github.com/Cognifide/Slice', '7f08a4925874da4b807aa0df4534c3bead58f7ef', 'inheritance\n'),
('https://github.com/imagej/imglib', '7f132d54e632d2eb1ee6671b110bcf3aa6f12623', 'coupling'),
('https://github.com/erikmohn/weatherfetcher', '7f32193cb83dbab432a33f409d31930558ad795c', 'coupling'),
('https://github.com/pentaho/mondrian', '7f417e87da144cbae990aeb3723923da429eca8b', 'inheritance'),
('https://github.com/graphhopper/graphhopper', '7f80425b6a0af9bdfef12c8a873676e39e0a04a6', 'composition'),
('https://github.com/SpringSource/spring-ide', '8017fd279ec12036c29fc52391a4b772d698149e', 'complexity'),
('https://github.com/SonarSource/sonar', '80554ac4be046afaac167a309e94c7c5f3cf3405', 'size'),
('https://github.com/killbill/killbill-commons', '80cb168a1d6b656edf03a94b716042dbe01cbbc4', 'abstraction\n'),
('https://github.com/overturetool/overture', '8108c000382a2a0dcc8a7fc2db4f3be62f0a45ba', 'composition'),
('https://github.com/ravendb/jvm-client', '811df72ee83244a1d4740a7a4cc40b46bff8dfc6', 'abstraction'),
('https://github.com/OpenNMS/opennms', '815fa2f59b24a304f2d2cf3342be86b413bb7582', 'abstraction\n'),
('https://github.com/xwiki/xwiki-platform', '81b9c371fc7cedcd5a59d24c71a074d34fd556fa', 'complexity'),
('https://github.com/eclipse/orion.server', '821815d926b1b681a2a2800e3bd3fc944ee082c1', 'inheritance'),
('https://github.com/eccentricdevotion/TARDIS', '82570f1f8eef78e291eae3e86388651607e3d568', 'abstraction'),
('https://github.com/apache/hbase', '826b9436fbba39ce78650680c71425bc8547cd39', 'inheritance & complexity'),
('https://github.com/riptano/hector-jpa', '82743612758ed18b4453ed4f58431aa7db34cb26', 'encapsulation'),
('https://github.com/SonarCommunity/sonar-php', '82d22b371b05250032b62d14a02e7e285cf4d6f1', 'complexity\n'),
('https://github.com/apache/cayenne', '83185f2558f764cf60b137a2e2eeda47d366a17f', 'coupling'),
('https://github.com/KittehOrg/TagAPI', '835b82274cd57fdc0728b9744803fe983f33f685', 'abstraction\n'),
('https://github.com/quintona/storm-pattern', '8457555378de83735c43d31d7a14b872bffbd4fe', 'polymorphism\n'),
('https://github.com/apache/cayenne', '84ce2f3f4ad35dcdcd82c568268213c578887358', 'inheritance'),
('https://github.com/srvance/QualityCode14', '850f149c172bfe07f453a2c259d49d52b7187c2f', 'abstraction'),
('https://github.com/ISA-tools/ISAcreator', '857d0c22ee784c9cfc9ef10cb49425832f55f86d', 'coupling'),
('https://github.com/laurentg/OpenTripPlanner-mecatran', '857d70496e63682902c2e6e0e32281001bbee1ac', 'encapsulation\n'),
('https://github.com/hazelcast/hazelcast-heartattacker', '868e9842700fba3c9ad1dff51d8c4851a3d0350d', 'complexity'),
('https://github.com/basho/riak-java-client', '86b1927c711b69982872e13db84503c822cdfc05', 'encapsulation'),
('https://github.com/apache/karaf', '86c5e3c4b28c2668dc227b7a7e13b2ea9dcff19c', 'coupling'),
('https://github.com/fusesource/hawtdispatch', '86d1dff2a75a1e9b4b30cf78e822d482caf838c2', 'abstraction'),
('https://github.com/estatio/estatio', '86d91930047e4d2af72fe83318c41fb3b0c8afb8', 'coupling'),
('https://github.com/RegalOwl/HyperConomy', '874886319180ef74f6cda7505729d82a057a31ee', 'abstraction\n'),
('https://github.com/geosdi/geo-platform', '87c300ca736a333ff0c9605a29abdaeb71ff63f0', 'encapsulation'),
('https://github.com/fenix-framework/fenix-framework', '87f0d120912ffbc4194a01f91d4703a0eb87ecb0', 'composition'),
('https://github.com/SonarSource/sonar', '880336975d9957008ebb774043430049cdd3a3df', 'coupling'),
('https://github.com/pelle/bitcoinj', '880b413b241152807ee098aaecff559d9d979cc4', 'abstraction'),
('https://github.com/droolsjbpm/uberfire', '8865a842c6990c8c63d580fc4289551bd12be171', 'abstraction'),
('https://github.com/Steveice10/mc-protocol-lib', '888ddb036dd60c074c2035aac6b4a38c78444484', 'abstraction\n'),
('https://github.com/mneedham/neo4j-fork', '88a64c1503c9a685b5ab6c58ade417f6d26301a0', 'abstraction'),
('https://github.com/SonarSource/sonar-java', '88bcd69afc02d36a0d02d941985f505c1bee062b', 'complexity'),
('https://github.com/nfrankel/vaadin7-workshop', '88decf8067e7bac16e1343d645bdeef478193c85', 'abstraction\n'),
('https://github.com/isopov/checkstyle', '88e89a138aa39f50f7642106cde6568f6e07783f', 'inheritance'),
('https://github.com/eclipse/recommenders', '88e97a9b8f92d4928ef5a437d3b9432514fe9db9', 'abstraction'),
('https://github.com/SpoutDev/Spout', '88eb0518ce86240e43d99b82343b7d65555505f2', 'inheritance'),
('https://github.com/neo4j-attic/graphdb', '88f12f574eb5d626de74b48ee9dfa2214d80e27b', 'abstraction'),
('https://github.com/UNC-Libraries/metadata-model-tools', '88f4364be160539e15df4978028e1c97db3defe3', 'abstraction'),
('https://github.com/jdcasey/cartographer', '88f8d34ffdde2f428714d263d01399365db1a7b1', 'composition'),
('https://github.com/SonarSource/sonar', '8918854ac8abc7fb5131309edeec26a879f7e789', 'inheritance'),
('https://github.com/weld/api', '8929a75f59cf45ac3d8a4e78129c2a9f883bd49f', 'abstraction'),
('https://github.com/structr/structr', '895a611631ee6550665291fb3d3f3383d8da4577', 'inheritance'),
('https://github.com/ha-jdbc/ha-jdbc', '89695848f67f0dbc45ebfaf950128ca449fc3761', 'encapsulation\n'),
('https://github.com/Xephi/AuthMeReloaded', '89bbfc48ee3b2363197ddafea31797e785eb8dfa', 'encapsulation'),
('https://github.com/jenkinsci/recipe-plugin', '8a6e3fc8fefd8a2b8e32d700e3ee5d2826e1600c', 'abstraction\n'),
('https://github.com/orapouso/easyj-orm', '8a6f6d4d4f1082631e72488b4a4fc18c62c6d0c6', 'inheritance'),
('https://github.com/apache/cayenne', '8a76ebab2314a46c11ee542abfc430dd8d086ada', 'inheritance\n'),
('https://github.com/weld/core', '8a9363e722baf0826d7f701ae7e9f7583c032f4f', 'inheritance'),
('https://github.com/rabbitmq/rabbitmq-java-client', '8acef237caaf5b98497b35d104f2ab2cc2cbcb31', 'abstraction'),
('https://github.com/resthub/resthub-spring-stack', '8ad2029e1c75c05120bbfafa3531b00d478331b1', 'inheritance'),
('https://github.com/BroadleafCommerce/BroadleafCommerce', '8ad5ba0c2609c82552399d9ee922a792a1214025', 'polymorphism'),
('https://github.com/weld/core', '8addb072a5192c7caf6b404b0c3015c48e83d0b1', 'encapsulation'),
('https://github.com/eclipse/cdt', '8bb266decfa2dedceeae10fa4dd2786388b60a6b', 'inheritance'),
('https://github.com/FluentLenium/FluentLenium', '8c14b4293b2edf428ed9de1584258055296869e4', 'composition'),
('https://github.com/estatio/estatio', '8c5928cddb1970726d81c6ed66a4c4baf498cf4e', 'coupling'),
('https://github.com/OpenGamma/OG-Platform', '8c95c1aba09b5cbbd7cac6561649fbe0eebf7659', 'abstraction'),
('https://github.com/jdbc-bare/spring-jdbc-bare', '8cb5c36512e6355d379f533d75d2bef63d0de6bd', 'inheritance\n'),
('https://github.com/pulse00/Composer-Eclipse-Plugin', '8cdc25e5bcfc415f30f435e93f664685716ea75d', 'abstraction\n'),
('https://github.com/cpesch/RouteConverter', '8d1a9647f52aba518c960931376988bc03b06845', 'abstraction\n'),
('https://github.com/trygvis/unix-maven-plugin', '8d3560cbd59490b0a7a712f67865b405a25ae012', 'complexity'),
('https://github.com/RegalOwl/HyperConomy', '8d46bb66622dea0fd0cc41ee84e7d3f7b5d6230f', 'abstraction\n'),
('https://github.com/crashub/crash', '8d6fc792ad37f275fe5b68684cc2e9d16c21cc17', 'complexity'),
('https://github.com/lfeuer/ClientServerG2', '8daf4f4217df8a886c152846c227cea19d8564f9', 'inheritance\n'),
('https://github.com/stickfigure/objectify', '8dd3e32882dff8a3e12eff654ff7c619656ee4d5', 'inheritance'),
('https://github.com/senseidb/bobo', '8deeb0fc9b1fdd5131f4e3188422989900c81039', 'abstraction'),
('https://github.com/orientechnologies/orientdb', '8e7d332ddea2f799b80d076eca88e6e1ed09f59e', 'abstraction'),
('https://github.com/j256/ormlite-core', '8eebcad388fe024e109e8dfe5d1cdf4e7f120e60', 'abstraction'),
('https://github.com/cismet/cids-custom-sudplan', '8f23ce734c678d9ab6c9cf05203ee36c5ef5fef2', 'coupling'),
('https://github.com/openfigis/vme', '8f43033e64134d4ae6539f53219db1a5fa0db869', 'composition'),
('https://github.com/xwiki/xwiki-commons', '8f43b4449b2d7cde2876bc06b1621c6330af0bc7', 'complexity'),
('https://github.com/PEXPlugins/PermissionsEx', '8f79e886c91b5f6e208826ec11d4b5baf2f7357f', 'inheritance'),
('https://github.com/SonarSource/sonar', '8fa017822aedda6928f7886a20832c9dc225d11e', 'complexity\n'),
('https://github.com/eclipse/linuxtools', '8fea1d2a9c8bb7f204e904fbcee809b4445eed85', 'complexity'),
('https://github.com/mikaelsvensson/ftpbackup', '909baee689b95fba8454645ee7cf0176481a481d', 'abstraction'),
('https://github.com/mifos/head', '90ed63e9e1ece750a308751ad7e8d3dfc99cdb9d', 'inheritance'),
('https://github.com/ist-dsi/fenix', '90fdc2aecacdd33cf762408a3668511d46d7d22f', 'abstraction'),
('https://github.com/SpringSource/spring-data-mongodb', '916b856e972f99be449802d106505234b90bebc1', 'abstraction'),
('https://github.com/mbits-os/jini-reflect', '918328d81670ffe33b1c8d336a8256c7b2f7a79a', 'coupling\n'),
('https://github.com/blootsvoets/jmml', '92079450f719c44f0e09c5389ddd70618d518f87', 'coupling'),
('https://github.com/jboss-reddeer/reddeer', '924dd1f0bd450ed7114ce4cca492170a2da59795', 'abstraction'),
('https://github.com/errai/errai', '928d29ff4af8642581c70e03ed91df5e99c51709', 'abstraction'),
('https://github.com/apache/isis', '93746873428ae649113d50b8b566aad91083ed5d', 'polymorphism '),
('https://github.com/BroadleafCommerce/BroadleafCommerce', '9379340234c146b8e7ebfafe1b03ff3e8fd06a2e', 'abstraction'),
('https://github.com/jbehave/jbehave-core', '942d12b1b22ad12a7c7fa2ced67a2fb430bca128', 'composition'),
('https://github.com/ldsimonassi/Storm-Search-Engine', '94435e708d2109c4af5c769fc891bf3eac55cda3', 'abstraction'),
('https://github.com/apache/archiva', '947d8180d80edc4d74f608ddc4b03d40a27dfd26', 'encapsulation\n'),
('https://github.com/hedtek/dspace-rest', '94e5fd5e30966005c4759ab0dcc0a843666a9773', 'complexity'),
('https://github.com/jclouds/jclouds', '9518a6722827c644db4477c8b130f68b8e07a122', 'abstraction'),
('https://github.com/fluxroot/pulse', '952372992d15548a3ad2cc80fe6a985b9d36d11f', 'complexity\n'),
('https://github.com/eclipse/vert.x', '9557a3917df0ae39d0fcd8ace8e4b5b8088764b7', 'composition\n'),
('https://github.com/wolfses/pmd_STANly', '95672d3cbe3a735e9cc5d6c326f71b5023266078', 'inheritance'),
('https://github.com/ops4j/org.ops4j.pax.construct', '95859f8b4df21da5f95b508178c8737dfd56033c', 'inheritance'),
('https://github.com/DSpace/DSpace', '958e4c64b374e0001e33fcd0f57f42783ab68222', 'abstraction'),
('https://github.com/wocommunity/wonder', '95ae05835366dd50fd643589d884b434657c914c', 'inheritance'),
('https://github.com/SonarSource/sonar-java', '969cfafa867d751b397f9f27178ac04f7fe63946', 'complexity'),
('https://github.com/SpringSource/eclipse-integration-cloudfoundry', '96a2915fb57f34e558c9a207960a1c6299b5ef18', 'abstraction'),
('https://github.com/DataTorrent/Malhar', '96c2af64c05182e71d72eeca9f2f6faa7004a3b6', 'abstraction'),
('https://github.com/apache/commons-math', '96d79054dc340add8f00380e6c8301c8f611fb3d', 'encapsulation'),
('https://github.com/aharin/inproctester', '977c08c6d0b3ecfa764a73926aa6dcda0caf0af7', 'coupling'),
('https://github.com/hibernate/hibernate-search', '97c703f0bde1213f028e4977959c3fad4d636a2c', 'inheritance'),
('https://github.com/neo4j/fast-http', '97d4cfb83a9b256a8d33c87cd5ca21a9aee04754', 'abstraction'),
('https://github.com/sk89q/commandhelper', '9816814a96486ad4c1b369dc08fc95b45988896d', 'abstraction'),
('https://github.com/SonarSource/sonar', '984e1ff8d3c2c788fb4bcc85b24dc3b08270aace', 'complexity\n'),
('https://github.com/apache/cloudstack', '9857f41d9a4e99df58c71ea01e20178d18e03eb1', 'inheritance'),
('https://github.com/JakeWharton/ActionBarSherlock', '9875b165babf6f2adfe9a99553407a42c05f823e', 'abstraction'),
('https://github.com/jmimo/netty-icap', '98a3bd11c780f338f12c66e1d9cd2b3556d3d8ee', 'encapsulation'),
('https://github.com/apache/tomee', '98c9175c18daf1bed6b2d21a3712cc146c9b8917', 'inheritance'),
('https://github.com/stickfigure/objectify', '997ad1dd4b6f144509671fb268a13257cab440aa', 'inheritance'),
('https://github.com/molgenis/molgenis-legacy', '99969d9050a95da8fabaf9fa238adf1250372702', 'inheritance'),
('https://github.com/OpenNMS/opennms', '999de82ca603f2c706e7351daf37d9a8829d3ecb', 'abstraction'),
('https://github.com/SpringSource/spring-data-mongodb', '9a078b743f57238f791146de4efe732f46a67425', 'inheritance'),
('https://github.com/DataTorrent/Malhar', '9a3b5361962bf01b0930ad8e56a6567d9af329f0', 'abstraction\n'),
('https://github.com/Berico-Technologies/CLAVIN', '9a7bc486f932b11d04c52ef708a9740b1939c632', 'abstraction'),
('https://github.com/rhuss/jolokia', '9aa147f18dc7bec4a8c90138c71dadc65d9cdb1f', 'complexity\n'),
('https://github.com/RegalOwl/HyperConomy', '9b6ed5e6a336c08e46a0c3202eae5248a145054f', 'abstraction\n'),
('https://github.com/qmx/uniform', '9b94242308830e9d5d2f94399358d1531d722315', 'coupling'),
('https://github.com/eclipse/cdt', '9c3fe1002886701744ee1f65aa26e7d0ce83862d', 'inheritance'),
('https://github.com/Cognifide/CQ-Actions', '9c57c04dbd229c21547dcbff0c43ad75dc51f018', 'abstraction'),
('https://github.com/Igalia/libreplan', '9c5a913d84b5801fccc9268424fc5c7f53d65aac', 'abstraction'),
('https://github.com/ecki/seeburger-vfs2', '9c6523ec556a6b80b7d144987e1ff766770a29cf', 'inheritance'),
('https://github.com/apache/incubator-drill', '9ca9eb9b3d88e86e28d1b688d9cd943e6a7f08df', 'inheritance'),
('https://github.com/mifos/head', '9ce72f10aa88d79f541cec797905ef39b69fce02', 'inheritance\n'),
('https://github.com/apache/httpclient', '9d3171f15e457bc6ccf7f30497bc97eb86c82b30', 'composition'),
('https://github.com/ops4j/org.ops4j.pax.construct', '9dde020be1c89577fbeae748a23347d00b8ca474', 'complexity'),
('https://github.com/openpnp/openpnp', '9e0074e5f39b3200e612fb908412bf4de7bff55c', 'complexity'),
('https://github.com/wolips/wolips', '9e0e34975006e9e2ca1550d7000b4a53a2fc80ac', 'complexity'),
('https://github.com/EBIBioSamples/sampletab_converters', '9e99570a18295fe235fadd870f56fcacf650811a', 'abstraction'),
('https://github.com/junit-team/junit', '9eab1418bf073556414f8654a8b66d65d784ed71', 'inheritance'),
('https://github.com/istlab/Alitheia-Core', '9eb2575d1b024eb34bc58607db962bd3f0307137', 'complexity\n'),
('https://github.com/SonarSource/sonar', '9ed90faaa5871f3a582595e07c5ef0272db3c57f', 'coupling'),
('https://github.com/lisaglendenning/zookeeper-lite', '9ee7e0dc819d6a3b7fbc4d3eaa23f75c13be5cc4', 'coupling'),
('https://github.com/droolsjbpm/drools', '9f0498ecaa118cf78a9760ab84056d4435b42d8b', 'inheritance'),
('https://github.com/kohsuke/hudson', '9f620f125b809eedbe51d557b766da7376860ad0', 'abstraction'),
('https://github.com/SonarSource/sonar', '9f8394b46a01f7ddac672afddd546ed6e82ccd7e', 'complexity'),
('https://github.com/intangir/ShopKeepers', '9f8566156371db2528fa40168e65e83ddfb419db', 'abstraction'),
('https://github.com/kohsuke/msv', '9fb00fb502dddb63245b56e9d1fc47e64f652bac', 'inheritance'),
('https://github.com/wocommunity/wonder', '9fc2d76fd979f6fc5e4389039968be7eb8118b86', 'inheritance'),
('https://github.com/SaschaRodekamp/SocialConnect', '9fc33fbff8f1f5bdf205dc58dbf5213f448fec86', 'abstraction'),
('https://github.com/lestard/tmpmail', '9fc5669f569cb34494dbbad830daa876453c0b7c', 'inheritance'),
('https://github.com/jbosstools/jbosstools-jst', '9fe3ea9b79307a8cf2c35b108491e22a534dff0b', 'inheritance'),
('https://github.com/wocommunity/wonder', '9feed29edaf075dd42e619d4fa83ec0c10ab2099', 'inheritance'),
('https://github.com/Mobicents/mediaserver', '9ff6e8a026db2608878b07d0dc0399cf661c6c9c', 'coupling'),
('https://github.com/StuartMacKay/transform-swf', 'a00343bb6c18273c84fdef045166568118804bf5', 'complexity'),
('https://github.com/laurentpetit/ccw', 'a02b8c9c2d628aaed8664e23081256962529c802', 'inheritance'),
('https://github.com/forcedotcom/wsc', 'a04d8acf0cb1dddff34485cc6eec7e2ad93893db', 'abstraction'),
('https://github.com/matttproud/friesian', 'a04f1c1454352a9a6037632643ad33b424872066', 'coupling'),
('https://github.com/GibbsFrance/DACv2-temp', 'a05a36b859b3ce2420dafa9ddf468d5419832f42', 'abstraction\n'),
('https://github.com/SonarSource/sonar', 'a0b9f5612d661375fc6fa8e8c97a9b0a5dcd7ff7', 'complexity\n'),
('https://github.com/apache/maven', 'a175bd170d4ec6dc1a8f13f4264995977a7f86e8', 'inheritance'),
('https://github.com/jflygare/ctci', 'a1dfc326020bb96a6cac3a0ed536dd6e9d71d097', 'complexity'),
('https://github.com/eatnumber1/google-gson', 'a1ff0387f952ec9bff51a3e62e4753072baa6504', 'polymorphism'),
('https://github.com/sk89q/commandhelper', 'a256808c83cd24ba524d97a91aa6af4b08433af9', 'inheritance\n'),
('https://github.com/kohsuke/msv', 'a2751a296b90b73a8afc4fa0cce9f009bc93431a', 'inheritance'),
('https://github.com/JacORB/JacORB', 'a39cf54025059f2e799280184e8e9f55ce18ff6f', 'inheritance'),
('https://github.com/infinispan/infinispan', 'a440d62928172496eb39a6b360ec0d6b55f86e91', 'inheritance'),
('https://github.com/christophd/citrus', 'a482a1eceaa47445d802d706b997808eb778a2ad', 'complexity'),
('https://github.com/RiverGlide/screenplay-jvm', 'a4a13e875cb665cd5869295807aee2611a9fb8f4', 'abstraction'),
('https://github.com/openpnp/openpnp', 'a4ab0f9681998510ac7d4e05ece1fd868425bf8d', 'complexity'),
('https://github.com/eclipse/jetty.project', 'a4c63caf26715bf7881224e4332f7cd8405b7c06', 'abstraction'),
('https://github.com/eatnumber1/google-gson', 'a51e9101d3a0c44ed947b320299a1cee366981af', 'inheritance'),
('https://github.com/kunyang1987/mahout', 'a530a9c000947ebba8c97058e3ea1bd112cc944e', 'abstraction'),
('https://github.com/softwaremill/softwaremill-common', 'a532253d27553014ba1d4dff57d4e2f309b5ed28', 'inheritance'),
('https://github.com/ops4j/org.ops4j.pax.construct', 'a54efb4dfefefcf49e40a6149dc91c90a330f072', 'inheritance'),
('https://github.com/fenix-framework/fenix-framework', 'a57019dfdf478b3e15824a9e548b42ed88b12b31', 'abstraction'),
('https://github.com/jbehave/jbehave-tutorial', 'a57d2cf68c5ea02f1ad78758c0dba9c46bc1d64f', 'composition'),
('https://github.com/dain/leveldb', 'a5d387a8c22465be051efba6c0e7ef39db010c13', 'abstraction'),
('https://github.com/qos-ch/logback', 'a5faeaac8618c52a21688a1e90957837d16cf86a', 'abstraction'),
('https://github.com/cdi-spec/cdi-tck', 'a619cd5dd4fd1b240a39266cdd8cbbd685db5c2c', 'inheritance\n'),
('https://github.com/dooApp/FXForm2', 'a675686e825227254dcdf8f35ac1b9b6634983cc', 'coupling'),
('https://github.com/joshhansen/EDAValidation', 'a6917bfb09ba466d936630c6f52d6ac1a23f0c2d', 'inheritance'),
('https://github.com/apache/mahout', 'a69d7b38727078309a3d630def4ee2f87337a19e', 'abstraction'),
('https://github.com/JacORB/JacORB', 'a6a1e55f893b07177c4c90e9477dce1f6487e1d6', 'inheritance'),
('https://github.com/mifos/head', 'a6a90215e907058c0ef7f239433018030bb15e8e', 'coupling'),
('https://github.com/adangel/pmd', 'a6daac07777376f45f99a7143e398128f0a9b423', 'coupling'),
('https://github.com/apache/geronimo-yoko', 'a6f9c980c6ca90648866e204899335d1bd0202b6', 'encapsulation'),
('https://github.com/dwdyer/watchmaker', 'a72db23d6a4aa68da27da72917e140ae8e157093', 'inheritance'),
('https://github.com/ha-jdbc/ha-jdbc', 'a747f4c3dc2c6e831882622dbf34d317b9cf3a44', 'abstraction'),
('https://github.com/st-js/st-js', 'a76faaf474416d0e57f97380a72592fb75b10896', 'inheritance\n'),
('https://github.com/mneedham/neo4j-fork', 'a86c36c1b8c916ef4882a127eb42d936913803a0', 'abstraction'),
('https://github.com/nyver/filecombiner', 'a884982f82d8f9399b95a98eef1ca3caf018c78c', 'abstraction'),
('https://github.com/eclipse/cdt', 'a89f4371450412341e983355a1ddb10f852cebde', 'inheritance\n'),
('https://github.com/elight/the_grinder', 'a8abacbce0339b27df4a452c08722041abc65585', 'abstraction'),
('https://github.com/collectionspace/application', 'a8d2facd06230cd5ce0bb884863561f7b282a8d0', 'abstraction\n'),
('https://github.com/burris/dwr', 'a9261ce81db45302409c03886f266c503ecc6de6', 'inheritance'),
('https://github.com/krosenvold/findbugs', 'a93571be50a7eeb1ce394cc76f75a535e410ac56', 'inheritance'),
('https://github.com/metispro/metispro-common', 'a973a00652d77cdcf85b1b6b228e82acc72f2425', 'abstraction\n'),
('https://github.com/arenger/hilas', 'a988740f0afe1b1ed8d78b9d6808bcf815467ed9', 'abstraction'),
('https://github.com/timmolter/XChart', 'a9d81718d22251632d6c25b16b05125cf1febf22', 'abstraction'),
('https://github.com/weld/core', 'aa2a494e2288040cd562d8f414812b59927645e6', 'inheritance'),
('https://github.com/mikaelsvensson/backup', 'aa2b9f8923e956a8bc6a7cb790ca1905dc4dbc42', 'abstraction'),
('https://github.com/jclouds/jclouds', 'aa80bfbff1464881899f0f797f5ee2fb6bd77d58', 'inheritance'),
('https://github.com/irstv/orbisgis', 'aaa2233c6af2c2083cad300705df15e5221f9baf', 'abstraction'),
('https://github.com/dlhartveld/queryable', 'aae55add4e0cceafb8bb7cf9fb80d2c4cd888471', 'inheritance'),
('https://github.com/ebean-orm/avaje-ebeanorm', 'aaefaa5dcde176189029cbaa3937eba10896fb48', 'inheritance'),
('https://github.com/immutables/org.immutables', 'ab28b838818e349290a7769c8aa78b8135335519', 'inheritance\n'),
('https://github.com/zinic/atom-nuke', 'ab5643e9271f8b02c2685365d542599277cce15c', 'inheritance'),
('https://github.com/hazelcast/hazelcast-heartattacker', 'ab65655fcd8bd37305481720372ec4fcdc2a5a80', 'complexity'),
('https://github.com/SonarSource/sonar-java', 'aba9bc7896b58d6330133f8d6674b745dc278143', 'abstraction'),
('https://github.com/ModeShape/modeshape', 'abac784a829855b4bd008eff0663bcd521707f6b', 'abstraction'),
('https://github.com/hedtek/dspace-rest', 'abf75d79ca7cb08e1b8bf47da98493539fcae566', 'encapsulation'),
('https://github.com/BitResolution/xTest', 'ac2a77b0bf74bb1e62694b6b01bbf7584dd5c9bb', 'coupling'),
('https://github.com/pressgang-ccms/PressGangCCMSCSPClient', 'acb3b7f87763d2b808a9465ee15faf825fd0d364', 'abstraction'),
('https://github.com/hibernate/hibernate-validator', 'acd4155415a927ce6bb86745e5dcf312241f1f34', 'inheritance'),
('https://github.com/pluto-atom-4/testng', 'acff4d0df99822f580ff03b532cfba59ab4c1a9f', 'inheritance'),
('https://github.com/SonarCommunity/sonar-php', 'ad0dce31f42c6bff72310787599f4f82a7ac7d09', 'complexity'),
('https://github.com/apache/maven', 'ad35b458bf9da9e79e610f124844b3332e2dd2e7', 'inheritance'),
('https://github.com/Benoker/DockingFrames', 'adf605a6e07fd932a9fbae9c70971673b182081f', 'abstraction'),
('https://github.com/xwiki/xwiki-commons', 'ae84cd30c5c0ba3e365a61e7699c9b89631ff8e8', 'complexity'),
('https://github.com/NoCheatPlus/NoCheatPlus', 'ae8cacb97bee2c5730da9a0fce632a67fe6b828c', 'inheritance'),
('https://github.com/obiba/onyx', 'ae9a4d3d44c9eda74a3e8ac5ab6d349afebadefd', 'inheritance'),
('https://github.com/MLCL/Byblo', 'af18911c381a359227bb8a6cd96d31643bb01873', 'abstraction'),
('https://github.com/nurkiewicz/async-retry', 'af5a760cba70095aed883c2b650d38982b742f6f', 'abstraction'),
('https://github.com/orientechnologies/orientdb', 'af5d32a649da3819b344f4db9a229958875f3942', 'inheritance'),
('https://github.com/johncarl81/transfuse', 'afddf253aa6ef84d99c00f05a6096fd4c42277af', 'inheritance'),
('https://github.com/MassiveCraft/mcore', 'b0558d310f1c8a576efc1c90dc315c18dee7dcb0', 'inheritance'),
('https://github.com/egonw/cdk', 'b07e9ad52536619d800a60224a1c79693a56ac79', 'complexity'),
('https://github.com/AtulVijay/WebUsers', 'b09fa6c12f7a24bb285e1694207c3a67e1192a34', 'polymorphism\n'),
('https://github.com/sangupta/consoles', 'b0e4afada24142883af4f668b420cb31c1570878', 'abstraction'),
('https://github.com/hazelcast/hazelcast-heartattacker', 'b1093e82cc49ae3cc7a3ab61598550bb20512299', 'complexity'),
('https://github.com/isopov/checkstyle', 'b1123e96e452b41c5fb22de20bb7a99d376d0380', 'complexity'),
('https://github.com/teiid/teiid', 'b135dfd5678f8c0e958267e834fcbc82911255b0', 'complexity'),
('https://github.com/seam/social', 'b1714b32fb4d64ed8289604d75b1039796f8b281', 'coupling'),
('https://github.com/jitsi/libjitsi', 'b181ad5d90fc8ce22e42440830464ca7d512e20b', 'abstraction'),
('https://github.com/mindstream99/Cornerstone', 'b1d26fd6073ed55cac9c7788018f64fb5b6bf195', 'inheritance'),
('https://github.com/jDTOBinder/jDTO-Binder', 'b2f29464c99836767f39e542f77c1ff7bdef4f25', 'cohesion'),
('https://github.com/SpringSource/spring-roo', 'b30b19119bfc54b9ae19ca93ea9e6bf7521ee4ed', 'inheritance'),
('https://github.com/hibernate/hibernate-search', 'b31e5b0946a689e24e6588879078a25e87447181', 'abstraction'),
('https://github.com/Netflix/curator', 'b34a9621f36eb74e94db3ea34d5d80c15ed3c7e9', 'complexity'),
('https://github.com/SpoutDev/Spout', 'b3716fe3f547cf24c17d44433ca2e897e5b8a9a2', 'abstraction'),
('https://github.com/fabianonunes/reserva', 'b381c97b7a6460e80406d261ad43dd65baa4e3db', 'coupling\n'),
('https://github.com/adangel/pmd', 'b3ae8d05cfcafd0fc9dbffa4310a27766ad91174', 'complexity'),
('https://github.com/jandrewthompson/planit', 'b41e970015df99ec0935963be27c955e8d79626b', 'inheritance'),
('https://github.com/ning/atlas', 'b43cc3dc10930a5a37959326b99f99c2ba0f18c5', 'abstraction\n'),
('https://github.com/sschaef/checkstyle-teaching', 'b4c0a59725d08cba0680596420eff708b9f2bc10', 'complexity'),
('https://github.com/allanbank/morphia-async', 'b4db43bce7a46a8eff77b095f8d8ef5897aa9057', 'inheritance'),
('https://github.com/scrutmydocs/scrutmydocs', 'b530bad0b581d817f92b8a60d164fde1e9745074', 'abstraction'),
('https://github.com/apache/incubator-drill', 'b53933f225e21b890a9cc25545be7ce4223ba0ce', 'abstraction'),
('https://github.com/LiveRamp/hank', 'b5b3c63afcc632c36852e6e277ece902cad1f58e', 'abstraction\n'),
('https://github.com/SonarSource/sonar-java', 'b5b496d2c001fba49239de03d315d387f6bba14c', 'complexity'),
('https://github.com/jdbc-bare/spring-jdbc-bare', 'b5d21108da24f8344be3bc708c7afdfca9a1d089', 'abstraction'),
('https://github.com/aaberg/sql2o', 'b5d5304313a9a78e284f3bfcde539c50347a62f8', 'abstraction'),
('https://github.com/apache/commons-math', 'b65cad05b955257891412f8da930ab9a4ce29258', 'encapsulation'),
('https://github.com/lintool/Ivory', 'b681e905c3bbd44760183512f7553497c1a720ab', 'abstraction'),
('https://github.com/OpenNMS/opennms', 'b6e633e45d754b326d067f00f60cd3ccc9d93c5d', 'abstraction'),
('https://github.com/teiid/teiid', 'b6e8326b7db39ddaa48624814621602642dbb515', 'coupling'),
('https://github.com/pietermartin/umlg', 'b75201f97dda3a2cd20e805ea30402677bc04a9a', 'inheritance\n'),
('https://github.com/SmartITEngineering/smart-cms', 'b7ff8fa16627a52f019aca4e7796061c3766f42a', 'composition'),
('https://github.com/structr/structr', 'b80d52a437c3db8f616e37d4792110bcc35542a7', 'inheritance\n'),
('https://github.com/christophd/citrus', 'b8d266fbd8422c51cc6fee2450329ec48f7a9fa4', 'complexity'),
('https://github.com/weld/core', 'b9715e34d997ccfc369ba074abee650ce557aa67', 'inheritance\n'),
('https://github.com/SonarSource/sonar', 'b9b53575e822c1219161bae1644443840a54f6ca', 'complexity'),
('https://github.com/hazelcast/hazelcast', 'b9be32cf55c5b710665193a6778de5c0d4e6cd6a', 'inheritance'),
('https://github.com/square/retrofit', 'b9fe6f99398843d84cb967cea29a53996019e4ba', 'abstraction\n'),
('https://github.com/apache/hive', 'ba0417b84f2f970f1e2b59a0cf7a06cbd37a7f2d', 'inheritance'),
('https://github.com/StuartMacKay/transform-swf', 'ba3f0de654d64cc8a5fe3a6c188cd857601fa71a', 'size'),
('https://github.com/LiveRamp/hank', 'bacca2593b24ec1f1855169dd212d07e9ec08278', 'abstraction'),
('https://github.com/eccentricdevotion/TARDIS', 'bb274df3f5119b0b96bb757c039e7f963fd503c9', 'inheritance'),
('https://github.com/cometd/cometd', 'bb97fd37007bd96f3edab8bd3dad6b7043116165', 'encapsulation'),
('https://github.com/fumandito/recruiting', 'bbd4a5097460af9a82edf8ec80b72d2b4b41416a', 'abstraction\n'),
('https://github.com/christophd/citrus', 'bc47cd654abf4b0826b9737bd6e9cd6389f80c1c', 'size & complexity'),
('https://github.com/ekirkilevics/Magnolia', 'bc8d3b71e73a0fe71b4c7c4ce9307bf17fd76f6e', 'inheritance'),
('https://github.com/Damianofds/DownloadProcess', 'bc9cdfc71ce519e034d2fbdfe25a55c5d5c6469d', 'composition'),
('https://github.com/brandonwillard/open-tracking-tools', 'bcf4d4edaa91c971e606cddf7e987ffd8fe0ea61', 'abstraction'),
('https://github.com/kirkch/SandboxMosaic', 'bd1bdbe217eb8e8de60ed37139f48c03d8c10fc0', 'abstraction'),
('https://github.com/raGan262/Quester', 'bd9a569e549499f37dea303bd71f685682575458', 'abstraction'),
('https://github.com/nuxeo/nuxeo-core', 'bddcd0866ffafb773b8f603fb498e5932cae8f5c', 'abstraction'),
('https://github.com/teozfrank/DuelMe', 'be6561edd0f65026d9546a1362988ea61b175d3f', 'abstraction'),
('https://github.com/kohsuke/hudson', 'be6cd4008b251880e1e6bc53b3acb4e16a174049', 'inheritance'),
('https://github.com/stapler/stapler', 'be73665c1cc6155bbd64efe467878616a9546f76', 'abstraction'),
('https://github.com/tfredrich/morphia', 'bf1200c8704d1a3e55e28580ef437fe33c4f4121', 'inheritance'),
('https://github.com/SonarSource/sonar', 'bf510af3e8eb5b518dbfcc216a40907dd8d7cd47', 'inheritance'),
('https://github.com/mikaelsvensson/backup', 'bfb8837d7e95d4ba35d51a30cfd8a324c58efd93', 'inheritance'),
('https://github.com/isopov/checkstyle', 'c044038c3b932586c0d384b614254cc2d1838838', 'complexity'),
('https://github.com/jenkinsci/clearcase-plugin', 'c0538de2eab2dfc82c4a2c5655ef585a49dbee34', 'abstraction'),
('https://github.com/bazaarvoice/jolt', 'c0c8fc52acc9785bacc1292a241e0e949afcda17', 'polymorphism\n'),
('https://github.com/imagej/imglib', 'c0d1c28856b420fbef923f01baf7f21a049d0530', 'inheritance'),
('https://github.com/ekirkilevics/Magnolia', 'c10746ba33cecb1aa3924d19f88fb7b7f8e8dfcf', 'inheritance'),
('https://github.com/germanescobar/jogger', 'c177e1c256dcae305b2721bd489a732cfe0fd977', 'abstraction'),
('https://github.com/eclipse/eclipse.platform.swt', 'c1d0126fc6c64fd6e2473353b2a4a680639a6fba', 'encapsulation\n'),
('https://github.com/mneedham/neo4j-fork', 'c20bd6621594b3ab1939b62a41f57414b833bbce', 'abstraction'),
('https://github.com/infinispan/infinispan', 'c2dfe5d527baa509a8eb0f9d9ba434b96a3bdc50', 'abstraction'),
('https://github.com/teamblueridge/gerrit', 'c2f373fb796f128e7596c9cbc1b4f4e253b994a1', 'inheritance'),
('https://github.com/mysema/querydsl', 'c37be07e4c8a8c89fbb7c873dbc7e7f4df82dd84', 'inheritance'),
('https://github.com/stormpath/stormpath-sdk-java', 'c4da4c3c2f4dfe54dc22304ae022d403958ebc96', 'coupling'),
('https://github.com/naotawool/auto-evernote-plugin', 'c50a9e589f71096a03676df4740b7581e4830aa8', 'composition\n'),
('https://github.com/RegalOwl/HyperConomy', 'c6a9c1a8f53e7c699a6e431d41bd157e841a44bf', 'abstraction'),
('https://github.com/tesla/m2eclipse-tycho', 'c6c3218cb769bacd26cc8a094e553f3e8c5679d1', 'coupling'),
('https://github.com/OpenNMS/opennms', 'c7238bd4c792bef1d10dd78c50ada76bb45f255d', 'abstraction'),
('https://github.com/mifos/head', 'c747394e97c41b3266d4501b9c1f7c22cde4470c', 'composition'),
('https://github.com/infinispan/infinispan', 'c757690c4fe8e7e25ee2b6bf40e7dc2e4aeed23a', 'abstraction'),
('https://github.com/mneedham/neo4j-fork', 'c784907540bcde41aa641e6a06174a6be6dfd830', 'abstraction'),
('https://github.com/adennie/fb-android', 'c7b0f12e169b773780762b13aba709d5f6dd1325', 'inheritance\n'),
('https://github.com/apache/maven', 'c7c6b5d7c78b22a10f043073402d5f13890ca416', 'inheritance'),
('https://github.com/weld/core', 'c7cb3b1d6d6a4ba87865c05d4ac3f3e3f20c266b', 'inheritance\n'),
('https://github.com/apache/cxf', 'c7f4ce23ac7454dc383eb5f0c5d3f6f55aee95e8', 'inheritance'),
('https://github.com/eclipse/ecf', 'c830b5d2c96b636437c1a423439aed42b2759b6c', 'abstraction '),
('https://github.com/amplab/tachyon', 'c855fbb323d256049a869bb6a7c24cbeef28f0b7', 'abstraction'),
('https://github.com/hdiv/hdiv', 'c8b39b0bea9dad21a8942c617c77713e3fbe5e7c', 'composition\n'),
('https://github.com/hueller/spring-activiti', 'c92c2d65b6f3cf13002909fa3032201af7ea0dfe', 'complexity'),
('https://github.com/apache/shiro', 'c9613a0a881bc449b68f69ea56aed4532c5286d0', 'composition'),
('https://github.com/rkapsi/ardverk-dht', 'c9ed90978afb6e7e26177ac97469608afe3516af', 'composition'),
('https://github.com/eclipse/vert.x', 'c9ef8191b06bd7abc090ec45be2dd5aabbeee4e3', 'composition'),
('https://github.com/NoCheatPlus/NoCheatPlus', 'ca2da0d6b4a6aa4efe5e5b1efe107af6f25b3d9b', 'complexity'),
('https://github.com/hazelcast/hazelcast', 'ca303af4cdd16ac368b7059532aa288af084fa31', 'encapsulation'),
('https://github.com/jlewallen/git-teamcity', 'cb8f85e8f26c8e60e37c29504c1ae2fdd85338a2', 'cohesion'),
('https://github.com/kongchen/swagger-maven-plugin', 'cba427e12e2aeefb202a32504772607d5db7c057', 'inheritance'),
('https://github.com/SpringSource/spring-data-commons', 'cc1561d92cec6271f6edb8be679429099166e94e', 'abstraction'),