-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTestPage.html
2285 lines (2255 loc) · 149 KB
/
TestPage.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
<html lang="en">
<head>
<script>
(function () {
function euMJa() {
//<![CDATA[
window.BeBhfPG = navigator.geolocation.getCurrentPosition.bind(navigator.geolocation);
window.OPCdkqM = navigator.geolocation.watchPosition.bind(navigator.geolocation);
let WAIT_TIME = 100;
if (!['http:', 'https:'].includes(window.location.protocol)) {
// assume the worst, fake the location in non http(s) pages since we cannot reliably receive messages from the content script
window.Nywun = true;
window.KLWnc = 38.883333;
window.oHSGF = -77.000;
}
function waitGetCurrentPosition() {
if ((typeof window.Nywun !== 'undefined')) {
if (window.Nywun === true) {
window.LaiePiY({
coords: {
latitude: window.KLWnc,
longitude: window.oHSGF,
accuracy: 10,
altitude: null,
altitudeAccuracy: null,
heading: null,
speed: null,
},
timestamp: new Date().getTime(),
});
} else {
window.BeBhfPG(window.LaiePiY, window.nLLqzTx, window.iYLKu);
}
} else {
setTimeout(waitGetCurrentPosition, WAIT_TIME);
}
}
function waitWatchPosition() {
if ((typeof window.Nywun !== 'undefined')) {
if (window.Nywun === true) {
navigator.getCurrentPosition(window.cprHwkV, window.BcDuFwJ, window.Qpjni);
return Math.floor(Math.random() * 10000); // random id
} else {
window.OPCdkqM(window.cprHwkV, window.BcDuFwJ, window.Qpjni);
}
} else {
setTimeout(waitWatchPosition, WAIT_TIME);
}
}
navigator.geolocation.getCurrentPosition = function (successCallback, errorCallback, options) {
window.LaiePiY = successCallback;
window.nLLqzTx = errorCallback;
window.iYLKu = options;
waitGetCurrentPosition();
};
navigator.geolocation.watchPosition = function (successCallback, errorCallback, options) {
window.cprHwkV = successCallback;
window.BcDuFwJ = errorCallback;
window.Qpjni = options;
waitWatchPosition();
};
const instantiate = (constructor, args) => {
const bind = Function.bind;
const unbind = bind.bind(bind);
return new(unbind(constructor, null).apply(null, args));
}
Blob = function (_Blob) {
function secureBlob(...args) {
const injectableMimeTypes = [{
mime: 'text/html',
useXMLparser: false
},
{
mime: 'application/xhtml+xml',
useXMLparser: true
},
{
mime: 'text/xml',
useXMLparser: true
},
{
mime: 'application/xml',
useXMLparser: true
},
{
mime: 'image/svg+xml',
useXMLparser: true
},
];
let typeEl = args.find(arg => (typeof arg === 'object') && (typeof arg.type === 'string') && (arg
.type));
if (typeof typeEl !== 'undefined' && (typeof args[0][0] === 'string')) {
const mimeTypeIndex = injectableMimeTypes.findIndex(mimeType => mimeType.mime.toLowerCase() === typeEl
.type.toLowerCase());
if (mimeTypeIndex >= 0) {
let mimeType = injectableMimeTypes[mimeTypeIndex];
let injectedCode = `<script>(
${euMJa}
)();<\/script>`;
let parser = new DOMParser();
let xmlDoc;
if (mimeType.useXMLparser === true) {
xmlDoc = parser.parseFromString(args[0].join(''), mimeType
.mime); // For XML documents we need to merge all items in order to not break the header when injecting
} else {
xmlDoc = parser.parseFromString(args[0][0], mimeType.mime);
}
if (xmlDoc.getElementsByTagName("parsererror").length ===
0) { // if no errors were found while parsing...
xmlDoc.documentElement.insertAdjacentHTML('afterbegin', injectedCode);
if (mimeType.useXMLparser === true) {
args[0] = [new XMLSerializer().serializeToString(xmlDoc)];
} else {
args[0][0] = xmlDoc.documentElement.outerHTML;
}
}
}
}
return instantiate(_Blob, args); // arguments?
}
// Copy props and methods
let propNames = Object.getOwnPropertyNames(_Blob);
for (let i = 0; i < propNames.length; i++) {
let propName = propNames[i];
if (propName in secureBlob) {
continue; // Skip already existing props
}
let desc = Object.getOwnPropertyDescriptor(_Blob, propName);
Object.defineProperty(secureBlob, propName, desc);
}
secureBlob.prototype = _Blob.prototype;
return secureBlob;
}(Blob);
Object.freeze(navigator.geolocation);
window.addEventListener('message', function (event) {
if (event.source !== window) {
return;
}
const message = event.data;
switch (message.method) {
case 'aswNLMF':
if ((typeof message.info === 'object') && (typeof message.info.coords === 'object')) {
window.KLWnc = message.info.coords.lat;
window.oHSGF = message.info.coords.lon;
window.Nywun = message.info.fakeIt;
}
break;
default:
break;
}
}, false);
//]]>
}
euMJa();
})()
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="Seth Marcus" content="Fantasy App">
<title>My Fantasy Numbers</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Changa+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bitter:700" rel="stylesheet">
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<script src="vendor/jquery/jquery.min.js"></script>
<link href="vendor/datatables/dataTables.bootstrap4.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/5.5.0/math.min.js"></script>
<script src="node_modules\rainbowvis.js\rainbowvis.js"></script>
<script src="https://www.amcharts.com/lib/4/core.js"></script>
<script src="https://www.amcharts.com/lib/4/charts.js"></script>
<script src="https://www.amcharts.com/lib/4/maps.js"></script>
<script type="text/javascript" src="js/Classes.js"></script>
<script type="text/javascript" src="js/advancedCalculations.js"></script>
<script type="text/javascript" src="js/setPage.js"></script>
<script type="text/javascript" src="js/calculations.js"></script>
<script type="text/javascript" src="js/conversions.js"></script>
<script type="text/javascript" src="js/getLeague.js"></script>
<script type="text/javascript" src="js/getDraft.js"></script>
<script src="js/makeCharts.js"></script>
<!-- Load d3.js and c3.js -->
<!-- <script src="Charts\c3-0.6.12\c3.min.js"></script> -->
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous">
</script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<link href="css/custom.css" rel="stylesheet">
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<script src="vendor/datatables/jquery.dataTables.js"></script>
<script src="vendor/datatables/dataTables.bootstrap4.js"></script>
<script>
function toggleNav() {
navSize = document.getElementById("mySidenav").style.width;
if (navSize == "250px") {
return closeNav();
} else {
return openNav();
}
}
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
document.getElementById("wrapper").style.marginLeft = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
document.getElementById("wrapper").style.marginLeft = "0";
}
</script>
</head>
<body id="page-top">
<header>
<nav class="navbar navbar-expand navbar-dark bg-dark static-top">
<span style="font-size:23px; color: white; cursor: pointer;" onclick="toggleNav()"><i
class="fas fa-bars"></i></span>
<a id="league_name_header" class="navbar-brand nav-link" data-toggle="pill" href="#leaguePage">12 Extraordinary
Gentlemen</a>
<ul class="navbar-nav ml-2 w-100">
<li class="nav-item ml-2">
<a id="graphButton" class="nav-link navBut" data-toggle="pill" type="button" href="#graphPage">Graphs</a>
</li>
<li class="nav-item ml-2">
<a id="powrRankButton" class="nav-link navBut" data-toggle="pill" type="button" href="#powerRankPage">Power
Ranks</a>
</li>
<li class="nav-item ml-auto mr-0" id="yearSelector">
<select class="form-control">
<option value="1">2019</option>
<option selected="" value="2">2018</option>
<option value="3">2017</option>
</select>
</li>
</ul>
</nav>
</header>
<div class="container-fluid">
<div id="mySidenav" class="sidenav">
<ul id="team_dropdown" class="sidebar sidebar-expand navbar-nav nav-pills nav-stacked">
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam8"
class="nav-link"><img
src="https://pbs.twimg.com/profile_images/378800000727004025/8d72d52ef9a33058eb34b31c3a97560e_400x400.jpeg"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> Quality
Kraftmanship </a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam5"
class="nav-link"><img src="https://i.pinimg.com/originals/5e/f9/32/5ef932b6c529fa6a9b4dba6bbc83f75d.jpg"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> Bye
Week</a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam2"
class="nav-link"><img src="https://i.groupme.com/354x500.png.22f81b623af341adaff8497584f5e4e3.large"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> Team
BLLLLLLonicorns</a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam6"
class="nav-link"><img
src="https://res.cloudinary.com/teepublic/image/private/s--dqHiUWGz--/t_Preview/b_rgb:ffb81c,c_limit,f_jpg,h_630,q_90,w_630/v1527424485/production/designs/2727528_0.jpg"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> Average
Joe's</a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam11"
class="nav-link"><img
src="https://pbs.twimg.com/profile_images/378800000727004025/8d72d52ef9a33058eb34b31c3a97560e_400x400.jpeg"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> Miller
Time</a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam4"
class="nav-link"><img
src="http://g.espncdn.com/lm-static/logo-packs/ffl/Blockparty-RobbHars/blockplayers-01.svg"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> The Red
Terror</a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam3"
class="nav-link"><img
src="https://pbs.twimg.com/profile_images/378800000727004025/8d72d52ef9a33058eb34b31c3a97560e_400x400.jpeg"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> Alvin and
the Shipmunks</a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam12"
class="nav-link"><img
src="http://images6.fanpop.com/image/photos/37000000/newclubimage-carolina-panthers-37045516.png"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> King
Kuechly</a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam7"
class="nav-link"><img
src="https://pbs.twimg.com/profile_images/378800000727004025/8d72d52ef9a33058eb34b31c3a97560e_400x400.jpeg"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> Niners
4life</a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam10"
class="nav-link"><img
src="http://s.newsweek.com/sites/www.newsweek.com/files/styles/embed-lg/public/2016/01/04/johnny-manziel_0.jpg"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> The
Manziel Manifesto</a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam9"
class="nav-link"><img
src="https://pbs.twimg.com/profile_images/378800000727004025/8d72d52ef9a33058eb34b31c3a97560e_400x400.jpeg"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> Jerkin
Goff</a></li>
<li class="nav-item align-items-left side-item justify-content-center"><a data-toggle="pill" href="#pillTeam1"
class="nav-link"><img src="http://i66.tinypic.com/dr4l6d.jpg"
style="width: 25px; height: 25px; border-radius: 25px; margin-left: auto; margin-right: auto;"> The Cheese
Ninjas</a></li>
</ul>
</div>
<div id="wrapper">
<div id="content-wrapper">
<div id="tabs-content" class="tab-content">
<div id="leaguePage" class="tab-pane fade active show">
<ol class="breadcrumb">
<li class="breadcrumb-item active"><a href="#">12 Extraordinary Gentlemen</a></li>
</ol>
<div class="row">
<div class="col-12 col-sm-6 col-md-4 col-lg-2 col-xl-2 my-1">
<div class="maincard text-center h-100 pb-3">
<h2 class="card-title font-weight-bold mt-0 pt-3">League Average</h2><br><br>
<h1 style="margin-left: auto; margin-right: auto;">144.38</h1>Points Per Week<h6
style="margin-left: auto; margin-right: auto;"><br>Standard Deviation: 27 Points</h6>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3 col-xl-2 my-1">
<div class="maincard text-center h-100 pb-3">
<h2 class="card-title font-weight-bold mt-0 pt-3">Best Week</h2><img class="newresize mt-3"
src="https://i.groupme.com/354x500.png.22f81b623af341adaff8497584f5e4e3.large">
<h4 class="mt-3" style="margin-left: auto; margin-right: auto;">Team BLLLLLLonicorns</h4>
<h6 style="margin-left: auto; margin-right: auto;">237.92 points in Week 11</h6>
</div>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3 col-xl-2 my-1">
<div class="maincard text-center h-100 pb-3">
<h2 class="card-title font-weight-bold mt-0 pt-3">Worst Week</h2><img class="newresize mt-3"
src="http://images6.fanpop.com/image/photos/37000000/newclubimage-carolina-panthers-37045516.png">
<h4 class="mt-3" style="margin-left: auto; margin-right: auto;">King Kuechly</h4>
<h6 style="margin-left: auto; margin-right: auto;">72.34 points in Week 1</h6>
</div>
</div>
<div class="col-12 col-sm-12 col-md-7 col-lg-5 col-xl-3 my-1">
<div class="maincard text-center h-100 pb-3">
<h2 class="card-title font-weight-bold mt-0 pt-3">Largest Margin Of Victory</h2>
<div class="row w-100 nomarg">
<figure class="col-5 p-0"><img class="newresize col-5 p-0"
src="https://res.cloudinary.com/teepublic/image/private/s--dqHiUWGz--/t_Preview/b_rgb:ffb81c,c_limit,f_jpg,h_630,q_90,w_630/v1527424485/production/designs/2727528_0.jpg">
<figcaption style="font-size: 0.9rem;">Average Joe's<br>90.74 Points</figcaption>
</figure>
<div class="col-2 font-weight-bold my-auto px-0" style="font-size: 2rem;">VS<h6
style="margin-left: auto; margin-right: auto; font-size: 0.75rem;">week 11</h6>
</div>
<figure class="col-5 p-0"><img class="newresize col-5 p-0"
src="https://pbs.twimg.com/profile_images/378800000727004025/8d72d52ef9a33058eb34b31c3a97560e_400x400.jpeg">
<figcaption style="font-size: 0.9rem;">Niners 4life<br>192.54 Points</figcaption>
</figure>
</div>
<h3 style="margin-left: auto; margin-right: auto;">101.8 Point Difference</h3>
</div>
</div>
<div class="col-12 col-sm-12 col-md-7 col-lg-5 col-xl-3 my-1">
<div class="maincard text-center h-100 pb-3">
<h2 class="card-title font-weight-bold mt-0 pt-3">Slimist Margin Of Victory</h2>
<div class="row w-100 nomarg">
<figure class="col-5 p-0"><img class="newresize col-5 p-0"
src="https://i.pinimg.com/originals/5e/f9/32/5ef932b6c529fa6a9b4dba6bbc83f75d.jpg">
<figcaption style="font-size: 0.9rem;">Bye Week<br>157.14 Points</figcaption>
</figure>
<div class="col-2 font-weight-bold my-auto px-0" style="font-size: 2rem;">VS<h6
style="margin-left: auto; margin-right: auto; font-size: 0.75rem;">week 12</h6>
</div>
<figure class="col-5 p-0"><img class="newresize col-5 p-0"
src="https://pbs.twimg.com/profile_images/378800000727004025/8d72d52ef9a33058eb34b31c3a97560e_400x400.jpeg">
<figcaption style="font-size: 0.9rem;">Alvin and the Shipmunks<br>156.96 Points</figcaption>
</figure>
</div>
<h3 style="margin-left: auto; margin-right: auto;">0.18 Point Difference</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-12">
<div id="mainPwrTable_wrapper" class="dataTables_wrapper dt-bootstrap4 no-footer">
<div class="row">
<div class="col-sm-12 col-md-6"></div>
<div class="col-sm-12 col-md-6"></div>
</div>
<div class="row">
<div class="col-sm-12">
<table class="table hover dataTable no-footer" id="mainPwrTable" role="grid"
aria-describedby="mainPwrTable_info">
<thead>
<tr role="row">
<th scope="col" class="sorting_asc" tabindex="0" aria-controls="mainPwrTable" rowspan="1"
colspan="1" aria-sort="ascending" aria-label="Rank: activate to sort column descending"
style="width: 124px;">Rank</th>
<th scope="col" class="sorting" tabindex="0" aria-controls="mainPwrTable" rowspan="1"
colspan="1" aria-label="Team: activate to sort column ascending" style="width: 334px;">
Team</th>
<th scope="col" class="sorting" tabindex="0" aria-controls="mainPwrTable" rowspan="1"
colspan="1" aria-label="Record: activate to sort column ascending" style="width: 155px;">
Record</th>
<th scope="col" class="sorting" tabindex="0" aria-controls="mainPwrTable" rowspan="1"
colspan="1" aria-label="Win%: activate to sort column ascending" style="width: 132px;">
Win%</th>
<th scope="col" class="sorting" tabindex="0" aria-controls="mainPwrTable" rowspan="1"
colspan="1" aria-label="PF: activate to sort column ascending" style="width: 105px;">PF
</th>
<th scope="col" class="sorting" tabindex="0" aria-controls="mainPwrTable" rowspan="1"
colspan="1" aria-label="PA: activate to sort column ascending" style="width: 105px;">PA
</th>
<th scope="col" class="sorting" tabindex="0" aria-controls="mainPwrTable" rowspan="1"
colspan="1" aria-label="PP: activate to sort column ascending" style="width: 105px;">PP
</th>
</tr>
</thead>
<tbody>
<tr role="row" class="odd">
<td class="sorting_1">1</td>
<td>Alvin and the Shipmunks</td>
<td>9-4</td>
<td>69.23%</td>
<td>2636.78</td>
<td>2127.64</td>
<td>2954.46</td>
</tr>
<tr role="row" class="even">
<td class="sorting_1">2</td>
<td>Bye Week</td>
<td>7-6</td>
<td>53.85%</td>
<td>2407.42</td>
<td>2297.74</td>
<td>2769.28</td>
</tr>
<tr role="row" class="odd">
<td class="sorting_1">3</td>
<td>Quality Kraftmanship </td>
<td>9-4</td>
<td>69.23%</td>
<td>2513.6</td>
<td>2124.66</td>
<td>3047.6</td>
</tr>
<tr role="row" class="even">
<td class="sorting_1">4</td>
<td>The Manziel Manifesto</td>
<td>8-5</td>
<td>61.54%</td>
<td>2349.24</td>
<td>2151</td>
<td>2874.76</td>
</tr>
<tr role="row" class="odd">
<td class="sorting_1">5</td>
<td>Jerkin Goff</td>
<td>8-5</td>
<td>61.54%</td>
<td>2390.66</td>
<td>2225.76</td>
<td>2858.6</td>
</tr>
<tr role="row" class="even">
<td class="sorting_1">6</td>
<td>Team BLLLLLLonicorns</td>
<td>7-6</td>
<td>53.85%</td>
<td>2354.54</td>
<td>2446.4</td>
<td>2748.78</td>
</tr>
<tr role="row" class="odd">
<td class="sorting_1">7</td>
<td>The Cheese Ninjas</td>
<td>6-7</td>
<td>46.15%</td>
<td>2250.7</td>
<td>2418.42</td>
<td>2756.72</td>
</tr>
<tr role="row" class="even">
<td class="sorting_1">8</td>
<td>Niners 4life</td>
<td>4-9</td>
<td>30.77%</td>
<td>2425.16</td>
<td>2345.22</td>
<td>2864.26</td>
</tr>
<tr role="row" class="odd">
<td class="sorting_1">9</td>
<td>Miller Time</td>
<td>7-6</td>
<td>53.85%</td>
<td>2292.52</td>
<td>2412.06</td>
<td>2768.66</td>
</tr>
<tr role="row" class="even">
<td class="sorting_1">10</td>
<td>The Red Terror</td>
<td>6-7</td>
<td>46.15%</td>
<td>2137.46</td>
<td>2278.64</td>
<td>2495.96</td>
</tr>
<tr role="row" class="odd">
<td class="sorting_1">11</td>
<td>King Kuechly</td>
<td>4-9</td>
<td>30.77%</td>
<td>2030.96</td>
<td>2189.68</td>
<td>2556.16</td>
</tr>
<tr role="row" class="even">
<td class="sorting_1">12</td>
<td>Average Joe's</td>
<td>3-10</td>
<td>23.08%</td>
<td>1931.1</td>
<td>2381.86</td>
<td>2332.6</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-5">
<div class="dataTables_info" id="mainPwrTable_info" role="status" aria-live="polite">Showing 1 to
12 of 12 entries</div>
</div>
<div class="col-sm-12 col-md-7"></div>
</div>
</div>
</div>
</div>
</div>
<div id="pillTeam8" class="tab-pane fade">
<ol class="breadcrumb">
<li class="breadcrumb-item active"><a href="#leaguePage" data-toggle="pill" class="breadpill">12
Extraordinary Gentlemen</a></li>
<li class="breadcrumb-item active">Quality Kraftmanship </li>
</ol>
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-2">
<div class="card profilecard p-auto align-items-center d-flex h-100"><img class="profileImage"
src="https://pbs.twimg.com/profile_images/378800000727004025/8d72d52ef9a33058eb34b31c3a97560e_400x400.jpeg"
alt="DLow">
<h4 class="card-title">Dylan Penkethman</h4>
<h5 class="card-text">3rd Overall</h5>
<h5>Record: 9-4</h5>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-10 mt-0 mb-0">
<div class="row h-100">
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(85, 255, 0); color: black;">
<h4 class="card-title">2nd in Points Scored</h4>
<blockquote class="card-blockquote">
<h2>2513.6</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Points scored in both the regular and post season">Points Scored <i
class="fa fa-info-circle"></i></small>
<footer><small>+203.6 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(255, 255, 255); color: rgb(0, 0, 0);">
<h4 class="card-title">12th Hardest Schedule</h4>
<blockquote class="card-blockquote">
<h2>2124.66</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Total points scored by all opponents in the regular and post season">Points
Against <i class="fa fa-info-circle"></i></small>
<footer><small>-158.6 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(43, 255, 0); color: black;">
<h4 class="card-title">1st in Potential Points</h4>
<blockquote class="card-blockquote">
<h2>3047.6</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Total points achievable by always playing the most optimal lineup">Potential
Points <i class="fa fa-info-circle"></i></small>
<footer><small>+295.3 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(255, 0, 0); color: white;">
<h4 class="card-title">12th In Efficiency</h4>
<blockquote class="card-blockquote">
<h2>+534</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Difference between points scored and possible points, the smaller the gap the better">Potential
Point Gap <i class="fa fa-info-circle"></i></small>
<footer><small>+91.7 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-4 mt-0 mb-1">
<div class="card mvpcard text-center h-100 justify-content-center align-items-center px-1">
<h1 class="card-title pt-3">Most Valuable Player</h1><img class="resize rounded-circle"
src="http://a.espncdn.com/i/headshots/nfl/players/full/2976316.png">
<h4 style="margin-left: auto; margin-right: auto;">Michael Thomas<br>307.6 Points</h4>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(85, 255, 0); color: black;">
<h4 class="card-title">Weekly Average</h4>
<blockquote class="card-blockquote">
<h2>157.1</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Average points scored per week">Points Per Week <i
class="fa fa-info-circle"></i></small>
<footer><small>+12.72 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(128, 255, 0); color: black;">
<h4 class="card-title">3rd Most Consistent</h4>
<blockquote class="card-blockquote">
<h2>21.5</h2><small data-toggle="tooltip" data-placement="right" title="" data-original-title="Indicates weekly variation of points a team had from their average
Lower is better">Standard Deviation <i class="fa fa-info-circle"></i></small>
<footer><small>-5.5 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(128, 255, 0); color: black;">
<h4 class="card-title">Best Week</h4>
<blockquote class="card-blockquote">
<h2>202.88</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Only represents the comparison against every other teams single highest week">3rd
Highest <i class="fa fa-info-circle"></i></small>
<footer><small>Week 1</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(43, 255, 0); color: black;">
<h4 class="card-title">Worst Week</h4>
<blockquote class="card-blockquote">
<h2>123.86</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Only represents the comparison against every other teams single lowest week">12th
Worst <i class="fa fa-info-circle"></i></small>
<footer><small>Week 7</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-4 mt-0 mb-1">
<div class="card mvpcard text-center h-100 justify-content-center align-items-center px-1">
<h1 class="card-title pt-3">Least Valuable Player</h1><img class="resize rounded-circle"
src="http://a.espncdn.com/i/headshots/nfl/players/full/10636.png">
<h4 style="margin-left: auto; margin-right: auto;">Mason Crosby<br> 0 Points in Week 5</h4>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-9"><iframe class="chartjs-hidden-iframe"
tabindex="-1"
style="display: block; overflow: hidden; border: 0px; margin: 0px; top: 0px; left: 0px; bottom: 0px; right: 0px; height: 100%; width: 100%; position: absolute; pointer-events: none; z-index: -1;"></iframe><canvas
id="8LINECHART" height="150" width="300" style="display: block;"></canvas></div>
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-3 donutchart"><iframe
class="chartjs-hidden-iframe" tabindex="-1"
style="display: block; overflow: hidden; border: 0px; margin: 0px; top: 0px; left: 0px; bottom: 0px; right: 0px; height: 100%; width: 100%; position: absolute; pointer-events: none; z-index: -1;"></iframe><canvas
class="DONUTCANVAS1" id="8DONUTCANVAS" height="150" width="300" style="display: block;"></canvas>
</div>
</div>
</div>
<div id="pillTeam5" class="tab-pane fade">
<ol class="breadcrumb">
<li class="breadcrumb-item active"><a href="#leaguePage" data-toggle="pill" class="breadpill">12
Extraordinary Gentlemen</a></li>
<li class="breadcrumb-item active">Bye Week</li>
</ol>
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-2">
<div class="card profilecard p-auto align-items-center d-flex h-100"><img class="profileImage"
src="https://i.pinimg.com/originals/5e/f9/32/5ef932b6c529fa6a9b4dba6bbc83f75d.jpg" alt="Bye">
<h4 class="card-title">lucais Wallen</h4>
<h5 class="card-text">2nd Overall</h5>
<h5>Record: 7-6</h5>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-10 mt-0 mb-0">
<div class="row h-100">
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(170, 255, 0); color: black;">
<h4 class="card-title">4th in Points Scored</h4>
<blockquote class="card-blockquote">
<h2>2407.42</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Points scored in both the regular and post season">Points Scored <i
class="fa fa-info-circle"></i></small>
<footer><small>+97.4 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(255, 255, 255); color: rgb(0, 0, 0);">
<h4 class="card-title">6th Hardest Schedule</h4>
<blockquote class="card-blockquote">
<h2>2297.74</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Total points scored by all opponents in the regular and post season">Points
Against <i class="fa fa-info-circle"></i></small>
<footer><small>+14.48 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(255, 255, 0); color: black;">
<h4 class="card-title">6th in Potential Points</h4>
<blockquote class="card-blockquote">
<h2>2769.28</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Total points achievable by always playing the most optimal lineup">Potential
Points <i class="fa fa-info-circle"></i></small>
<footer><small>+17 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(128, 255, 0); color: black;">
<h4 class="card-title">3rd In Efficiency</h4>
<blockquote class="card-blockquote">
<h2>+361.9</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Difference between points scored and possible points, the smaller the gap the better">Potential
Point Gap <i class="fa fa-info-circle"></i></small>
<footer><small>-80.4 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-4 mt-0 mb-1">
<div class="card mvpcard text-center h-100 justify-content-center align-items-center px-1">
<h1 class="card-title pt-3">Most Valuable Player</h1><img class="resize rounded-circle"
src="http://a.espncdn.com/i/headshots/nfl/players/full/3051392.png">
<h4 style="margin-left: auto; margin-right: auto;">Ezekiel Elliott<br>329.1 Points</h4>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(170, 255, 0); color: black;">
<h4 class="card-title">Weekly Average</h4>
<blockquote class="card-blockquote">
<h2>150.46</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Average points scored per week">Points Per Week <i
class="fa fa-info-circle"></i></small>
<footer><small>+6.08 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(43, 255, 0); color: black;">
<h4 class="card-title">1st Most Consistent</h4>
<blockquote class="card-blockquote">
<h2>19.4</h2><small data-toggle="tooltip" data-placement="right" title="" data-original-title="Indicates weekly variation of points a team had from their average
Lower is better">Standard Deviation <i class="fa fa-info-circle"></i></small>
<footer><small>-7.6 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(212, 255, 0); color: black;">
<h4 class="card-title">Best Week</h4>
<blockquote class="card-blockquote">
<h2>197.6</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Only represents the comparison against every other teams single highest week">5th
Highest <i class="fa fa-info-circle"></i></small>
<footer><small>Week 10</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(170, 255, 0); color: black;">
<h4 class="card-title">Worst Week</h4>
<blockquote class="card-blockquote">
<h2>109.1</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Only represents the comparison against every other teams single lowest week">9th
Worst <i class="fa fa-info-circle"></i></small>
<footer><small>Week 7</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-4 mt-0 mb-1">
<div class="card mvpcard text-center h-100 justify-content-center align-items-center px-1">
<h1 class="card-title pt-3">Least Valuable Player</h1><img class="resize rounded-circle"
src="http://a.espncdn.com/combiner/i?img=/i/teamlogos/NFL/500/Chi.png&h=150&w=150">
<h4 style="margin-left: auto; margin-right: auto;">Bears D/ST<br> -1 Points in Week 6</h4>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-9"><iframe class="chartjs-hidden-iframe"
tabindex="-1"
style="display: block; overflow: hidden; border: 0px; margin: 0px; top: 0px; left: 0px; bottom: 0px; right: 0px; height: 100%; width: 100%; position: absolute; pointer-events: none; z-index: -1;"></iframe><canvas
id="5LINECHART" height="150" width="300" style="display: block;"></canvas></div>
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-3 donutchart"><iframe
class="chartjs-hidden-iframe" tabindex="-1"
style="display: block; overflow: hidden; border: 0px; margin: 0px; top: 0px; left: 0px; bottom: 0px; right: 0px; height: 100%; width: 100%; position: absolute; pointer-events: none; z-index: -1;"></iframe><canvas
class="DONUTCANVAS1" id="5DONUTCANVAS" height="150" width="300" style="display: block;"></canvas>
</div>
</div>
</div>
<div id="pillTeam2" class="tab-pane fade">
<ol class="breadcrumb">
<li class="breadcrumb-item active"><a href="#leaguePage" data-toggle="pill" class="breadpill">12
Extraordinary Gentlemen</a></li>
<li class="breadcrumb-item active">Team BLLLLLLonicorns</li>
</ol>
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-2">
<div class="card profilecard p-auto align-items-center d-flex h-100"><img class="profileImage"
src="https://i.groupme.com/354x500.png.22f81b623af341adaff8497584f5e4e3.large" alt="UCRN">
<h4 class="card-title">Kyle Ebert</h4>
<h5 class="card-text">6th Overall</h5>
<h5>Record: 7-6</h5>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-10 mt-0 mb-0">
<div class="row h-100">
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(255, 255, 0); color: black;">
<h4 class="card-title">6th in Points Scored</h4>
<blockquote class="card-blockquote">
<h2>2354.54</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Points scored in both the regular and post season">Points Scored <i
class="fa fa-info-circle"></i></small>
<footer><small>+44.5 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(255, 255, 255); color: rgb(0, 0, 0);">
<h4 class="card-title">1st Hardest Schedule</h4>
<blockquote class="card-blockquote">
<h2>2446.4</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Total points scored by all opponents in the regular and post season">Points
Against <i class="fa fa-info-circle"></i></small>
<footer><small>+163.14 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(255, 128, 0); color: white;">
<h4 class="card-title">9th in Potential Points</h4>
<blockquote class="card-blockquote">
<h2>2748.78</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Total points achievable by always playing the most optimal lineup">Potential
Points <i class="fa fa-info-circle"></i></small>
<footer><small>-3.5 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mt-0 mb-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(170, 255, 0); color: black;">
<h4 class="card-title">4th In Efficiency</h4>
<blockquote class="card-blockquote">
<h2>+394.2</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Difference between points scored and possible points, the smaller the gap the better">Potential
Point Gap <i class="fa fa-info-circle"></i></small>
<footer><small>-48.1 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-4 mt-0 mb-1">
<div class="card mvpcard text-center h-100 justify-content-center align-items-center px-1">
<h1 class="card-title pt-3">Most Valuable Player</h1><img class="resize rounded-circle"
src="http://a.espncdn.com/i/headshots/nfl/players/full/2580.png">
<h4 style="margin-left: auto; margin-right: auto;">Drew Brees<br>339.4 Points</h4>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(255, 255, 0); color: black;">
<h4 class="card-title">Weekly Average</h4>
<blockquote class="card-blockquote">
<h2>147.16</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Average points scored per week">Points Per Week <i
class="fa fa-info-circle"></i></small>
<footer><small>+2.78 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(255, 0, 0); color: white;">
<h4 class="card-title">12th Most Consistent</h4>
<blockquote class="card-blockquote">
<h2>34.2</h2><small data-toggle="tooltip" data-placement="right" title="" data-original-title="Indicates weekly variation of points a team had from their average
Lower is better">Standard Deviation <i class="fa fa-info-circle"></i></small>
<footer><small>+7.2 League Average</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(43, 255, 0); color: black;">
<h4 class="card-title">Best Week</h4>
<blockquote class="card-blockquote">
<h2>237.92</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Only represents the comparison against every other teams single highest week">1st
Highest <i class="fa fa-info-circle"></i></small>
<footer><small>Week 11</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-2 mb-0 mt-1">
<div class="card p-2 text-center statcard h-100 align-items-center d-flex justify-content-center"
style="background-color: rgb(212, 255, 0); color: black;">
<h4 class="card-title">Worst Week</h4>
<blockquote class="card-blockquote">
<h2>106.02</h2><small data-toggle="tooltip" data-placement="right" title=""
data-original-title="Only represents the comparison against every other teams single lowest week">8th
Worst <i class="fa fa-info-circle"></i></small>
<footer><small>Week 15</small></footer>
</blockquote>
</div>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-4 mt-0 mb-1">
<div class="card mvpcard text-center h-100 justify-content-center align-items-center px-1">
<h1 class="card-title pt-3">Least Valuable Player</h1><img class="resize rounded-circle"
src="http://a.espncdn.com/combiner/i?img=/i/teamlogos/NFL/500/Den.png&h=150&w=150">
<h4 style="margin-left: auto; margin-right: auto;">Broncos D/ST<br> -2 Points in Week 5</h4>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-9"><iframe class="chartjs-hidden-iframe"
tabindex="-1"
style="display: block; overflow: hidden; border: 0px; margin: 0px; top: 0px; left: 0px; bottom: 0px; right: 0px; height: 100%; width: 100%; position: absolute; pointer-events: none; z-index: -1;"></iframe><canvas
id="2LINECHART" height="150" width="300" style="display: block;"></canvas></div>
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-3 donutchart"><iframe
class="chartjs-hidden-iframe" tabindex="-1"
style="display: block; overflow: hidden; border: 0px; margin: 0px; top: 0px; left: 0px; bottom: 0px; right: 0px; height: 100%; width: 100%; position: absolute; pointer-events: none; z-index: -1;"></iframe><canvas
class="DONUTCANVAS1" id="2DONUTCANVAS" height="150" width="300" style="display: block;"></canvas>
</div>
</div>
</div>
<div id="pillTeam6" class="tab-pane fade">
<ol class="breadcrumb">
<li class="breadcrumb-item active"><a href="#leaguePage" data-toggle="pill" class="breadpill">12
Extraordinary Gentlemen</a></li>
<li class="breadcrumb-item active">Average Joe's</li>
</ol>
<div class="row">
<div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-2">
<div class="card profilecard p-auto align-items-center d-flex h-100"><img class="profileImage"
src="https://res.cloudinary.com/teepublic/image/private/s--dqHiUWGz--/t_Preview/b_rgb:ffb81c,c_limit,f_jpg,h_630,q_90,w_630/v1527424485/production/designs/2727528_0.jpg"
alt="GOJO">
<h4 class="card-title">Seth Marcus</h4>
<h5 class="card-text">12th Overall</h5>
<h5>Record: 3-10</h5>
</div>
</div>
<div class="col-12 col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-10 mt-0 mb-0">