'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Card (sports)

In sports, a card comprises a listing of the matches taking place in a title-match combat-sport event. Organizers divide overall cards into a main-event match and the undercard, which encompasses the rest of the matches. One can also further subdivide the undercard into midcard and lower card, according to the perceived importance of the matches. Promoters schedule matches to occur in ascending order of importance.

Division

Undercard

The undercard, or preliminary matches (sometimes preliminary card), consists of preliminary bouts that occur before the headline or "main event" of a particular boxing,professional wrestling, horse racing, auto racing, or other sports event. (In auto racing, however, the term "support race" occurs more commonly.) Typically, promoters intend the undercard to provide fans with an opportunity to see up-and-coming fighters or fighters not so well known and popular as their counterparts in the main event. The undercard also ensures that if the main event ends quickly fans will still feel that they received sufficient value for the price of their admission.

Main Event

Main Event (Previously known as 'Event TV' on Foxtel, and 'Main Attraction' on Austar) is Australia's only pay-per-view channel. It transmits through Foxtel and Optus Television, who jointly own the channel. It broadcasts major sporting and entertainment events such as boxing, professional wrestling, mixed martial arts and concerts.

The channel has broadcast the Anthony "The Man" Mundine vs. Danny Green boxing fight and has broadcast nearly every World Wrestling Entertainment pay-per-view since 2000 (There was a contract negotiation period that prevented the WWE from showing WWE pay-per-views between January 2003 and August 2003). Since May 2006 it has also been broadcasting Total Nonstop Action Wrestling pay-per-views, and since 2007, the Ultimate Fighting Championship started screening their PPV's. It also broadcast WWE's weekly programming (for free) over a 2-week period during 2006 while Fox8 was screening a marathon of The Simpsons, The channel would similarly do the same in early 2015 when Fox8 broadcast every episode of The Simpsons.

Chamillionaire

Hakeem Seriki (born November 28, 1979), better known by his stage name Chamillionaire, (/ˈkəmɪljənɛər/) is an American rapper and entrepreneur from Houston, Texas. He is the CEO of Chamillitary Entertainment. Chamillionaire was also the founder and an original member of The Color Changin' Click until the group split in 2005.

He began his career independently with local releases in 2002, including collaboration album Get Ya Mind Correct with fellow Houston rapper and childhood friend Paul Wall. He signed to Universal Records in 2005 and released The Sound of Revenge under Universal. It included hit singles "Turn It Up" featuring Lil' Flip and the number-one, Grammy-winning hit "Ridin'" featuring Krayzie Bone of Bone Thugs-n-Harmony. Ultimate Victory followed in 2007, which was notable for not containing any profanity. Chamillionaire is also known for his most anticipated Mixtape Messiah series, which came to a halt in 2009.

In early 2011, he left Universal Records, which led to his would-be third album, Venom, going unreleased. Chamillionaire released his first independent extended play Ammunition in March 2012 and was noted as his first major release since he left the label. Another EP, Elevate, was released on February 17, 2013. He said it is going to be one of several to be released before his third studio album, and shortly after his third EP Reignfall was released on July 23, 2013. He is working on his third studio album, Poison.

Podcasts:

  • $130,000 for This Rookie Card!

    I traded $130,000 worth of cards just to own this one ultra rare rookie card Track card prices & your collection with Market Movers►: https://bit.ly/marketmoversapp Discounted PSA/BGS/SGC Card Grading ►: https://bit.ly/gradingservice Download our Apps! SCI App (Apple)►: https://apple.co/3riGbb5 SCI App (Google)►: https://bit.ly/SCIAPPGooglePlay More SCI Products/Services: Display your card collection►: https://bit.ly/standupdisplays Protect Your Slabs►: https://bit.ly/slabstrong Sports Card Art►: https://bit.ly/scipaitings SCI Swag►: https://bit.ly/swagsci Follow Us: SCI Instagram►: https://bit.ly/SCIIG SCI Twitter►: https://bit.ly/scitweets SCI Facebook►: https://bit.ly/FBSCIPage Geoff’s IG►: https://bit.ly/itsgeoffwilson Geoff’s YouTube►: https://bit.ly/ytgeoff Card Kids YouTube►: htt...

    published: 24 May 2023
  • Judging OVER $16 MILLION of Sports Card purchases!!

    These cards sold for over $16,000,000 in 2021. How much are they worth today, and were they good buys? Let's take a look! 1952 Topps Mantle 1955 Topps Roberto Clemente 1986 Fleer Michael Jordan 1909 t206 Honus Wagner 1951 Bowman Mantle 2017 Patrick Mahomes National Treasures RPA 2004 Ultimate Collection LeBron James Logoman 2003 Topps Chrome LeBron James Black Refractor PSA 10 1999 Pokemon 1st Edition Holographic Charizard #4 PSA 10

    published: 18 Nov 2022
  • I Bought Sports Cards For 8 HOURS At The National Card Show! 💵

    For the past 14 years, I've been fortunate enough to go to the biggest sports card show in the world: The National Sports Collectors Convention. On Saturday of the national, we made a ton of deals at our booth! We ended up buying for over 8 hours at our booth. This year, the show is in Cleveland, Ohio at the I-X Center. If you enjoyed this video and would recommend it to more people, leave a thumbs up! 💵 Get $15 FREE to spend on Whatnot when you use this link to register: https://www.whatnot.com/invite/cardcollector2 💻 To browse all things on our website, check these out: Single cards: https://www.cardcollector2.com/collections/single-cards Boxes & Packs: https://www.cardcollector2.com/collections/packs-and-boxes Supplies: https://www.cardcollector2.com/collections/supplies Merch: https...

    published: 30 Jul 2024
  • Buying a Tesla Roadster with a Sports Card?

    I bought a box of Topps Chrome basketball cards! Did we find a LeBron James rookie card?! Watch our Car videos: https://www.youtube.com/playlist?list=PLk-NEiZ-NQeQtpqawl7FMNgAIMrZrdvJF Follow our Amazon Live Storefront to buy the product we use and SEE US LIVE! https://amzn.to/3kpjYBC Check out our Merch! https://www.whatsinsidemerch.com Thanks for watching and subscribing! Follow us on Twitter: https://twitter.com/whatsinside Follow us on Instagram: https://www.instagram.com/whatsinside Like us on Facebook: https://www.facebook.com/whatsinsidethings Music from Epidemic Sound. Sign up here for access to their music library: http://share.epidemicsound.com/pcFwF #shorts #tesla Have our Youtube Videos helped you Decide to buy a Tesla? If so, Please use our Refferral link to purchase on...

    published: 12 Feb 2021
