-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmotherboards.json
More file actions
8767 lines (8767 loc) · 170 KB
/
motherboards.json
File metadata and controls
8767 lines (8767 loc) · 170 KB
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
[
{
"name": "Gigabyte GA-A320M-S2H",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Asus Prime A320M-K",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Asus EX-A320M-Gaming",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Asrock B450M Steel Legend",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Asrock A320M-HDV",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Gigabyte Z390 UD",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Gigabyte Z370P D3",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Gigabyte B450 Aorus Elite",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Gigabyte GA-H110-D3A",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Colorful C.A320M-K Pro V14",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "MSI Z390-A Pro",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Asus Z170 Pro Gaming",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Gigabyte GA-B250M-D3H",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Asus Prime Z390-A",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Gigabyte GA-H110M-DS2",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Asrock Z370 Pro4",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Gigabyte Z390 Gaming X",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Asrock B450 Steel Legend",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Gigabyte Z370 HD3",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "MSI A320M Pro-VD/S",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Asrock B250M Pro4",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Asus Prime Z370-P",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Asus ROG Strix X570-E Gaming",
"socket": "AM4",
"chipset": "AMD X570"
},
{
"name": "Gigabyte B450M Gaming",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Gigabyte GA-B150M-D3H",
"socket": "LGA 1151",
"chipset": "Intel B150"
},
{
"name": "Gigabyte GA-B250M-DS3H",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Asrock A320M-HDV R4.0",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Maxsun MS-B350FX Gaming Pro",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Gigabyte Z370M D3H",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Asus ROG Maximus X Hero",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Gigabyte X570 Aorus Elite",
"socket": "AM4",
"chipset": "AMD X570"
},
{
"name": "Gigabyte Z370 Aorus Gaming 5",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Asus ROG Maximus VII Hero",
"socket": "LGA 1150",
"chipset": "Intel Z97"
},
{
"name": "Asus ROG Crosshair V Formula-Z",
"socket": "AM3+",
"chipset": "AMD 990FX"
},
{
"name": "MSI B450M Pro-M2",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Asus ROG Rampage II Extreme",
"socket": "LGA 1366",
"chipset": "Intel X58"
},
{
"name": "MSI B450M Pro-VDH",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Asrock H110M-HDV R3.0",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "MSI MPG X570 Gaming Edge Wifi",
"socket": "AM4",
"chipset": "AMD X570"
},
{
"name": "Gigabyte GA-H110M-S2",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Asrock H110M-DVS R3.0",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "MSI B350M Gaming Pro",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Asus Z170-A",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Gigabyte GA-A320M-DS2",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Asrock B450M-HDV R4.0",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Gigabyte GA-B250M-D2V",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "MSI B350M Bazooka",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Gigabyte Z390 Aorus Elite",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Biostar TB250-BTC Pro",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "MSI B450 Gaming Pro Carbon AC",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Gigabyte Z390 Aorus Pro Wifi",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "MSI H110M PRO-VH Plus",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Gigabyte GA-AX370M-DS3H",
"socket": "AM4",
"chipset": "AMD X370"
},
{
"name": "Gigabyte B450 Aorus Pro WiFi",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Asus Prime Z390-P",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Gigabyte Z390 Aorus Ultra",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Asus Prime B350M-A",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Gigabyte GA-H270-HD3",
"socket": "LGA 1151",
"chipset": "Intel H270"
},
{
"name": "MSI B250M Bazooka",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Asus ROG Strix B250F Gaming",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Gigabyte G1.Sniper B7",
"socket": "LGA 1151",
"chipset": "Intel B150"
},
{
"name": "MSI B350 PC Mate",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Asrock B250M-HDV",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "MSI B250M Pro-VDH",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Gigabyte B450M DS3H",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "MSI Z370 Gaming Plus",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "ECS H110H4-M19",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Asrock H110 Pro BTC+",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Asus ROG Strix B350-F Gaming",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Asrock B550M Pro4",
"socket": "AM4",
"chipset": "AMD B550"
},
{
"name": "MSI Z370-A Pro",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Gigabyte X570I Aorus Pro Wifi",
"socket": "AM4",
"chipset": "AMD X570"
},
{
"name": "Gigabyte GA-Z170-HD3P",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Gigabyte GA-Gaming B8",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Gigabyte GA-H170-Gaming 3 Rev. 1.1",
"socket": "LGA 1151",
"chipset": "Intel H170"
},
{
"name": "Gigabyte H310M S2",
"socket": "LGA 1151",
"chipset": "Intel H310"
},
{
"name": "Asrock Z370 Extreme4",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Asrock Fatal1ty B250 Gaming K4",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Asus ROG Strix Z270F Gaming",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "Asus ROG Strix Z270E Gaming",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "Asrock B450 Pro4",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Gigabyte GA-AB350M-DS3H",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Asrock B450M-HDV",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "MSI MPG X570 Gaming Plus",
"socket": "AM4",
"chipset": "AMD X570"
},
{
"name": "Gigabyte GA-X58A-UD3R Rev. 2.0",
"socket": "LGA 1366",
"chipset": "Intel X58"
},
{
"name": "Gigabyte GA-Z270-HD3",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "Gigabyte GA-AB350N-Gaming WIFI",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Asrock AB350M Pro4",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Asrock AB350 Pro4",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Asus Prime Z270-P",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "Gigabyte GA-B250M-HD3",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Asrock Z390 Phantom Gaming 4",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Gigabyte GA-970A-DS3P Rev. 2.0",
"socket": "AM3+",
"chipset": "AMD 970"
},
{
"name": "Biostar H110MHC",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Gigabyte GA-AB350-Gaming 3",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Asus ROG Strix B250H Gaming",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Asus ROG Rampage IV Extreme",
"socket": "LGA 2011",
"chipset": "Intel X79"
},
{
"name": "Gigabyte GA-A320M-HD2",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Gigabyte GA-B250-HD3",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Asrock H110M-HDS",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Biostar A320MH",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "MSI B150M Night Elf",
"socket": "LGA 1151",
"chipset": "Intel B150"
},
{
"name": "Gigabyte GA-B150M-DS3H",
"socket": "LGA 1151",
"chipset": "Intel B150"
},
{
"name": "Asus ROG Strix X570-F Gaming",
"socket": "AM4",
"chipset": "AMD X570"
},
{
"name": "MSI MPG X570 Gaming Pro Carbon Wifi",
"socket": "AM4",
"chipset": "AMD X570"
},
{
"name": "Gigabyte Z370 Aorus Gaming 3",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "MSI H110M PRO-VD",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "MSI Z270-A Pro",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "Asrock Fatal1ty 990FX Killer",
"socket": "AM3+",
"chipset": "AMD 990FX"
},
{
"name": "Gigabyte GA-Z170XP-SLI",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Asus Z170M-Plus",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Asrock AB350M-HDV",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "MSI B450 Tomahawk",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Asrock B250 Pro4",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "MSI B250M Pro-VD",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "MSI B350M Pro-VDH",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Maxsun MS-B250MD4 Turbo",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Asus ROG Maximus VII Formula",
"socket": "LGA 1150",
"chipset": "Intel Z97"
},
{
"name": "Asus Prime Z370-A",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Asus B150M Pro Gaming",
"socket": "LGA 1151",
"chipset": "Intel B150"
},
{
"name": "Gigabyte B360M Gaming HD",
"socket": "LGA 1151",
"chipset": "Intel B360"
},
{
"name": "Asus Z170-Deluxe",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Gigabyte GA-H270-Gaming 3",
"socket": "LGA 1151",
"chipset": "Intel H270"
},
{
"name": "Gigabyte GA-B150M-HD3",
"socket": "LGA 1151",
"chipset": "Intel B150"
},
{
"name": "Asus X99-Deluxe",
"socket": "LGA 2011-3",
"chipset": "Intel X99"
},
{
"name": "Asus Prime Z270-AR",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "MSI MPG Z390 Gaming Edge AC",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Asus ROG Maximus II Formula",
"socket": "LGA 775",
"chipset": "Intel P45"
},
{
"name": "Biostar H110MHV3",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Asrock Z270 Pro4",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "Biostar Hi-Fi A70U3P Rev. 1.0",
"socket": "FM2+",
"chipset": "AMD A70M"
},
{
"name": "MSI Z370 PC Pro",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Gigabyte B360N Wifi",
"socket": "LGA 1151",
"chipset": "Intel B360"
},
{
"name": "Biostar A320MH PRO",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Asus Prime X370-Pro",
"socket": "AM4",
"chipset": "AMD X370"
},
{
"name": "Asus Sabertooth 990FX R2.0",
"socket": "AM3+",
"chipset": "AMD 990FX"
},
{
"name": "Asus ROG Strix Z390-H Gaming",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Gigabyte GA-Z270-Gaming K3",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "MSI Z170A Gaming M3",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Gigabyte B550I Aorus Pro AX",
"socket": "AM4",
"chipset": "AMD B550"
},
{
"name": "Asus ROG Maximus VII Ranger",
"socket": "LGA 1150",
"chipset": "Intel Z97"
},
{
"name": "Asus ROG Maximus V Gene",
"socket": "LGA 1155",
"chipset": "Intel Z77"
},
{
"name": "Gigabyte GA-H110M-H",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "MSI B450M Bazooka Plus",
"socket": "AM4",
"chipset": "AMD B450"
},
{
"name": "Biostar TB250-BTC",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Gigabyte GA-AX370-Gaming K7",
"socket": "AM4",
"chipset": "AMD X370"
},
{
"name": "Gigabyte Z370 Aorus Ultra Gaming",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Asus ROG Maximus VI Extreme",
"socket": "LGA 1150",
"chipset": "Intel Z87"
},
{
"name": "Asrock H110M-DS/Hyper",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "MSI MPG Z390 Gaming Pro Carbon AC",
"socket": "LGA 1151",
"chipset": "Intel Z390"
},
{
"name": "Asrock A320M-DVS R4.0",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "MSI B350 Tomahawk",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Gigabyte GA-H110M-S2PH",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Gigabyte Z370 Aorus Gaming 7",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Asrock A320M-DGS",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Gigabyte X299 UD4 Pro",
"socket": "LGA 2066",
"chipset": "Intel X299"
},
{
"name": "ECS H110M4-C43",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Gigabyte GA-Z170-D3H",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Asrock B550M Steel Legend",
"socket": "AM4",
"chipset": "AMD B550"
},
{
"name": "Gigabyte GA-AB350M-HD3",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Fujitsu D3400-B2",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Asus ROG Maximus III Gene",
"socket": "LGA 1156",
"chipset": "Intel P55"
},
{
"name": "Maxsun MS-H110M",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Gigabyte Z370 Aorus Gaming Wifi",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Asus Prime B350M-K",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Maxsun MS-H110D4L M.2",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Asrock Z370M Pro4",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Biostar H110MH Pro D4",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Asrock Z170 Pro4S",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Gigabyte GA-B150-HD3",
"socket": "LGA 1151",
"chipset": "Intel B150"
},
{
"name": "MSI B350 Gaming Plus",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Asus Sabertooth Z170 Mark 1",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Asrock Fatal1ty X370 Gaming X",
"socket": "AM4",
"chipset": "AMD X370"
},
{
"name": "Asus ROG Strix Z270H Gaming",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "MSI Z270 PC Mate",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "MSI X370 Gaming Plus",
"socket": "AM4",
"chipset": "AMD X370"
},
{
"name": "Gigabyte GA-B250-FinTech",
"socket": "LGA 1151",
"chipset": "Intel B250"
},
{
"name": "Asrock X570 Taichi",
"socket": "AM4",
"chipset": "AMD X570"
},
{
"name": "Gigabyte GA-Z270X-Ultra Gaming",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "MSI Z270 Gaming Plus",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "Asrock Fatal1ty H270 Performance",
"socket": "LGA 1151",
"chipset": "Intel H270"
},
{
"name": "Gigabyte Z370XP SLI",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Asus ROG Crosshair IV Formula",
"socket": "AM3",
"chipset": "AMD 890FX"
},
{
"name": "Gigabyte B550 Aorus Master",
"socket": "AM4",
"chipset": "AMD B550"
},
{
"name": "Gigabyte GA-H110MSTX-HD3",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "Asus ROG Maximus IV Extreme-Z",
"socket": "LGA 1155",
"chipset": "Intel Z68"
},
{
"name": "Asus ROG Maximus VII Gene",
"socket": "LGA 1150",
"chipset": "Intel Z97"
},
{
"name": "Asrock 970M Pro3",
"socket": "AM3+",
"chipset": "AMD 970"
},
{
"name": "Asus EX-H110M-V",
"socket": "LGA 1151",
"chipset": "Intel H110"
},
{
"name": "MSI B350M Mortar",
"socket": "AM4",
"chipset": "AMD B350"
},
{
"name": "Asus Z170-P",
"socket": "LGA 1151",
"chipset": "Intel Z170"
},
{
"name": "Biostar A70MGP-LSP",
"socket": "FM2+",
"chipset": "AMD A70M"
},
{
"name": "Asus ROG Strix Z370-E Gaming",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Gigabyte GA-A320MA-M.2",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Gigabyte GA-Z270-HD3P",
"socket": "LGA 1151",
"chipset": "Intel Z270"
},
{
"name": "Asus ROG Zenith Extreme",
"socket": "TR4",
"chipset": "AMD X399"
},
{
"name": "Colorful Battle Axe C.A320M-D Plus V14",
"socket": "AM4",
"chipset": "AMD A320"
},
{
"name": "Gigabyte GA-H170-D3H",
"socket": "LGA 1151",
"chipset": "Intel H170"
},
{
"name": "Asus ROG Maximus X Code",
"socket": "LGA 1151",
"chipset": "Intel Z370"
},
{
"name": "Gigabyte GA-Z270-Gaming 3",
"socket": "LGA 1151",
"chipset": "Intel Z270"