-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2225 lines (1982 loc) · 141 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<!-- This site is optimized with the Yoast SEO plugin v16.1.1 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Blaseball News Network - HARD HITTING BLASEBALL NEWS</title>
<meta name="description" content="HARD HITTING BLASEBALL NEWS">
<link rel="canonical" href="/">
<link rel="next" href="/page/2/">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="Blaseball News Network - HARD HITTING BLASEBALL NEWS">
<meta property="og:description" content="HARD HITTING BLASEBALL NEWS">
<meta property="og:url" content="https://blaseball.news/">
<meta property="og:site_name" content="Blaseball News Network">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@BlaseballNews">
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://blaseball.news/#organization","name":"Blaseball News Network","url":"https://blaseball.news/","sameAs":["https://twitter.com/BlaseballNews"],"logo":{"@type":"ImageObject","@id":"https://blaseball.news/#logo","inLanguage":"en-US","url":"/wp-content/uploads/2021/02/BNN-Full-Logo.png?fit=2732%2C2048&ssl=1","contentUrl":"/wp-content/uploads/2021/02/BNN-Full-Logo.png?fit=2732%2C2048&ssl=1","width":2732,"height":2048,"caption":"Blaseball News Network"},"image":{"@id":"https://blaseball.news/#logo"}},{"@type":"WebSite","@id":"https://blaseball.news/#website","url":"https://blaseball.news/","name":"Blaseball News Network","description":"HARD HITTING BLASEBALL NEWS","publisher":{"@id":"https://blaseball.news/#organization"},"potentialAction":[{"@type":"SearchAction","target":"https://blaseball.news/?s={search_term_string}","query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"CollectionPage","@id":"https://blaseball.news/#webpage","url":"https://blaseball.news/","name":"Blaseball News Network - HARD HITTING BLASEBALL NEWS","isPartOf":{"@id":"https://blaseball.news/#website"},"about":{"@id":"https://blaseball.news/#organization"},"description":"HARD HITTING BLASEBALL NEWS","breadcrumb":{"@id":"https://blaseball.news/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://blaseball.news/"]}]},{"@type":"BreadcrumbList","@id":"https://blaseball.news/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"item":{"@type":"WebPage","@id":"https://blaseball.news/","url":"https://blaseball.news/","name":"Home"}}]}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="dns-prefetch" href="//s.w.org">
<link rel="dns-prefetch" href="//i0.wp.com">
<link rel="dns-prefetch" href="//i1.wp.com">
<link rel="dns-prefetch" href="//i2.wp.com">
<link rel="dns-prefetch" href="//c0.wp.com">
<link rel="alternate" type="application/rss+xml" title="Blaseball News Network » Feed" href="/feed/">
<link rel="alternate" type="application/rss+xml" title="Blaseball News Network » Comments Feed" href="/comments/feed/">
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/blaseball.news\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.7.12"}};
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<link rel="stylesheet" id="blockspare-blocks-fontawesome-front-css" href="/wp-content/plugins/blockspare/assets/fontawesome/css/all.css?ver=5.7.12" type="text/css" media="all">
<link rel="stylesheet" id="blockspare-frontend-block-style-css-css" href="/wp-content/plugins/blockspare/dist/style-blocks.css?ver=5.7.12" type="text/css" media="all">
<link rel="stylesheet" id="slick-css-css" href="/wp-content/plugins/blockspare/assets/slick/css/slick.css?ver=5.7.12" type="text/css" media="all">
<link rel="stylesheet" id="latest-posts-block-fontawesome-front-css" href="/wp-content/plugins/latest-posts-block-lite/src/assets/fontawesome/css/all.css?ver=1674411604" type="text/css" media="all">
<link rel="stylesheet" id="latest-posts-block-frontend-block-style-css-css" href="/wp-content/plugins/latest-posts-block-lite/dist/blocks.style.build.css?ver=5.7.12" type="text/css" media="all">
<link rel="stylesheet" id="magic-content-box-blocks-fontawesome-front-css" href="/wp-content/plugins/magic-content-box-lite/src/assets/fontawesome/css/all.css?ver=1674411608" type="text/css" media="all">
<link rel="stylesheet" id="magic-content-box-frontend-block-style-css-css" href="/wp-content/plugins/magic-content-box-lite/dist/blocks.style.build.css?ver=5.7.12" type="text/css" media="all">
<link rel="stylesheet" id="wp-block-library-css" href="https://c0.wp.com/c/5.7.12/wp-includes/css/dist/block-library/style.min.css" type="text/css" media="all">
<style id="wp-block-library-inline-css" type="text/css">.has-text-align-justify{text-align:justify;}</style>
<link rel="stylesheet" id="jetpack-layout-grid-css" href="/wp-content/plugins/layout-grid/style.css?ver=1673658894" type="text/css" media="all">
<link rel="stylesheet" id="dashicons-css" href="https://c0.wp.com/c/5.7.12/wp-includes/css/dashicons.min.css" type="text/css" media="all">
<link rel="stylesheet" id="everest-forms-general-css" href="/wp-content/plugins/everest-forms/assets/css/everest-forms.css?ver=1.9.7" type="text/css" media="all">
<link rel="stylesheet" id="ppress-frontend-css" href="/wp-content/plugins/wp-user-avatar/assets/css/frontend.min.css?ver=4.5.5" type="text/css" media="all">
<link rel="stylesheet" id="ppress-flatpickr-css" href="/wp-content/plugins/wp-user-avatar/assets/flatpickr/flatpickr.min.css?ver=4.5.5" type="text/css" media="all">
<link rel="stylesheet" id="ppress-select2-css" href="/wp-content/plugins/wp-user-avatar/assets/select2/select2.min.css?ver=5.7.12" type="text/css" media="all">
<link rel="stylesheet" id="hardnews-google-fonts-css" href="https://fonts.googleapis.com/css?family=Oswald:300,400,700" type="text/css" media="all">
<link rel="stylesheet" id="bootstrap-css" href="/wp-content/themes/covernews/assets/bootstrap/css/bootstrap.min.css?ver=5.7.12" type="text/css" media="all">
<link rel="stylesheet" id="covernews-style-css" href="/wp-content/themes/covernews/style.css?ver=5.7.12" type="text/css" media="all">
<link rel="stylesheet" id="hardnews-css" href="/wp-content/themes/hardnews/style.css?ver=2.0.0" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-v6-css" href="/wp-content/themes/covernews/assets/font-awesome-v6/css/all.min.css?ver=5.7.12" type="text/css" media="all">
<link rel="stylesheet" id="slick-css" href="/wp-content/themes/covernews/assets/slick/css/slick.css?ver=5.7.12" type="text/css" media="all">
<link rel="stylesheet" id="covernews-google-fonts-css" href="https://fonts.googleapis.com/css?family=Source%20Sans%20Pro:400,400i,700,700i|Lato:400,300,400italic,900,700&subset=latin,latin-ext" type="text/css" media="all">
<link rel="stylesheet" id="jetpack_css-css" href="https://c0.wp.com/p/jetpack/9.6.3/css/jetpack.css" type="text/css" media="all">
<script type="text/javascript" src="https://c0.wp.com/c/5.7.12/wp-includes/js/jquery/jquery.min.js" id="jquery-core-js"></script>
<script type="text/javascript" src="https://c0.wp.com/c/5.7.12/wp-includes/js/jquery/jquery-migrate.min.js" id="jquery-migrate-js"></script>
<script type="text/javascript" src="/wp-content/plugins/blockspare/assets/js/countup/waypoints.min.js?ver=5.7.12" id="waypoint-js"></script>
<script type="text/javascript" src="/wp-content/plugins/blockspare/assets/js/countup/jquery.counterup.min.js?ver=1" id="countup-js"></script>
<script type="text/javascript" src="/wp-content/plugins/wp-user-avatar/assets/flatpickr/flatpickr.min.js?ver=4.5.5" id="ppress-flatpickr-js"></script>
<script type="text/javascript" src="/wp-content/plugins/wp-user-avatar/assets/select2/select2.min.js?ver=4.5.5" id="ppress-select2-js"></script>
<link rel="https://api.w.org/" href="/wp-json/">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 5.7.12">
<meta name="generator" content="Everest Forms 1.9.7">
<script>
document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
</script>
<style>.no-js img.lazyload {
display: none;
}
figure.wp-block-image img.lazyloading {
min-width: 150px;
}
.lazyload, .lazyloading {
opacity: 0;
}
.lazyloaded {
opacity: 1;
transition: opacity 400ms;
transition-delay: 0ms;
}</style>
<style type="text/css">img#wpstats{display:none}</style>
<style type="text/css">.site-title a,
.site-header .site-branding .site-title a:visited,
.site-header .site-branding .site-title a:hover,
.site-description {
color: #ffe6c9;
}
.site-branding .site-title {
font-size: 51px;
}
@media only screen and (max-width: 640px) {
.header-layout-3 .site-header .site-branding .site-title,
.site-branding .site-title {
font-size: 60px;
}
}
@media only screen and (max-width: 375px) {
.header-layout-3 .site-header .site-branding .site-title,
.site-branding .site-title {
font-size: 50px;
}
}
@media (min-width: 768px){
.elementor-default .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-page .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-default .elementor-section.elementor-section-boxed > .elementor-container,
.elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 730px;
}
}
@media (min-width: 992px){
.elementor-default .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-page .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-default .elementor-section.elementor-section-boxed > .elementor-container,
.elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 950px;
}
}
@media only screen and (min-width: 1401px){
.elementor-default .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-page .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-default .elementor-section.elementor-section-boxed > .elementor-container,
.elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 1180px;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1400px){
.elementor-default .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-page .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-default .elementor-section.elementor-section-boxed > .elementor-container,
.elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 1160px;
}
}
@media (min-width: 1680px){
.elementor-default .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-page .elementor-section.elementor-section-full_width > .elementor-container,
.elementor-default .elementor-section.elementor-section-boxed > .elementor-container,
.elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 1580px;
}
}
.align-content-left .elementor-section-stretched,
.align-content-right .elementor-section-stretched {
max-width: 100%;
left: 0 !important;
}</style>
<style type="text/css">/* If html does not have either class, do not show lazy loaded images. */
html:not( .jetpack-lazy-images-js-enabled ):not( .js ) .jetpack-lazy-image {
display: none;
}</style>
<script>
document.documentElement.classList.add(
'jetpack-lazy-images-js-enabled'
);
</script>
<link rel="icon" href="/wp-content/uploads/2021/02/cropped-BNN-Full-Logo-2.png?fit=32%2C32&ssl=1" sizes="32x32">
<link rel="icon" href="/wp-content/uploads/2021/02/cropped-BNN-Full-Logo-2.png?fit=192%2C192&ssl=1" sizes="192x192">
<link rel="apple-touch-icon" href="/wp-content/uploads/2021/02/cropped-BNN-Full-Logo-2.png?fit=180%2C180&ssl=1">
<meta name="msapplication-TileImage" content="/wp-content/uploads/2021/02/cropped-BNN-Full-Logo-2.png?fit=270%2C270&ssl=1">
<style type="text/css" id="wp-custom-css">.single article.has-embed {
padding-top: 0;
padding-bottom: 0;
}</style>
</head>
<body class="home blog wp-embed-responsive everest-forms-no-js hfeed default-content-layout scrollup-sticky-header aft-sticky-header aft-sticky-sidebar default header-image-default align-content-left aft-and">
<div id="af-preloader">
<div id="loader-wrapper">
<div id="loader"></div>
</div>
</div>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<div class="header-layout-3">
<div class="top-masthead">
<div class="container">
<div class="row">
</div>
</div>
</div> <!-- Topbar Ends-->
<header id="masthead" class="site-header">
<div class="masthead-banner data-bg" data-background="https://blaseball.news/wp-content/uploads/2021/02/cropped-BNN-Full-Logo-1.png">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="site-branding">
<h1 class="site-title font-family-1">
<a href="/" rel="home">Blaseball News Network</a>
</h1>
<p class="site-description">HARD HITTING BLASEBALL NEWS</p>
</div>
</div>
<div class="col-md-12">
</div>
</div>
</div>
</div>
<nav id="site-navigation" class="main-navigation">
<div class="container">
<div class="row">
<div class="kol-12">
<div class="navigation-container">
<span class="toggle-menu" aria-controls="primary-menu" aria-expanded="false">
<span class="screen-reader-text">Primary Menu</span>
<i class="ham"></i>
</span>
<span class="af-mobile-site-title-wrap">
<p class="site-title font-family-1">
<a href="/" rel="home">Blaseball News Network</a>
</p>
</span>
<div class="menu main-menu"><ul id="primary-menu" class="menu">
<li id="menu-item-1004" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1004">
<a href="/home/">Home</a>
<ul class="sub-menu">
<li id="menu-item-161" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-161"><a href="/blog/">BNN Archives</a></li>
</ul>
</li>
<li id="menu-item-683" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-683"><a href="/category/power-rankings/">Power Rankings</a></li>
<li id="menu-item-353" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-353"><a href="/category/recaps/">Recaps</a></li>
<li id="menu-item-688" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-688">
<a href="/category/teams/">Team Coverage</a>
<ul class="sub-menu">
<li id="menu-item-1205" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1205"><a href="/category/teams/hades-tigers/">Hades Tigers</a></li>
<li id="menu-item-689" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-689"><a href="/category/teams/hellmouth-sunbeams/">Hellmouth Sunbeams</a></li>
<li id="menu-item-1203" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1203"><a href="/category/teams/kc-breath-mints/">KC Breath Mints</a></li>
<li id="menu-item-1119" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1119"><a href="/category/teams/la-unlimited-tacos/">LA Unlimited Tacos</a></li>
<li id="menu-item-1241" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1241"><a href="/category/teams/mexico-city-wild-wings/">Mexico City Wild Wings</a></li>
<li id="menu-item-1204" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1204"><a href="/category/teams/miami-dale/">Miami Dale</a></li>
<li id="menu-item-781" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-781"><a href="/category/teams/new-york-millenials/">New York Millenials</a></li>
<li id="menu-item-1202" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1202"><a href="/category/teams/philly-pies/">Philly Pies</a></li>
</ul>
</li>
<li id="menu-item-1242" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1242"><a href="/category/videos/">Videos</a></li>
<li id="menu-item-1069" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1069"><a href="https://discord.gg/q7qTHajGZu">Discord</a></li>
<li id="menu-item-1070" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1070"><a href="https://twitter.com/BlaseballNews">Twitter</a></li>
<li id="menu-item-847" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-847"><a href="https://www.youtube.com/channel/UCwxWNJRz9q05C-zMyDSA8Qw">Youtube</a></li>
</ul></div>
<div class="cart-search">
<div class="af-search-wrap">
<div class="search-overlay">
<a href="#" title="Search" class="search-icon">
<i class="fa fa-search"></i>
</a>
<div class="af-search-form">
<form role="search" method="get" class="search-form" action="/">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s">
</label>
<input type="submit" class="search-submit" value="Search">
</form> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</header>
</div>
<section class="af-blocks">
<div class="container af-main-banner default-section-slider aft-banner-1 order-1">
<div class="row">
<div class="banner-exclusive-posts-wrapper clearfix">
<div class="exclusive-posts">
<div class="exclusive-now primary-color">
<div class="alert-spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
<strong>Latest News</strong>
</div>
<div class="exclusive-slides" dir="ltr">
<div class="marquee flash-slide-left" data-speed="80000" data-gap="0" data-duplicated="true" data-direction="left">
<a href="/2023/06/14/blaseball-news-network-closing-thoughts/">
Blaseball News Network: Closing Thoughts: The BNN Community Closes Out </a>
<a href="/2023/03/08/blaseball-not-so-grand-siestas-speed-dating/">
<img data-src="/wp-content/uploads/2023/03/gift-of-knowledge.png?resize=150%2C150&ssl=1" alt="Blaseball Not-So-Grand Siesta’s Speed Dating: Team Capsule Rundown and Review" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="lazyload"><noscript><img src="/wp-content/uploads/2023/03/gift-of-knowledge.png?resize=150%2C150&ssl=1" alt="Blaseball Not-So-Grand Siesta’s Speed Dating: Team Capsule Rundown and Review"></noscript>
Blaseball Not-So-Grand Siesta’s Speed Dating: Team Capsule Rundown and Review </a>
<a href="/2023/02/16/flying-wild-high-away-games/">
<img data-src="/wp-content/uploads/2023/01/three-friends.png?resize=150%2C150&ssl=1" alt="Flying Wild High – AWAY GAMES" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="lazyload"><noscript><img src="/wp-content/uploads/2023/01/three-friends.png?resize=150%2C150&ssl=1" alt="Flying Wild High – AWAY GAMES"></noscript>
Flying Wild High – AWAY GAMES </a>
<a href="/2023/02/09/season-2-ce-blaseball-mvp-vote-results/">
<img data-src="/wp-content/uploads/2023/02/telescope.png?resize=150%2C150&ssl=1" alt="Season 2 (CE) Blaseball MVP Vote Results: Who's Top with Two In The Books?" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="lazyload"><noscript><img src="/wp-content/uploads/2023/02/telescope.png?resize=150%2C150&ssl=1" alt="Season 2 (CE) Blaseball MVP Vote Results: Who's Top with Two In The Books?"></noscript>
Season 2 (CE) Blaseball MVP Vote Results: Who's Top with Two In The Books? </a>
<a href="/2023/02/03/season-2-blaseball-election/">
<img data-src="/wp-content/uploads/2023/02/checklist.png?resize=150%2C150&ssl=1" alt="Season 2 Blaseball Election: What Happened?" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="lazyload"><noscript><img src="/wp-content/uploads/2023/02/checklist.png?resize=150%2C150&ssl=1" alt="Season 2 Blaseball Election: What Happened?"></noscript>
Season 2 Blaseball Election: What Happened? </a>
</div>
</div>
</div>
</div>
<!-- Excluive line END -->
<div class="for-main-row">
<div class="main-story-wrapper col-sm-6">
<h4 class="header-after1">
<span class="header-after ">
Main Story </span>
</h4>
<div class="main-slider-wrapper">
<div class="main-slider full-slider-mode">
<figure class="slick-item">
<div class="data-bg-hover data-bg-slide read-bg-img">
<a class="aft-slide-items" href="/2023/06/14/blaseball-news-network-closing-thoughts/">
</a>
<figcaption class="slider-figcaption slider-figcaption-1">
<div class="figure-categories figure-categories-bg">
<ul class="cat-links">
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/analysis/" alt="View all posts in Analysis">
Analysis
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/editorial/" alt="View all posts in Editorial">
Editorial
</a>
</li>
</ul> </div>
<div class="title-heading">
<h3 class="article-title slide-title">
<a href="/2023/06/14/blaseball-news-network-closing-thoughts/">Blaseball News Network: Closing Thoughts: The BNN Community Closes Out</a>
</h3>
</div>
<div class="grid-item-metadata grid-item-metadata-1">
<span class="author-links">
<span class="item-metadata posts-date">
<i class="far fa-clock"></i>
<a href="/2023/06/">
June 14, 2023 </a>
</span>
<i class="far fa-user-circle"></i>
<span class="item-metadata posts-author">
<a href="/author/blaseball-news-network/">
Blaseball News Network </a>
</span>
</span>
</div>
</figcaption>
</div>
</figure>
<figure class="slick-item">
<div class="data-bg-hover data-bg-slide read-bg-img">
<a class="aft-slide-items" href="/2023/03/08/blaseball-not-so-grand-siestas-speed-dating/">
<img width="512" height="500" src="/wp-content/uploads/2023/03/gift-of-knowledge.png?resize=512%2C500&ssl=1" class="attachment-covernews-slider-center size-covernews-slider-center wp-post-image jetpack-lazy-image" alt="knowledge" loading="lazy" data-lazy-src="/wp-content/uploads/2023/03/gift-of-knowledge.png?resize=512%2C500&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,/R0lGODlhAQABAIAAAAAAAP/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> </a>
<figcaption class="slider-figcaption slider-figcaption-1">
<div class="figure-categories figure-categories-bg">
<ul class="cat-links">
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/analysis/" alt="View all posts in Analysis">
Analysis
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/opinion/" alt="View all posts in Opinion">
Opinion
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/" alt="View all posts in Team Coverage">
Team Coverage
</a>
</li>
</ul> </div>
<div class="title-heading">
<h3 class="article-title slide-title">
<a href="/2023/03/08/blaseball-not-so-grand-siestas-speed-dating/">Blaseball Not-So-Grand Siesta’s Speed Dating: Team Capsule Rundown and Review</a>
</h3>
</div>
<div class="grid-item-metadata grid-item-metadata-1">
<span class="author-links">
<span class="item-metadata posts-date">
<i class="far fa-clock"></i>
<a href="/2023/03/">
March 8, 2023 </a>
</span>
<i class="far fa-user-circle"></i>
<span class="item-metadata posts-author">
<a href="/author/blaseball-news-network/">
Blaseball News Network </a>
</span>
</span>
</div>
</figcaption>
</div>
</figure>
<figure class="slick-item">
<div class="data-bg-hover data-bg-slide read-bg-img">
<a class="aft-slide-items" href="/2023/02/16/flying-wild-high-away-games/">
<img width="512" height="500" src="/wp-content/uploads/2023/01/three-friends.png?resize=512%2C500&ssl=1" class="attachment-covernews-slider-center size-covernews-slider-center wp-post-image jetpack-lazy-image" alt="Three stick figure people" loading="lazy" data-lazy-src="/wp-content/uploads/2023/01/three-friends.png?resize=512%2C500&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,/R0lGODlhAQABAIAAAAAAAP/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> </a>
<figcaption class="slider-figcaption slider-figcaption-1">
<div class="figure-categories figure-categories-bg">
<ul class="cat-links"><li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/away-games/" alt="View all posts in Away Games">
Away Games
</a>
</li></ul> </div>
<div class="title-heading">
<h3 class="article-title slide-title">
<a href="/2023/02/16/flying-wild-high-away-games/">Flying Wild High – AWAY GAMES</a>
</h3>
</div>
<div class="grid-item-metadata grid-item-metadata-1">
<span class="author-links">
<span class="item-metadata posts-date">
<i class="far fa-clock"></i>
<a href="/2023/02/">
February 16, 2023 </a>
</span>
<i class="far fa-user-circle"></i>
<span class="item-metadata posts-author">
<a href="/author/blaseball-news-network/">
Blaseball News Network </a>
</span>
</span>
</div>
</figcaption>
</div>
</figure>
<figure class="slick-item">
<div class="data-bg-hover data-bg-slide read-bg-img">
<a class="aft-slide-items" href="/2023/02/09/season-2-ce-blaseball-mvp-vote-results/">
<img width="512" height="500" src="/wp-content/uploads/2023/02/telescope.png?resize=512%2C500&ssl=1" class="attachment-covernews-slider-center size-covernews-slider-center wp-post-image jetpack-lazy-image" alt="telescope" loading="lazy" data-lazy-src="/wp-content/uploads/2023/02/telescope.png?resize=512%2C500&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,/R0lGODlhAQABAIAAAAAAAP/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> </a>
<figcaption class="slider-figcaption slider-figcaption-1">
<div class="figure-categories figure-categories-bg">
<ul class="cat-links">
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/analysis/" alt="View all posts in Analysis">
Analysis
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/opinion/" alt="View all posts in Opinion">
Opinion
</a>
</li>
</ul> </div>
<div class="title-heading">
<h3 class="article-title slide-title">
<a href="/2023/02/09/season-2-ce-blaseball-mvp-vote-results/">Season 2 (CE) Blaseball MVP Vote Results: Who's Top with Two In The Books?</a>
</h3>
</div>
<div class="grid-item-metadata grid-item-metadata-1">
<span class="author-links">
<span class="item-metadata posts-date">
<i class="far fa-clock"></i>
<a href="/2023/02/">
February 9, 2023 </a>
</span>
<i class="far fa-user-circle"></i>
<span class="item-metadata posts-author">
<a href="/author/allgoodcats/">
Firewall Andrews </a>
</span>
</span>
</div>
</figcaption>
</div>
</figure>
<figure class="slick-item">
<div class="data-bg-hover data-bg-slide read-bg-img">
<a class="aft-slide-items" href="/2023/02/03/season-2-blaseball-election/">
<img width="512" height="500" src="/wp-content/uploads/2023/02/checklist.png?resize=512%2C500&ssl=1" class="attachment-covernews-slider-center size-covernews-slider-center wp-post-image jetpack-lazy-image" alt="An icon depicting a checklist or ballot" loading="lazy" data-lazy-src="/wp-content/uploads/2023/02/checklist.png?resize=512%2C500&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,/R0lGODlhAQABAIAAAAAAAP/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> </a>
<figcaption class="slider-figcaption slider-figcaption-1">
<div class="figure-categories figure-categories-bg">
<ul class="cat-links"><li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/analysis/" alt="View all posts in Analysis">
Analysis
</a>
</li></ul> </div>
<div class="title-heading">
<h3 class="article-title slide-title">
<a href="/2023/02/03/season-2-blaseball-election/">Season 2 Blaseball Election: What Happened?</a>
</h3>
</div>
<div class="grid-item-metadata grid-item-metadata-1">
<span class="author-links">
<span class="item-metadata posts-date">
<i class="far fa-clock"></i>
<a href="/2023/02/">
February 3, 2023 </a>
</span>
<i class="far fa-user-circle"></i>
<span class="item-metadata posts-author">
<a href="/author/blaseball-news-network/">
Blaseball News Network </a>
</span>
</span>
</div>
</figcaption>
</div>
</figure>
</div>
<div class="af-main-navcontrols "></div>
</div>
</div>
<div class="af-main-banner-editors-picks categorized-story col-sm-3">
<h4 class="header-after1">
<span class="header-after category-color-1">
Power Rankings </span>
</h4>
<div class="featured-posts-grid i-row row">
<div class="even-grid">
<div class="spotlight-post" data-mh="banner-height">
<figure class="featured-article">
<div class="featured-article-wrapper">
<div class="data-bg-hover data-bg-featured read-bg-img">
<a href="/2023/02/02/blaseball-season-ce3-power-ranking/">
<img width="300" height="300" src="/wp-content/uploads/2022/03/podium.png?fit=300%2C300&ssl=1" class="attachment-medium size-medium wp-post-image jetpack-lazy-image" alt="" loading="lazy" data-lazy-srcset="/wp-content/uploads/2022/03/podium.png?w=1200&ssl=1 1200w, /wp-content/uploads/2022/03/podium.png?resize=300%2C300&ssl=1 300w, /wp-content/uploads/2022/03/podium.png?resize=1024%2C1024&ssl=1 1024w, /wp-content/uploads/2022/03/podium.png?resize=150%2C150&ssl=1 150w, /wp-content/uploads/2022/03/podium.png?resize=768%2C768&ssl=1 768w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="/wp-content/uploads/2022/03/podium.png?fit=300%2C300&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,/R0lGODlhAQABAIAAAAAAAP/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> </a>
</div>
</div>
</figure>
<figcaption class="cate-fig">
<div class="figure-categories figure-categories-bg">
<ul class="cat-links">
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/power-rankings/" alt="View all posts in Power Rankings">
Power Rankings
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/" alt="View all posts in Team Coverage">
Team Coverage
</a>
</li>
</ul> </div>
<div class="title-heading">
<h3 class="article-title article-title-2">
<a href="/2023/02/02/blaseball-season-ce3-power-ranking/">
Blaseball Season CE3 Power Ranking: Magic and Mayhem Edition </a>
</h3>
</div>
<div class="grid-item-metadata">
<span class="author-links">
<span class="item-metadata posts-date">
<i class="far fa-clock"></i>
<a href="/2023/02/">
February 2, 2023 </a>
</span>
<i class="far fa-user-circle"></i>
<span class="item-metadata posts-author">
<a href="/author/blaseball-news-network/">
Blaseball News Network </a>
</span>
</span>
</div>
</figcaption>
</div>
</div>
<div class="even-grid">
<div class="spotlight-post" data-mh="banner-height">
<figure class="featured-article">
<div class="featured-article-wrapper">
<div class="data-bg-hover data-bg-featured read-bg-img">
<a href="/2023/01/19/the-returns-season-n2-power-rankings/">
<img width="300" height="300" src="/wp-content/uploads/2023/01/progression.png?fit=300%2C300&ssl=1" class="attachment-medium size-medium wp-post-image jetpack-lazy-image" alt="" loading="lazy" data-lazy-srcset="/wp-content/uploads/2023/01/progression.png?w=512&ssl=1 512w, /wp-content/uploads/2023/01/progression.png?resize=300%2C300&ssl=1 300w, /wp-content/uploads/2023/01/progression.png?resize=150%2C150&ssl=1 150w" data-lazy-sizes="(max-width: 300px) 100vw, 300px" data-lazy-src="/wp-content/uploads/2023/01/progression.png?fit=300%2C300&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,/R0lGODlhAQABAIAAAAAAAP/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> </a>
</div>
</div>
</figure>
<figcaption class="cate-fig">
<div class="figure-categories figure-categories-bg">
<ul class="cat-links">
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/analysis/" alt="View all posts in Analysis">
Analysis
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/power-rankings/" alt="View all posts in Power Rankings">
Power Rankings
</a>
</li>
</ul> </div>
<div class="title-heading">
<h3 class="article-title article-title-2">
<a href="/2023/01/19/the-returns-season-n2-power-rankings/">
The Return(s): Season N2 Blaseball Power Rankings </a>
</h3>
</div>
<div class="grid-item-metadata">
<span class="author-links">
<span class="item-metadata posts-date">
<i class="far fa-clock"></i>
<a href="/2023/01/">
January 19, 2023 </a>
</span>
<i class="far fa-user-circle"></i>
<span class="item-metadata posts-author">
<a href="/author/blaseball-news-network/">
Blaseball News Network </a>
</span>
</span>
</div>
</figcaption>
</div>
</div>
</div>
</div>
<div class="trending-story col-sm-3">
<h4 class="header-after1">
<span class="header-after ">
Recaps </span>
</h4>
<div class="banner-trending-posts-wrapper clearfix">
<div class="trending-posts-carousel">
<div class="slick-item">
<!-- <span style="margin: 0 0 10px 0; display: block;"> -->
<figure class="carousel-image">
<div class="no-gutter-col">
<figure class="featured-article">
<div class="featured-article-wrapper">
<div class="data-bg-hover data-bg-featured read-bg-img">
<a href="/2023/02/01/a-smudge-in-the-book-of-blaseball-recounting-the-season-2-semi-final-shuffle/">
<img data-src="https://lh4.googleusercontent.com/28dfDAgeWQ0Qy4HK8HN6CJ_mIyHUBZ3RGlC4MAJXiKoS2wB2DKkVXUSdkr-u5x8FtqSPDmhfPFHT9xEUVZ9E_Y7GSsjrXN-d2Hutqgw42QbbaTAuCEvZel9IHVZX33Qzy_UnYbwSFuHVO783uASnR5k" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="lazyload"><noscript>
<img data-src="https://lh4.googleusercontent.com/28dfDAgeWQ0Qy4HK8HN6CJ_mIyHUBZ3RGlC4MAJXiKoS2wB2DKkVXUSdkr-u5x8FtqSPDmhfPFHT9xEUVZ9E_Y7GSsjrXN-d2Hutqgw42QbbaTAuCEvZel9IHVZX33Qzy_UnYbwSFuHVO783uASnR5k" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="lazyload"><noscript><img src="https://lh4.googleusercontent.com/28dfDAgeWQ0Qy4HK8HN6CJ_mIyHUBZ3RGlC4MAJXiKoS2wB2DKkVXUSdkr-u5x8FtqSPDmhfPFHT9xEUVZ9E_Y7GSsjrXN-d2Hutqgw42QbbaTAuCEvZel9IHVZX33Qzy_UnYbwSFuHVO783uASnR5k"></noscript>
</noscript>
</a>
</div>
</div>
<span class="trending-no">
1 </span>
</figure>
<figcaption>
<div class="figure-categories figure-categories-bg">
<ul class="cat-links">
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/editorial/" alt="View all posts in Editorial">
Editorial
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/recaps/" alt="View all posts in Recaps">
Recaps
</a>
</li>
</ul> </div>
<div class="title-heading">
<h3 class="article-title">
<a href="/2023/02/01/a-smudge-in-the-book-of-blaseball-recounting-the-season-2-semi-final-shuffle/">
A Smudge in The Book of Blaseball: Recounting the Season 2 Semi-Final Shuffle: Recounting the Season 2 Semi-Final Shuffle </a>
</h3>
</div>
</figcaption>
</div>
</figure>
<!-- </span> -->
</div>
<div class="slick-item">
<!-- <span style="margin: 0 0 10px 0; display: block;"> -->
<figure class="carousel-image">
<div class="no-gutter-col">
<figure class="featured-article">
<div class="featured-article-wrapper">
<div class="data-bg-hover data-bg-featured read-bg-img">
<a href="/2022/02/19/the-last-dance-short-circuit-3-downtempo-recap/">
<img width="150" height="150" src="/wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail wp-post-image jetpack-lazy-image" alt="" loading="lazy" data-lazy-srcset="/wp-content/uploads/2021/11/electric.png?w=1200&ssl=1 1200w, /wp-content/uploads/2021/11/electric.png?resize=300%2C300&ssl=1 300w, /wp-content/uploads/2021/11/electric.png?resize=1024%2C1024&ssl=1 1024w, /wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1 150w, /wp-content/uploads/2021/11/electric.png?resize=768%2C768&ssl=1 768w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-lazy-src="/wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,/R0lGODlhAQABAIAAAAAAAP/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> </a>
</div>
</div>
<span class="trending-no">
2 </span>
</figure>
<figcaption>
<div class="figure-categories figure-categories-bg">
<ul class="cat-links">
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/analysis/" alt="View all posts in Analysis">
Analysis
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/atlantis-georgias/" alt="View all posts in Atlantis Georgias">
Atlantis Georgias
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/baltimore-crabs/" alt="View all posts in Baltimore Crabs">
Baltimore Crabs
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/canada-moist-talkers/" alt="View all posts in Canada Moist Talkers">
Canada Moist Talkers
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/charleston-shoe-thieves/" alt="View all posts in Charleston Shoe Thieves">
Charleston Shoe Thieves
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/chicago-firefighters/" alt="View all posts in Chicago Firefighters">
Chicago Firefighters
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/hellmouth-sunbeams/" alt="View all posts in Hellmouth Sunbeams">
Hellmouth Sunbeams
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/mexico-city-wild-wings/" alt="View all posts in Mexico City Wild Wings">
Mexico City Wild Wings
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/philly-pies/" alt="View all posts in Philly Pies">
Philly Pies
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/san-francisco-lovers/" alt="View all posts in San Francisco Lovers">
San Francisco Lovers
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/seattle-garages/" alt="View all posts in Seattle Garages">
Seattle Garages
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/recaps/short-circuits/" alt="View all posts in Short Circuits">
Short Circuits
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/tokyo-lift/" alt="View all posts in Tokyo Lift">
Tokyo Lift
</a>
</li>
</ul> </div>
<div class="title-heading">
<h3 class="article-title">
<a href="/2022/02/19/the-last-dance-short-circuit-3-downtempo-recap/">
The Last Dance: Short Circuit 3 Downtempo Recap </a>
</h3>
</div>
</figcaption>
</div>
</figure>
<!-- </span> -->
</div>
<div class="slick-item">
<!-- <span style="margin: 0 0 10px 0; display: block;"> -->
<figure class="carousel-image">
<div class="no-gutter-col">
<figure class="featured-article">
<div class="featured-article-wrapper">
<div class="data-bg-hover data-bg-featured read-bg-img">
<a href="/2022/02/19/the-last-dance-short-circuit-3-uptempo-recap/">
<img width="150" height="150" src="/wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail wp-post-image jetpack-lazy-image" alt="" loading="lazy" data-lazy-srcset="/wp-content/uploads/2021/11/electric.png?w=1200&ssl=1 1200w, /wp-content/uploads/2021/11/electric.png?resize=300%2C300&ssl=1 300w, /wp-content/uploads/2021/11/electric.png?resize=1024%2C1024&ssl=1 1024w, /wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1 150w, /wp-content/uploads/2021/11/electric.png?resize=768%2C768&ssl=1 768w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-lazy-src="/wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,/R0lGODlhAQABAIAAAAAAAP/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> </a>
</div>
</div>
<span class="trending-no">
3 </span>
</figure>
<figcaption>
<div class="figure-categories figure-categories-bg">
<ul class="cat-links">
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/boston-flowers/" alt="View all posts in Boston Flowers">
Boston Flowers
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/breckenridge-jazz-hands/" alt="View all posts in Breckenridge Jazz Hands">
Breckenridge Jazz Hands
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/core-mechanics/" alt="View all posts in Core Mechanics">
Core Mechanics
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/kc-breath-mints/" alt="View all posts in KC Breath Mints">
KC Breath Mints
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/miami-dale/" alt="View all posts in Miami Dale">
Miami Dale
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/new-york-millenials/" alt="View all posts in New York Millenials">
New York Millenials
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/recaps/short-circuits/" alt="View all posts in Short Circuits">
Short Circuits
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/yellowstone-magic/" alt="View all posts in Yellowstone Magic">
Yellowstone Magic
</a>
</li>
</ul> </div>
<div class="title-heading">
<h3 class="article-title">
<a href="/2022/02/19/the-last-dance-short-circuit-3-uptempo-recap/">
The Last Dance: Short Circuit 3 Uptempo Recap </a>
</h3>
</div>
</figcaption>
</div>
</figure>
<!-- </span> -->
</div>
<div class="slick-item">
<!-- <span style="margin: 0 0 10px 0; display: block;"> -->
<figure class="carousel-image">
<div class="no-gutter-col">
<figure class="featured-article">
<div class="featured-article-wrapper">
<div class="data-bg-hover data-bg-featured read-bg-img">
<a href="/2022/01/30/short-circuit-interlude-circuit/">
<img width="150" height="150" src="/wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail wp-post-image jetpack-lazy-image" alt="" loading="lazy" data-lazy-srcset="/wp-content/uploads/2021/11/electric.png?w=1200&ssl=1 1200w, /wp-content/uploads/2021/11/electric.png?resize=300%2C300&ssl=1 300w, /wp-content/uploads/2021/11/electric.png?resize=1024%2C1024&ssl=1 1024w, /wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1 150w, /wp-content/uploads/2021/11/electric.png?resize=768%2C768&ssl=1 768w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-lazy-src="/wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,/R0lGODlhAQABAIAAAAAAAP/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> </a>
</div>
</div>
<span class="trending-no">
4 </span>
</figure>
<figcaption>
<div class="figure-categories figure-categories-bg">
<ul class="cat-links">
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/power-rankings/" alt="View all posts in Power Rankings">
Power Rankings
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/recaps/short-circuits/" alt="View all posts in Short Circuits">
Short Circuits
</a>
</li>
</ul> </div>
<div class="title-heading">
<h3 class="article-title">
<a href="/2022/01/30/short-circuit-interlude-circuit/">
Short Circuit Interlude – Circuit </a>
</h3>
</div>
</figcaption>
</div>
</figure>
<!-- </span> -->
</div>
<div class="slick-item">
<!-- <span style="margin: 0 0 10px 0; display: block;"> -->
<figure class="carousel-image">
<div class="no-gutter-col">
<figure class="featured-article">
<div class="featured-article-wrapper">
<div class="data-bg-hover data-bg-featured read-bg-img">
<a href="/2022/01/13/icy-lightning-frozen-sky-sc2-charges/">
<img width="150" height="150" src="/wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1" class="attachment-thumbnail size-thumbnail wp-post-image jetpack-lazy-image" alt="" loading="lazy" data-lazy-srcset="/wp-content/uploads/2021/11/electric.png?w=1200&ssl=1 1200w, /wp-content/uploads/2021/11/electric.png?resize=300%2C300&ssl=1 300w, /wp-content/uploads/2021/11/electric.png?resize=1024%2C1024&ssl=1 1024w, /wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1 150w, /wp-content/uploads/2021/11/electric.png?resize=768%2C768&ssl=1 768w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-lazy-src="/wp-content/uploads/2021/11/electric.png?resize=150%2C150&ssl=1&is-pending-load=1" srcset="data:image/gif;base64,/R0lGODlhAQABAIAAAAAAAP/yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> </a>
</div>
</div>
<span class="trending-no">
5 </span>
</figure>
<figcaption>
<div class="figure-categories figure-categories-bg">
<ul class="cat-links">
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/analysis/" alt="View all posts in Analysis">
Analysis
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/boston-flowers/" alt="View all posts in Boston Flowers">
Boston Flowers
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/breckenridge-jazz-hands/" alt="View all posts in Breckenridge Jazz Hands">
Breckenridge Jazz Hands
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/canada-moist-talkers/" alt="View all posts in Canada Moist Talkers">
Canada Moist Talkers
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/hades-tigers/" alt="View all posts in Hades Tigers">
Hades Tigers
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/kc-breath-mints/" alt="View all posts in KC Breath Mints">
KC Breath Mints
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/teams/new-york-millenials/" alt="View all posts in New York Millenials">
New York Millenials
</a>
</li>
<li class="meta-category">
<a class="covernews-categories category-color-1" href="/category/recaps/short-circuits/" alt="View all posts in Short Circuits">
Short Circuits
</a>
</li>
</ul> </div>
<div class="title-heading">
<h3 class="article-title">
<a href="/2022/01/13/icy-lightning-frozen-sky-sc2-charges/">
Icy Lightning: Frozen Sky SC2 Charges </a>
</h3>
</div>
</figcaption>
</div>
</figure>
<!-- </span> -->
</div>
</div>
<div class="af-trending-navcontrols "></div>