$130,000 for This Rookie Card!
0:43

$130,000 for This Rookie Card!

  • Order:
  • Duration: 0:43
  • Uploaded Date: 24 May 2023
  • views: 656339
I traded $130,000 worth of cards just to own this one ultra rare rookie card Track card prices & your collection with Market Movers►: https://bit.ly/marketmoversapp Discounted PSA/BGS/SGC Card Grading ►: https://bit.ly/gradingservice Download our Apps! SCI App (Apple)►: https://apple.co/3riGbb5 SCI App (Google)►: https://bit.ly/SCIAPPGooglePlay More SCI Products/Services: Display your card collection►: https://bit.ly/standupdisplays Protect Your Slabs►: https://bit.ly/slabstrong Sports Card Art►: https://bit.ly/scipaitings SCI Swag►: https://bit.ly/swagsci Follow Us: SCI Instagram►: https://bit.ly/SCIIG SCI Twitter►: https://bit.ly/scitweets SCI Facebook►: https://bit.ly/FBSCIPage Geoff’s IG►: https://bit.ly/itsgeoffwilson Geoff’s YouTube►: https://bit.ly/ytgeoff Card Kids YouTube►: https://bit.ly/cardkidsyt Market Movers YouTube►: https://bit.ly/marketmoversyt
https://wn.com/130,000_For_This_Rookie_Card
Judging OVER $16 MILLION of Sports Card purchases!!
0:35

Judging OVER $16 MILLION of Sports Card purchases!!

  • Order:
  • Duration: 0:35
  • Uploaded Date: 18 Nov 2022
  • views: 543546
These cards sold for over $16,000,000 in 2021. How much are they worth today, and were they good buys? Let's take a look! 1952 Topps Mantle 1955 Topps Roberto Clemente 1986 Fleer Michael Jordan 1909 t206 Honus Wagner 1951 Bowman Mantle 2017 Patrick Mahomes National Treasures RPA 2004 Ultimate Collection LeBron James Logoman 2003 Topps Chrome LeBron James Black Refractor PSA 10 1999 Pokemon 1st Edition Holographic Charizard #4 PSA 10
https://wn.com/Judging_Over_16_Million_Of_Sports_Card_Purchases
I Bought Sports Cards For 8 HOURS At The National Card Show! 💵
27:16

I Bought Sports Cards For 8 HOURS At The National Card Show! 💵

  • Order:
  • Duration: 27:16
  • Uploaded Date: 30 Jul 2024
  • views: 68358
For the past 14 years, I've been fortunate enough to go to the biggest sports card show in the world: The National Sports Collectors Convention. On Saturday of the national, we made a ton of deals at our booth! We ended up buying for over 8 hours at our booth. This year, the show is in Cleveland, Ohio at the I-X Center. If you enjoyed this video and would recommend it to more people, leave a thumbs up! 💵 Get $15 FREE to spend on Whatnot when you use this link to register: https://www.whatnot.com/invite/cardcollector2 💻 To browse all things on our website, check these out: Single cards: https://www.cardcollector2.com/collections/single-cards Boxes & Packs: https://www.cardcollector2.com/collections/packs-and-boxes Supplies: https://www.cardcollector2.com/collections/supplies Merch: https://www.cardcollector2.com/collections/merch Group Breaks: https://www.cardcollector2.com/collections/group-breaks Grading: https://www.cardcollector2.com/pages/getyourcardsgraded 💵 For all cards we sell on eBay, check these out: https://www.ebay.com/sch/cardcollector2_sportscards/m.html?_trksid=p3692 https://www.ebay.com/sch/cc2_buyselltrade/m.html?_trksid=p3692 🎥 To watch our breaks on YouTube, check this out: https://www.youtube.com/channel/UCJxLZQKPXThfFKqs0A6ygMQ ✅ Follow us on all our social platforms: IG: https://www.instagram.com/cardcollector2/?hl=en Twitter: https://twitter.com/Cardcollector2?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor TikTok: https://www.tiktok.com/@cardcollector2 Whatnot: https://whatnotapp.page.link/tprnfjXAwneaquEX7 🏠 Follow our shop on social: IG: https://www.instagram.com/cardcollector2_sportscards/?hl=en Facebook: https://www.facebook.com/CardCollector2/ 🔍 Follow our grading team on social: https://www.instagram.com/cardcollector2_grading/?hl=en To buy a Zion case, check this link out…. But be sure to use CardCollector2 at checkout to save 10% ‼️ https://thecollectioncase.com/?ref=CardCollector2
https://wn.com/I_Bought_Sports_Cards_For_8_Hours_At_The_National_Card_Show_💵
Buying a Tesla Roadster with a Sports Card?
0:57

