-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome_simple_owner.html
2809 lines (1932 loc) · 239 KB
/
home_simple_owner.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="nl" data-cast-api-enabled="true" class="no-focus-outline content-snap-width-1"><head><script src="https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en._13sbIZTQSY.O/m=gapi_iframes_style_slide_menu/exm=card,gapi_iframes/rt=j/sv=1/d=1/ed=1/rs=AHpOoo8hFRQWaDjHfsQ8yk-hJIWlcIHI0g/cb=gapi.loaded_1" async=""></script><script src="https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en._13sbIZTQSY.O/m=card,gapi_iframes/rt=j/sv=1/d=1/ed=1/rs=AHpOoo8hFRQWaDjHfsQ8yk-hJIWlcIHI0g/cb=gapi.loaded_0" async=""></script><style name="www-roboto">@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v15/ZLqKeelYbATG60EpZBSDyxJtnKITppOI_IvcXXDNrsc.woff2)format('woff2');unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v15/oHi30kwQWvpCWqAhzHcCSBJtnKITppOI_IvcXXDNrsc.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v15/rGvHdJnr2l75qb0YND9NyBJtnKITppOI_IvcXXDNrsc.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v15/mx9Uck6uB63VIKFYnEMXrRJtnKITppOI_IvcXXDNrsc.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v15/mbmhprMH69Zi6eEPBYVFhRJtnKITppOI_IvcXXDNrsc.woff2)format('woff2');unicode-range:U+0102-0103,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v15/oOeFwZNlrTefzLYmlVV1UBJtnKITppOI_IvcXXDNrsc.woff2)format('woff2');unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v15/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v15/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2)format('woff2');unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v15/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v15/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v15/u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v15/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2)format('woff2');unicode-range:U+0102-0103,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v15/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2)format('woff2');unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v15/OLffGBTaF0XFOW1gnuHF0TTOQ_MqJVwkKsUn0wKzc2I.woff2)format('woff2');unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v15/OLffGBTaF0XFOW1gnuHF0TUj_cnvWIuuBMVgbX098Mw.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v15/OLffGBTaF0XFOW1gnuHF0UbcKLIaa1LC45dFaAfauRA.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v15/OLffGBTaF0XFOW1gnuHF0Wo_sUJ8uO4YLWRInS22T3Y.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v15/OLffGBTaF0XFOW1gnuHF0b6up8jxqWt8HVA3mDhkV_0.woff2)format('woff2');unicode-range:U+0102-0103,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v15/OLffGBTaF0XFOW1gnuHF0SYE0-AqJ3nfInTTiDXDjU4.woff2)format('woff2');unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v15/OLffGBTaF0XFOW1gnuHF0Y4P5ICox8Kq3LLUNMylGO4.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v15/WxrXJa0C3KdtC7lMafG4dRTbgVql8nDJpwnrE27mub0.woff2)format('woff2');unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v15/OpXUqTo0UgQQhGj_SFdLWBTbgVql8nDJpwnrE27mub0.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v15/1hZf02POANh32k2VkgEoUBTbgVql8nDJpwnrE27mub0.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v15/cDKhRaXnQTOVbaoxwdOr9xTbgVql8nDJpwnrE27mub0.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v15/K23cxWVTrIFD6DJsEVi07RTbgVql8nDJpwnrE27mub0.woff2)format('woff2');unicode-range:U+0102-0103,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v15/vSzulfKSK0LLjjfeaxcREhTbgVql8nDJpwnrE27mub0.woff2)format('woff2');unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v15/vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215;}</style><script name="www-roboto">if (document.fonts && document.fonts.load) {document.fonts.load("400 10pt Roboto", "N");document.fonts.load("500 10pt Roboto", "N");}</script><script>var ytcsi = {gt: function(n) {n = (n || '') + 'data_';return ytcsi[n] || (ytcsi[n] = {tick: {},info: {}});},now: window.performance && window.performance.timing &&window.performance.now ? function() {return window.performance.timing.navigationStart + window.performance.now();} : function() {return (new Date()).getTime();},tick: function(l, t, n) {ticks = ytcsi.gt(n).tick;var v = t || ytcsi.now();if (ticks[l]) {ticks['_' + l] = (ticks['_' + l] || [ticks[l]]);ticks['_' + l].push(v);}ticks[l] = v;},info: function(k, v, n) {ytcsi.gt(n).info[k] = v;},setStart: function(s, t, n) {ytcsi.info('yt_sts', s, n);ytcsi.tick('_start', t, n);}};(function(w, d) {ytcsi.setStart('dhs', w.performance ? w.performance.timing.responseStart : null);var isPrerender = (d.visibilityState || d.webkitVisibilityState) == 'prerender';var vName = d.webkitVisibilityState ? 'webkitvisibilitychange' : 'visibilitychange';if (isPrerender) {ytcsi.info('prerender', 1);var startTick = function() {ytcsi.setStart('dhs');d.removeEventListener(vName, startTick);};d.addEventListener(vName, startTick, false);}if (d.addEventListener) {d.addEventListener(vName, function() {ytcsi.tick('vc');}, false);}w.__ytRIL = function(el) {if (!el.getAttribute('data-thumb')) {el.loadTime = ytcsi.now();}};})(window, document);</script><script>var ytcfg = {d: function() {return (window.yt && yt.config_) || ytcfg.data_ || (ytcfg.data_ = {});},get: function(k, o) {return (k in ytcfg.d()) ? ytcfg.d()[k] : o;},set: function() {var a = arguments;if (a.length > 1) {ytcfg.d()[a[0]] = a[1];} else {for (var k in a[0]) {ytcfg.d()[k] = a[0][k];}}}};</script>
<script>
(function(){var b={a:"content-snap-width-1",b:"content-snap-width-2",c:"content-snap-width-3"};function g(){var a=[],c;for(c in b)a.push(b[c]);return a}
function h(a){var c=g().concat(["guide-pinned","show-guide"]),e=c.length,f=[];a.replace(/\S+/g,function(a){for(var d=0;d<e;d++)if(a==c[d])return;f.push(a)});
return f}
;function k(a,c,e){var f=document.getElementsByTagName("html")[0],d=h(f.className);a&&1251<=(window.innerWidth||document.documentElement.clientWidth)&&(d.push("guide-pinned"),c&&d.push("show-guide"));e&&(e=(window.innerWidth||document.documentElement.clientWidth)-21-50,1251<=(window.innerWidth||document.documentElement.clientWidth)&&a&&c&&(e-=230),d.push(1262<=e?"content-snap-width-3":1056<=e?"content-snap-width-2":"content-snap-width-1"));f.className=d.join(" ")}
var l=["yt","www","masthead","sizing","runBeforeBodyIsReady"],m=this;l[0]in m||!m.execScript||m.execScript("var "+l[0]);for(var n;l.length&&(n=l.shift());)l.length||void 0===k?m[n]?m=m[n]:m=m[n]={}:m[n]=k;}).call(this);
try {window.ytbuffer = {};ytbuffer.handleClick = function(e) {var element = e.target || e.srcElement;while (element.parentElement) {if (/(^| )yt-can-buffer( |$)/.test(element.className)) {window.ytbuffer = {bufferedClick: e};element.className += ' yt-is-buffered';break;}element = element.parentElement;}};if (document.addEventListener) {document.addEventListener('click', ytbuffer.handleClick);} else {document.attachEvent('onclick', ytbuffer.handleClick);}} catch(e) {}
yt.www.masthead.sizing.runBeforeBodyIsReady(true,true,true);
</script>
<script src="//s.ytimg.com/yts/jsbin/scheduler-vflBPa8U6/scheduler.js" type="text/javascript" name="scheduler/scheduler" class="js-httpssytimgcomytsjsbinschedulervflBPa8U6schedulerjs"></script>
<link rel="stylesheet" href="//s.ytimg.com/yts/cssbin/www-core-webp-vfltIRQz4.css" name="www-core" class="css-httpssytimgcomytscssbinwwwcorewebpvfltIRQz4css">
<link rel="stylesheet" href="//s.ytimg.com/yts/cssbin/www-pageframe-webp-vflmls5SJ.css" name="www-pageframe" class="css-httpssytimgcomytscssbinwwwpageframewebpvflmls5SJcss">
<link rel="stylesheet" href="//s.ytimg.com/yts/cssbin/www-guide-webp-vflHZZfGQ.css" name="www-guide" class="css-httpssytimgcomytscssbinwwwguidewebpvflHZZfGQcss">
<title> Eggie Gaming
- YouTube</title><link rel="canonical" href="https://www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg"><link rel="alternate" media="handheld" href="https://m.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg"><link rel="alternate" media="only screen and (max-width: 640px)" href="https://m.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg"> <meta name="title" content="Eggie Gaming">
<meta name="description" content="">
<meta name="keywords" content="video, delen, cameratelefoon, videotelefoon, vrij, uploaden">
<link rel="manifest" href="/manifest.json"><link rel="search" type="application/opensearchdescription+xml" href="https://www.youtube.com/opensearch?locale=nl_NL" title="Video's zoeken op YouTube"><link rel="shortcut icon" href="https://s.ytimg.com/yts/img/favicon-vflz7uhzw.ico" type="image/x-icon"> <link rel="icon" href="//s.ytimg.com/yts/img/favicon_32-vfl8NGn4k.png" sizes="32x32"><link rel="icon" href="//s.ytimg.com/yts/img/favicon_48-vfl1s0rGh.png" sizes="48x48"><link rel="icon" href="//s.ytimg.com/yts/img/favicon_96-vfldSA3ca.png" sizes="96x96"><link rel="icon" href="//s.ytimg.com/yts/img/favicon_144-vflWmzoXw.png" sizes="144x144"><meta name="theme-color" content="#e62117"> <link rel="image_src" href="https://yt3.ggpht.com/-OcVn-PTXptI/AAAAAAAAAAI/AAAAAAAAAAA/doswjfDIW74/s900-c-k-no-mo-rj-c0xffffff/photo.jpg">
<meta property="og:site_name" content="YouTube">
<meta property="og:url" content="https://www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg">
<meta property="og:title" content="Eggie Gaming">
<meta property="og:image" content="https://yt3.ggpht.com/-OcVn-PTXptI/AAAAAAAAAAI/AAAAAAAAAAA/doswjfDIW74/s900-c-k-no-mo-rj-c0xffffff/photo.jpg">
<meta property="og:description" content=" ">
<meta property="al:ios:app_store_id" content="544007664">
<meta property="al:ios:app_name" content="YouTube">
<meta property="al:ios:url" content="vnd.youtube://user/UCkxjzAPPcxxiLZCRhtWhMwg">
<meta property="al:android:url" content="https://www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg?feature=applinks">
<meta property="al:android:app_name" content="YouTube">
<meta property="al:android:package" content="com.google.android.youtube">
<meta property="al:web:url" content="https://www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg?feature=applinks">
<meta property="og:type" content="profile">
<meta property="fb:app_id" content="87741124305">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@youtube">
<meta name="twitter:url" content="https://www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg">
<meta name="twitter:title" content="Eggie Gaming">
<meta name="twitter:description" content=" ">
<meta name="twitter:image" content="https://yt3.ggpht.com/-OcVn-PTXptI/AAAAAAAAAAI/AAAAAAAAAAA/doswjfDIW74/s900-c-k-no-mo-rj-c0xffffff/photo.jpg">
<meta name="twitter:app:name:iphone" content="YouTube">
<meta name="twitter:app:id:iphone" content="544007664">
<meta name="twitter:app:name:ipad" content="YouTube">
<meta name="twitter:app:id:ipad" content="544007664">
<meta name="twitter:app:url:iphone" content="vnd.youtube://user/UCkxjzAPPcxxiLZCRhtWhMwg">
<meta name="twitter:app:url:ipad" content="vnd.youtube://user/UCkxjzAPPcxxiLZCRhtWhMwg">
<meta name="twitter:app:name:googleplay" content="YouTube">
<meta name="twitter:app:id:googleplay" content="com.google.android.youtube">
<meta name="twitter:app:url:googleplay" content="https://www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg">
<link itemprop="url" href="https://www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg">
<meta itemprop="name" content="Eggie Gaming">
<meta itemprop="description" content=" ">
<meta itemprop="paid" content="False">
<meta itemprop="channelId" content="UCkxjzAPPcxxiLZCRhtWhMwg">
<style>@font-face{font-family:uc-nexus-iconfont;src:url(chrome-extension://pogijhnlcfmcppgimcaccdkmbedjkmhi/res/font_9qmmi8b8jsxxbt9.woff) format('woff'),url(chrome-extension://pogijhnlcfmcppgimcaccdkmbedjkmhi/res/font_9qmmi8b8jsxxbt9.ttf) format('truetype')}</style><link class="css-httpssytimgcomytscssbinwwwplayerwebpvfl807JXvcss" rel="stylesheet" href="https://s.ytimg.com/yts/cssbin/www-player-webp-vfl807JXv.css" name="www-player"><script src="chrome-extension://pkedcjkdefgpdelpbcmbmeomcjbeemfm/cast_sender.js"></script><script src="chrome-extension://fjhoaacokmgbjemoflkofnenfaiekifl/cast_sender.js"></script><link class="css-httpssytimgcomytscssbinwwwpageframedelayloadedwebpvflpt1Xhcss" rel="stylesheet" href="https://s.ytimg.com/yts/cssbin/www-pageframedelayloaded-webp-vfl-pt1Xh.css" name="www-pageframedelayloaded"></head><body dir="ltr" id="body" class="ltr webkit webkit-537 exp-responsive exp-scrollable-guide exp-search-big-thumbs exp-search-big-thumbs246 exp-search-font-18 exp-wn-big-thumbs exp-wn-big-thumbs-v3 exp-wn-font-14 site-center-aligned site-as-giant-card guide-pinning-enabled appbar-hidden not-nirvana-dogfood not-yt-legacy-css flex-width-enabled flex-width-enabled-snap yt-user-logged-in page-loaded" data-spf-name="other"><span itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<link itemprop="url" href="https://www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg">
</span>
<span itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<link itemprop="url" href="https://plus.google.com/105288352414853513644">
</span>
<link itemprop="thumbnailUrl" href="https://yt3.ggpht.com/-OcVn-PTXptI/AAAAAAAAAAI/AAAAAAAAAAA/doswjfDIW74/s900-c-k-no-mo-rj-c0xffffff/photo.jpg">
<span itemprop="thumbnail" itemscope="" itemtype="http://schema.org/ImageObject">
<link itemprop="url" href="https://yt3.ggpht.com/-OcVn-PTXptI/AAAAAAAAAAI/AAAAAAAAAAA/doswjfDIW74/s900-c-k-no-mo-rj-c0xffffff/photo.jpg">
<meta itemprop="width" content="900">
<meta itemprop="height" content="900">
</span>
<meta itemprop="isFamilyFriendly" content="True">
<meta itemprop="regionsAllowed" content="AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GS,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TK,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW">
<div id="watch-container" itemid="" itemscope="" itemtype="http://schema.org/YoutubeChannelV2">
<link itemprop="url" href="https://www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg">
<meta itemprop="name" content="Eggie Gaming">
<meta itemprop="description" content=" ">
<meta itemprop="paid" content="False">
<meta itemprop="channelId" content="UCkxjzAPPcxxiLZCRhtWhMwg">
<span itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<link itemprop="url" href="https://www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg">
</span>
<span itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<link itemprop="url" href="https://plus.google.com/105288352414853513644">
</span>
<link itemprop="thumbnailUrl" href="https://yt3.ggpht.com/-OcVn-PTXptI/AAAAAAAAAAI/AAAAAAAAAAA/doswjfDIW74/s900-c-k-no-mo-rj-c0xffffff/photo.jpg">
<span itemprop="thumbnail" itemscope="" itemtype="http://schema.org/ImageObject">
<link itemprop="url" href="https://yt3.ggpht.com/-OcVn-PTXptI/AAAAAAAAAAI/AAAAAAAAAAA/doswjfDIW74/s900-c-k-no-mo-rj-c0xffffff/photo.jpg">
<meta itemprop="width" content="900">
<meta itemprop="height" content="900">
</span>
<meta itemprop="isFamilyFriendly" content="True">
<meta itemprop="regionsAllowed" content="AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET,FI,FJ,FK,FM,FO,FR,GA,GB,GD,GE,GF,GG,GH,GI,GL,GM,GN,GP,GQ,GR,GS,GT,GU,GW,GY,HK,HM,HN,HR,HT,HU,ID,IE,IL,IM,IN,IO,IQ,IR,IS,IT,JE,JM,JO,JP,KE,KG,KH,KI,KM,KN,KP,KR,KW,KY,KZ,LA,LB,LC,LI,LK,LR,LS,LT,LU,LV,LY,MA,MC,MD,ME,MF,MG,MH,MK,ML,MM,MN,MO,MP,MQ,MR,MS,MT,MU,MV,MW,MX,MY,MZ,NA,NC,NE,NF,NG,NI,NL,NO,NP,NR,NU,NZ,OM,PA,PE,PF,PG,PH,PK,PL,PM,PN,PR,PS,PT,PW,PY,QA,RE,RO,RS,RU,RW,SA,SB,SC,SD,SE,SG,SH,SI,SJ,SK,SL,SM,SN,SO,SR,SS,ST,SV,SX,SY,SZ,TC,TD,TF,TG,TH,TJ,TK,TL,TM,TN,TO,TR,TT,TV,TW,TZ,UA,UG,UM,US,UY,UZ,VA,VC,VE,VG,VI,VN,VU,WF,WS,YE,YT,ZA,ZM,ZW">
</div>
<link rel="alternate" href="android-app://com.google.android.youtube/http/www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg">
<link rel="alternate" href="ios-app://544007664/vnd.youtube/www.youtube.com/channel/UCkxjzAPPcxxiLZCRhtWhMwg">
<link rel="stylesheet" href="//s.ytimg.com/yts/cssbin/www-home-c4-webp-vflIXOtKa.css" name="www-home-c4" class="css-httpssytimgcomytscssbinwwwhomec4webpvflIXOtKacss">
<link rel="stylesheet" href="//s.ytimg.com/yts/cssbin/www-channels4edit-webp-vflxhswzx.css" name="www-channels4edit" class="css-httpssytimgcomytscssbinwwwchannels4editwebpvflxhswzxcss">
<link rel="stylesheet" href="//s.ytimg.com/yts/cssbin/www-onepick-webp-vflsYL2Tr.css" name="www-onepick" class="css-httpssytimgcomytscssbinwwwonepickwebpvflsYL2Trcss">
<style>.yt-uix-button-primary, .yt-uix-button-primary[disabled], .yt-uix-button-primary[disabled]:hover, .yt-uix-button-primary[disabled]:active, .yt-uix-button-primary[disabled]:focus { background-color: #167ac6; }</style>
<div id="early-body"></div>
<div id="body-container"><div id="a11y-announcements-container" role="alert"><div id="a11y-announcements-message"></div></div><form name="logoutForm" method="POST" action="/logout"><input type="hidden" name="action_logout" value="1"><input name="session_token" type="hidden" value="QUFFLUhqa1BXZ3hlNGRSOThXQ01kRG82WG9NV21VUGNIQXxBQ3Jtc0trdjR2RVRmZGdSVWJwbWk0UmF4V1A0VU9JcjM3UUI5OE9rQXhSWlFmRDlzU3I0Z2diQUc5cUZLd0tFX25md2ljcEU4WmpqbXh1b0JyZ1dta2tYLS1DYU1iMDRxVV9fT3B0d1dyNUxHZENkUGNRTkc5akF3a3pFU0ZRdDBMYXhHeXVNaWxDR1RVMHlMOHpValpvTlkyQ1dsVk9iZUE="></form><div id="masthead-positioner"> <div id="ticker-content">
</div>
<div id="yt-masthead-container" class="clearfix yt-base-gutter"> <button id="a11y-skip-nav" class="skip-nav" data-target-id="content" tabindex="3">
Navigatie overslaan
</button>
<div id="yt-masthead"><div class="yt-masthead-logo-container "> <button class="yt-uix-button yt-uix-button-size-default yt-uix-button-text yt-uix-button-empty yt-uix-button-has-icon appbar-guide-toggle appbar-guide-clickable-ancestor" type="button" onclick=";return false;" id="appbar-guide-button" aria-controls="appbar-guide-menu" aria-label="Gids" aria-expanded="false"><span class="yt-uix-button-icon-wrapper"><span class="yt-uix-button-icon yt-uix-button-icon-appbar-guide yt-sprite"></span></span></button>
<div id="appbar-main-guide-notification-container"></div>
<span id="yt-masthead-logo-fragment"><a href="/" class="masthead-logo-renderer yt-uix-sessionlink spf-link " data-sessionlink="itct=CAUQsV4iEwjwpJuJw9PRAhVGlFUKHTnNDfEomxw" id="logo-container" title="YouTube-homepage"> <span title="YouTube-homepage" class="logo masthead-logo-renderer-logo yt-sprite"></span>
<span class="content-region">BE</span></a></span></div><div id="yt-masthead-user" class="yt-uix-clickcard"><a href="//www.youtube.com/upload" class="yt-uix-button yt-uix-sessionlink yt-uix-button-opacity yt-uix-button-size-default yt-uix-button-has-icon yt-uix-tooltip yt-uix-button-empty" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=mhsb" id="upload-btn" data-upsell="upload" title="Uploaden"><span class="yt-uix-button-icon-wrapper"><span class="yt-uix-button-icon yt-uix-button-icon-material-upload yt-sprite"></span></span></a>
<span id="yt-masthead-notifications" class="yt-uix-clickcard" data-card-action="yt.www.masthead.handleNotificationsClick" data-card-class="yt-scrollbar"><button class="yt-uix-button yt-uix-button-size-default yt-uix-button-default yt-uix-button-has-icon yt-uix-clickcard-target sb-notif-off" type="button" onclick=";return false;" id="yt-masthead-notifications-button" aria-haspopup="true" aria-label="0 ongelezen meldingen." data-force-position="true" data-orientation="vertical" data-position-fixed="true" data-position="bottomleft" title="0 ongelezen meldingen."><span class="yt-uix-button-icon-wrapper"><span class="yt-uix-button-icon yt-uix-button-icon-bell yt-sprite"></span></span><span class="yt-uix-button-content">0</span></button><div id="yt-masthead-notifications-clickcard" class="yt-uix-clickcard-content"><div id="yt-masthead-notifications-header"><span id="yt-masthead-notifications-title" role="heading">Meldingen</span><a href="/account_notifications" class="yt-uix-button yt-uix-sessionlink yt-uix-button-opacity yt-uix-button-size-default yt-uix-button-has-icon yt-uix-button-empty" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw" id="yt-masthead-notifications-settings" aria-label="Instellingen"><span class="yt-uix-button-icon-wrapper"><span class="yt-uix-button-icon yt-uix-button-icon-icon-account-settings yt-sprite"></span></span></a></div><div id="yt-masthead-notifications-content" class="yt-uix-scroller"></div></div></span>
<span id="yt-masthead-account-picker" class="yt-uix-clickcard" data-card-action="yt.www.masthead.handleAccountPickerClick" data-card-class="yt-masthead-account-picker-card yt-masthead-multilogin">
<button class="yt-uix-button yt-uix-button-size-default yt-masthead-user-icon yt-uix-clickcard-target" type="button" onclick=";return false;" aria-haspopup="true" aria-label="Profielfoto van je account waarmee een lijst met overige accounts kan worden geopend" data-force-position="true" data-orientation="vertical" data-position-fixed="true" data-position="bottomleft"><span class="yt-uix-button-content"> <span class="video-thumb yt-thumb yt-thumb-27">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="27" height="27" data-ytimg="1" src="https://yt3.ggpht.com/-OcVn-PTXptI/AAAAAAAAAAI/AAAAAAAAAAA/doswjfDIW74/s88-c-k-no-mo-rj-c0xffffff/photo.jpg" onload=";__ytRIL(this)">
<span class="vertical-align"></span>
</span>
</span>
</span>
</span></button>
<div class="yt-masthead-account-picker yt-uix-clickcard-content">
<a class="yt-masthead-picker-header yt-masthead-picker-active-account" href="https://www.google.nl/settings/u/0/personalinfo">
jaspereggie@gmail.com
</a>
<div id="yt-unlimited-member"></div>
<div class="yt-masthead-picker-body">
<a class="yt-masthead-picker-photo-wrapper" href="https://aboutme.google.com/u/0#profile_photo"> <span class="video-thumb yt-thumb yt-thumb-64">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="64" height="64" data-ytimg="1" src="https://yt3.ggpht.com/-OcVn-PTXptI/AAAAAAAAAAI/AAAAAAAAAAA/doswjfDIW74/s88-c-k-no-mo-rj-c0xffffff/photo.jpg" onload=";__ytRIL(this)">
<span class="vertical-align"></span>
</span>
</span>
</span>
<span class="yt-masthead-picker-photo-change">Wijzigen</span></a><div class="yt-masthead-picker-info"><div class="yt-masthead-picker-name" dir="ltr">Eggie Gaming</div><div class="yt-masthead-picker-account-subtitle" id="yt-subscriber-count">​</div><a href="/dashboard?o=U" class="yt-uix-button yt-masthead-picker-button yt-masthead-picker-button-primary yt-uix-sessionlink yt-uix-button-default yt-uix-button-size-default" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw"><span class="yt-uix-button-content">Creator Studio</span></a><a href="/account" class="yt-uix-button yt-masthead-picker-button yt-masthead-picker-settings-button yt-uix-tooltip yt-uix-sessionlink yt-uix-button-default yt-uix-button-size-default yt-uix-button-has-icon yt-uix-tooltip yt-uix-button-empty" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw" title="YouTube-instellingen"><span class="yt-uix-button-icon-wrapper"><span class="yt-uix-button-icon yt-uix-button-icon-icon-account-settings yt-sprite"></span></span></a></div>
</div>
<div id="yt-masthead-multilogin" class="yt-masthead-multilogin-users">
<div id="yt-delegate-accounts"></div>
<div class="yt-masthead-multilogin-users-header">Andere accounts</div>
<a class="yt-masthead-account-picker-option yt-masthead-account-picker-user-option" href="/signin?next=%2Fchannel%2FUCkxjzAPPcxxiLZCRhtWhMwg&feature=masthead_switcher&authuser=1&action_handle_signin=true&skip_identity_prompt=False">
<span class="video-thumb yt-masthead-picker-photo-wrapper yt-thumb yt-thumb-36">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="marijke denie" width="36" height="36" data-ytimg="1" src="https://yt3.ggpht.com/-iymSmNw2Dg0/AAAAAAAAAAI/AAAAAAAAAAA/X1SpMdmYoFk/s88-c-k-no-mo-rj-c0xffffff/photo.jpg" onload=";__ytRIL(this)">
<span class="vertical-align"></span>
</span>
</span>
</span>
<div class="yt-masthead-picker-info">
<div class="yt-masthead-picker-name" dir="ltr">marijke denie</div>
<div class="yt-masthead-picker-account-subtitle">
stsejaloma@gmail.com
</div>
</div>
</a>
</div>
<div id="yt-channel-switcher-link" class="clearfix"></div>
<div class="yt-masthead-picker-footer clearfix">
<a href="https://accounts.google.com/AddSession?hl=en&service=youtube&uilel=0&continue=http%3A%2F%2Fwww.youtube.com%2Fsignin%3Fhl%3Den%26next%3D%252Fchannel%252FUCkxjzAPPcxxiLZCRhtWhMwg%26app%3Ddesktop%26action_handle_signin%3Dtrue&passive=false" class="yt-uix-button yt-masthead-picker-button yt-uix-sessionlink yt-uix-button-default yt-uix-button-size-default" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw"><span class="yt-uix-button-content">Account toevoegen</span></a>
<a href="/logout" class="yt-uix-button yt-masthead-picker-button yt-uix-sessionlink yt-uix-button-default yt-uix-button-size-default" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw"><span class="yt-uix-button-content">Uitloggen</span></a>
</div>
</div>
</span>
</div><div id="yt-masthead-content"><form id="masthead-search" class=" search-form consolidated-form vve-check" action="/results" onsubmit="if (document.getElementById('masthead-search-term').value == '') return false;" data-clicktracking="CAIQ7VAiEwjwpJuJw9PRAhVGlFUKHTnNDfEomxw" data-visibility-tracking="CAIQ7VAiEwjwpJuJw9PRAhVGlFUKHTnNDfEomxw"><button class="yt-uix-button yt-uix-button-size-default yt-uix-button-default search-btn-component search-button" type="submit" onclick="if (document.getElementById('masthead-search-term').value == '') return false; document.getElementById('masthead-search').submit(); return false;;return true;" dir="ltr" tabindex="2" id="search-btn"><span class="yt-uix-button-content">Zoeken</span></button><div id="masthead-search-terms" class="masthead-search-terms-border" dir="ltr"><input id="masthead-search-term" autocomplete="off" onkeydown="if (!this.value && (event.keyCode == 40 || event.keyCode == 32 || event.keyCode == 34)) {this.onkeydown = null; this.blur();}" class="search-term masthead-search-renderer-input yt-uix-form-input-bidi" name="search_query" value="" type="text" tabindex="1" placeholder="Zoeken" title="Zoeken" aria-label="Zoeken"></div></form></div></div></div>
<div id="masthead-appbar-container" class="clearfix"><div id="masthead-appbar"><div id="appbar-content" class=""></div></div></div>
</div><div id="masthead-positioner-height-offset"></div><div id="page-container"><div id="page" class=" not-fixed-width-tab-widescreen clearfix"><div id="guide" class="yt-scrollbar"> <div id="appbar-guide-menu" class="appbar-menu appbar-guide-menu-layout appbar-guide-clickable-ancestor yt-uix-scroller yt-uix-tdl" role="navigation" style="max-height: 553px; top: 0px;">
<div id="guide-container">
<div class="guide-module-content yt-scrollbar">
<ul class="guide-toplevel">
<li class="guide-section vve-check" data-visibility-tracking="">
<div class="guide-item-container personal-item">
<ul class="guide-user-links yt-uix-tdl yt-box" role="menu">
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="what_to_watch-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/" title="Home" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-personal&ved=CGoQtSwYACITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="what_to_watch" data-serialized-endpoint="0qDduQEREg9GRXdoYXRfdG9fd2F0Y2g%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-what-to-watch-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Home
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="UCkxjzAPPcxxiLZCRhtWhMwg-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/channel/UCkxjzAPPcxxiLZCRhtWhMwg" title="Mijn kanaal" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-personal&ved=CGsQtSwYASITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="UCkxjzAPPcxxiLZCRhtWhMwg" data-serialized-endpoint="0qDduQEaEhhVQ2t4anpBUFBjeHhpTFpDUmh0V2hNd2c%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-my-channel-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Mijn kanaal
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="trending-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/feed/trending" title="Trending" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-trending&ved=CGwQtSwYAiITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="trending" data-serialized-endpoint="0qDduQEMEgpGRXRyZW5kaW5n" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-trending-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Trending
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="subscriptions-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/feed/subscriptions" title="Abonnementen" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-personal&ved=CG0QtSwYAyITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="subscriptions" data-serialized-endpoint="0qDduQEREg9GRXN1YnNjcmlwdGlvbnM%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-my-subscriptions-icon yt-sprite"></span>
<span class="display-name ">
<span>
Abonnementen
</span>
</span>
</span>
<span class="guide-count yt-uix-tooltip yt-valign">
<span class="yt-valign-container guide-count-value">29</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="history-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/feed/history" title="Geschiedenis" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-personal&ved=CG4QtSwYBCITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="history" data-serialized-endpoint="0qDduQELEglGRWhpc3Rvcnk%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-history-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Geschiedenis
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="VLWL-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/playlist?list=WL" title="Later bekijken" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-personal&ved=CG8QtSwYBSITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="VLWL" data-serialized-endpoint="0qDduQEGEgRWTFdM" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-watch-later-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Later bekijken
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="purchases-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-nolink " href="/purchases" title="Aankopen" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-personal&ved=CHAQtSwYBiITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="purchases" data-serialized-endpoint="-vrfvAECCAE%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-purchases-icon yt-sprite"></span>
<span class="display-name ">
<span>
Aankopen
</span>
</span>
</span>
<span class="guide-count yt-uix-tooltip yt-valign">
<span class="yt-valign-container guide-count-value">1</span>
</span>
</a>
</li>
</ul>
</div>
<hr class="guide-section-separator">
</li>
<li class="guide-section vve-check" data-visibility-tracking="">
<div class="guide-item-container personal-item">
<h3>
<a href="/channel/UCkxjzAPPcxxiLZCRhtWhMwg/playlists" class="g-hovercard yt-uix-sessionlink spf-link " data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-personal" data-ytid="UCkxjzAPPcxxiLZCRhtWhMwg" data-name="g-personal">Afspeellijsten</a>
</h3>
<ul class="guide-user-links yt-uix-tdl yt-box" role="menu">
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="VLLLkxjzAPPcxxiLZCRhtWhMwg-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/playlist?list=LLkxjzAPPcxxiLZCRhtWhMwg" title="Video's die ik leuk vind" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-playlists&ved=CHIQtSwYACITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="VLLLkxjzAPPcxxiLZCRhtWhMwg" data-serialized-endpoint="0qDduQEcEhpWTExMa3hqekFQUGN4eGlMWkNSaHRXaE13Zw%3D%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-likes-playlist-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Video's die ik leuk vind
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="VLPLj71-NLwRxJuDLuuY9NnaK7F5jQS4EWoO-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/playlist?list=PLj71-NLwRxJuDLuuY9NnaK7F5jQS4EWoO" title="PKGO" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-playlists&ved=CHMQtSwYASITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="VLPLj71-NLwRxJuDLuuY9NnaK7F5jQS4EWoO" data-serialized-endpoint="0qDduQEmEiRWTFBMajcxLU5Md1J4SnVETHV1WTlObmFLN0Y1alFTNEVXb08%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-playlists-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
PKGO
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="VLPLj71-NLwRxJtubb8VY-ATJt66CMJkDqdy-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/playlist?list=PLj71-NLwRxJtubb8VY-ATJt66CMJkDqdy" title="Pewdiepie" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-playlists&ved=CHQQtSwYAiITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="VLPLj71-NLwRxJtubb8VY-ATJt66CMJkDqdy" data-serialized-endpoint="0qDduQEmEiRWTFBMajcxLU5Md1J4SnR1YmI4VlktQVRKdDY2Q01Ka0RxZHk%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-playlists-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Pewdiepie
</span>
</span>
</span>
</a>
</li>
<div class="guide-collapsible-item yt-uix-expander yt-uix-expander-collapsed">
<div class="yt-uix-expander-body">
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/playlist?list=PLj71-NLwRxJsGGNuLHlX8Z1svQ6ixQqjz" title="lol" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-playlists&ved=CHYQtSwYACITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="" data-serialized-endpoint="0qDduQEmEiRWTFBMajcxLU5Md1J4SnNHR051TEhsWDhaMXN2UTZpeFFxano%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-playlists-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
lol
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/playlist?list=PLj71-NLwRxJtbkPL_iDIvPWQR5K-SK6wZ" title="Guns" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-playlists&ved=CHcQtSwYASITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="" data-serialized-endpoint="0qDduQEmEiRWTFBMajcxLU5Md1J4SnRia1BMX2lESXZQV1FSNUstU0s2d1o%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-playlists-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Guns
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/playlist?list=PLj71-NLwRxJsWAk4d1FgArp8QhBNVfSD1" title="Five Nights At Freddy's Songs" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-playlists&ved=CHgQtSwYAiITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="" data-serialized-endpoint="0qDduQEmEiRWTFBMajcxLU5Md1J4SnNXQWs0ZDFGZ0FycDhRaEJOVmZTRDE%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-playlists-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Five Nights At Freddy's Songs
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/playlist?list=FLkxjzAPPcxxiLZCRhtWhMwg" title="Favorites" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-playlists&ved=CHkQtSwYAyITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="" data-serialized-endpoint="0qDduQEcEhpWTEZMa3hqekFQUGN4eGlMWkNSaHRXaE13Zw%3D%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-playlists-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Favorites
</span>
</span>
</span>
</a>
</li>
<button class="yt-uix-expander-head guide-view-more yt-valign" data-visibility-tracking="">
<span class="yt-valign-container">
Minder weergeven
</span>
</button>
</div>
<div class="yt-uix-expander-collapsed-body">
<button class="yt-uix-expander-head guide-view-more yt-valign" data-visibility-tracking="">
<span class="yt-valign-container">
Meer weergeven
</span>
</button>
</div>
</div>
</ul>
</div>
<hr class="guide-section-separator">
</li>
<li id="guide-subscriptions-section" class="guide-section hover-action-menu-trigger vve-check" data-visibility-tracking="">
<span class="guide-sort-container yt-uix-button-group"><button type="button" class="guide-sort-button flip yt-uix-button yt-uix-button-hover-action-menu yt-uix-button-size-small yt-uix-button-has-icon yt-uix-button-empty" onclick=";return false;" aria-haspopup="true" aria-expanded="false" aria-label="Sorteermodus voor abonnementen" data-guide-sort="0" data-button-has-sibling-menu="true"><span class="yt-uix-button-icon-wrapper"><span class="yt-uix-button-icon yt-uix-button-icon-hover-action-menu yt-sprite"></span></span><span class="yt-uix-button-arrow yt-sprite"></span><ul class=" yt-uix-button-menu yt-uix-button-menu-hover-action-menu hid" role="menu" aria-haspopup="true"><li role="menuitem"><span class="yt-uix-button-icon-wrapper yt-uix-button-icon-checkbox"><span class="yt-uix-button-icon-dropdown-checked yt-sprite"></span></span><span onclick=";return false;" checked="True" class="guide-sort-choice yt-uix-button-menu-item" data-guide-sort="0">Meest relevant</span></li><li role="menuitem"><span onclick=";return false;" checked="False" class="guide-sort-choice yt-uix-button-menu-item" data-guide-sort="1">Nieuwe activiteit</span></li><li role="menuitem"><span onclick=";return false;" checked="False" class="guide-sort-choice yt-uix-button-menu-item" data-guide-sort="2">A-Z</span></li></ul></button></span>
<h3>
<a href="/subscription_manager" class=" yt-uix-sessionlink " data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-channel">Abonnementen</a>
</h3>
<div id="guide-subs-footer-container">
<div id="guide-subscriptions-container">
<div class="guide-channels-content yt-scrollbar">
<ul id="guide-channels" class="guide-channels-list guide-item-container parent-list guide-infinite-list yt-uix-scroller filter-has-matches yt-uix-tdl" role="menu">
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="UC-lHJZR3Gqxm24_Vd_AJ5Yw-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/channel/UC-lHJZR3Gqxm24_Vd_AJ5Yw" title="PewDiePie" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-channel&ved=CH0QtSwYACITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="UC-lHJZR3Gqxm24_Vd_AJ5Yw" data-serialized-endpoint="0qDduQEaEhhVQy1sSEpaUjNHcXhtMjRfVmRfQUo1WXc%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb"> <span class="video-thumb yt-thumb yt-thumb-20">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="20" height="20" data-ytimg="1" onload=";__ytRIL(this)" src="https://yt3.ggpht.com/-rJq9gk1QIis/AAAAAAAAAAI/AAAAAAAAAAA/Kx4wkvKOfxY/s88-c-k-no-mo-rj-c0xffffff/photo.jpg">
<span class="vertical-align"></span>
</span>
</span>
</span>
</span>
<span class="display-name ">
<span>
PewDiePie
</span>
</span>
</span>
<span class="guide-count yt-uix-tooltip yt-valign">
<span class="yt-valign-container guide-count-value">5</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="UCEMOZ_fY37Eeu7vIAynxKUg-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/channel/UCEMOZ_fY37Eeu7vIAynxKUg" title="RussoPlays - Roblox & More!" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-channel&ved=CH4QtSwYASITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="UCEMOZ_fY37Eeu7vIAynxKUg" data-serialized-endpoint="0qDduQEaEhhVQ0VNT1pfZlkzN0VldTd2SUF5bnhLVWc%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb"> <span class="video-thumb yt-thumb yt-thumb-20">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="20" height="20" data-ytimg="1" onload=";__ytRIL(this)" src="https://yt3.ggpht.com/-WsT7Ej2NK1U/AAAAAAAAAAI/AAAAAAAAAAA/SpQO0F-uRA8/s88-c-k-no-mo-rj-c0xffffff/photo.jpg">
<span class="vertical-align"></span>
</span>
</span>
</span>
</span>
<span class="display-name no-count">
<span>
RussoPlays - Roblox & More!
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="UCbhzZMCyARUqXGeCDifgvlA-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/channel/UCbhzZMCyARUqXGeCDifgvlA" title="KASTIOP" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-channel&ved=CH8QtSwYAiITCPCkm4nD09ECFUaUVQodOc0N8SibHA" data-external-id="UCbhzZMCyARUqXGeCDifgvlA" data-serialized-endpoint="0qDduQEaEhhVQ2JoelpNQ3lBUlVxWEdlQ0RpZmd2bEE%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb"> <span class="video-thumb yt-thumb yt-thumb-20">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="20" height="20" data-ytimg="1" onload=";__ytRIL(this)" src="https://yt3.ggpht.com/-k755Ogk1640/AAAAAAAAAAI/AAAAAAAAAAA/4fZoXmm6rAE/s88-c-k-no-mo-rj-c0xffffff/photo.jpg">
<span class="vertical-align"></span>
</span>
</span>
</span>
</span>
<span class="display-name ">
<span>
KASTIOP
</span>
</span>
</span>
<span class="guide-count yt-uix-tooltip yt-valign">
<span class="yt-valign-container guide-count-value">2</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="UC0ciEIRKUQ573j0x_5arbjA-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/channel/UC0ciEIRKUQ573j0x_5arbjA" title="Emisoccer" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-channel&ved=CIABELUsGAMiEwjwpJuJw9PRAhVGlFUKHTnNDfEomxw" data-external-id="UC0ciEIRKUQ573j0x_5arbjA" data-serialized-endpoint="0qDduQEaEhhVQzBjaUVJUktVUTU3M2oweF81YXJiakE%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb"> <span class="video-thumb yt-thumb yt-thumb-20">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="20" height="20" data-ytimg="1" onload=";__ytRIL(this)" src="https://yt3.ggpht.com/-CEgaedtLp0w/AAAAAAAAAAI/AAAAAAAAAAA/5RzjdfvFLaA/s88-c-k-no-mo-rj-c0xffffff/photo.jpg">
<span class="vertical-align"></span>
</span>
</span>
</span>
</span>
<span class="display-name no-count">
<span>
Emisoccer
</span>
</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="UC6fuLZqzQIX0yOj7A1yAgKA-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/channel/UC6fuLZqzQIX0yOj7A1yAgKA" title="The Redemoji" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-channel&ved=CIEBELUsGAQiEwjwpJuJw9PRAhVGlFUKHTnNDfEomxw" data-external-id="UC6fuLZqzQIX0yOj7A1yAgKA" data-serialized-endpoint="0qDduQEaEhhVQzZmdUxacXpRSVgweU9qN0ExeUFnS0E%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb"> <span class="video-thumb yt-thumb yt-thumb-20">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="20" height="20" data-ytimg="1" onload=";__ytRIL(this)" src="https://yt3.ggpht.com/-H5zw-JzNRw4/AAAAAAAAAAI/AAAAAAAAAAA/cinh0kS3TRM/s88-c-k-no-mo-rj-c0xffffff/photo.jpg">
<span class="vertical-align"></span>
</span>
</span>
</span>
</span>
<span class="display-name ">
<span>
The Redemoji
</span>
</span>
</span>
<span class="guide-count yt-uix-tooltip yt-valign">
<span class="yt-valign-container guide-count-value">5</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="UCIQ750J_U43UbJVwbBNnH0A-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/channel/UCIQ750J_U43UbJVwbBNnH0A" title="Robustian King" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-channel&ved=CIIBELUsGAUiEwjwpJuJw9PRAhVGlFUKHTnNDfEomxw" data-external-id="UCIQ750J_U43UbJVwbBNnH0A" data-serialized-endpoint="0qDduQEaEhhVQ0lRNzUwSl9VNDNVYkpWd2JCTm5IMEE%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb"> <span class="video-thumb yt-thumb yt-thumb-20">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="20" height="20" data-ytimg="1" onload=";__ytRIL(this)" src="https://yt3.ggpht.com/-oW0Z39U6OmU/AAAAAAAAAAI/AAAAAAAAAAA/CFp1tOq27sI/s88-c-k-no-mo-rj-c0xffffff/photo.jpg">
<span class="vertical-align"></span>
</span>
</span>
</span>
</span>
<span class="display-name ">
<span>
Robustian King
</span>
</span>
</span>
<span class="guide-count yt-uix-tooltip yt-valign">
<span class="yt-valign-container guide-count-value">9</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="UCkr09J1D5iBeVGRBRR1yMzA-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/channel/UCkr09J1D5iBeVGRBRR1yMzA" title="Fox Razu" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-channel&ved=CIMBELUsGAYiEwjwpJuJw9PRAhVGlFUKHTnNDfEomxw" data-external-id="UCkr09J1D5iBeVGRBRR1yMzA" data-serialized-endpoint="0qDduQEaEhhVQ2tyMDlKMUQ1aUJlVkdSQlJSMXlNekE%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb"> <span class="video-thumb yt-thumb yt-thumb-20">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="20" height="20" data-thumb="https://yt3.ggpht.com/-RAERlSzkbaE/AAAAAAAAAAI/AAAAAAAAAAA/Ma6kMd62eRk/s88-c-k-no-mo-rj-c0xffffff/photo.jpg" data-ytimg="1" onload=";__ytRIL(this)" src="//s.ytimg.com/yts/img/pixel-vfl3z5WfW.gif">
<span class="vertical-align"></span>
</span>
</span>
</span>
</span>
<span class="display-name ">
<span>
Fox Razu
</span>
</span>
</span>
<span class="guide-count yt-uix-tooltip yt-valign">
<span class="yt-valign-container guide-count-value">2</span>
</span>
</a>
</li>
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="UCK5Fn7Z6-iFMdxEye2FsKXg-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/channel/UCK5Fn7Z6-iFMdxEye2FsKXg" title="StukTV" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-channel&ved=CIQBELUsGAciEwjwpJuJw9PRAhVGlFUKHTnNDfEomxw" data-external-id="UCK5Fn7Z6-iFMdxEye2FsKXg" data-serialized-endpoint="0qDduQEaEhhVQ0s1Rm43WjYtaUZNZHhFeWUyRnNLWGc%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb"> <span class="video-thumb yt-thumb yt-thumb-20">
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="20" height="20" data-thumb="https://yt3.ggpht.com/-3rbkHesMcu4/AAAAAAAAAAI/AAAAAAAAAAA/teg0rtLxeAg/s88-c-k-no-mo-rj-c0xffffff/photo.jpg" data-ytimg="1" onload=";__ytRIL(this)" src="//s.ytimg.com/yts/img/pixel-vfl3z5WfW.gif">
<span class="vertical-align"></span>
</span>
</span>
</span>
</span>
<span class="display-name ">
<span>
StukTV
</span>
</span>
</span>
<span class="guide-count yt-uix-tooltip yt-valign">
<span class="yt-valign-container guide-count-value">3</span>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<hr class="guide-section-separator">
</li>
<li class="guide-section vve-check" data-visibility-tracking="">
<div class="guide-item-container personal-item">
<ul class="guide-user-links yt-uix-tdl yt-box" role="menu">
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="guide_builder-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-nolink " href="/channels" title="Browse door kanalen" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-manage&ved=CIYBELUsGAAiEwjwpJuJw9PRAhVGlFUKHTnNDfEomxw" data-external-id="guide_builder" data-serialized-endpoint="0qPduQECCAE%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-builder-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
Browse door kanalen
</span>
</span>
</span>
</a>
</li>
</ul>
</div>
<hr class="guide-section-separator">
</li>
<li class="guide-section vve-check" data-visibility-tracking="">
<div class="guide-item-container personal-item">
<ul class="guide-user-links yt-uix-tdl yt-box" role="menu">
<li class="vve-check guide-channel guide-notification-item overflowable-list-item " id="UClgRkhTL3_hImCAmdLfDE4g-guide-item" data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-link " href="/channel/UClgRkhTL3_hImCAmdLfDE4g" title="YouTube Films" data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&ved=CIgBELUsGAAiEwjwpJuJw9PRAhVGlFUKHTnNDfEomxw" data-external-id="UClgRkhTL3_hImCAmdLfDE4g" data-serialized-endpoint="0qDduQEaEhhVQ2xnUmtoVEwzX2hJbUNBbWRMZkRFNGc%3D" data-visibility-tracking="">
<span class="yt-valign-container">
<span class="thumb guide-movies-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
YouTube Films
</span>
</span>
</span>
</a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</div>
<div id="appbar-guide-notifications" class="hid">
<div id="appbar-guide-notification-watch-later-video-added">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Toegevoegd aan 'Later bekijken'</span></span></div>
-->
</div>
<div id="appbar-guide-notification-watch-later-video-removed">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Verwijderd uit Later bekijken</span></span></div>
-->
</div>
<div id="appbar-guide-notification-subscription">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Abonnement toegevoegd</span></span></div>
-->
</div>
<div id="appbar-guide-notification-unsubscription">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Abonnement opgezegd</span></span></div>
-->
</div>
<div id="appbar-guide-notification-playlist-like">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Opgeslagen in Afspeellijsten</span></span></div>
-->
</div>
<div id="appbar-guide-notification-playlist-unlike">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Verwijderd uit Afspeellijsten</span></span></div>
-->
</div>
<div id="appbar-guide-notification-playlist-video-added">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Toegevoegd aan afspeellijst</span></span></div>
-->
</div>
<div id="appbar-guide-notification-playlist-video-removed">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Verwijderd uit afspeellijst</span></span></div>
-->
</div>
<div id="appbar-guide-notification-video-like">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Toegevoegd aan video's die ik leuk vind</span></span></div>
-->
</div>
<div id="appbar-guide-notification-video-unlike">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Verwijderd uit video's die ik leuk vind</span></span></div>
-->
</div>
<div id="appbar-guide-notification-event-reminder-set">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Je wordt aan dit evenement herinnerd</span></span></div>
-->
</div>
<div id="appbar-guide-notification-event-reminder-removed">
<!--
<div class="appbar-guide-notification " role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" >Herinnering aan evenement verwijderd</span></span></div>
-->
</div>
</div>
<div id="appbar-guide-item-templates" class="hid">
<div id="appbar-guide-item-template-playlist">
<!--
<li class="vve-check guide-channel guide-notification-item overflowable-list-item show-insertion-notification " id="__ID__-guide-item"
data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-nolink "
href="__URL__"
title="__TITLE__"
data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-playlists" data-external-id="__ID__" data-serialized-endpoint="" data-visibility-tracking=""
>
<span class="yt-valign-container">
<span class="thumb guide-playlists-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
__TITLE__
</span>
</span>
</span>
</a>
<div class="appbar-guide-notification guide-item-insertion-notification" role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" aria-label="Opgeslagen in Afspeellijsten">__NOTIFICATION_OVERLAY_MESSAGE__</span></span></div>
</li>
-->
</div>
<div id="appbar-guide-item-template-mix">
<!--
<li class="vve-check guide-channel guide-notification-item overflowable-list-item show-insertion-notification " id="__ID__-guide-item"
data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-nolink "
href="__URL__"
title="__TITLE__"
data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-playlists" data-external-id="__ID__" data-serialized-endpoint="" data-visibility-tracking=""
>
<span class="yt-valign-container">
<span class="thumb guide-mix-icon yt-sprite"></span>
<span class="display-name no-count">
<span>
__TITLE__
</span>
</span>
</span>
</a>
<div class="appbar-guide-notification guide-item-insertion-notification" role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" aria-label="Opgeslagen in Afspeellijsten">__NOTIFICATION_OVERLAY_MESSAGE__</span></span></div>
</li>
-->
</div>
<div id="appbar-guide-item-template-channel">
<!--
<li class="vve-check guide-channel guide-notification-item overflowable-list-item show-insertion-notification " id="__ID__-guide-item"
data-visibility-tracking="" role="menuitem">
<a class="guide-item yt-uix-sessionlink yt-valign spf-nolink "
href="__URL__"
title="__TITLE__"
data-sessionlink="ei=UXqDWLC4Acao1gK5mreIDw&feature=g-channel" data-external-id="__ID__" data-serialized-endpoint="" data-visibility-tracking=""
>
<span class="yt-valign-container">
<span class="thumb"> <span class="video-thumb yt-thumb yt-thumb-20"
>
<span class="yt-thumb-square">
<span class="yt-thumb-clip">
<img alt="" aria-hidden="true" width="20" height="20" data-ytimg="1" src="__THUMBNAIL_URL__" onload=";__ytRIL(this)" >
<span class="vertical-align"></span>
</span>
</span>
</span>
</span>
<span class="display-name no-count">
<span>
__TITLE__
</span>
</span>
</span>
</a>
<div class="appbar-guide-notification guide-item-insertion-notification" role="alert"><span class="appbar-guide-notification-content-wrapper yt-valign"><span class="appbar-guide-notification-icon yt-sprite"></span><span class="appbar-guide-notification-text-content" aria-label="Abonnement toegevoegd">__NOTIFICATION_OVERLAY_MESSAGE__</span></span></div>
</li>
-->
</div>
</div>
</div><div class="alerts-wrapper"><div id="alerts" class="content-alignment">
</div></div><div id="header"></div><div id="player" class=" off-screen " role="complementary"><div id="theater-background" class="player-height"></div> <div id="player-mole-container">
<div id="player-unavailable" class=" hid ">
</div>
<div id="player-api" class="player-width player-height off-screen-target player-api" tabindex="-1"><div class="html5-video-player remote-created unstarted-mode ytp-hide-controls ytp-hide-info-bar" tabindex="-1" id="movie_player" data-version="//s.ytimg.com/yts/jsbin/player-nl_NL-vfl2FSl2G/base.js" aria-label="YouTube-videospeler"><div class="html5-video-container" data-layer="0"><video tabindex="-1" class="video-stream html5-main-video" style="width: 640px; height: 360px; left: 0px; top: -360px;" uc-video-toolbar-id="2d5e146f-312b-2cde-f075-1485011538609"></video></div><div class="ytp-gradient-top" data-layer="1"></div><div class="ytp-chrome-top ytp-watch-later-button-visible" data-layer="1"><button class="ytp-playlist-menu-button ytp-button" aria-owns="ytp_playlist_menu" aria-haspopup="true" aria-label="Afspeellijst" style="display: none;"><div class="ytp-playlist-menu-button-icon"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-2"></use><path d="m 22.53,21.42 0,6.85 5.66,-3.42 -5.66,-3.42 0,0 z m -11.33,0 9.06,0 0,2.28 -9.06,0 0,-2.28 0,0 z m 0,-9.14 13.6,0 0,2.28 -13.6,0 0,-2.28 0,0 z m 0,4.57 13.6,0 0,2.28 -13.6,0 0,-2.28 0,0 z" fill="#fff" id="ytp-svg-2"></path></svg></div><div class="ytp-playlist-menu-button-text"></div></button><div class="ytp-title"><a class="ytp-title-channel-logo" target="_blank"></a><div class="ytp-title-text"><a class="ytp-title-link yt-uix-sessionlink" target="_blank" data-sessionlink="feature=player-title"><span class="ytp-title-playlist-icon" style="display: none;"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-3"></use><path d="m 22.53,21.42 0,6.85 5.66,-3.42 -5.66,-3.42 0,0 z m -11.33,0 9.06,0 0,2.28 -9.06,0 0,-2.28 0,0 z m 0,-9.14 13.6,0 0,2.28 -13.6,0 0,-2.28 0,0 z m 0,4.57 13.6,0 0,2.28 -13.6,0 0,-2.28 0,0 z" fill="#fff" id="ytp-svg-3"></path></svg></span><span></span></a></div><div class="ytp-title-subtext"><a class="ytp-title-channel-name" target="_blank"></a><span class="ytp-title-view-count"></span></div></div><div class="ytp-chrome-top-buttons"><button class="ytp-watch-later-button ytp-button" title="Later bekijken als Eggie Gaming" data-tooltip-image="https://yt3.ggpht.com/-OcVn-PTXptI/AAAAAAAAAAI/AAAAAAAAAAA/doswjfDIW74/s28-c-k-no-mo-rj-c0xffffff/photo.jpg"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-4"></use><path class="ytp-svg-fill" d="M18,8 C12.47,8 8,12.47 8,18 C8,23.52 12.47,28 18,28 C23.52,28 28,23.52 28,18 C28,12.47 23.52,8 18,8 L18,8 Z M16,19.02 L16,12.00 L18,12.00 L18,17.86 L23.10,20.81 L22.10,22.54 L16,19.02 Z" id="ytp-svg-4"></path></svg></button><button class="ytp-button ytp-share-button" title="Delen" aria-haspopup="true" aria-owns="ytp-share-panel"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-5"></use><path class="ytp-svg-fill" d="m 20.20,14.19 0,-4.45 7.79,7.79 -7.79,7.79 0,-4.56 C 16.27,20.69 12.10,21.81 9.34,24.76 8.80,25.13 7.60,27.29 8.12,25.65 9.08,21.32 11.80,17.18 15.98,15.38 c 1.33,-0.60 2.76,-0.98 4.21,-1.19 z" id="ytp-svg-5"></path></svg></button></div></div><button class="ytp-button ytp-cards-button" aria-label="Kaarten weergeven" aria-owns="ytp-cards" aria-haspopup="true" data-layer="2" style="display: none;"><span class="ytp-cards-button-icon-default"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-1"></use><path class="ytp-svg-fill" d="M18,8 C12.47,8 8,12.47 8,18 C8,23.52 12.47,28 18,28 C23.52,28 28,23.52 28,18 C28,12.47 23.52,8 18,8 L18,8 Z M17,16 L19,16 L19,24 L17,24 L17,16 Z M17,12 L19,12 L19,14 L17,14 L17,12 Z" id="ytp-svg-1"></path></svg></span><span class="ytp-cards-button-icon-shopping"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><path class="ytp-svg-shadow" d="M 27.99,18 A 9.99,9.99 0 1 1 8.00,18 9.99,9.99 0 1 1 27.99,18 z"></path><path class="ytp-svg-fill" d="M 18,8 C 12.47,8 8,12.47 8,18 8,23.52 12.47,28 18,28 23.52,28 28,23.52 28,18 28,12.47 23.52,8 18,8 z m -4.68,4 4.53,0 c .35,0 .70,.14 .93,.37 l 5.84,5.84 c .23,.23 .37,.58 .37,.93 0,.35 -0.13,.67 -0.37,.90 L 20.06,24.62 C 19.82,24.86 19.51,25 19.15,25 c -0.35,0 -0.70,-0.14 -0.93,-0.37 L 12.37,18.78 C 12.13,18.54 12,18.20 12,17.84 L 12,13.31 C 12,12.59 12.59,12 13.31,12 z m .96,1.31 c -0.53,0 -0.96,.42 -0.96,.96 0,.53 .42,.96 .96,.96 .53,0 .96,-0.42 .96,-0.96 0,-0.53 -0.42,-0.96 -0.96,-0.96 z" fill-opacity="1"></path><path class="ytp-svg-shadow-fill" d="M 24.61,18.22 18.76,12.37 C 18.53,12.14 18.20,12 17.85,12 H 13.30 C 12.58,12 12,12.58 12,13.30 V 17.85 c 0,.35 .14,.68 .38,.92 l 5.84,5.85 c .23,.23 .55,.37 .91,.37 .35,0 .68,-0.14 .91,-0.38 L 24.61,20.06 C 24.85,19.83 25,19.50 25,19.15 25,18.79 24.85,18.46 24.61,18.22 z M 14.27,15.25 c -0.53,0 -0.97,-0.43 -0.97,-0.97 0,-0.53 .43,-0.97 .97,-0.97 .53,0 .97,.43 .97,.97 0,.53 -0.43,.97 -0.97,.97 z" fill="#000" fill-opacity="0.15"></path></svg></span></button><div class="ytp-webgl-spherical-control" tabindex="0" aria-label="360-graden video's: gebruik de pijltoetsen om de video te draaien." data-layer="4" style="display: none;"><svg height="100%" version="1.1" viewBox="0 0 50 50" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-6"></use><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-7"></use><circle cx="25" cy="25" fill="#fff" r="24" id="ytp-svg-6"></circle><path d="M11.46,29.41 L9.97,30.90 L4,24.95 L9.97,19 L11.46,20.48 L7.00,24.95 L11.46,29.41 M42.46,24.95 L38,20.48 L39.48,19 L45.46,24.95 L39.48,30.90 L38,29.41 L42.46,24.95 M24.5,42.43 L28.96,37.96 L30.45,39.45 L24.5,45.43 L18.54,39.45 L20.03,37.96 L24.5,42.43 M24.5,6.97 L20.03,11.43 L18.54,9.94 L24.5,3.96 L30.45,9.94 L28.96,11.43 L24.5,6.97 Z" fill="#999" id="ytp-svg-7"></path></svg></div><div class="ytp-thumbnail-overlay ytp-cued-thumbnail-overlay" data-layer="5"><div class="ytp-thumbnail-overlay-image"></div><button class="ytp-large-play-button ytp-button" aria-label="Afspelen"><svg height="100%" version="1.1" viewBox="0 0 68 48" width="100%"><path class="ytp-large-play-button-bg" d="m .66,37.62 c 0,0 .66,4.70 2.70,6.77 2.58,2.71 5.98,2.63 7.49,2.91 5.43,.52 23.10,.68 23.12,.68 .00,-1.3e-5 14.29,-0.02 23.81,-0.71 1.32,-0.15 4.22,-0.17 6.81,-2.89 2.03,-2.07 2.70,-6.77 2.70,-6.77 0,0 .67,-5.52 .67,-11.04 l 0,-5.17 c 0,-5.52 -0.67,-11.04 -0.67,-11.04 0,0 -0.66,-4.70 -2.70,-6.77 C 62.03,.86 59.13,.84 57.80,.69 48.28,0 34.00,0 34.00,0 33.97,0 19.69,0 10.18,.69 8.85,.84 5.95,.86 3.36,3.58 1.32,5.65 .66,10.35 .66,10.35 c 0,0 -0.55,4.50 -0.66,9.45 l 0,8.36 c .10,4.94 .66,9.45 .66,9.45 z" fill="#1f1f1e" fill-opacity="0.81"></path><path d="m 26.96,13.67 18.37,9.62 -18.37,9.55 -0.00,-19.17 z" fill="#fff"></path><path d="M 45.02,23.46 45.32,23.28 26.96,13.67 43.32,24.34 45.02,23.46 z" fill="#ccc"></path></svg></button></div><div class="ytp-spinner" data-layer="5" style="display: none;"><div class="ytp-spinner-dots"><div class="ytp-spinner-dot ytp-spinner-dot-0"></div><div class="ytp-spinner-dot ytp-spinner-dot-1"></div><div class="ytp-spinner-dot ytp-spinner-dot-2"></div><div class="ytp-spinner-dot ytp-spinner-dot-3"></div><div class="ytp-spinner-dot ytp-spinner-dot-4"></div><div class="ytp-spinner-dot ytp-spinner-dot-5"></div><div class="ytp-spinner-dot ytp-spinner-dot-6"></div><div class="ytp-spinner-dot ytp-spinner-dot-7"></div></div><div class="ytp-spinner-message" style="display: none;">Als je apparaat niet snel begint met afspelen, kun je het misschien opnieuw starten.</div></div><div class="ytp-bezel" role="status" data-layer="5" style="display: none;"><div class="ytp-bezel-icon"></div></div><div data-layer="5" style="display: none;"><div class="ytp-tooltip-bg"><div class="ytp-tooltip-duration"></div></div><div class="ytp-tooltip-text-wrapper"><div class="ytp-tooltip-image"></div><div class="ytp-tooltip-title"></div><span class="ytp-tooltip-text"></span></div></div><div class="ytp-paid-content-overlay" aria-live="assertive" aria-atomic="true" data-layer="5"><div class="ytp-button ytp-paid-content-overlay-text" style="display: none;"></div></div><div class="ytp-storyboard" data-layer="5" style="display: none;"><div class="ytp-storyboard-filmstrip"></div><div class="ytp-storyboard-lens"><div class="ytp-storyboard-lens-thumbnail"></div><div class="ytp-storyboard-lens-timestamp-wrapper"><span class="ytp-storyboard-lens-timestamp"></span></div></div></div><div class="ytp-storyboard-framepreview" data-layer="5" style="display: none;"><div class="ytp-storyboard-framepreview-img"></div></div><div class="ytp-remote" data-layer="5" style="display: none;"><div class="ytp-remote-display-status"><div class="ytp-remote-display-status-icon"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-20"></use><path d="M7,24 L7,27 L10,27 C10,25.34 8.66,24 7,24 L7,24 Z M7,20 L7,22 C9.76,22 12,24.24 12,27 L14,27 C14,23.13 10.87,20 7,20 L7,20 Z M25,13 L11,13 L11,14.63 C14.96,15.91 18.09,19.04 19.37,23 L25,23 L25,13 L25,13 Z M7,16 L7,18 C11.97,18 16,22.03 16,27 L18,27 C18,20.92 13.07,16 7,16 L7,16 Z M27,9 L9,9 C7.9,9 7,9.9 7,11 L7,14 L9,14 L9,11 L27,11 L27,25 L20,25 L20,27 L27,27 C28.1,27 29,26.1 29,25 L29,11 C29,9.9 28.1,9 27,9 L27,9 Z" fill="#fff" id="ytp-svg-20"></path></svg></div><div class="ytp-remote-display-status-text"></div><div class="ytp-remote-display-status-receiver"></div></div></div><div class="ytp-ad-persistent-progress-bar-container" data-layer="5" style="display: none;"><div class="ytp-ad-persistent-progress-bar"></div></div><div class="ytp-cards-teaser" data-layer="6" style="display: none;"><div class="ytp-cards-teaser-box"></div><div class="ytp-cards-teaser-text"><span class="ytp-cards-teaser-label"></span></div></div><div class="ytp-playlist-menu" role="dialog" data-layer="6" style="display: none;"><div class="ytp-playlist-menu-header"><div class="ytp-playlist-menu-title"><a class="ytp-playlist-menu-title-name"></a><button class="ytp-playlist-menu-close ytp-button" aria-label="Sluiten"><svg height="100%" viewBox="0 0 24 24" width="100%"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" fill="#fff"></path></svg></button></div><div class="ytp-playlist-menu-subtitle"></div></div><div class="ytp-playlist-menu-items" role="menu"></div></div><div class="ytp-share-panel" id="ytp-share-panel" role="dialog" aria-labelledby="ytp-share-panel-title" data-layer="6" style="display: none;"><button class="ytp-share-panel-close ytp-button" title="Sluiten"><svg height="100%" viewBox="0 0 24 24" width="100%"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" fill="#fff"></path></svg></button><div class="ytp-share-panel-inner-content"><div class="ytp-share-panel-title" id="ytp-share-panel-title">Delen</div><a class="ytp-share-panel-link ytp-no-contextmenu" target="_blank" title="Link delen" aria-label="Link delen"></a><label class="ytp-share-panel-include-playlist"><input class="ytp-share-panel-include-playlist-checkbox" type="checkbox" checked="true">Afspeellijst toevoegen</label><div class="ytp-share-panel-loading-spinner"><div class="ytp-spinner-dots"><div class="ytp-spinner-dot ytp-spinner-dot-0"></div><div class="ytp-spinner-dot ytp-spinner-dot-1"></div><div class="ytp-spinner-dot ytp-spinner-dot-2"></div><div class="ytp-spinner-dot ytp-spinner-dot-3"></div><div class="ytp-spinner-dot ytp-spinner-dot-4"></div><div class="ytp-spinner-dot ytp-spinner-dot-5"></div><div class="ytp-spinner-dot ytp-spinner-dot-6"></div><div class="ytp-spinner-dot ytp-spinner-dot-7"></div></div></div><div class="ytp-share-panel-service-buttons"></div><div class="ytp-share-panel-error">Er is een fout opgetreden tijdens het ophalen van informatie over delen. Probeer het later opnieuw.</div></div></div><div class="ytp-multicam-menu" role="dialog" data-layer="6" style="display: none;"><div class="ytp-multicam-menu-header"><div class="ytp-multicam-menu-title">Van camera wisselen<button class="ytp-multicam-menu-close ytp-button" aria-label="Sluiten"><svg height="100%" viewBox="0 0 24 24" width="100%"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" fill="#fff"></path></svg></button></div></div><div class="ytp-multicam-menu-items"></div></div><div class="ytp-popup ytp-settings-menu" data-layer="7" style="display: none;"><div class="ytp-panel"><div class="ytp-panel-menu" role="menu"></div></div></div><div class="ytp-gradient-bottom" data-layer="9" style="display: none;"></div><div class="ytp-chrome-bottom" data-layer="9" style="display: none; width: 616px; left: 12px;"><div class="ytp-progress-bar-container" aria-disabled="true" style="height: 5px;"><div class="ytp-progress-bar" tabindex="0" role="slider" aria-label="Zoekschuifbalk" aria-valuemin="0" aria-valuemax="0" aria-valuenow="0" aria-valuetext="0:00 van 0:00"><div class="ytp-progress-bar-padding"></div><div class="ytp-progress-list"><div class="ytp-play-progress ytp-swatch-background-color" style="left: 0px; transform: scaleX(0);"></div><div class="ytp-load-progress" style="left: 0px; transform: scaleX(0);"></div><div class="ytp-hover-progress"></div><div class="ytp-clip-start-exclude" style="width: 0%;"></div><div class="ytp-clip-end-exclude" style="left: 100%; width: 0%;"></div><div class="ytp-ad-progress-list"></div><div class="ytp-marker-crenellation-list"></div><div class="ytp-marker-progress-list"></div></div><div class="ytp-scrubber-container" style="transform: translateX(0px);"><div class="ytp-scrubber-button ytp-swatch-background-color" style="height: 13px;"><div class="ytp-scrubber-pull-indicator"></div></div></div></div><div class="ytp-bound-time-left">0:00</div><div class="ytp-bound-time-right">0:00</div><div class="ytp-clip-start" title="Volledige video bekijken" draggable="true" style="touch-action: none; left: 0%;"><svg height="100%" version="1.1" viewBox="0 0 14 14" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-8"></use><path d="M12,14 L9,11 L9,3 L12,0 L5,0 L5,14 L12,14 Z" fill="#eaeaea" id="ytp-svg-8"></path></svg></div><div class="ytp-clip-end" title="Volledige video bekijken" draggable="true" style="touch-action: none; left: 100%;"><svg height="100%" version="1.1" viewBox="0 0 14 14" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-9"></use><path d="M2,14 L5,11 L5,3 L2,0 L9,0 L9,14 L2,14 L2,14 Z" fill="#eaeaea" id="ytp-svg-9"></path></svg></div></div><div class="ytp-chrome-controls"><div class="ytp-left-controls"><a class="ytp-prev-button ytp-button" aria-disabled="true" style="display: none;"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-10"></use><path class="ytp-svg-fill" d="m 12,12 h 2 v 12 h -2 z m 3.5,6 8.5,6 V 12 z" id="ytp-svg-10"></path></svg></a><button class="ytp-play-button ytp-button" aria-label="Afspelen"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-11"></use><path class="ytp-svg-fill" d="M 12,26 18.5,22 18.5,14 12,10 z M 18.5,22 25,18 25,18 18.5,14 z" id="ytp-svg-11"></path></svg></button><a class="ytp-next-button ytp-button" title="Volgende" aria-disabled="false"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-12"></use><path class="ytp-svg-fill" d="M 12,24 20.5,18 12,12 V 24 z M 22,12 v 12 h 2 V 12 h -2 z" id="ytp-svg-12"></path></svg></a><span><button class="ytp-mute-button ytp-button" title="Dempen"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-14"></use><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-15"></use><defs><clipPath id="ytp-svg-volume-animation-mask"><path d="m 14.35,-0.14 -5.86,5.86 20.73,20.78 5.86,-5.91 z"></path><path d="M 7.07,6.87 -1.11,15.33 19.61,36.11 27.80,27.60 z"></path><path class="ytp-svg-volume-animation-mover" d="M 9.09,5.20 6.47,7.88 26.82,28.77 29.66,25.99 z" transform="translate(0, 0)"></path></clipPath><clipPath id="ytp-svg-volume-animation-slash-mask"><path class="ytp-svg-volume-animation-mover" d="m -11.45,-15.55 -4.44,4.51 20.45,20.94 4.55,-4.66 z" transform="translate(0, 0)"></path></clipPath></defs><path class="ytp-svg-fill ytp-svg-volume-animation-speaker" clip-path="url(#ytp-svg-volume-animation-mask)" d="M8,21 L12,21 L17,26 L17,10 L12,15 L8,15 L8,21 Z M19,14 L19,22 C20.48,21.32 21.5,19.77 21.5,18 C21.5,16.26 20.48,14.74 19,14 ZM19,11.29 C21.89,12.15 24,14.83 24,18 C24,21.17 21.89,23.85 19,24.71 L19,26.77 C23.01,25.86 26,22.28 26,18 C26,13.72 23.01,10.14 19,9.23 L19,11.29 Z" fill="#fff" id="ytp-svg-14"></path><path class="ytp-svg-fill ytp-svg-volume-animation-hider" clip-path="url(#ytp-svg-volume-animation-slash-mask)" d="M 9.25,9 7.98,10.27 24.71,27 l 1.27,-1.27 Z" fill="#fff" id="ytp-svg-15" style="display: none;"></path></svg></button><div class="ytp-volume-panel" role="slider" aria-valuemin="0" aria-valuemax="100" tabindex="0" aria-valuenow="100" aria-valuetext="100% volume"><div class="ytp-volume-slider" draggable="true" style="touch-action: none;"><div class="ytp-volume-slider-handle" style="left: 40px;"></div></div></div></span><div class="ytp-time-display notranslate"><span class="ytp-time-current">0:00</span><span class="ytp-time-separator"> / </span><span class="ytp-time-duration">0:00</span><button class="ytp-live-badge ytp-button" disabled="true">Live</button></div></div><div class="ytp-right-controls"><button class="ytp-subtitles-button ytp-button" title="Ondertiteling" style="display: none;"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-16"></use><path d="M11,11 C9.9,11 9,11.9 9,13 L9,23 C9,24.1 9.9,25 11,25 L25,25 C26.1,25 27,24.1 27,23 L27,13 C27,11.9 26.1,11 25,11 L11,11 Z M11,17 L14,17 L14,19 L11,19 L11,17 L11,17 Z M20,23 L11,23 L11,21 L20,21 L20,23 L20,23 Z M25,23 L22,23 L22,21 L25,21 L25,23 L25,23 Z M25,19 L16,19 L16,17 L25,17 L25,19 L25,19 Z" fill="#fff" id="ytp-svg-16"></path></svg></button><button class="ytp-button ytp-settings-button" aria-haspopup="true" aria-owns="ytp-main-menu-id" title="Instellingen"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-17"></use><path d="m 23.94,18.78 c .03,-0.25 .05,-0.51 .05,-0.78 0,-0.27 -0.02,-0.52 -0.05,-0.78 l 1.68,-1.32 c .15,-0.12 .19,-0.33 .09,-0.51 l -1.6,-2.76 c -0.09,-0.17 -0.31,-0.24 -0.48,-0.17 l -1.99,.8 c -0.41,-0.32 -0.86,-0.58 -1.35,-0.78 l -0.30,-2.12 c -0.02,-0.19 -0.19,-0.33 -0.39,-0.33 l -3.2,0 c -0.2,0 -0.36,.14 -0.39,.33 l -0.30,2.12 c -0.48,.2 -0.93,.47 -1.35,.78 l -1.99,-0.8 c -0.18,-0.07 -0.39,0 -0.48,.17 l -1.6,2.76 c -0.10,.17 -0.05,.39 .09,.51 l 1.68,1.32 c -0.03,.25 -0.05,.52 -0.05,.78 0,.26 .02,.52 .05,.78 l -1.68,1.32 c -0.15,.12 -0.19,.33 -0.09,.51 l 1.6,2.76 c .09,.17 .31,.24 .48,.17 l 1.99,-0.8 c .41,.32 .86,.58 1.35,.78 l .30,2.12 c .02,.19 .19,.33 .39,.33 l 3.2,0 c .2,0 .36,-0.14 .39,-0.33 l .30,-2.12 c .48,-0.2 .93,-0.47 1.35,-0.78 l 1.99,.8 c .18,.07 .39,0 .48,-0.17 l 1.6,-2.76 c .09,-0.17 .05,-0.39 -0.09,-0.51 l -1.68,-1.32 0,0 z m -5.94,2.01 c -1.54,0 -2.8,-1.25 -2.8,-2.8 0,-1.54 1.25,-2.8 2.8,-2.8 1.54,0 2.8,1.25 2.8,2.8 0,1.54 -1.25,2.8 -2.8,2.8 l 0,0 z" fill="#fff" id="ytp-svg-17"></path></svg></button><button class="ytp-multicam-button ytp-button" title="Van camera wisselen" aria-haspopup="true" style="display: none;"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-18"></use><path d="M 26,10 22.83,10 21,8 15,8 13.17,10 10,10 c -1.1,0 -2,.9 -2,2 l 0,12 c 0,1.1 .9,2 2,2 l 16,0 c 1.1,0 2,-0.9 2,-2 l 0,-12 c 0,-1.1 -0.9,-2 -2,-2 l 0,0 z m -5,11.5 0,-2.5 -6,0 0,2.5 -3.5,-3.5 3.5,-3.5 0,2.5 6,0 0,-2.5 3.5,3.5 -3.5,3.5 0,0 z" fill="#fff" id="ytp-svg-18"></path></svg></button><button class="ytp-size-button ytp-button" title="Theatermodus"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-19"></use><path d="m 28,11 0,14 -20,0 0,-14 z m -18,2 16,0 0,10 -16,0 0,-10 z" fill="#fff" fill-rule="evenodd" id="ytp-svg-19"></path></svg></button><button class="ytp-remote-button ytp-button" title="Afspelen op tv" aria-haspopup="true" style="display: none;"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-21"></use><path d="M27,9 L9,9 C7.9,9 7,9.9 7,11 L7,14 L9,14 L9,11 L27,11 L27,25 L20,25 L20,27 L27,27 C28.1,27 29,26.1 29,25 L29,11 C29,9.9 28.1,9 27,9 L27,9 Z M7,24 L7,27 L10,27 C10,25.34 8.66,24 7,24 L7,24 Z M7,20 L7,22 C9.76,22 12,24.24 12,27 L14,27 C14,23.13 10.87,20 7,20 L7,20 Z M7,16 L7,18 C11.97,18 16,22.03 16,27 L18,27 C18,20.92 13.07,16 7,16 L7,16 Z" fill="#fff" id="ytp-svg-21"></path></svg></button><button class="ytp-fullscreen-button ytp-button" title="Volledig scherm"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><g class="ytp-fullscreen-button-corner-0"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-22"></use><path class="ytp-svg-fill" d="m 10,16 2,0 0,-4 4,0 0,-2 L 10,10 l 0,6 0,0 z" id="ytp-svg-22"></path></g><g class="ytp-fullscreen-button-corner-1"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-23"></use><path class="ytp-svg-fill" d="m 20,10 0,2 4,0 0,4 2,0 L 26,10 l -6,0 0,0 z" id="ytp-svg-23"></path></g><g class="ytp-fullscreen-button-corner-2"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-24"></use><path class="ytp-svg-fill" d="m 24,24 -4,0 0,2 L 26,26 l 0,-6 -2,0 0,4 0,0 z" id="ytp-svg-24"></path></g><g class="ytp-fullscreen-button-corner-3"><use class="ytp-svg-shadow" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ytp-svg-25"></use><path class="ytp-svg-fill" d="M 12,20 10,20 10,26 l 6,0 0,-2 -4,0 0,-4 0,0 z" id="ytp-svg-25"></path></g></svg></button></div></div></div></div></div>