- published: 21 Apr 2016
- views: 2822382
'+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 Waltons were a Canadian alternative rock band formed in 1987 in Regina. The band received a 1994 Juno Award for Best New Group.
The band was originally known as "Neurotic Paperboy", before changing to The Waltons. They released two independent demo cassettes, '89 Demonstrations and Demo Sandwich, in 1989 and 1990. The band was formed in 1987 by vocalist/guitarist Jason Plumb, Bass guitarist Keith Nakonechny and drummer David Cooney.
In 1992, with producer John Switzer, they released their debut album, Lik My Trakter ("like my tractor") independently. Also in 1991, they were nominated for two CFNY-FM CASBY Awards for 'Most Promising Band' and 'Best Western Canadian Band'. The following year, they signed to Warner Music Canada, and toured as a supporting act for Barenaked Ladies. Todd Lumley also joined the band that year, playing keyboards and accordion. The album became their commercial breakthrough, spawning the Top 40 hits "Colder Than You", "In the Meantime" and "The Naked Rain". The song "The Living Room" also received heavy airplay on many alternative stations around Canada.
Adam and Eve, according to the creation myths of the Abrahamic religions, were the first man and woman. The story of Adam and Eve is central to the belief that God created human beings to live in a paradise on earth, although they fell away from that state and formed the present world full of suffering and injustice. It provides the basis for the belief that humanity is in essence a single family, with everyone descended from a single pair of original ancestors. It also provides much of the scriptural basis for the doctrines of the fall of man and original Sin, important beliefs in Christianity, although not generally shared by Judaism or Islam.
In the Book of Genesis of the Hebrew Bible, chapters one through five, there are two creation narratives with two distinct perspectives. In the first, Adam and Eve are not referenced by name. Instead, God created humankind in God's image and instructed them to multiply and to be stewards over everything else that God had made. In the second narrative, God fashions Adam from dust and places him in the Garden of Eden. Adam is told that he can till the ground and eat freely of all the trees in the garden, except for a tree of the knowledge of good and evil, of which he is prohibited from eating. Subsequently, Eve is created from one of Adam's ribs to be Adam's companion. However, a serpent tricks Eve into eating fruit from the forbidden tree, and she gives some of the fruit to Adam. God curses the serpent and the ground. God prophetically tells the woman and the man what will be the consequences of their sin of disobeying God. Then he banishes 'the man' from the Garden of Eden.
National Lampoon's Adam & Eve, also known simply as Adam & Eve, is a 2005 comedy motion picture, released as part of the ongoing series of National Lampoon films. The film is directed by Jeff Kanew and stars Cameron Douglas, Emmanuelle Chriqui, George Dzundza and others.
Adam is a college senior, and an aspiring singer/songwriter. He meets Eve, a beautiful, bright student and talented sports still photographer. They begin dating, and is incredulous to learn that Eve is still a virgin, as she does not wish to have sex until it feels right for her.
Adam and Eve (Italian: Adamo ed Eva) is a 1949 Italian comedy film directed by Mario Mattoli and starring Erminio Macario.
Adam (Hebrew: אָדָם; Aramaic/Syriac: ܐܕܡ; Arabic: آدم) is a figure from the Book of Genesis who is also mentioned in the New Testament, the deuterocanonical books, the Quran, the Book of Mormon, and the Book of Iqan. According to the creation myth of the Abrahamic religions, he was the first human.
In the Genesis creation narratives, he was created by Yahweh-Elohim ("Yahweh-God", the god of Israel), though the term "adam" can refer to both the first individual person, as well as to the general creation of humankind. Christian churches differ on how they view Adam's subsequent behavior of disobeying God (often called the Fall of man), and to the consequences that those actions had on the rest of humanity. Christian and Jewish teachings sometimes hold Adam and Eve (the first woman) to a different level of responsibility for the Fall, though Islamic teaching holds both equally responsible. In addition, Islam holds that Adam was eventually forgiven, while Christianity holds that redemption occurred only later through the sacrifice of Jesus Christ. The Bahá'í Faith, Islam and some Christian denominations consider Adam to be the first prophet.
Adam is a common masculine given name.
The personal name Adam derives from the Hebrew noun ha adamah meaning "the ground" or "earth". It is still a Hebrew given name, and its Quranic and Biblical usage has ensured that it is also a common name in all countries which draw on these traditions. It is particularly common in Christian- and Muslim-majority countries. In most languages its spelling is the same, although the pronunciation varies somewhat. Adán is the Spanish form of this name.
Adam is also a surname in many countries, although it is not as common in English as its derivative Adams (sometimes spelled Addams). In other languages there are similar surnames derived from Adam, such as Adamo, Adamov, Adamowicz, Adamski etc.
In Arabic, Adam (آدم) means "made from the earth/mud/clay".
Roger Adam was a French aircraft designer and manufacturer who produced light aircraft in kit from 1948 to 1955. He established the firm Etablissements Aeronautiques R. Adam.
Jewish, Christian and Muslim traditions all trace their roots back to Adam and Eve. ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Get Season 1 of The Story of God: http://amzn.to/2gXx2ON ➡ Watch all YouTube clips here: http://bit.ly/WatchTheStoryofGod ➡ Get More The Story of God: https://on.natgeo.com/2lUOUkk About The Story of God: Today, for better or worse, the power of religion touches all of our lives, no matter what our faith. This is Morgan Freeman's journey to discover how our beliefs connect us all. This is the quest of our generation. This is the Story of God. Get More National Geographic: Official Site: http://bit.ly/NatGeoOfficialSite Facebook: http://bit.ly/FBNatGeo Twitter: http://bit.ly/NatGeoTwitter Instagram: http://bit.ly/NatGeoInsta About National Geographic: National...
This animated Bible story for kids is based on Genesis 3. Welcome to Saddleback Kids YouTube channel. Saddleback Kids, the children’s ministry at Saddleback Church has developed these fun and creative ways to teach children about God’s word. We are here to help parents connect kids to the content that they learn each weekend at Saddleback Church. These videos can also be used as stand-alone bible lessons that parents can view with their children. We hope you enjoy and learn what God has planned for each of us. Download this FREE kid’s ministry resource 12 FREE Bible Stories here: https://bit.ly/2UAS1w7 Get MORE FREE downloads at: https://store.saddlebackkids.com/freebies?product_list_limit=30 Get free parents resources: https://www.youtube.com/channel/UCSxMFKLz71gt9qvwyFM3I2w/featured ...
Watch other amazing Bible Stories like For Cain ad Able, Noahs Ark, Joseph, Moses and many more - https://goo.gl/gjBdtQ ADAM AND EVE STORY: This is a summary on the Biblical account of the Adam and Eve. You can read more in-depth Bible verses from the Scripture below and use the articles and videos to understand the meaning behind this teachable event in the Bible. God created the first man Adam and then created the first woman, Eve. God put Adam and Eve in the Garden of Eden to care and nuture the land. He told Adam and Eve that they could eat from any fruit from the trees except for the tree of good and evil. God warned them that if they ate from the tree they would die. One day Satan came disguised as a snake and spoke to Eve, convincing her to eat the fruit from the tree of good and ...
This video tells the story of creation, of Adam and Eve in the Garden of Eden according to the Bible. 0:00 Intro 0:16 Story of Creation 1:29 Garden of Eden 2:21 Adam and Eve 2:45 Tempted by the serpent 🍎 4:22 God speaks with Adam and Eve This story is part of the official full movie, "The Covenant," that takes you on an extraordinary journey through the important stories of the Old Testament of the Bible. Immerse yourself in this epic cinematic experience that brings to life the timeless narratives of faith, courage, and divine intervention. #bible #oldtestament #genesis #adamandeve #fall #fallofmen The story of creation, of Adam and Eve in the Garden of Eden according to the Bible is told in this video. Click here to watch the full movie ► https://www.youtube.com/watch?v=N3iuqxI5Fw...
Discover the Profound Biblical Story of Humanity's Origins In this captivating YouTube video, we delve into the timeless tale of Adam and Eve, exploring the pivotal events of "The Creation and The Fall." Join us on a journey back to the beginning of humanity as we unravel the profound teachings and lessons hidden within this iconic Bible story. In this informative video, we present a clear and concise summary of the biblical account of Adam and Eve. Witness the creation of the world and everything within it, as the Almighty brings forth life from the void. Follow Adam and Eve's footsteps in the pristine Garden of Eden, where they enjoy a blissful existence in harmony with nature and their Creator. As the story unfolds, we encounter the serpent, a cunning creature who tempts Adam and Eve...
Adam And Eve (FIRST SIN 😱) | #shortclip #bible #jesus #foryou #salvation Video's on my channel are to hopefully motivate someone to know who Jesus is. Jesus is our Lord and Savior and faith in Him is the One and Only way to Heaven. Those who call on the name of the Lord WILL BE SAVED. Type: "Jesus Saves" on this video if you believe and SUB for more! ❤️ How Jesus REALLY did it video series: JESUS TEMPTED: How Jesus Was REALLY Tempted By Satan! 🤯👿 #shorts #youtube #newtestament #bible #fypシ Watch Here - https://youtube.com/shorts/dfo18-yCVpI?feature=share How Jesus ACTUALLY Died on the Cross #jesus #bible #youtube #shorts #xyzbca #newtestament #fypシ Watch Here: https://youtube.com/shorts/cngvDzKsBKg?feature=share JESUS HEALS: How Jesus REALLY Healed The Blind 👀🙌 #shorts #bible #newt...
Don't forget to help us create more videos! We need your support: https://www.patreon.com/inspiringphilosophy https://www.youtube.com/channel/UC5qDet6sa6rODi7t6wfpg8g/join https://inspiringphilosophy.locals.com/
Subscribe our channel: http://bit.ly/1LpvTeF The Beginners Bible The Creation / Adam and Eve Journey back to the beginning of the world as God brings forth the Earth, fills its waters and lands with plants and animals and, finally crowns His creation with the first man and woman then, join Adam and Eve as they explore the Earth paradise of the Garden of Eden and discover what happens when they accept a serpents offer of forbidden fruit -~-~~-~~~-~~-~- Please watch: "Joshua and the Battle of Jericho - Part 1 - The Beginners Bible" https://www.youtube.com/watch?v=tDgiLvnnlD8 -~-~~-~~~-~~-~-
Art prints: https://www.pidgindoll.com/art-prints Enamel Pins: https://www.pidgindoll.com/enamel-pins #pidgin #artdoll #artdolls #fashiondoll #fashiondolls #doll #dolls #dollartist #illustrator
The Waltons were a Canadian alternative rock band formed in 1987 in Regina. The band received a 1994 Juno Award for Best New Group.
The band was originally known as "Neurotic Paperboy", before changing to The Waltons. They released two independent demo cassettes, '89 Demonstrations and Demo Sandwich, in 1989 and 1990. The band was formed in 1987 by vocalist/guitarist Jason Plumb, Bass guitarist Keith Nakonechny and drummer David Cooney.
In 1992, with producer John Switzer, they released their debut album, Lik My Trakter ("like my tractor") independently. Also in 1991, they were nominated for two CFNY-FM CASBY Awards for 'Most Promising Band' and 'Best Western Canadian Band'. The following year, they signed to Warner Music Canada, and toured as a supporting act for Barenaked Ladies. Todd Lumley also joined the band that year, playing keyboards and accordion. The album became their commercial breakthrough, spawning the Top 40 hits "Colder Than You", "In the Meantime" and "The Naked Rain". The song "The Living Room" also received heavy airplay on many alternative stations around Canada.
Adam And Eve
i'm lookin for a way out, lookin' for a hole
waitin' for the right time, we're gonna roll
i've got my eye on a company ship
one of the nights we'll take a little trip
two of us
that is just enough
to make a virgin planet a paradise
adam and eve - in our garden of eden
on the other side of the skies
of the skies
adam and eve
adam and eve
if you work for the man you need a little pull
yes sir, no sir, three bags full
adam and eve garden of eden ohhhhh - hhhhoooooo
gonna grab my chain, gonna make my break
give, give, i'm gonna try a little take
under the eyes that never rest
bird's gonna fly, gonna leave the nest
two of us
that is just enough
to make a virgin planet a paradise
adam and eve - in our garden of eden
on the other side of the skies
of the skies
we're adam and eve
we're adam and eve