Buying a Tesla Roadster with a Sports Card?

  • Order:
  • Duration: 0:57
  • Uploaded Date: 12 Feb 2021
  • views: 6257660
I bought a box of Topps Chrome basketball cards! Did we find a LeBron James rookie card?! Watch our Car videos: https://www.youtube.com/playlist?list=PLk-NEiZ-NQeQtpqawl7FMNgAIMrZrdvJF Follow our Amazon Live Storefront to buy the product we use and SEE US LIVE! https://amzn.to/3kpjYBC Check out our Merch! https://www.whatsinsidemerch.com Thanks for watching and subscribing! Follow us on Twitter: https://twitter.com/whatsinside Follow us on Instagram: https://www.instagram.com/whatsinside Like us on Facebook: https://www.facebook.com/whatsinsidethings Music from Epidemic Sound. Sign up here for access to their music library: http://share.epidemicsound.com/pcFwF #shorts #tesla Have our Youtube Videos helped you Decide to buy a Tesla? If so, Please use our Refferral link to purchase one: https://www.tesla.com/referral/daniel3063
https://wn.com/Buying_A_Tesla_Roadster_With_A_Sports_Card
  • 2024 WSOP Online - Main Event [Final Table], $29,193,500 Prize Pool with Jeff Gross & Phil Laak

    2024 WSOP Online: August 18 - September 30 Experience the 2024 WSOP Online Event #28: $5,000 Main Event No-Limit Hold'em with a $29,193,500 prize pool, tune in for intense poker action, and don’t miss a moment of the excitement! "It's time once again. For challengers to become champions. Newcomers to become known. For the lucky to become legends." Live every Tuesday at 14:45 ET / 18:45 GMT. ▬ GGPoker ▬ World’s Biggest Poker Room Best poker hands from top professional poker players show their best bluffs, hero calls, poker faces, and more. Here are some of the best and the greatest poker moments just for you. We show you poker cash games and poker tournaments. WSOP (World Series Of Poker), Poker After Dark, GGMillions are just some of the brands we have to offer. We have it all! #pok...

    published: 24 Sep 2024
  • The Main Event | Official Trailer | Netflix Film

    Are you ready to step into the ring? Watch The Main Event on Netflix April 10.   When 11-year-old Leo Thompson (Seth Carr) discovers a magical wrestling mask that grants him super strength, he uses it to enter a WWE competition. With the support of his grandmother (Tichina Arnold), Leo will do whatever it takes to achieve his dream of becoming a WWE Superstar. Can one kid win it all, in the face of epic challengers in the ring? Directed by Jay Karas, THE MAIN EVENT co-stars Adam Pally, Ken Marino, and features WWE superstars Kofi Kingston, Mike “The Miz” Mizanin, Sheamus, and Babatunde Aiyegbusi as Leo’s ultimate opponent, a gigantic wrestler named Samson. Watch The Main Event on Netflix: https://www.netflix.com/themainevent Subscribe: https://bit.ly/39caHHE About Netflix: Netflix is t...

    published: 27 Mar 2020
  • WWE Saturday Night's Main Event returns this December

    Your Saturday obsession is back! WWE Saturday Night's Main Event returns December 14th. Tickets on sale Friday, September 20th. Presale Thursday, September 19th. “Obsession” by Animotion: Stream on Spotify: https://spoti.fi/3Zmw1HZ Stream on Apple Music: https://apple.co/4daw64O Follow the band on Social Media: Twitter/X: @AnimotionLive Facebook.com/AnimotionLive Instagram: @Animotion_Band Stream WWE on Peacock https://pck.tv/3ZTjVE7 in the U.S. and on WWE Network http://wwe.yt/wwenetwork everywhere else --------------------------------------------------------------------- Follow WWE for more exciting action! - Subscribe to WWE on YouTube: http://wwe.yt/ --------------------------------------------------------------------- Check out WWE.com for news and updates: http://goo.gl/akf0J4 Wa...

    published: 17 Sep 2024
  • Tuesday Night's Main Event

    🔴 https://www.metapcs.com/geeksandgamers/ref/geeks/ USE CODE "G199" FOR A DISCOUNT 🔔 JOIN OUR FAN COMMUNITY, "THE 199" HERE: https://geeksandgamers.locals.com/ 🔴 Become a Geeks + Gamers YOUTUBE MEMBER Here: https://www.youtube.com/channel/UCMvVQIAfsGwzrfPLxiaIG8g/join ⚫ Locals: https://geeksandgamers.locals.com ⚫️ Rumble: https://rumble.com/c/GeeksandGamers ⚫️ Twitch: https://www.twitch.tv/geeks_and_gamers ⚫️ Discord: https://discord.com/invite/r3tDNCx ⚫️ Instagram: https://www.instagram.com/geeksgamerscom/?hl=en ⚫️ Twitter: https://twitter.com/GeeksGamersCom ⚫️ Merch: https://www.221btactical.com/collections/geeks-gamers ⚫ TikTok: https://www.tiktok.com/@geeksgamerscom?_t=8gZVmZhMvba&_r=1 🟢 Website: https://www.geeksandgamers.com/registration/ SUBSCRIBE TO OUR OTHER CHANNELS 🔵 Sports...

    published: 25 Sep 2024
  • The Main Event

    Provided to YouTube by Artlist Original The Main Event · Wav Haven · Frank Bentley · Anthony Mareo The Main Event ℗ 2023 Artlist Original - Use This Song in Your Video - Go to Artlist.io Released on: 2023-04-20 Producer: Eustace Anthony Ferdinand Music Publisher: Artlist Original Music Music Publisher: Artlist Original Music Composer Lyricist: Kadeem Justin Ferdinand Composer Lyricist: Eustace Anthony Ferdinand Auto-generated by YouTube.

    published: 19 Apr 2023
  • WSOP Main Event 2024 - Crazy Hands on Day 1a ft Michael Mizrachi & Daniel Hachem

    The greatest poker tournament of the year is finally here! Catch up on the highlights from Day 1a featuring poker legend Michael Mizrachi and Daniel Hachem. - Want to run huge bluffs and take down big pots? Unleash your potential with GTO Wizard, the most sophisticated poker solver in the industry. Try it now at https://bit.ly/GTOWizard-PokerGO and get free access to all features for the first 24 hours! - Subscribe to our YouTube channel: http://bit.ly/PokerGOSubscribe - PokerGO Shop: http://bit.ly/PokerGOshop Connect with PokerGO on Social: - Facebook: https://www.facebook.com/pokergo/ - Instagram: https://www.instagram.com/pokergo/ - Twitter: https://twitter.com/pokergo

    published: 04 Jul 2024
  • Main Event

    Provided to YouTube by Stem Disintermedia Inc. Main Event · RuPaul Champion ℗ 2009 RuCo, Inc Released on: 2009-04-07 Writer: RuPaul Andre Charles Writer: Lucian Piane Auto-generated by YouTube.

    published: 30 Jun 2023
  • $4,000,000 for 1st! - 2024 WSOP ONLINE MAIN EVENT Day 2

    We're back and streaming from Canada and it's Day 2 of the Main Event with over $4,000,000 and a bracelet for the winner. Check out my MasterClass: https://www.masterclass.com/classes/daniel-negreanu-teaches-poker Use PROMO CODE KIDPOKER20 to get 20% off at https://contendersclothing.com/?rfsn=2748061.19d46 Check out my DAT Poker Podcast at https://podcasts.apple.com/us/podcast​... and subscribe on iTunes. Follow Me, Daniel Negreanu, Online Here: https://linktr.ee/dnegspoker https://twitter.com/RealKidPoker https://www.instagram.com/dnegspoker/ https://www.facebook.com/DNegsPoker

    published: 23 Sep 2024
  • Railing Coenaldinho in WSOP Main Event - 66 left!!! 4M on top!!!!

    Railing Coenaldinho in WSOP Main Event - 66 left!!! 4M on top!!!!

    published: 24 Sep 2024
  • WSOP Main Event 2024 - Day 1c INSANE HANDS with Phil Hellmuth & Arden Cho

    Phil Helmuth and Arden Cho headlined the action on Day 1c of the 2024 WSOP Main Event with so absolutely crazy hands! - Want to run huge bluffs and take down big pots? Unleash your potential with GTO Wizard, the most sophisticated poker solver in the industry. Try it now at https://bit.ly/GTOWizard-PokerGO and get free access to all features for the first 24 hours! - Subscribe to our YouTube channel: http://bit.ly/PokerGOSubscribe - PokerGO Shop: http://bit.ly/PokerGOshop Connect with PokerGO on Social: - Facebook: https://www.facebook.com/pokergo/ - Instagram: https://www.instagram.com/pokergo/ - Twitter: https://twitter.com/pokergo

    published: 06 Jul 2024
