-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathKzzy.html
More file actions
4138 lines (4087 loc) · 125 KB
/
Kzzy.html
File metadata and controls
4138 lines (4087 loc) · 125 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang='en'>
<head>
<meta name="csrf-param" content="authenticity_token"/>
<meta name="csrf-token"
content="iz4B7/7KVHlxy8d23AyFJnHIuEDBl7DYv6g9WvJXZ+1tNVYLaijnDfCvMTFwZ/KuAnUZgHISFkgUaj4HJJ6tWQ=="/>
<meta charset='utf-8'>
<meta content='width=device-width, initial-scale=1' name='viewport'>
<meta content='#337AB7' name='theme-color'>
<title>
Kzzy - Overcast Network
</title>
<link rel="shortcut icon" type="image/x-icon"
href="https://cdn.oc.tc/assets/favicon.ico"/>
<link rel="apple-touch-icon" type="image/png"
href="https://static.oc.tc/assets/icons/icon-57x57-c773bb9eed44bec814183ea9c338a8d24261d8cf4dd837ebfd11316567fd81e6.png"/>
<link rel="apple-touch-icon" type="image/png"
href="https://static.oc.tc/assets/icons/icon-76x76-9b6f7b609f77f40e69d6c3e05780e0fe93ce4fbf6e39c6c749df63a5c526e294.png"
sizes="76x76"/>
<link rel="apple-touch-icon" type="image/png"
href="https://static.oc.tc/assets/icons/icon-120x120-4bf1cbf6c6c04c8b98dfd7c828b08c681c8d7533621ab949131c7542344e0a93.png"
sizes="120x120"/>
<link rel="apple-touch-icon" type="image/png"
href="https://static.oc.tc/assets/icons/icon-152x152-9285e43ba8ebd0609dad331dc1edb03224b6237f088b999bfd14f81cf716cab6.png"
sizes="152x152"/>
<link rel="apple-touch-icon" type="image/png"
href="https://static.oc.tc/assets/icons/icon-167x167-2b722464c6abcaddf5c0d3f64c3292de32c59c079a8ec829a34c0c064f13b55c.png"
sizes="167x167"/>
<link rel="apple-touch-icon" type="image/png"
href="https://static.oc.tc/assets/icons/icon-180x180-feb73f6835138a9162af22513c17b7d077fd3ce7f9ef41744eca3e6cbcdee771.png"
sizes="180x180"/>
<link rel="icon" type="image/png"
href="https://static.oc.tc/assets/icons/icon-128x128-e17c0fec61348260984daac0ffa7fb9471a25501ca49ef41b2a0daa3130f8ff4.png"
sizes="128x128"/>
<link rel="icon" type="image/png"
href="https://static.oc.tc/assets/icons/icon-192x192-c93c1e496617fec85cd89aa9d3abc62db2232eb1cf901924b5bc81c32bc44ed6.png"
sizes="192x192"/>
<link rel="stylesheet" media="screen"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css"/>
<link rel="stylesheet" media="screen"
href="https://static.oc.tc/assets/application-bfa7ca518e1a8ca212fef53aaa0650a6f5b4475c06914e7178ff5bec94070752.css"/>
<link rel="stylesheet" media="screen"
href="https://fonts.googleapis.com/css?family=Lato:700,400,300"/>
<link rel="stylesheet" media="screen"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css"/>
<script
src="https://static.oc.tc/assets/libraries-912fd655d5f42721ec0f4b257ad9e600219d21f56ed23b0125feaf20b7f6e28e.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script
src="https://static.oc.tc/assets/application-279754d779d3df8a6e34571f7a04537497dcab3d7ff24f26101905b5bdcd2e1b.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-3-typeahead/4.0.0/bootstrap3-typeahead.min.js"></script>
<script>
var
_gaq=_gaq||[];_gaq.push(["_setAccount","UA-30515952-1"]);_gaq.push(["_trackPageview"]);(function(){var
e=document.createElement("script");e.type="text/javascript";e.async=true;e.src=("https:"==document.location.protocol?"https://ssl":"http://www")+".google-analytics.com/ga.js";var
t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)})()
</script>
</head>
<body>
<nav class='navbar navbar-default navbar-static-top'>
<div class='container'>
<div class='navbar-header'>
<button class='navbar-toggle collapsed'
data-target='#top-navbar-collapse' data-toggle='collapse'
id='top-navbar-collapse-button'>
<span class='fa fa-bars'></span>
</button>
<a class="navbar-brand" href="https://majjus.github.io/oc.tc/">
<img class="pull-left" src="https://cdn.oc.tc/assets/logo.png">
Overcast Network
</a>
</div>
<div class='navbar-collapse collapse' id='top-navbar-collapse'>
<ul class='nav navbar-nav' style='margin-right: 0;'>
<li>
<a href='/oc.tc/play'>
<i class='fa fa-play'></i>
Play
</a>
</li>
<li>
<a href='/oc.tc/maps'>
<i class='fa fa-cubes'></i>
Maps
</a>
</li>
<li class='active dropdown'>
<a class='dropdown-toggle' data-toggle='dropdown' href='#'>
<i class='fa fa-user'></i>
Players
<b class='caret'></b>
</a>
<ul class='dropdown-menu'>
<li>
<a href='https://oc.tc/leaderboard'>
<i class='fa fa-star'></i>
Rankings
</a>
</li>
<li>
<a href='https://oc.tc/stats'>
<i class='fa fa-line-chart'></i>
Stats
</a>
</li>
<li>
<a href='/oc.tc/channels'>
<i class='fa fa-youtube-play'></i>
Channels
</a>
</li>
<form class='player-search'>
<input class='input-sm form-control typeahead' id='player-search'
name='search' placeholder='Search for a player' type='text'>
</form>
</ul>
</li>
<li class='dropdown'>
<a class='dropdown-toggle' data-toggle='dropdown' href='#'>
<i class='fa fa-trophy'></i>
League
<b class='caret'></b>
</a>
<ul class='dropdown-menu'>
<li>
<a href='/oc.tc/teams'>
<i class='fa fa-group'></i>
Teams
</a>
</li>
<li>
<a href='/oc.tc/tournaments'>
<i class='fa fa-flag'></i>
Tournaments
</a>
</li>
</ul>
</li>
<li>
<a href='/oc.tc/forums'>
<i class='fa fa-comments'></i>
Forum
</a>
</li>
</ul>
<hr class='visible-xs visible-sm' style='margin: 4px; border-color:
#e7e7e7;'>
<ul class='nav navbar-nav pull-right'>
<li class='dropdown'>
<a class='dropdown-toggle' data-toggle='dropdown' href='#'
style='outline: none; '>
<i class='fa fa-user'></i>
<div class='visible-xs-inline visible-sm-inline'>
Account
</div>
<b class='caret'></b>
</a>
<ul class='dropdown-menu dropdown-menu-right'>
<li>
<a href='/oc.tc/users/sign_in'>Login</a>
</li>
<li>
<a href='/oc.tc/users/sign_up'>Register</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div class='container'>
<div class='flash' style='margin-top: 20px;'>
</div>
<section>
<div class='row'>
<div class='col-md-12'>
<h1 style='margin-top: 0'>
<span style='color: #3EBCBC'>
Kzzy
</span>
</h1>
<div>
<a class="label" style="background-color: #3EBCBC; color: white"
href="/staff">Referee</a>
<a class="label" style="background-color: purple; color: white"
href="/shop">Dux</a>
</div>
</div>
</div>
<div class='row' style='margin-top: 20px'>
<div class='col-md-2 col-sm-3 col-xs-6'>
<a href='#' style='width: 130px; height: 130px;'>
<img style="width: 130px;height: 130px;border-radius: 7px;" width="130"
height="130" class="avatar"
src="https://cravatar.eu/helmavatar/72194ac4ef6648cf87f39d12f6e2965b/130.png"
alt="Kzzy" title="Kzzy"/>
</a>
<div class='last-seen'>
<div class='offline'>last seen</div>
<div class='server'>
<a href='/oc.tc/play'>
Lobby 1
<div class='datacenter'>
[US]
</div>
</a>
</div>
<div class='time' data-container='body' data-placement='bottom'
rel='tooltip' title='January 26th, 2017 - 12:41 PM'>
21 hours
ago
</div>
</div>
</div>
<div class='col-md-6 col-sm-3 col-xs-6'>
<div class='row heads'>
<div class='col-md-4'>
<div class='hidden-sm hidden-xs'>
<a href="/oc.tc/fede_001"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/edef9e74db9e4f3daf8f210bad6c06b2/32.png"
alt="fede_001" title="fede_001" rel="tooltip"/></a><a href="/oc.tc/Nim_"><img
style="width: 32px;height: 32px;border-radius: 3px;" width="32"
height="32" class="avatar"
src="https://cravatar.eu/helmavatar/a8fc51a7172d4d38b0570232b5015c26/32.png"
alt="Nim_" title="Nim_" rel="tooltip"/></a><a href="/oc.tc/fede_001"><img
style="width: 32px;height: 32px;border-radius: 3px;" width="32"
height="32" class="avatar"
src="https://cravatar.eu/helmavatar/edef9e74db9e4f3daf8f210bad6c06b2/32.png"
alt="fede_001" title="fede_001" rel="tooltip"/></a><a
href="/fede_001"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/edef9e74db9e4f3daf8f210bad6c06b2/32.png"
alt="fede_001" title="fede_001" rel="tooltip"/></a><a
href="/fede_001"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/edef9e74db9e4f3daf8f210bad6c06b2/32.png"
alt="fede_001" title="fede_001" rel="tooltip"/></a><a
href="/CDS_SoulReaper"><img style="width: 32px;height:
32px;border-radius: 3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/b4a345dbc44b4a5c8da8fad239172080/32.png"
alt="CDS_SoulReaper" title="CDS_SoulReaper" rel="tooltip"/></a><a
href="/Saiinty"><img style="width: 32px;height: 32px;border-radius: 3px;"
width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/98da5f5d41264139af4b72e45f017371/32.png"
alt="Saiinty" title="Saiinty" rel="tooltip"/></a><a
href="/dragonjanko"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/e06e1a8ad75f409ba6b44dadeb25aa0d/32.png"
alt="dragonjanko" title="dragonjanko" rel="tooltip"/></a><a
href="/26ellas"><img style="width: 32px;height: 32px;border-radius: 3px;"
width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/9c03485fb31f452388f211ea5994ca43/32.png"
alt="26ellas" title="26ellas" rel="tooltip"/></a><a
href="/Creephunter"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/95763a18eb8844e78a10780acffceae8/32.png"
alt="Creephunter" title="Creephunter" rel="tooltip"/></a><a
href="/CincoDeMayo"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/57c4813eecc24aee94798d58991d1a0c/32.png"
alt="CincoDeMayo" title="CincoDeMayo" rel="tooltip"/></a><a
href="/BlazeTheWind"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/8a64410c592f41f093e3a9e7672d71ba/32.png"
alt="BlazeTheWind" title="BlazeTheWind" rel="tooltip"/></a><a
href="/CincoDeMayo"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/57c4813eecc24aee94798d58991d1a0c/32.png"
alt="CincoDeMayo" title="CincoDeMayo" rel="tooltip"/></a><a
href="/UnlonelyMemes"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/13306613850a495f9b2f90d0b091e978/32.png"
alt="UnlonelyMemes" title="UnlonelyMemes" rel="tooltip"/></a><a
href="/Lucaslyoko"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/8b2d7971734844389efe6d6ecf2be972/32.png"
alt="Lucaslyoko" title="Lucaslyoko" rel="tooltip"/></a><a
href="/thedragon455"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/b83f7de99d69468a8ceadc3864b584cb/32.png"
alt="thedragon455" title="thedragon455" rel="tooltip"/></a>
</div>
<div class='name'>kills</div>
<div class='number' data-placement='top' rel='' title='68055 kills'>
68055
</div>
</div>
<div class='col-md-4'>
<div class='hidden-sm hidden-xs'>
<a href="/oc.tc/fede_001"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/edef9e74db9e4f3daf8f210bad6c06b2/32.png"
alt="fede_001" title="fede_001" rel="tooltip"/></a><a
href="/Block_Master989"><img style="width: 32px;height:
32px;border-radius: 3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/0352499368e7441ea8d8d50dcd159119/32.png"
alt="Block_Master989" title="Block_Master989" rel="tooltip"/></a><a
href="/niery"><img style="width: 32px;height: 32px;border-radius: 3px;"
width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/e49fac20fd244c47bb30efe1f6c03490/32.png"
alt="niery" title="niery" rel="tooltip"/></a><a href="/oc.tc/fede_001"><img
style="width: 32px;height: 32px;border-radius: 3px;" width="32"
height="32" class="avatar"
src="https://cravatar.eu/helmavatar/edef9e74db9e4f3daf8f210bad6c06b2/32.png"
alt="fede_001" title="fede_001" rel="tooltip"/></a><a
href="/SuperRobo123"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/df67e274abbf4c5b831bf130dbfcf741/32.png"
alt="SuperRobo123" title="SuperRobo123" rel="tooltip"/></a><a
href="/jos1206"><img style="width: 32px;height: 32px;border-radius: 3px;"
width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/fbad36dbb85d4823b822708a491b745a/32.png"
alt="jos1206" title="jos1206" rel="tooltip"/></a><a
href="/petruslocator"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/6d24722cdba442249d14b3d08a8d9620/32.png"
alt="petruslocator" title="petruslocator" rel="tooltip"/></a><a
href="/Lucaslyoko"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/8b2d7971734844389efe6d6ecf2be972/32.png"
alt="Lucaslyoko" title="Lucaslyoko" rel="tooltip"/></a><a
href="/Creephunter"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/95763a18eb8844e78a10780acffceae8/32.png"
alt="Creephunter" title="Creephunter" rel="tooltip"/></a><a
href="/Creephunter"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/95763a18eb8844e78a10780acffceae8/32.png"
alt="Creephunter" title="Creephunter" rel="tooltip"/></a><a
href="/Creephunter"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/95763a18eb8844e78a10780acffceae8/32.png"
alt="Creephunter" title="Creephunter" rel="tooltip"/></a><a
href="/26ellas"><img style="width: 32px;height: 32px;border-radius: 3px;"
width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/9c03485fb31f452388f211ea5994ca43/32.png"
alt="26ellas" title="26ellas" rel="tooltip"/></a><a
href="/Lucaslyoko"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/8b2d7971734844389efe6d6ecf2be972/32.png"
alt="Lucaslyoko" title="Lucaslyoko" rel="tooltip"/></a><a
href="/Lucaslyoko"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/8b2d7971734844389efe6d6ecf2be972/32.png"
alt="Lucaslyoko" title="Lucaslyoko" rel="tooltip"/></a><a
href="/BlazeTheWind"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/8a64410c592f41f093e3a9e7672d71ba/32.png"
alt="BlazeTheWind" title="BlazeTheWind" rel="tooltip"/></a><a
href="/CincoDeMayo"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/57c4813eecc24aee94798d58991d1a0c/32.png"
alt="CincoDeMayo" title="CincoDeMayo" rel="tooltip"/></a>
</div>
<div class='name'>deaths</div>
<div class='number' data-placement='top' rel='' title='68149 deaths'>
68149
</div>
</div>
<div class='col-md-4'>
<div class='hidden-sm hidden-xs'>
<a href="/oc.tc/MWOAplaysMC"><img style="width: 32px;height:
32px;border-radius: 3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/edda53cdc6c840c5ba2742b92a9cca24/32.png"
alt="MWOAplaysMC" title="MWOAplaysMC" rel="tooltip"/></a><a
href="/Strmr"><img style="width: 32px;height: 32px;border-radius: 3px;"
width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/755acf7dc9b44f1db7acdb4dfdfa2b26/32.png"
alt="Strmr" title="Strmr" rel="tooltip"/></a><a href="/oc.tc/gushingblood"><img
style="width: 32px;height: 32px;border-radius: 3px;" width="32"
height="32" class="avatar"
src="https://cravatar.eu/helmavatar/2e05eb91e64b46f88a49368d205d26fd/32.png"
alt="gushingblood" title="gushingblood" rel="tooltip"/></a><a
href="/creeperjvd"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/e3528d8069fe4ba2a726534979b6f4e0/32.png"
alt="creeperjvd" title="creeperjvd" rel="tooltip"/></a><a
href="/snootsnek"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/d1c548ba71db45aebae100f3b739477f/32.png"
alt="snootsnek" title="snootsnek" rel="tooltip"/></a><a
href="/starcookie13"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/5c82cb446019421ab231f60c1fb3c7bc/32.png"
alt="starcookie13" title="starcookie13" rel="tooltip"/></a><a
href="/cabrisk"><img style="width: 32px;height: 32px;border-radius: 3px;"
width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/c5892eac73cd4f189f477135c2db5068/32.png"
alt="cabrisk" title="cabrisk" rel="tooltip"/></a><a href="/oc.tc/Qezr"><img
style="width: 32px;height: 32px;border-radius: 3px;" width="32"
height="32" class="avatar"
src="https://cravatar.eu/helmavatar/64a6eea600c2442f895ecde97f401e5f/32.png"
alt="Qezr" title="Qezr" rel="tooltip"/></a><a href="/oc.tc/xPolish_"><img
style="width: 32px;height: 32px;border-radius: 3px;" width="32"
height="32" class="avatar"
src="https://cravatar.eu/helmavatar/eee8510d843e4ee0a8d49b5c65e0182d/32.png"
alt="xPolish_" title="xPolish_" rel="tooltip"/></a><a
href="/Streact"><img style="width: 32px;height: 32px;border-radius: 3px;"
width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/03b6ad99e77d46f39f76b5289d07119a/32.png"
alt="Streact" title="Streact" rel="tooltip"/></a><a href="/oc.tc/Pepe9"><img
style="width: 32px;height: 32px;border-radius: 3px;" width="32"
height="32" class="avatar"
src="https://cravatar.eu/helmavatar/5af1f9764e6e46d9bfeeb8177f3f5f24/32.png"
alt="Pepe9" title="Pepe9" rel="tooltip"/></a><a
href="/GoodOlOzymandias"><img style="width: 32px;height:
32px;border-radius: 3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/a75135423f924383a255a8c55f405570/32.png"
alt="GoodOlOzymandias" title="GoodOlOzymandias" rel="tooltip"/></a><a
href="/KingOfSquares"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/8af5859a1d6e4fbdae5f4c63ff630fa4/32.png"
alt="KingOfSquares" title="KingOfSquares" rel="tooltip"/></a><a
href="/KoningThijn11"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/4ab208fca06d4f4d8dcf99b18d572e93/32.png"
alt="KoningThijn11" title="KoningThijn11" rel="tooltip"/></a><a
href="/defqueen10"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/81e260c851fa460fa1ca8ad4b37291f4/32.png"
alt="defqueen10" title="defqueen10" rel="tooltip"/></a><a
href="/TewSavages"><img style="width: 32px;height: 32px;border-radius:
3px;" width="32" height="32" class="avatar"
src="https://cravatar.eu/helmavatar/560531c27d2d4d768dd82a657d2e86b2/32.png"
alt="TewSavages" title="TewSavages" rel="tooltip"/></a>
</div>
<div class='name'>friends</div>
<div class='number'>
282
</div>
</div>
</div>
</div>
<div class='col-md-4 col-sm-6 col-xs-12'>
<div class='stats'>
<div class='well'><div class='rank'>
<div class='name'>rank</div>
<a class='number' href='/leaderboard?page=34'>673<sup>rd</sup></a>
</div><div class='rank'>
<div class='name'>rating</div>
<div class='number' data-placement='bottom' rel='tooltip' title='1 +
(wins - losses) / max(matches, 30)'>
0.167
</div>
</div><div class='rule'></div>
<div><div class='total'>
<div class='name'>matches</div>
<div class='number'>15</div>
</div><div class='total'>
<div class='name'>wins</div>
<div class='number'>5</div>
</div><div class='total'>
<div class='name'>losses</div>
<div class='number'>10</div>
</div><div class='total'>
<div class='name'>forfeits</div>
<div class='number'>0</div>
</div></div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class='row'>
<div class='col-md-12'>
<div class='tabbable'>
<ul class='nav nav-tabs' id='user-tabs'>
<li class='active'>
<a data-toggle='tab' href='#about'>About</a>
</li>
<li>
<a data-toggle='tab' href='#trophycase'>Trophy Case</a>
</li>
<li>
<a data-toggle='tab' href='#stats'>Stats</a>
</li>
<li>
<a data-toggle='tab' href='#pvp-encounters'>PvP</a>
</li>
<li>
<a data-toggle='tab' href='#objectives'>Objectives</a>
</li>
<li>
<a data-toggle='tab' href='#matches'>Ranked Matches</a>
</li>
<li>
<a data-toggle='tab' href='#infractions'>Infractions</a>
</li>
</ul>
<div class='tab-content' style='overflow: visible;'>
<div class='tab-pane active' id='about'>
<div class='row'>
<div class='col-md-4 col-sm-6'>
<h5>Skype</h5>
<blockquote>
<p>
<a href='skype:Ask Ingame?userinfo' target='_blank'>Ask Ingame</a>
</p>
</blockquote>
</div>
<div class='col-md-4 col-sm-6'>
<h5>Twitter</h5>
<blockquote>
<p>
<a href='http://twitter.com/Bird' target='_blank'>Bird</a>
</p>
</blockquote>
</div>
<div class='col-md-4 col-sm-6'>
<h5>Facebook</h5>
<blockquote>
<p>
<a href='http://facebook.com/Private' target='_blank'>Private</a>
</p>
</blockquote>
</div>
<div class='col-md-4 col-sm-6'>
<h5>Steam</h5>
<blockquote>
<p>
<a href='http://steamcommunity.com/id/Can you smoke steam?'
target='_blank'>Can you smoke steam?</a>
</p>
</blockquote>
</div>
<div class='col-md-4 col-sm-6'>
<h5>Twitch</h5>
<blockquote>
<p>
<a href='http://twitch.tv/Can you eat it?' target='_blank'>Can you eat
it?</a>
</p>
</blockquote>
</div>
<div class='col-md-4 col-sm-6'>
<h5>Github</h5>
<blockquote>
<p>
<a href='https://github.com/No idea' target='_blank'>No idea</a>
</p>
</blockquote>
</div>
<div class='col-md-4 col-sm-6'>
<h5>Discord</h5>
<blockquote>
<p style='color: #666'>
Kaz#2215
</p>
</blockquote>
</div>
<div class='col-md-4 col-sm-6'>
<h5>Team</h5>
<blockquote>
<p>
<a href='/oc.tc/teams/westworld'>Westworld</a>
</p>
</blockquote>
</div>
</div>
<div class='row'>
<div class='col-sm-6'>
<h5>Gender</h5>
<pre>Male</pre>
</div>
<div class='col-sm-6'>
<h5>Location</h5>
<pre>Sweden</pre>
</div>
<div class='col-sm-6'>
<h5>Occupation</h5>
<pre>Life</pre>
</div>
<div class='col-sm-6'>
<h5>Interests</h5>
<pre>The person I love ❤️</pre>
</div>
</div>
<div class='row'>
<div class='col-md-12'>
<h5>About Kzzy</h5>
<pre class='about-me'><div class="jumbotron text-center"
style="background-image:url(https://images4.alphacoders.com/693/693226.jpg);background-position:center;background-attachment:fixed;font-family:lato;">
<div class="jumbotron text-center"
style="border-width:3px;border-style:solid;border-color:#black;font-family:lato;margin:0;padding-bottom:10%;background-image:url(http://oi62.tinypic.com/1z6cavq.jpg);opacity:0.8;">
<p style="padding-top:3px;font-size:15px;">Same text as below but might
be easier to read http://pastebin.com/Eps4yDrY </p>
<p style="padding-top:3px;font-size:15px;">I guess this is my final
goodbye, my au revoir and adjö to this server at least after the 31st. I
hope that I will be able to keep on talking with as many as possible
after PGM/OCN is gone and I will stay in touch with anyone that wants to
still. I'm unsure if I will stick around on Hampton or not but only time
will really tell. I guess Overcast has been a big part of my life, not
only Overcast but also the players. I have met so many great friends on
here, some people that I talk to every day and would be able to share
pretty much anything with. I'm really glad because of this. It has been a
little over 4 years since I first joined this server and in the start I
was never a part of the community and I even became inactive for 1-2
years before I came back and started interacting with others. Some of
those people went inactive but some others are still here like me. I
think that if it wasn't for me actually talking with others plus
discovering the forums I would probably be doing something else right now
and I wouldn't be writing this. I don't know what I would have been doing
if ocn wasn't here but I'm not upset about that or anything, I'm happy
that I spent time here and got the chance to meet everyone. It's true
that now on later days that I have also become more and more inactive and
have started to play less and less and if it wasn't for others I would
probably have left a while ago. You might be asking or thinking when
you're reading this if I'm sad about ocn disappearing, the truth is that
yes I'm slightly sad about it but personally I have mostly moved on
already. As stated above the only reason I'm still here is because of
others. I can't really thank everyone of my friends enough for all the
good times and moments on here. But yea now I'm probably starting to
repeat myself so I guess I should round this off, once again thank you
everyone for everything hope that we can still keep in touch and good
luck in life!</p>
<p style="padding-top:3px;font-size:15px;">I didn't really have a reason
for writing all these things on here. Some people will most likely
dislike the things said but maybe someone likes them and can reflect in
them and they might help in some way. Question it all you want, it's your
choice what to think of it.</p>
<p style="padding-top:3px;font-size:13px;">If you're alone, I'll be your
shadow. If you want to cry, I'll be your shoulder. If you want a hug,
I'll be your pillow. If you need to be happy, I'll be your smile... But
anytime you need a friend, I'll just be me. - Unknown</p>
<p style="padding-top:3px;font-size:11px;">There are wounds that never
show on the body that are deeper and more hurtful than anything that
bleeds. - Laurell K. Hamilton, Mistral's Kiss</p>
<p style="padding-top:3px;font-size:11px;">Losing your life is not the
worst thing that can happen. The worst thing is to lose your reason for
living. - Jo Nesbø</p>
<p style="padding-top:3px;font-size:11px;">The best weapon against an
enemy is another enemy. - Friedrich Nietzsche
</p>
<p style="padding-top:3px;font-size:11px;">A bullet can kill the enemy,
but a bullet can also produce an enemy, depending on whom that bullet
strikes. - Tim O'Brien</p>
<p style="padding-top:3px;font-size:11px;">Sorry</p>
<p style="padding-top:3px;font-size:11px;">When everything seems lost
what are you supposed to do? Keep going even if you don't see a reason
for it?</p>
<p style="padding-top:3px;font-size:11px;">In your final moment will you
regret anything or will you think that if some things didn't happen you
wouldn't have come so far?</p>
<p style="padding-top:3px;font-size:11px;">When you are taking your last
breath what will be your final thought? Will you think of everything that
will
disappear or will you think about what will happen after it all ends?</p>
<p style="padding-top:3px;font-size:11px;">A few people care about others
and really try their best to help them but at the same time there is
people that only care about themself. </p>
<p style="padding-top:3px;font-size:11px;">You can be scared to ask
someone something for different reasons, you might be scared of the
answer itself or how they will react to your question.</p>
<p style="padding-top:3px;font-size:11px;">Life can be a mess at
times.</p>
<p style="padding-top:3px;font-size:11px;">Some people really love
bringing up demons from the past, things that others would gladly forget.
</p>
<p style="padding-top:3px;font-size:11px;">At times you can truly feel
useless, you want to help someone but you can't. </p>
<p style="padding-top:3px;font-size:11px;">Sometimes you can feel like
you really are worthless just remember or hope that you aren't and there
is someone that cares for you still.</p>
<p style="padding-top:3px;font-size:11px;">Are my efforts useless or do
they actually have a meaning?</p>
<p style="padding-top:3px;font-size:11px;">Remember that if you are
having a bad time that's still no excuse for being an asshole towards
others.</p>
<p style="padding-top:3px;font-size:11px;">When everything is over you
can be sure that death will whisper in your ear and you will wonder if
there was something you forgot to do while you still had time.</p>
<p style="padding-top:3px;font-size:11px;">Asking someone how they are
feeling is pretty easy, the difficult thing is knowing if they are
telling the truth or not.</p>
<p style="padding-top:3px;font-size:11px;">When you see someone send a
message somewhere else and ignore you then you will truly wonder if you
are hated.</p>
<p style="padding-top:3px;font-size:11px;">Some people care about life
more than others, certain people see value in it and others don't.</p>
<p style="padding-top:3px;font-size:11px;">People are different, some
people show a lot of their feelings while others keep them locked
away.</p>
<p style="padding-top:3px;font-size:11px;">Finding good friends can be
difficult, one second they want someone to talk with and the next second
they hate you.</p>
<p style="padding-top:3px;font-size:11px;">If you are talking with
someone and even if it's a close friend be careful with what you say, you
don't want to regret it later.</p>
<p style="padding-top:3px;font-size:11px;">When you are feeling down you
will begin to wonder if anyone will notice it, but what will you say if
they do?</p>
<p style="padding-top:3px;font-size:11px;">What is the meaning of living
on and being here? Is there one? I don't know the answer to this.</p>
<p style="padding-top:3px;font-size:11px;">Will there ever come a time
when nothing will bother me or destroy everything?</p>
<p style="padding-top:3px;font-size:16px;">If it wasn't for these people
and a whole lot of others I would probably have left a while ago, I'm
happy to still be here and to have met you all.</p>
<h3 style="color:purple;">Thank you</h3>
<a href="/oc.tc/Rayfreeze"><img src="https://cravatar.eu/helmavatar/Rayfreeze/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/muvious"><img src="https://cravatar.eu/helmavatar/muvious/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/_nerual"><img src="https://cravatar.eu/helmavatar/_nerual/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/jdvh"><img src="https://cravatar.eu/helmavatar/jdvh/16.png" height="37"
width="37" class="img-rounded animate go-up"></a> | <a
href="/grandmajune"><img src="https://cravatar.eu/helmavatar/grandmajune/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/crazy_"><img src="https://cravatar.eu/helmavatar/crazy_/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/doomyboy"><img src="https://cravatar.eu/helmavatar/doomyboy/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/memyselfandghost"><img
src="https://cravatar.eu/helmavatar/memyselfandghost/16.png" height="37"
width="37" class="img-rounded animate go-up"></a> | <a
href="/ra_quel"><img src="https://cravatar.eu/helmavatar/ra_quel/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/cera"><img src="https://cravatar.eu/helmavatar/cera/16.png" height="37"
width="37" class="img-rounded animate go-up"></a> | <a
href="/stupid3700"><img src="https://cravatar.eu/helmavatar/stupid3700/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/Serendipity__"><img
src="https://cravatar.eu/helmavatar/Serendipity__/16.png" height="37" width="37"
class="img-rounded animate go-up"></a> | <a href="/oc.tc/toxickatz"><img
src="https://cravatar.eu/helmavatar/toxickatz/16.png" height="37" width="37"
class="img-rounded animate go-up"></a> | <a href="/oc.tc/abusa3"><img
src="https://cravatar.eu/helmavatar/abusa3/16.png" height="37" width="37"
class="img-rounded animate go-up"></a>
Shoutout to Witmoos64, Taxe, SharknadoSeven, iMasky and Creephunter
aswell. Thanks for being great friends.
<h3 style="color:yellow;">Chaos</h3>
<a href="/oc.tc/Kreephunter"><img
src="https://cravatar.eu/helmavatar/72194ac4ef6648cf87f39d12f6e2965b/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/Shqrk7"><img
src="https://cravatar.eu/helmavatar/f1b3c5732167405e97a775160103b7e2/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/Stinq"><img
src="https://cravatar.eu/helmavatar/95e41c9514e2479fb5e856a163935cc4/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/TwennyHuan"><img
src="https://cravatar.eu/helmavatar/d00d6a1b4aa642c8b3fd0d25c0016376/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/xLettuce"><img
src="https://cravatar.eu/helmavatar/f15e9ee6e5194f03a9a90384096c9c37/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/DroptehBask"><img
src="https://cravatar.eu/helmavatar/042c41ddb123486697df648b01ad7faf/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/FluffinAllNight"><img
src="https://cravatar.eu/helmavatar/6bc5c32291b54babacf2d36ca53f1efc/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/_Kakarot"><img
src="https://cravatar.eu/helmavatar/7d7546dc690c4e6182a01acb43accdfc/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/Everdeen_"><img
src="https://cravatar.eu/helmavatar/200752a619c647d4bb59d5ae22e76e47/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> <br>
<a href="/oc.tc/Potential_"><img
src="https://cravatar.eu/helmavatar/3b08b71d9a864ac7ae4f090a3d4c8413/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/pulbos2"><img
src="https://cravatar.eu/helmavatar/ab8a0c0ef609417c9b07ceacf2320cbe/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/pulbos"><img
src="https://cravatar.eu/helmavatar/ba6d0091b63a4b2287511432865b95a1/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/Ref"><img
src="https://cravatar.eu/helmavatar/bd133f12724a4ca9af7bf808810aa835/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/imasky"><img
src="https://cravatar.eu/helmavatar/57168032280546cba7952f7f1efb47f1/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/Magnace"><img
src="https://cravatar.eu/helmavatar/a970545c45e44745a952d4b8343f149d/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/Lucaslyoko"><img
src="https://cravatar.eu/helmavatar/8b2d7971734844389efe6d6ecf2be972/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/TheGrax"><img
src="https://cravatar.eu/helmavatar/4a23e1ad677946adb32e03a1e86406c2/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/ChelseaFCPlayzYT"><img
src="https://cravatar.eu/helmavatar/4418b05d1b2a41cca7c835e18caaae1f/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/OreMiner28"><img
src="https://cravatar.eu/helmavatar/204512986861482ea089f8e8c6a88997/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/snowmanspy"><img
src="https://cravatar.eu/helmavatar/3296bb4121504c03b43653083afa5fa8/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> <br>
<a href="/oc.tc/AD5Y"><img
src="https://cravatar.eu/helmavatar/1a53122297bc423ba91923cba4941236/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/xCand"><img
src="https://cravatar.eu/helmavatar/a37e4da31c6c4dc9b08563783406a963/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/625b72d465b740899273060bd25ff1ab"><img
src="https://cravatar.eu/helmavatar/625b72d465b740899273060bd25ff1ab/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/Jexel"><img
src="https://cravatar.eu/helmavatar/9225421c3c094d97bb80f6a77c1f360b/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/WaddlesOCN"><img
src="https://cravatar.eu/helmavatar/da44fff727f144e8b0a4849281c86dcf/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/MyChemicalKitten"><img
src="https://cravatar.eu/helmavatar/bd12f89a213740688f8bab46e248d2a7/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/pokejohn9"><img
src="https://cravatar.eu/helmavatar/afc7a1a0b41c4279a2ff06779657ab01/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/25f"><img
src="https://cravatar.eu/helmavatar/6dbcda1f948c448bac4bf28425794680/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/TheDavidMoyo"><img
src="https://cravatar.eu/helmavatar/31c006dcbf3e4e27be9f9fb09481dcb8/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/_xRanger_"><img
src="https://cravatar.eu/helmavatar/97e5aa1971da4f4699a8b6d6d33e94b9/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> <br><br> <a
href="/S1ns0"><img
src="https://cravatar.eu/helmavatar/57c4813eecc24aee94798d58991d1a0c/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/Kimple"><img
src="https://cravatar.eu/helmavatar/7a26978657514511b08294db6c3202f4/16.png"
width="37" class="img-rounded animate go-up"></a> | <a
href="/_nerual"><img
src="https://cravatar.eu/helmavatar/7b679004690d4fd0986999e0b4860fcd/16.png"
width="37" class="img-rounded animate go-up"></a> | <a
href="/muvious"><img
src="https://cravatar.eu/helmavatar/554cdba3aad043e0844dd18ead91fcd3/16.png"
width="37" class="img-rounded animate go-up"></a> | <a
href="/Mirtis03"><img
src="https://cravatar.eu/helmavatar/d099fafca8614ebab9fee9f402a3f317/16.png"
width="37" class="img-rounded animate go-up"></a>
<br>
<h3 style="color:green;">Renegades</h3>
<a href="/oc.tc/Kzzy"><img src="https://cravatar.eu/helmavatar/Kzzy/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/muvious"><img src="https://cravatar.eu/helmavatar/muvious/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/mychemicalkitten"><img
src="https://cravatar.eu/helmavatar/mychemicalkitten/16.png" height="37"
width="37" class="img-rounded animate go-up"></a> | <a
href="/CincoDeMayo"><img src="https://cravatar.eu/helmavatar/CincoDeMayo/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/_nerual"><img src="https://cravatar.eu/helmavatar/_nerual/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/grandmajune"><img src="https://cravatar.eu/helmavatar/grandmajune/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/kjudu"><img src="https://cravatar.eu/helmavatar/kjudu/16.png" height="37"
width="37" class="img-rounded animate go-up"></a> | <a href="/oc.tc/debo"><img
src="https://cravatar.eu/helmavatar/debo/16.png" height="37" width="37"
class="img-rounded animate go-up"></a> | <a href="/oc.tc/taxe"><img
src="https://cravatar.eu/helmavatar/taxe/16.png" height="37" width="37"
class="img-rounded animate go-up"></a> <br>
<a href="/oc.tc/oats"><img src="https://cravatar.eu/helmavatar/oats/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> | <a
href="/pat2424"><img src="https://cravatar.eu/helmavatar/pat2424/16.png"
height="37" width="37" class="img-rounded animate go-up"></a>
<br>
Thanks <a href="/oc.tc/Taxe"><img src="https://cravatar.eu/helmavatar/Taxe/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> for making
my skin
Thanks <a href="/oc.tc/Jexel"><img src="https://cravatar.eu/helmavatar/Jexel/16.png"
height="37" width="37" class="img-rounded animate go-up"></a> for helping
me with this profile
<a href="http://www.dragonflycave.com/newpay.aspx"><img
src="http://www.dragonflycave.com/wpay/ninetales.gif" alt="I am a
Ninetales!" title="Find out what Pokémon you are at The Cave of
Dragonflies"></a>
<a href="http://info.flagcounter.com/wwN4"><img
src="http://s03.flagcounter.com/count2/wwN4/bg_FFFFFF/txt_000000/border_CCCCCC/columns_2/maxflags_10/viewers_0/labels_0/pageviews_1/flags_0/"
alt="Flag Counter"></a>
<div style="float:right;color:black;">
<p style="padding-top:3px;font-size:5px;">Does life have a meaning?</p>
</div>
</div>
</div></pre>
</div>
</div>
</div>
<div class='tab-pane' id='trophycase'>
<div class='row'>
<div class='col-md-12'>
<ul class='thumbnails list-unstyled'>
<li class='col-md-3 col-sm-6'>
<div class='thumbnail trophy' rel='tooltip' title='Help translate the
Overcast Network'>
<div style='background: #eee; color: #444;'>
<i class='fa fa-globe'></i>
</div>
<h4>Language Savant</h4>
</div>
</li>
<li class='col-md-3 col-sm-6'>
<div class='thumbnail trophy' rel='tooltip' title='Register and confirm
email address'>
<div style='background: #eee; color: #444;'>
<i class='fa fa-edit'></i>
</div>
<h4>Sign Me Up</h4>
</div>
</li>
<li class='col-md-3 col-sm-6'>
<div class='thumbnail trophy' rel='tooltip' title='Licensed TNT handler'>
<div style='background: #eee; color: #444;'>
<i class='fa fa-bomb'></i>
</div>
<h4>Sapper</h4>
</div>
</li>
<li class='col-md-3 col-sm-6'>
<div class='thumbnail trophy' rel='tooltip' title='Referee a tournament'>
<div style='background: #eee; color: #444;'>
<i class='fa fa-flag'></i>
</div>
<h4>Ref</h4>
</div>
</li>
<li class='clearfix'></li>
<li class='col-md-3 col-sm-6'>
<div class='thumbnail trophy' rel='tooltip' title='Complete a challenge
from the Christmas Advent Calendar'>
<div style='background: #eee; color: #444;'>
<i class='fa fa-tree'></i>
</div>
<h4>Holiday Adventurer</h4>
</div>
</li>
<li class='col-md-3 col-sm-6'>
<div class='thumbnail trophy' rel='tooltip' title='Reach 10k kills'>
<div style='background: #eee; color: #444;'>
<i class='fa fa-list-ol'></i>
</div>
<h4>Oooh, kill em!</h4>
</div>
</li>
<li class='clearfix'></li>
</ul>
</div>
</div>
</div>