- published: 18 Aug 2021
- views: 93
'+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; })); }); -->
The Rolls-Royce Silver Cloud is an automobile produced by Rolls-Royce Limited from April 1955 to March 1966. It was the core model of the Rolls-Royce range during that period. The Silver Cloud replaced the Silver Dawn and was, in turn, replaced by the Silver Shadow. The J. P. Blatchley design was a major change from the pre-war models and the highly derivative Silver Dawn. As part of a range rationalisation the Bentley S1 is very similar, apart from its radiator grille.
Construction was body-on-frame, which permitted special bodied versions, though the overwhelming majority were built with the standard Pressed Steel Company manufactured steel body shell. A light-weight aluminium-based alloy was used for doors, bonnet/hood and boot/trunk lid. The chassis was a simple steel box section, welded together and very rigid. The car was 5.38 m (212 in) long, 1.90 m (75 in) wide, and massed 1.95 tonnes. The engine was a 155 hp / 4000 rpm 4.9 L six-cylinder unit with inlet over exhaust valves: twin SU carburettors were added in September 1957. The standard transmission was a four-speed automatic. The turning circle was 41 feet 8 inches (12.70 m).
Silver Cloud is the debut single by German band La Düsseldorf, released in advance of their eponymous debut album. The single peaked at number 2 on the German music charts and made La Düsseldorf famous. Unusually for a high-charting single, "Silver Cloud" is entirely instrumental (although the B-side "La Düsseldorf" is not). The single continues to be popular, and was re-released on CD in 2008.
Following the release of Neu! '75 in 1975, Neu! disbanded, and Klaus Dinger began writing music for a La Düsseldorf album. La Düsseldorf had been founded the previous year during Neu!'s 1973-4 hiatus, and both Thomas Dinger and Hans Lampe had featured on Neu! '75 playing drums. Nevertheless, Klaus initially had difficulty composing material for the new album, finally entering Conny Plank's studio in September 1975.
After sessions were completed in December of that year, "Silver Cloud" was selected as the album's lead single. It quickly rose through the charts, making Thomas, Klaus and Hans overnight celebrities, particularly in their home city of Düsseldorf, where the band logo was spray-painted on the streets by fans and Thomas became a fashion icon.
Kitaro's discography consists of 24 studio albums, 8 live albums, 14 soundtrack albums, and 42 compilation albums. Kitaro's latest project, Symphony Live In Istanbul was nominated for the 57th Annual Grammy Awards, and is Kitaro's 16th Grammy nomination to date.
He also appears in five full-length concert videos and has composed scores for numerous films including Oliver Stone's Heaven & Earth, Impressions of the West Lake, and The Soong Sisters. He won Golden Globe Award Best Original Score for Heaven & Earth and won Golden Horse Award and Hong Kong Film Award for The Soong Sisters (1997).
He has collaborated with various artists including Megadeth's Marty Friedman, Mickey Hart, Philip Glass, Dennis Banks, and Jane Zhang, as well as appearing on four Far East Family Band albums.
15 of these studio albums were nominated for a Grammy Award. Thinking of You won a Grammy Award for Best New Age Album in 2000.
Impression of the West Lake is one of the Grammy nominated albums.
Aube (French pronunciation: [ob]) is a French department in the Alsace-Champagne-Ardenne-Lorraine region of north-eastern France. As with sixty departments in France, this department is named after a river: the Aube. With 305,606 inhabitants (2012), Aube is 76th department in terms of population. The inhabitants of the department are known as Aubois or Auboises
The department was constituted as it is today by a decree of the National Assembly of 15 January 1790.
The Aube department is located in the south-west side of the Alsace-Champagne-Ardenne-Lorraine region. It borders the departments of Marne in the north (about 130 km long), Haute-Marne to the east (about 100 km long), Côte-d'Or in the south-east (about 45 km long), Yonne in the south-west (about 175 km long), and Seine-et-Marne in the west (about 45 km long).
Within the department regions of natural or traditional countryside can be identified as follows:
Aube is a department in the northeastern part of France.
Aube may also refer to:
The Aube is a river in France, right tributary of the Seine. It is 248 kilometres (154 mi) long. The river gives its name to the Aube département.
Its source is in the Haute-Marne département, on the plateau of Langres, near the town Auberive. It flows through the départements Haute-Marne, Côte-d'Or, Aube, and Marne. It flows into the river Seine near Marcilly-sur-Seine. Cities along the river include Bar-sur-Aube and Arcis-sur-Aube.
0:00 Heart Of Gold 20:11 Silver Cloud 40:26 Phase Bronze Oblique
Un matin à l'aube, partez en Rolls-Royce Silver Shadow 1967 en compagnie du team POA pour une traversée de Paris (2017) très spéciale où vous croiserez une Rover P5, une Cadillac 67, une Delorean, une Maserati Khamsin, une Rolls Royce Silver Cloud, un tracteur, Starsky et Hutch, .... Soutenez POA et prenez un café dans la nouvelle tasse POA : https://shop.spreadshirt.fr/boutique-poa Abonnez-vous à POA pour nous suivre et nous soutenir, c'est gratuit :-) : https://www.youtube.com/user/pinder144 Petites Observations Automobiles (POA) : la vie, les gens et leurs histoires de bagnoles !
Els cotxes dels nostres socis, Rolls Royce Silver Coud II d’en Marc Puivert.1961 Rolls Royce Silver Cloud II - This car has a distinctive gold plated "Flying lady" mounted on the front grill. It has turn signals mounted between the doors. Rolls Royce didn't offer many options back then but Frank Sinatra requested to have the ornament gold plated. Francis Albert Sinatra, más conocido como Frank Sinatra (Hoboken, 12 de diciembre de 1915-Los Ángeles, 14 de mayo de 1998), fue un cantante y actor estadounidense. Apodado «la Voz»,1 fue una de las principales figuras de la música popular del siglo XX y dejó, a través de sus discos y actuaciones en directo, un legado canónico en lo que respecta a la interpretación vocal masculina de esa música.2 Su popularidad llegó a ser inmensa y prácticament...
Premiers tours de roue pour Renaud en Rolls Royce Silver Shadow, un grand moment ! :-) L'équipe de POA est partie à la rencontre de Pascal, Michel et Joël trois petits observateurs qui possèdent une Rolls Royce Silver Shadow 1967, une Jaguar SS100 de 1938 et une Lotus Europe de 72. Un road trip réalisé en Subaru Outback. 9 épisodes à suivre pour découvrir ces voitures et d'autres surprises: Episode 1 Jaguar SS100 : https://youtu.be/7eyJIJZEx10 Episode 2 Jaguar SS100 : https://youtu.be/KXg6erkYtBk Episode 3 Rolls Royce Silver Shadow : https://youtu.be/1CcLE7JMIYk Episode 4 Lotus Europe : https://youtu.be/lS1vNCuJJ4o Episode 5 Subaru Outback : https://youtu.be/K0yi9jvliIQ Episode 6 Citroën SM : https://youtu.be/jlLNtIHDp2Q Episode 7 Citroën DS break : https://youtu.be/8hGSp6A-bN8 Episo...
La Birmanie des milles pagodes . Une contrée interdite pendant un demi siècle de dictature. Aujourd'hui , le pays s'ouvre au monde et dévoile des paysages inconnus, d’une beauté époustouflante Réalisateur : Daniel Lainé, Julien Boluen
Présentation et essai de la Rolls Royce Silver Shadow de Pascal. Et à suivre, 2 autres épisodes pour faire le tour de cette Early Shadow. L'équipe de POA est partie à la rencontre de 3 petits observateurs qui possèdent une Rolls Royce Silver Shadow 1967, une Jaguar SS100 de 1938 et une Lotus Europe de 72. Un road trip réalisé en Subaru Outback. 9 épisodes à suivre pour découvrir ces voitures et d'autres surprises: Episode 1 Jaguar SS100 : https://youtu.be/7eyJIJZEx10 Episode 2 Jaguar SS100 : https://youtu.be/KXg6erkYtBk Episode 3 Rolls Royce Silver Shadow : https://youtu.be/1CcLE7JMIYk Episode 4 Lotus Europe : https://youtu.be/lS1vNCuJJ4o Episode 5 Subaru Outback : https://youtu.be/K0yi9jvliIQ Episode 6 Citroën SM : https://youtu.be/jlLNtIHDp2Q Episode 7 Citroën DS break : https://yout...
Wildlife filmmaker Ross Vernon McDonald and Silversea guests observed skies awash with flocks of bird species while traveling to the island in a zodiac from expedition ship the Silver Explorer. As dawn broke, they were met by a bird with vibrant blue feet and a curious gaze – the Blue-footed Booby. ----------------------------------------------------------------------------------- ►Follow Silversea: Facebook ► https://www.facebook.com/SilverseaCruises Instagram ► https://www.instagram.com/silverseacruises/ Web ► https://discover.silversea.com/ --------------------------------------------------------------------------------- Silversea Cruises, is recognized as an innovator in the ultra-luxury cruise industry, offering guests large-ship amenities aboard its intimate, all-suite ...
🎵 Thunder & Aube.- Talking To A Stranger Download & stream this Soave release via https://music.soaverecords.com/talk2strange Follow Thunder : https://www.facebook.com/Thisisthunder-804791903195799/ https://www.instagram.com/thisisthunder/ https://open.spotify.com/artist/0LnP8n2mREw2UvRL00TJqt Follow Aube. : https://open.spotify.com/artist/44zyKmnlcsX2X1jkPCQlgc 🦋 Leave us a comment of what you think and feel free to subscribe! ➡ Interviews & reviews: http://www.soaverecords.com/ ➡ Music & inspiration: https://www.instagram.com/soave.records/ ➡ Daily music: https://www.facebook.com/soaverecords/ ➡ Releases & reposts: https://soundcloud.com/soaverecords ➡ Tweets: https://twitter.com/soaverecords ➡ Playlists: http://spoti.fi/2BowyuE 🦄 Submit your music for upload via toneden.io/soa...
Three step Launch with Little Cloud Gracchio MK2 #Short
I wrote a foreword for this awesome Sci-Fi book here: https://amzn.to/3aGrg0I Get a Wonderful Person shirt: https://teespring.com/stores/whatdamath Alternatively, PayPal donations can be sent here: paypal.me/whatdamath Hello and welcome! My name is Anton and in this video, we will talk about Support this channel on Patreon to help me make this a full time job: https://www.patreon.com/whatdamath Space Engine is available for free here: http://spaceengine.org Enjoy and please subscribe. Twitter: https://twitter.com/WhatDaMath Facebook: https://www.facebook.com/whatdamath Twitch: http://www.twitch.tv/whatdamath Bitcoins to spare? Donate them here to help this channel grow! 1GFiTKxWyEjAjZv4vsNtWTUmL53HgXBuvu The hardware used to record these videos: CPU: https://amzn.to/2LZFQCJ Video...
The Rolls-Royce Silver Cloud is an automobile produced by Rolls-Royce Limited from April 1955 to March 1966. It was the core model of the Rolls-Royce range during that period. The Silver Cloud replaced the Silver Dawn and was, in turn, replaced by the Silver Shadow. The J. P. Blatchley design was a major change from the pre-war models and the highly derivative Silver Dawn. As part of a range rationalisation the Bentley S1 is very similar, apart from its radiator grille.
Construction was body-on-frame, which permitted special bodied versions, though the overwhelming majority were built with the standard Pressed Steel Company manufactured steel body shell. A light-weight aluminium-based alloy was used for doors, bonnet/hood and boot/trunk lid. The chassis was a simple steel box section, welded together and very rigid. The car was 5.38 m (212 in) long, 1.90 m (75 in) wide, and massed 1.95 tonnes. The engine was a 155 hp / 4000 rpm 4.9 L six-cylinder unit with inlet over exhaust valves: twin SU carburettors were added in September 1957. The standard transmission was a four-speed automatic. The turning circle was 41 feet 8 inches (12.70 m).
I walked on by the old school yard
As high as I envision
The years behind us and your decisions
Whatever it takes whatever you need
And I will be there for you
Last you heard is I adore you, well
And days go by
But that was yesterday
You want to still be friends
It doesn’t work that way
I was floating on your silver cloud
When the storm came in and the bottom fell out
Still I try I wonder why I can’t figure it out
Floating on your silver cloud
If time wasn’t lost
And the friends you forgot
That tried to be there for you
All you wanted was to be alone
And I can’t win
It’s over either way
Hey I know how this ends and I don’t want to play
I was floating on your silver cloud
When the storm came in and the bottom fell out
Still I try I wonder why I can’t figure it out
Floating on your silver cloud
I watched our friendship sink
I held out my hand
You tore another chink
And I didn’t understand
Thru all the white lies
Thru all the black lies
Hard to survive
As I held you up
Still your pride you rejected my crutch
I was floating on your silver cloud
When the storm came in
And the bottom fell out
Still I try I wonder why I can’t figure it out