2024 WSOP Online - Main Event [Final Table], $29,193,500 Prize Pool with Jeff Gross & Phil Laak
4:28:28

2024 WSOP Online - Main Event [Final Table], $29,193,500 Prize Pool with Jeff Gross & Phil Laak

  • Order:
  • Duration: 4:28:28
  • Uploaded Date: 24 Sep 2024
  • views: 84338
2024 WSOP Online: August 18 - September 30 Experience the 2024 WSOP Online Event #28: $5,000 Main Event No-Limit Hold'em with a $29,193,500 prize pool, tune in for intense poker action, and don’t miss a moment of the excitement! "It's time once again. For challengers to become champions. Newcomers to become known. For the lucky to become legends." Live every Tuesday at 14:45 ET / 18:45 GMT. ▬ GGPoker ▬ World’s Biggest Poker Room Best poker hands from top professional poker players show their best bluffs, hero calls, poker faces, and more. Here are some of the best and the greatest poker moments just for you. We show you poker cash games and poker tournaments. WSOP (World Series Of Poker), Poker After Dark, GGMillions are just some of the brands we have to offer. We have it all! #poker #ggpoker #onlinepoker #wsop2024 #wsoponline #phillaak
https://wn.com/2024_Wsop_Online_Main_Event_Final_Table_,_29,193,500_Prize_Pool_With_Jeff_Gross_Phil_Laak
The Main Event | Official Trailer | Netflix Film
2:44

