- published: 04 May 2022
- views: 516700684
'+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; })); }); -->
Alisa (Russian: Алиса) is a Russian hard rock band, who are credited as one of the most influential bands in the Russian rock movement.
Alisa was formed in November 1983 by bassist Svyatoslav Zadery. The band's name originated from Zadery nickname. The band's lineup was finally completed in 1984, when new vocalist Kostya Kinchev (real name Konstantin Panfilov) and guitarist Petr Samoylov joined. Their debut album Energia was released by state publishing monopoly Melodiya and sold more than a million copies.
But the relations between two leaders, Konstantin and Zadery, were deteriorating, and finally Svyatoslav departed from the band. This occurred just one hour before Alisa was to perform at a concert. Alisa had to ask Kino bassist Igor Tihomirov to replace him for one concert. Later Zadery created his own band Nateh! (Russian: НАТЕ! - "Take that!"). Zadery died on 6 May 2011 due to complications from a stroke at the age of 50.
The growing popularity of the band created a fan community called the Army of Alisa, known for their rough behaviour at concerts. It led to animosity between the band and Soviet officials. In 1987, the newspaper Smena accused Alisa's leader Kinchev of Nazi propaganda and worshiping Hitler. Kinchev filed a suit for calumny and moral loss compensation. After the year-long court process the magazine published the refutation. Alisa's next album was titled Article 206 part 2, a chapter ("Hooliganism") of the USSR Procedural Code, alluding to this process.
Alisa may refer to:
Alisa (Serbian Cyrillic: Алиса; Slavic analogue to the female name Alice, referring to Alice's Adventures in Wonderland) were a Serbian and former Yugoslav pop rock band from Belgrade.
Alisa was formed in 1984 by Miroslav "Pile" Živanović (a former Zvučni Zid and Jedan Smer member, vocals), Predrag Cvetković (a former member of Slađana Milošević's backing band Ljudi member, drums), Aleksandar Kićanović (keyboards), Zoran Jančeski (a former Sedmi Krug member, guitar), and Marko Glavan (a former BG5 member, bass guitar). They released their debut self-titled album in 1985. All the songs were written by the keyboardist Jovan Stoiljković, leader of Živanović's former band Zvučni Zid, some of them during the 1970s while Stoiljković was the leader of the band Bicikl. Stoiljković decided not to become an official member of Alisa, but rather an author of Alisa's fairy tales-inspired songs. Although poorly produced, album brought hits "Sanja" and "Vojskovođa" ("Warlord") that made Alisa teen stars in Serbia and Bosnia and Herzegovina. The album featured Saša Gnus on flute and saxophone as special guest.
Artists: @ElissaKh & @SaadLamjarred Lyrics: Amir Teima / كلمات: امير طعيمة Music: Ramy Gamal / الحان: رامي جمال Music Arrangement: Ahmed Ibrahim / توزيع: احمد ابراهيم Mix and Master: Elie Barbar / ميكس وماستر: ايلي بربر Sound Recording: Hadii Sharara studio Directed By: Karim Bennis Produced By: E-Records & @SaadLamjarred Digital Distribution: @WataryProduction —— تاليف وتريات: احمد ابراهيم تنفيذ وتريات: تامر غنيم تسجيل وتريات: عدس جيتار: مصطفى اصلان كلارينت: نادر مجدي Listen to ”Min Awel Dekika“ on all the digital platforms: https://lnkfi.re/MinAwelDekika Keep Listening to Elissa on: Anghami: https://play.anghami.com/artist/118 Spotify: https://open.spotify.com/artist/68rvMwPL0yMbYR5cv0pzCR Apple Music: https://music.apple.com/us/artist/elissa/28117976 Deezer: https://www.deezer.co...
ALISA (Film Shqip 2022 Mister/Horror 4K) Kjo është një vepër e trilluar. Emrat, personazhet, vendet dhe incidentet ose janë produkte të imagjinatës së autorit ose përdoren në mënyrë te trilluar. Çdo ngjashmëri me ngjarje, lokale ose persona, të gjallë apo të vdekur, është krejtësisht e rastësishme. Ndalohet shkarkimi i filmit. Te gjithe ata qe nuk kerkojne te drejten per ringarkim ne rrjete te ndryshme dhe veprojn ashtu, do te ndjeken penalisht. Contact: https://www.facebook.com/BiniZymberajj/ https://www.instagram.com/binizymberajj/ Darkroom films 2022.
Alisa - Kesten (1988)
Alisa - Secanja (tekst/lyrics) Mesec se sunja oko tvoje zgrade, tajno te gleda, oci mu se slade, neka ga Ma sve sto imam bacicu u vodu, samo za tvoju odecu po podu, ko nekada Ko san bez jave, kao noc bez dana, nasa je prica bez poslednjih strana ostala Da li si nasla utociste neko, il' je i tebi ko meni daleko obala Secanja stezu omcu oko vrata, vreme se sprema da zatvori vrata mladosti A moje ladje nasukane stoje i zivim samo za trenutak tvoje slabosti. Pada prasina na moje pione, partija se saha protiv vasione odvija Pitanje tesko razdire mi grudi, onaj ko voli da l' uvek vise gubi il' dobija Secanja stezu omcu oko vrata, vreme se sprema da zatvori vrata mladosti a moje ladje nasukane stoje i zivim samo samo za trenutak tvoje slabosti
今日は4泊5日のニセコ旅の模様をお届けします⛄️ 絶対来年もまた行きたいなー🥰 00:00 オープニング 00:21 day1 ホテルにチェックイン 01:28 人生初スキーに挑戦 03:11 ディナー 05:11 夫婦でスパ体験 06:30 お部屋に戻ってきた 07:05 day2 07:37 レンタカーを借りた 08:21 高橋牧場 08:48 ランチ 09:07 スキー練習 10:01 ジンギスカンのお店 11:05 お部屋でまったり 11:39 day3 ゲレンデ 12:20 ホテルを変える 14:04 視聴者さんに教えてもらったお店 14:55 フォロワーさんに会えたw 16:28 チェックイン 17:15 お寿司屋さんでディナー 18:27 貸切温泉 18:53 お部屋に戻った 19:53 day4 朝ご飯 20:49 スキー 21:09 ランチ 22:00 またスキー 23:27 ディナー 24:19 ホテルの水 25:10 day5 朝ご飯 25:40 新千歳空港でラーメン ------------ 【プロポーズ】8年付き合った彼から遂に・・・ https://youtu.be/GSol8Fpj7OM 【自己紹介】植野有砂って何者?職業は?遊んで暮らしてる?【2023年ver】 https://youtu.be/iejp4tY8uxk 【ルームツアー】都内戸建/3階建て/2LDKの我が家を紹介します🏡💖 https://youtu.be/kMK2KguIKS0 【ハワイVlog】5日間ハワイ旅行に行ってきました🤙🏖🌺海/ホテル/グルメ/プール https://youtu.be/K7v3px5Ve_o 【バリ島Vlog】3泊4日バリ島で女子旅🏖✨食事/プール/お酒/朝活/絶景 https://youtu.be/2i2IdlJWGQU 【ドバイV...
Klinika Ne slusam vesti, jer sve me zesti, mnogo sam nervozan, smeta mi buka, hvata me muka, hocu da budem sam, moja je Olga hladna ko Volga, zbog nje sam ocajan, nek drugog zove, bice mi bolje, hocu da budem sam Ref. Meni treba jedna klinika, da me lece 300 doktora, to je sansa, to je prilika, da pronadjem malo odmora Opet me zovu, traze mi lovu, telefon razbijam, u glavi horor, treba mi odmor, hocu da budem sam devojke mnoge isticu noge, a ja sam pasivan frka je druze, virusi kruze, hocu da budem sam Ref.
have i inspired u to use it or no 🟣Twitch: https://www.twitch.tv/alisa 🔵Twitter: https://twitter.com/actuallyalisa 🔴Instagram: https://www.instagram.com/actuallyalisa ⚪Tiktok: https://www.tiktok.com/@actuallyalisa 🔵Skape: https://skape.gg/Alisa My teammates: https://www.twitch.tv/fuzzface49 Business Email: ✉ [email protected] #PUBG #gaming #djalice
Hello friends! I hope you all doing great. This week's first ASMR video is Alisa doing her favorite triggers to you. At times she will close your eyes so you can rest them and only focus on the sounds. I hope you like it❤️ My Upload Schedule: Tuesday, Thursday, and Sunday ***USE HEADPHONES FOR THE BEST EXPERIENCE*** For more ASMR videos: https://www.youtube.com/c/LiziASMR?sub_confirmation=1 ***Social Media*** Patreon: https://patreon.liziasmr.com Twitter: https://twitter.liziasmr.com Discord: https://discord.liziasmr.com Tiktok: https://tiktok.liziasmr.com Reddit: https://reddit.liziasmr.com Instagram: https://instagram.liziasmr.com Facebook: https://facebook.liziasmr.com Spotify: https://spotify.liziasmr.com Apple Music: https://applemusic.liziasmr.com Web/app: https://liziasmr....
Alisa: Developer's Cut Information ⬇⬇⬇Click 'More' Alisa is tasked with chasing down a thief who stole important blue prints, and soon finds herself trapped inside a house full of murderous dolls. Alisa: Developer's Cut implements post game content that was missing from the initial launch - including achievements, more dresses, enemies, endings and weapons, as well as new game plus. Buy Link/s: (Steam) - https://store.steampowered.com/app/1335530/Alisa/ (Itch.io) - https://caspercroes.itch.io/alisa Timestamps: 00:00 - Intro 00:07 - Prologue 10:56 - The Mansion 25:51 - The FUN House 47:20 - Boss 1: Pier Edmiston 50:19 - The FUN House Cont. 1:12:40 - The Flooded Basement 1:44:53 - Boss 2: Edith Boileau 1:49:33 - The Gardens 2:32:03 - Boss 3: Isabella Flora 2:35:24 - The Cathedral 3:09:17...
Artash Asatryan's New Music Video "ALISA" in his New 2012 Album "Im Hayastan" (My Armenia) Lyrics: Robert Abrahamyan Music: Folk Produced: Asatryan Music Anyone Who Reuploads The Song or Clip will be removed from YouTube on Copyright Claim Charges. Thank You For Your Cooperation. 2012 - Aram8one8
Alisa (Russian: Алиса) is a Russian hard rock band, who are credited as one of the most influential bands in the Russian rock movement.
Alisa was formed in November 1983 by bassist Svyatoslav Zadery. The band's name originated from Zadery nickname. The band's lineup was finally completed in 1984, when new vocalist Kostya Kinchev (real name Konstantin Panfilov) and guitarist Petr Samoylov joined. Their debut album Energia was released by state publishing monopoly Melodiya and sold more than a million copies.
But the relations between two leaders, Konstantin and Zadery, were deteriorating, and finally Svyatoslav departed from the band. This occurred just one hour before Alisa was to perform at a concert. Alisa had to ask Kino bassist Igor Tihomirov to replace him for one concert. Later Zadery created his own band Nateh! (Russian: НАТЕ! - "Take that!"). Zadery died on 6 May 2011 due to complications from a stroke at the age of 50.
The growing popularity of the band created a fan community called the Army of Alisa, known for their rough behaviour at concerts. It led to animosity between the band and Soviet officials. In 1987, the newspaper Smena accused Alisa's leader Kinchev of Nazi propaganda and worshiping Hitler. Kinchev filed a suit for calumny and moral loss compensation. After the year-long court process the magazine published the refutation. Alisa's next album was titled Article 206 part 2, a chapter ("Hooliganism") of the USSR Procedural Code, alluding to this process.
2 door cut with flippy flop on the paint
looking like a bag of skittles that will make you wan't to faint
eyes cocked ass drop when pulled up on the set
people scard to touch my car like they might fall in and get wet
I can't keep my whip in sun for so long cause it might melt like a pack
of starburst on a summer day sitting on the shelf
I got to get her out
get her high
take her out for a ride
hopefully tonight I won't commit vehicular homicide
my cutless is clean as a fuckin whistle
Paul, and Juicy both told me I better pack pistols
pistols plural for the one's of those who do not know
I gon let these bitches rip the bay and try to take my hoe
2 door cut with flip the flop like (ridin down the street smokin weed getting high)
2 door cut with flip the flop like (woooooooooooo man that fool clean)
cheech and chong up in smoke and dice on mirria
2007 cadalac space age interior
4 Pioners 4 ways across the back dash
4 12's when I come thru I'm gon break glass
and thats just the beginning
I ain't got into the engine
fuckin with gray steerin wheels I'm gripin white pearl pimpin
It's on italian leather just as icey as my soljas
pictured on the white pearl gas pedal belive I told ya
and ain't doja on me when I ride make me a blunt
aint tryin to be nobodys police when I creep the cut
they got enough on me already they don't need my car
If they won't me so bad they can find me standin in my yard
It's time to talk about the muscle in this perfect creation
brand new chevy blocked and it's chromed out it will block conberation
a set of double hard heads shift kit and a kaft
flowed out with a pair of dogs hanging out the ass
brain gon and my hair blowin doin a buck 4
wow hoe if you in the road
better move yo ass out the path fast
before yo ass have to feel
20 inch spinner and 22 hundred pounds of steel
I'm a good driver but can get reckless on purple leana
pedal to the metal might hit ya and never even seen ya
take my word I put 15 G's into these souls