- published: 27 Sep 2019
- views: 26065346
'+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; })); }); -->
Dream Team may refer to:
The 1992 United States men's Olympic basketball team, nicknamed the "Dream Team", was the first American Olympic team to feature active NBA players. Described by American journalists as the greatest sports team ever assembled, and called by the Naismith Memorial Basketball Hall of Fame "the greatest collection of basketball talent on the planet", it defeated its opponents by an average of 44 points en route to the gold medal against Croatia at the 1992 Summer Olympics held in Barcelona, Spain.Chuck Daly served as coach, assisted by Lenny Wilkens, P. J. Carlesimo, and Mike Krzyzewski.
At the 1988 Summer Olympics in Seoul, the United States national basketball team, made up of college stars, finished in third place. The defeat increased calls for professionals to be allowed to play in the Olympics. Borislav Stanković of FIBA advocated for this for years until the organization agreed in April 1989 despite American and Russian votes against the proposal.USA Basketball asked the NBA to supply players for its 1992 roster; the league was initially unenthusiastic, not foreseeing the cultural phenomenon that the team would become.Sports Illustrated was the first to nickname the forthcoming American roster as the "Dream Team", on the cover of its February 18, 1991 issue. So many corporate sponsors (including McDonald's, Coca-Cola, and Kellogg) wished to use the team to advertise their products that some were rejected.
The Dream Team was an Australian Football League (AFL) representative team created to take part in the AFL Hall of Fame Tribute Match against a Victorian representative team.
Although not officially a State of Origin game, eligibility for the Dream Team was based upon State of Origin rules: players who played their junior football within Victoria were eligible for Victoria, and players who played their junior football outside Victoria (including international players) were eligible for the Dream Team. The "Dream Team" concept was similar to the Allies, a composite State of Origin team representing players from anywhere except for South Australia, Victoria and Western Australia.
The Dream Team wore a predominantly white guernsey, with beige cuffs and collars, and blue numbers and side panels. The names of 1246 community and grass-roots football clubs competing within the Australian states and territories eligible for the Dream Team were also included in beige across the front.
A-Next is the Marvel Comics' MC2 universe version of the Avengers. The team made its first appearance in What If? #105, the first comic featuring Spider-Girl, and the team's origin story was told in the A-Next #1, cover dated October 1998.
The first issue of A-Next paid homage to The Avengers (vol. 1) #1, with an Asgardian menace prompting new superheroes to band together, all of them analogues to the original team. Future stories introduced new heroes and menaces, most of them based on pre-existing Marvel characters. Characters and story elements created by DeFalco in the comic were used in other comics in the MC2 Universe.
A five issue miniseries entitled Avengers Next ran from November 2006 to January 2007, written by Tom DeFalco and with artwork by Ron Lim, that followed on from the events of Last Hero Standing and Last Planet Standing. It reunited the remaining members of A-Next and added new members Sabreclaw, Kate Power (of Power Pack), Thena, the daughter of Thor and a former criminal teleporter called Warp to the team.
Dream Team is a 1999 gay pornographic film, written and directed by Jerry Douglas, starring Tony Donovan, Rick Chase and Kurt Young, and produced by Studio 2000. This movie tells the coming-of-age stories of a group of high school basketball team players who come to terms with their sexualities at a young age in 1957, and later in a 1962 reunion.
NOTE: This film has character names. However, names of real-life performers are used in this article.
The story is set in Herbert Hoover High School in Heartland Heights, Iowa. It features seven former high school basketball players, part of the class of 1957, and it then shows their five-year reunion in 1962. The movie switches scenes between high school and the reunion.
In 1962, Rick Chase is now an actor in California. Aaron Lawrence becomes a reverend primarily to repress his homosexuality and his love for Chase. Tony Donovan is unhappily married with a wife and children, and Kurt Young cruises around with men and women. Scott Lyons has turned to drink. Kristian Brooks and Lucas James are secret lovers.
The eighth series of Dream Team was broadcast on Sky1 from October 2004 to May 2005, covering the 2004-05 English football season. It followed the story of Harchester United attempting to return to the Premier League after relegation the previous season and their first participation in the UEFA Champions League.
Several new faces were brought on board for season eight, mainly within the backroom staff of the club. The most notable of the new signings was former Boyzone singer Shane Lynch, in his first major acting role on television.
WOW! The dance crew from India delivered some of the most incredible flips that AGT has EVER seen! » Get The America's Got Talent App: http://bit.ly/AGTAppDownload » Subscribe for More: http://bit.ly/AGTSub » America's Got Talent Tuesdays 8/7c on NBC! » Stream on Peacock: https://pck.tv/3cCQGhH AMERICA'S GOT TALENT ON SOCIAL Like AGT: https://www.facebook.com/agt Follow AGT: https://twitter.com/agt AGT Instagram: http://instagram.com/agt In season 14, NBC's America's Got Talent follows Simon Cowell, Julianne Hough, Gabrielle Union, Howie Mandel, and host Terry Crews in their talent search, showcasing unique performers from across the country. Find America's Got Talent trailers, full episode highlights, previews, promos, clips, and digital exclusives here. NBC ON SOCIAL Like NBC: http:/...
Hey, if you hadn't had a chance to watch HERE are the best AGT 2023 auditions 👉 https://youtu.be/V55xv4zaXL8 📣 What?! Did you see these famous contestants return years later? HERE 👉 https://www.youtube.com/watch?v=BCbiJsGq8W4 America's Got Talent | Season 14 | Episode 8 | Judge Cuts 2 #AGT #AmericasGotTalent #TalentRecap For more HD videos, news, analysis and recaps of America's Got Talent – please subscribe & follow Talent Recap: https://talentrecap.com/ In season 14, NBC's America's Got Talent follows Simon Cowell, Julianne Hough, Gabrielle Union, Howie Mandel, and host Terry Crews in their talent search, showcasing unique performers from across the country. For more HD full episode videos, news and recaps of America’s Got Talent – please subscribe & follow AMERICA'S GOT TALENT ON ...
V Unbeatable performed a magnificent act in America's Got Talent 2019. New Video - https://youtu.be/equi1LlPDsE __________________________________________ YouTube Managed - Sujeet Chauhan For any query : - https://www.instagram.com/sujeet_sing... __________________________________________
Congratulations to V.UNBEATABLE for winning Season 2 of America's Got Talent: The Champions! The dance group from India has come so far to win it all. » Get The America's Got Talent App: http://bit.ly/AGTAppDownload » Subscribe for More: http://bit.ly/AGTSub » America's Got Talent Tuesdays 8/7c on NBC! » Stream on Peacock: https://pck.tv/3cCQGhH AMERICA'S GOT TALENT ON SOCIAL Like AGT: https://www.facebook.com/agt Follow AGT: https://twitter.com/agt AGT Instagram: http://instagram.com/agt "America’s Got Talent: The Champions" brings together the world’s most talented, memorable and all-around fan-favorite acts from past seasons of "AGT" and the other "Got Talent" franchises, spanning 194 territories. Find America's Got Talent: The Champions trailers, full episode highlights, previews, p...
. . Hey, if you hadn't had a chance to watch HERE are the best AGT 2023 auditions 👉 https://youtu.be/V55xv4zaXL8 📣 What?! Did you see these famous contestants return years later? HERE 👉 https://www.youtube.com/watch?v=BCbiJsGq8W4 America's Got Talent: The Champions | Season 2 | Finals #AGTchampions #AmericasGotTalent #TalentRecap For more HD videos, news, analysis and recaps of America's Got Talent: Champions – please subscribe & follow Talent Recap: https://talentrecap.com/ TALENT RECAP ON SOCIAL: YouTube: https://goo.gl/6pybnw Like: https://www.facebook.com/talentrecap/ Follow: https://twitter.com/TalentRecap Google+: https://goo.gl/jR9eS5 Instagram: https://www.instagram.com/talentrecap/ AMERICA'S GOT TALENT ON SOCIAL Like AGT: https://www.facebook.com/agt Follow AGT: https://twit...
Hey, if you hadn't had a chance to watch HERE are the best AGT 2023 auditions 👉 https://youtu.be/V55xv4zaXL8 📣 What?! Did you see these famous contestants return years later? HERE 👉 https://www.youtube.com/watch?v=BCbiJsGq8W4 America's Got Talent: The Champions | Season 2 | Round Three #AGTchampions #AmericasGotTalent #TalentRecap For more HD videos, news, analysis and recaps of America's Got Talent: Champions – please subscribe & follow Talent Recap: https://talentrecap.com/ TALENT RECAP ON SOCIAL: YouTube: https://goo.gl/6pybnw Like: https://www.facebook.com/talentrecap/ Follow: https://twitter.com/TalentRecap Google+: https://goo.gl/jR9eS5 Instagram: https://www.instagram.com/talentrecap/ AMERICA'S GOT TALENT ON SOCIAL Like AGT: https://www.facebook.com/agt Follow AGT: https://twi...
中国梦之队跳水简直无人能敌,碾压马来西亚38分,狂甩澳大利亚70分,强势夺冠! 哈喽~大家好呀~ 这里是✦今朝体育✦ ❤大郭带你观体育,看人生 ❤传奇体育明星的真实故事 ❤赛场之下的真实人生 ❤持续优质内容,欢迎关注 -------------------------------------------------------------------------------- 天天有好作品!喜欢可以关注我哟!不要忘记点击小铃铛🔔 订阅:https://bit.ly/3hZYhg7 中国梦之队跳水简直无人能敌,碾压马来西亚38分,狂甩澳大利亚70分,强势夺冠!【今朝体育】 #体育赛事#体育#足球
World of Dance upper team The Kings from India perform in the finals. I do not own the rights to this video or the music, I’m just sharing and promoting amazing dance talent. Please contact me if you prefer to have your video removed. Positive comments only please so the dancers can be encouraged and grow!
My social media: Instagram:https://www.instagram.com/mycoolvideos.yt/ Facebook:https://www.facebook.com/Mycoolvideos-1408077529511432/?ref=br_rs You are football and you want to go to the biggest show on earth? Then click the link below and win free tickets in a fun way. http://bit.ly/FreeWorldcupTicket The Last Game full edition SINCEMILE Nude Sexy Matte Lipstick Long Lasting Moisturizing : https://click.alibaba.com/rd/eraivsed
Dmitri Volkov (RUS), Egor Kliuka (RUS), Bartosz Bednorz (POL), Ivan Iakovlev (RUS), Max Holt (USA), Erik Shoji (USA), Micah Christenson (USA) & Matt Anderson (USA) are already some of the best volleyball players over the world, but what could they do together as a team? Imagine & Enjoy watching! #VNL #VNL2019 #BePartOfTheGame ▶▶ Watch ALL the Volleyball Action https://go.volleyball.world/TV?ytv=d ▶▶ Subscribe NOW https://go.volleyball.world/Subscribe?ytv=d ▶▶ News, Schedules, Results & more: https://go.volleyball.world/VNL?ytv=d FOLLOW US ON SOCIAL MEDIA 📱 Instagram: https://go.volleyball.world/Instagram?ytv=d Facebook: https://go.volleyball.world/Facebook?ytv=d Twitter: https://go.volleyball.world/Twitter?ytv=d More info: https://go.volleyball.world/home?ytv=d
Dream Team may refer to:
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
The other day a friend gave me a call
He said that the dream team was playin' basketball
Was so excited I had a get a witness
The first time the NBA was in the 'lympics
I tuned in because I was hella psyched
To see Magic Johnson on the same team with Mike
Gettin' crazy and havin' lots of fun
We were makin' sure that they got the job done
The fans were wavin' the red white end blue
It seemed strange to me was it strange to you?
The brotha's on the street and everyone is scared a ya
So how could ten Africans represent America?
Bullshit it didn't mean a thing 'cause in the same year
We saw Rodney King
So I thought that I would put a team together
A team that I have been waitin' for forever
Well some of you may know exactly who I mean
But if you don't then let me introduce you to
My dream team
Spearhead in the area
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Well chuck D's announcin' flava's, flava's doin' color
And halftime entertainment is by Dre and Ed Lover
Malcolm X is the coach he's drawin' up the strategy
We're choppin' appart all America's anatomy
'Cause they're the ones we're up against of course
Our general manager is chief crazy horse
Huey Newton 'cause he was extra hard
He's the one who would be playin' at the shootin' guard
I dreamed Charles Barkley would be played by Marcus Garvey
He'd be throwin' people off his back and makin'
Sure they never got a rebound rebound and he'd throw it to the outlet
Nat Turner 'cause he can turn the corner when he's out there
He be flyin' through the air and throwin' passes like he really doesn't care
Behind the back and in between the legs
He's handlin' the rock as gently as an egg
He's throwin' it into Angela Davis's neighborhood
She's postin' up down in the extra hard wood
When she grabs the pill and then she puts her shoulder down
Get out the way because she's gonna throw down now
Boom oh my God, I just can't believe it
Well get another backboard or better yet leave it
We always play for fun, we always play for keeps
The game is over and the loser's gotta sweep
Up the glass that we busted in the ass
Set the record straight about America's past
This is my dream team
Spearhead in the area
Dream team's in the house
Dream team's in the house
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Well after doin' that we be headin' for the ceremony
And on the heart is a bunch of baloney
The spirit of the '68 Olympics
Black power people can I get a witness
Fist in the air this is the proper manners
While Jimi Hendrix is fuckin' up the spangled banner
Up into the sky miles Davis blows a horn
Look into the bleachers, it's Bill Clinton sellin' popcorn
So now we jump and we have a celebration
Shaquille 0'neal would provide the entertainment
To some of you this is a far fetched scheme
But to me, I'll tell you what it is
This is my dream team
Spearhead in the area
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green