The Main Event | Official Trailer | Netflix Film

  • Order:
  • Duration: 2:44
  • Uploaded Date: 27 Mar 2020
  • views: 243463
Are you ready to step into the ring? Watch The Main Event on Netflix April 10.   When 11-year-old Leo Thompson (Seth Carr) discovers a magical wrestling mask that grants him super strength, he uses it to enter a WWE competition. With the support of his grandmother (Tichina Arnold), Leo will do whatever it takes to achieve his dream of becoming a WWE Superstar. Can one kid win it all, in the face of epic challengers in the ring? Directed by Jay Karas, THE MAIN EVENT co-stars Adam Pally, Ken Marino, and features WWE superstars Kofi Kingston, Mike “The Miz” Mizanin, Sheamus, and Babatunde Aiyegbusi as Leo’s ultimate opponent, a gigantic wrestler named Samson. Watch The Main Event on Netflix: https://www.netflix.com/themainevent Subscribe: https://bit.ly/39caHHE About Netflix: Netflix is the world's leading streaming entertainment service with over 167 million paid memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without adverts or commitments. Find Netflix Malaysia on: ➡️INSTAGRAM: https://www.instagram.com/netflixmy ➡️TWITTER: https://twitter.com/netflixmy ➡️FACEBOOK: https://www.facebook.com/NetflixMY Find Netflix Singapore on: ➡️INSTAGRAM: https://www.instagram.com/netflixsg ➡️FACEBOOK: https://www.facebook.com/NetflixSG The Main Event | Official Trailer | Netflix Film https://www.youtube.com/NetflixAsia Using special powers from a magical mask, a young WWE fan causes chaos when he enters a wrestling competition and fights an intimidating rival.
https://wn.com/The_Main_Event_|_Official_Trailer_|_Netflix_Film
WWE Saturday Night's Main Event returns this December
0:33

WWE Saturday Night's Main Event returns this December

  • Order:
  • Duration: 0:33
  • Uploaded Date: 17 Sep 2024
  • views: 156154
Your Saturday obsession is back! WWE Saturday Night's Main Event returns December 14th. Tickets on sale Friday, September 20th. Presale Thursday, September 19th. “Obsession” by Animotion: Stream on Spotify: https://spoti.fi/3Zmw1HZ Stream on Apple Music: https://apple.co/4daw64O Follow the band on Social Media: Twitter/X: @AnimotionLive Facebook.com/AnimotionLive Instagram: @Animotion_Band Stream WWE on Peacock https://pck.tv/3ZTjVE7 in the U.S. and on WWE Network http://wwe.yt/wwenetwork everywhere else --------------------------------------------------------------------- Follow WWE for more exciting action! - Subscribe to WWE on YouTube: http://wwe.yt/ --------------------------------------------------------------------- Check out WWE.com for news and updates: http://goo.gl/akf0J4 Watch WWE on Sony in India: http://www.wwe.com/SonySportsNetwork Watch WWE on Shahid: http://www.wwe.com/yt-shahid Find the latest Superstar gear at WWEShop: http://shop.wwe.com --------------------------------------------- Check out these other channels! --------------------------------------------- WWE Vault: http://www.youtube.com/@WWEVault WWE Español: https://www.youtube.com/@wweespanol UpUpDownDown: https://www.youtube.com/upupdowndown Celtic Warrior Workouts: https://www.youtube.com/@CelticWarriorWorkouts WWE Music: https://www.youtube.com/wwemusic ------------------------------------ WWE on Social Media ------------------------------------ X: https://twitter.com/wwe Facebook: https://www.facebook.com/wwe Instagram: https://www.instagram.com/wwe/ TikTok: https://www.tiktok.com/@wwe ------------------------------------
https://wn.com/Wwe_Saturday_Night's_Main_Event_Returns_This_December
Tuesday Night's Main Event
3:04:40

Tuesday Night's Main Event

  • Order:
  • Duration: 3:04:40
  • Uploaded Date: 25 Sep 2024
  • views: 28027
🔴 https://www.metapcs.com/geeksandgamers/ref/geeks/ USE CODE "G199" FOR A DISCOUNT 🔔 JOIN OUR FAN COMMUNITY, "THE 199" HERE: https://geeksandgamers.locals.com/ 🔴 Become a Geeks + Gamers YOUTUBE MEMBER Here: https://www.youtube.com/channel/UCMvVQIAfsGwzrfPLxiaIG8g/join ⚫ Locals: https://geeksandgamers.locals.com ⚫️ Rumble: https://rumble.com/c/GeeksandGamers ⚫️ Twitch: https://www.twitch.tv/geeks_and_gamers ⚫️ Discord: https://discord.com/invite/r3tDNCx ⚫️ Instagram: https://www.instagram.com/geeksgamerscom/?hl=en ⚫️ Twitter: https://twitter.com/GeeksGamersCom ⚫️ Merch: https://www.221btactical.com/collections/geeks-gamers ⚫ TikTok: https://www.tiktok.com/@geeksgamerscom?_t=8gZVmZhMvba&_r=1 🟢 Website: https://www.geeksandgamers.com/registration/ SUBSCRIBE TO OUR OTHER CHANNELS 🔵 Sports Wars: https://www.youtube.com/channel/UCGcW1IvvBzwUgOPNQsbUSSQ 🔵 Park Hoppin: https://www.youtube.com/channel/UCPpTgs3RhBm0t_A0wm3fFUw 🔵 Geeks + Gamers Play: https://www.youtube.com/channel/UCsXv5AagFpkiS-W0m_5rxjQ 🔵 Geeks + Gamers Tabletop: https://www.youtube.com/channel/UCYarT8tHAa9mYNrabtiNhJA/featured 🔵 Geeks + Gamers 2: https://www.youtube.com/@geeksandgamers2 🔵 Geeks + Gamers Clips: https://www.youtube.com/@geeksandgamerslife 📦✉️ P.O BOX 10057 : Jeremy Prime Pensacola Florida, USA 32524 Check out the Geeks + Gamers video game FACT BLAST! https://t-rev.itch.io/factblast
https://wn.com/Tuesday_Night's_Main_Event
The Main Event
2:30

The Main Event

  • Order:
  • Duration: 2:30
  • Uploaded Date: 19 Apr 2023
  • views: 87688
Provided to YouTube by Artlist Original The Main Event · Wav Haven · Frank Bentley · Anthony Mareo The Main Event ℗ 2023 Artlist Original - Use This Song in Your Video - Go to Artlist.io Released on: 2023-04-20 Producer: Eustace Anthony Ferdinand Music Publisher: Artlist Original Music Music Publisher: Artlist Original Music Composer Lyricist: Kadeem Justin Ferdinand Composer Lyricist: Eustace Anthony Ferdinand Auto-generated by YouTube.
https://wn.com/The_Main_Event
WSOP Main Event 2024 - Crazy Hands on Day 1a ft Michael Mizrachi & Daniel Hachem
13:07

WSOP Main Event 2024 - Crazy Hands on Day 1a ft Michael Mizrachi & Daniel Hachem

  • Order:
  • Duration: 13:07
  • Uploaded Date: 04 Jul 2024
  • views: 109362
The greatest poker tournament of the year is finally here! Catch up on the highlights from Day 1a featuring poker legend Michael Mizrachi and Daniel Hachem. - Want to run huge bluffs and take down big pots? Unleash your potential with GTO Wizard, the most sophisticated poker solver in the industry. Try it now at https://bit.ly/GTOWizard-PokerGO and get free access to all features for the first 24 hours! - Subscribe to our YouTube channel: http://bit.ly/PokerGOSubscribe - PokerGO Shop: http://bit.ly/PokerGOshop Connect with PokerGO on Social: - Facebook: https://www.facebook.com/pokergo/ - Instagram: https://www.instagram.com/pokergo/ - Twitter: https://twitter.com/pokergo
https://wn.com/Wsop_Main_Event_2024_Crazy_Hands_On_Day_1A_Ft_Michael_Mizrachi_Daniel_Hachem
Main Event
4:31

Main Event

  • Order:
  • Duration: 4:31
  • Uploaded Date: 30 Jun 2023
  • views: 152719
Provided to YouTube by Stem Disintermedia Inc. Main Event · RuPaul Champion ℗ 2009 RuCo, Inc Released on: 2009-04-07 Writer: RuPaul Andre Charles Writer: Lucian Piane Auto-generated by YouTube.
https://wn.com/Main_Event
$4,000,000 for 1st! - 2024 WSOP ONLINE MAIN EVENT Day 2
5:16:22

$4,000,000 for 1st! - 2024 WSOP ONLINE MAIN EVENT Day 2

  • Order:
  • Duration: 5:16:22
  • Uploaded Date: 23 Sep 2024
  • views: 313500
We're back and streaming from Canada and it's Day 2 of the Main Event with over $4,000,000 and a bracelet for the winner. Check out my MasterClass: https://www.masterclass.com/classes/daniel-negreanu-teaches-poker Use PROMO CODE KIDPOKER20 to get 20% off at https://contendersclothing.com/?rfsn=2748061.19d46 Check out my DAT Poker Podcast at https://podcasts.apple.com/us/podcast​... and subscribe on iTunes. Follow Me, Daniel Negreanu, Online Here: https://linktr.ee/dnegspoker https://twitter.com/RealKidPoker https://www.instagram.com/dnegspoker/ https://www.facebook.com/DNegsPoker
https://wn.com/4,000,000_For_1St_2024_Wsop_Online_Main_Event_Day_2
Railing Coenaldinho in WSOP Main Event - 66 left!!! 4M on top!!!!
9:35:39

Railing Coenaldinho in WSOP Main Event - 66 left!!! 4M on top!!!!

  • Order:
  • Duration: 9:35:39
  • Uploaded Date: 24 Sep 2024
  • views: 100
Railing Coenaldinho in WSOP Main Event - 66 left!!! 4M on top!!!!
https://wn.com/Railing_Coenaldinho_In_Wsop_Main_Event_66_Left_4M_On_Top
WSOP Main Event 2024 - Day 1c INSANE HANDS with Phil Hellmuth & Arden Cho
18:43

WSOP Main Event 2024 - Day 1c INSANE HANDS with Phil Hellmuth & Arden Cho

  • Order:
  • Duration: 18:43
  • Uploaded Date: 06 Jul 2024
  • views: 285066
Phil Helmuth and Arden Cho headlined the action on Day 1c of the 2024 WSOP Main Event with so absolutely crazy hands! - Want to run huge bluffs and take down big pots? Unleash your potential with GTO Wizard, the most sophisticated poker solver in the industry. Try it now at https://bit.ly/GTOWizard-PokerGO and get free access to all features for the first 24 hours! - Subscribe to our YouTube channel: http://bit.ly/PokerGOSubscribe - PokerGO Shop: http://bit.ly/PokerGOshop Connect with PokerGO on Social: - Facebook: https://www.facebook.com/pokergo/ - Instagram: https://www.instagram.com/pokergo/ - Twitter: https://twitter.com/pokergo
https://wn.com/Wsop_Main_Event_2024_Day_1C_Insane_Hands_With_Phil_Hellmuth_Arden_Cho
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • $130,000 for This Rookie Card!
    0:43
    $130,000 for This Rookie Card!remove from playlist
  • Judging OVER $16 MILLION of Sports Card purchases!!
    0:35
    Judging OVER $16 MILLION of Sports Card purchases!!remove from playlist
  • I Bought Sports Cards For 8 HOURS At The National Card Show! 💵
    27:16
    I Bought Sports Cards For 8 HOURS At The National Card Show! 💵remove from playlist
  • Buying a Tesla Roadster with a Sports Card?
    0:57
    Buying a Tesla Roadster with a Sports Card?remove from playlist
PLAYLIST TIME: 0:00 / 29:31

$130,000 for This Rookie Card!

I traded $130,000 worth of cards just to own this one ultra rare rookie card Track card prices & your collection with Market Movers►: https://bit.ly/marketmoversapp Discounted PSA/BGS/SGC Card Grading ►: https://bit.ly/gradingservice Download our Apps! SCI App (Apple)►: https://apple.co/3riGbb5 SCI App (Google)►: https://bit.ly/SCIAPPGooglePlay More SCI Products/Services: Display your card collection►: https://bit.ly/standupdisplays Protect Your Slabs►: https://bit.ly/slabstrong Sports Card Art►: https://bit.ly/scipaitings SCI Swag►: https://bit.ly/swagsci Follow Us: SCI Instagram►: https://bit.ly/SCIIG SCI Twitter►: https://bit.ly/scitweets SCI Facebook►: https://bit.ly/FBSCIPage Geoff’s IG►: https://bit.ly/itsgeoffwilson Geoff’s YouTube►: https://bit.ly/ytgeoff Card Kids YouTube►: https://bit.ly/cardkidsyt Market Movers YouTube►: https://bit.ly/marketmoversyt
0:43
$130,000 for This Rookie Card!
I traded $130,000 worth of cards just to own this one ultra rare rookie card Track card p...
published: 24 May 2023
Play in Full Screen
0:35
Judging OVER $16 MILLION of Sports Card purchases!!
These cards sold for over $16,000,000 in 2021. How much are they worth today, and were th...
published: 18 Nov 2022
Play in Full Screen
27:16
I Bought Sports Cards For 8 HOURS At The National Card Show! 💵
For the past 14 years, I've been fortunate enough to go to the biggest sports card show in...
published: 30 Jul 2024
Play in Full Screen
0:57
Buying a Tesla Roadster with a Sports Card?
I bought a box of Topps Chrome basketball cards! Did we find a LeBron James rookie card?! ...
published: 12 Feb 2021
Play in Full Screen

Card (sports)

In sports, a card comprises a listing of the matches taking place in a title-match combat-sport event. Organizers divide overall cards into a main-event match and the undercard, which encompasses the rest of the matches. One can also further subdivide the undercard into midcard and lower card, according to the perceived importance of the matches. Promoters schedule matches to occur in ascending order of importance.

Division

Undercard

The undercard, or preliminary matches (sometimes preliminary card), consists of preliminary bouts that occur before the headline or "main event" of a particular boxing,professional wrestling, horse racing, auto racing, or other sports event. (In auto racing, however, the term "support race" occurs more commonly.) Typically, promoters intend the undercard to provide fans with an opportunity to see up-and-coming fighters or fighters not so well known and popular as their counterparts in the main event. The undercard also ensures that if the main event ends quickly fans will still feel that they received sufficient value for the price of their admission.

  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • 2024 WSOP Online - Main Event [Final Table], $29,193,500 Prize Pool with Jeff Gross & Phil Laak
    4:28:28
    2024 WSOP Online - Main Event [Final Table], $29,193,500 Prize Pool with Jeff Gross & Phil Laakremove from playlist
  • The Main Event | Official Trailer | Netflix Film
    2:44
    The Main Event | Official Trailer | Netflix Filmremove from playlist
  • WWE Saturday Night's Main Event returns this December
    0:33
    WWE Saturday Night's Main Event returns this Decemberremove from playlist
  • Tuesday Night's Main Event
    3:04:40
    Tuesday Night's Main Eventremove from playlist
  • The Main Event
    2:30
    The Main Eventremove from playlist
  • WSOP Main Event 2024 - Crazy Hands on Day 1a ft Michael Mizrachi & Daniel Hachem
    13:07
    WSOP Main Event 2024 - Crazy Hands on Day 1a ft Michael Mizrachi & Daniel Hachemremove from playlist
  • Main Event
    4:31
    Main Eventremove from playlist
  • $4,000,000 for 1st! - 2024 WSOP ONLINE MAIN EVENT Day 2
    5:16:22
    $4,000,000 for 1st! - 2024 WSOP ONLINE MAIN EVENT Day 2remove from playlist
  • WSOP Main Event 2024 - Day 1c INSANE HANDS with Phil Hellmuth & Arden Cho
    18:43
    WSOP Main Event 2024 - Day 1c INSANE HANDS with Phil Hellmuth & Arden Choremove from playlist
PLAYLIST TIME: 0:00 / 23:07:17

2024 WSOP Online - Main Event [Final Table], $29,193,500 Prize Pool with Jeff Gross & Phil Laak

2024 WSOP Online: August 18 - September 30 Experience the 2024 WSOP Online Event #28: $5,000 Main Event No-Limit Hold'em with a $29,193,500 prize pool, tune in for intense poker action, and don’t miss a moment of the excitement! "It's time once again. For challengers to become champions. Newcomers to become known. For the lucky to become legends." Live every Tuesday at 14:45 ET / 18:45 GMT. ▬ GGPoker ▬ World’s Biggest Poker Room Best poker hands from top professional poker players show their best bluffs, hero calls, poker faces, and more. Here are some of the best and the greatest poker moments just for you. We show you poker cash games and poker tournaments. WSOP (World Series Of Poker), Poker After Dark, GGMillions are just some of the brands we have to offer. We have it all! #poker #ggpoker #onlinepoker #wsop2024 #wsoponline #phillaak
4:28:28
2024 WSOP Online - Main Event [Final Table], $29,193,500 Prize Pool with Jeff Gross & Phil Laak
2024 WSOP Online: August 18 - September 30 Experience the 2024 WSOP Online Event #28: $5,...
published: 24 Sep 2024
Play in Full Screen
2:44
The Main Event | Official Trailer | Netflix Film
Are you ready to step into the ring? Watch The Main Event on Netflix April 10.   When 11-...
published: 27 Mar 2020
Play in Full Screen
0:33
WWE Saturday Night's Main Event returns this December
Your Saturday obsession is back! WWE Saturday Night's Main Event returns December 14th. Ti...
published: 17 Sep 2024
Play in Full Screen
3:04:40
Tuesday Night's Main Event
🔴 https://www.metapcs.com/geeksandgamers/ref/geeks/ USE CODE "G199" FOR A DISCOUNT 🔔 JOIN...
published: 25 Sep 2024
Play in Full Screen
2:30
The Main Event
Provided to YouTube by Artlist Original The Main Event · Wav Haven · Frank Bentley · Anth...
published: 19 Apr 2023
Play in Full Screen
13:07
WSOP Main Event 2024 - Crazy Hands on Day 1a ft Michael Mizrachi & Daniel Hachem
The greatest poker tournament of the year is finally here! Catch up on the highlights from...
published: 04 Jul 2024
Play in Full Screen
4:31
Main Event
Provided to YouTube by Stem Disintermedia Inc. Main Event · RuPaul Champion ℗ 2009 RuCo...
published: 30 Jun 2023
Play in Full Screen
5:16:22
$4,000,000 for 1st! - 2024 WSOP ONLINE MAIN EVENT Day 2
We're back and streaming from Canada and it's Day 2 of the Main Event with over $4,000,000...
published: 23 Sep 2024
Play in Full Screen
9:35:39
Railing Coenaldinho in WSOP Main Event - 66 left!!! 4M on top!!!!
Railing Coenaldinho in WSOP Main Event - 66 left!!! 4M on top!!!!
published: 24 Sep 2024
Play in Full Screen
18:43
WSOP Main Event 2024 - Day 1c INSANE HANDS with Phil Hellmuth & Arden Cho
Phil Helmuth and Arden Cho headlined the action on Day 1c of the 2024 WSOP Main Event with...
published: 06 Jul 2024
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×