- published: 24 Aug 2014
- views: 23892
'+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; })); }); -->
Abdullah Ibrahim (born Adolph Johannes Brand on 9 October 1934 and formerly known as Dollar Brand) is a South African pianist and composer. His music reflects many of the musical influences of his childhood in the multicultural port areas of Cape Town, ranging from traditional African songs to the gospel of the AME Church and ragas, to more modern jazz and other Western styles. Ibrahim is considered the leading figure in the subgenre Cape jazz. Within jazz, his music particularly reflects the influence of Thelonious Monk and Duke Ellington. With his wife, the jazz singer Sathima Bea Benjamin, he is father to the New York underground rapper Jean Grae, as well as to a son, Tsakwe.
Ibrahim was born in Cape Town on 9 October 1934, and was baptized Adolph Johannes Brand. He attended Trafalgar High School in Cape Town's District Six, and began piano lessons at the age of seven, making his professional debut at 15.
In 1959 and 1960, Ibrahim played with the Jazz Epistles in Sophiatown, alongside saxophonist Kippie Moeketsi, trumpeter Hugh Masekela, trombonist Jonas Gwangwa, bassist Johnny Gertze and drummer Makaya Ntshoko; in 1960, the group recorded the first jazz LP by Black South African musicians. Ibrahim then joined the European tour of the musical King Kong.
The Perfumed Garden of Sensual Delight (Arabic: الروض العاطر في نزهة الخاطر Al-rawḍ al-ʿāṭir fī nuzhaẗ al-ḫāṭir) by Muḥammad ibn Muḥammad al-Nafzawi is a fifteenth-century Arabic sex manual and work of erotic literature.
The book presents opinions on what qualities men and women should have to be attractive, gives advice on sexual technique, warnings about sexual health, and recipes to remedy sexual maladies. It gives lists of names for the penis and vagina, has a section on the interpretation of dreams, and briefly describes sex among animals. Interspersed with these there are a number of stories which are intended to give context and amusement.
According to the introduction of Colville's English translation, Muḥammad ibn Muḥammad al-Nafzawi probably wrote The Perfumed Garden sometime during the twelfth century. Sheikh Nefzawi, full name Abu Abdullah Muhammad ben Umar Nafzawi, was born among the Berber Nefzawa tribe in the south of present-day Tunisia. He compiled at the request of the Hafsid ruler of Tunis, Abū Fāris ʿAbd al-ʿAzīz al-Mutawakkil, the present work. The reputation acquired by this work in the Arab world was similar to that of the Arabian Nights.
The Perfumed Garden was the title given by John Peel to his 1967 late-night programme on the British pirate radio station, Radio London.
After several years of work in US commercial pop radio, Peel joined the station in March 1967, on returning to the UK from California. As well as various slots on Radio London's usual three-hour daytime shows, he was allotted the midnight to 2 a.m. programme, then called London After Midnight.
His experience of the Los Angeles music scene had made him more aware than most of his colleagues of the dramatic changes taking place in pop music in 1966-7. These were accompanied by significant changes in 1960s youth culture, with the fashion-led teenage consumerism of the mid-1960s Swinging London era being challenged by the more reflective, less materialistic outlook of the San Francisco hippies. Peel, having had first-hand experience of the emerging hippy scene - he had seen many of the new bands and performers in California - found himself in the right place at the right time, with a parallel movement developing in London under the influence of the Beatles. The period saw the emergence of the underground papers International Times and Oz, and of music venues such as the UFO club. He was intent on reflecting the emerging new directions in his programmes and, within the existing Radio London framework, adapted his playlists accordingly.
Full Audiobook reading of THE PERFUMED GARDEN by Sheikh Nefzaoui
Giuseppe Baldini smells a perfume. Video: Perfume - The Story of a Murderer Sound: Poulenc - Gloria - Qui Sedes Ad Dexteram Patris
Provided to YouTube by The Orchard Enterprises Perfumed Garden · The Chameleons John Peel Sessions (2014 Remaster) ℗ 2014 BBC Music Released on: 2014-12-01 Auto-generated by YouTube.
THE PERFUMED GARDEN | FULL AudioBook | by Sheikh Nefzaoui | Greatest AudioBooks - Sheikh NEFZAOUI ( - 15th Cent.), translated by Richard Francis BURTON (1821 - 1890) - A fifteenth-century Arabic sex manual and work of erotic literature. The book presents opinions on what qualities men and women should have to be attractive, gives advice on sexual technique, warnings about sexual health, and recipes to remedy sexual maladies. It gives lists of names for the penis and vagina, has a section on the interpretation of dreams, and briefly describes sex among animals. Interspersed with these there are a number of stories which are intended to give context and amusement. (Summary adapted from wiki) ► https://www.GreatestAudioBooks.co ► FACEBOOK: https://www.Facebook.com/GreatestAudioBooks ► TWITT...
A fifteenth-century Arabic sex manual and work of erotic literature. The book presents opinions on what qualities men and women should have to be attractive, gives advice on sexual technique, warnings about sexual health, and recipes to remedy sexual maladies. It gives lists of names for the penis and vagina, has a section on the interpretation of dreams, and briefly describes sex among animals. Interspersed with these there are a number of stories which are intended to give context and amusement Free audiobook, Full audiobook, Sheikh nefzaoui, Audiobook (Industry), The Perfumed Garden (Book), Chivalric Romance (TV Genre), Romance Novel (Literary Genre), Romantic, Romance, Sheikh NEFZAOUI, The Perfumed Garden, Library, Favorite, Reading, Greatest Audio Books, Greatest, Books to read, Audio...
http://KEXP.ORG presents The Chameleons Vox performing "Perfume Garden" live at The Triple Door as part of KEXP's VIP Club Concert series. Recorded September 18, 2015. Host: El Toro Audio Engineer: Craig Montgomery Cameras: Jim Beckmann, Shelly Corbett, Scott Holpainen & Justin Wilmore Editor: Jim Beckmann http://kexp.org http://chameleonsv.com
The Perfumed Garden (Audiobook Full Book) - By Sheikh Netzaoui #audiobook #fullaudiobook #timelessaudiobooks #erotica Please support Timeless Audio Books on Patreon: https://www.patreon.com/timelessaudiobooks The Perfumed Garden Sheikh Nefzaoui ( - 15th Cent.) Translated by Richard Francis Burton (1821 - 1890) A fifteenth-century Arabic sex manual and work of erotic literature. The book presents opinions on what qualities men and women should have to be attractive, gives advice on sexual technique, warnings about sexual health, and recipes to remedy sexual maladies. It gives lists of names for the penis and vagina, has a section on the interpretation of dreams, and briefly describes sex among animals. Interspersed with these there are a number of stories which are intended to give conte...
Band : Omnium Gatherum Song : The Perfumed Garden Album : Spirits And August Light Genre : Melodic Death Metal Lyrics : I'm sick of all these scars - the worst of me could feel its whole grace - "the spring of that year came back and we have met again, and your scent is still the same" Thanks For Watching.
Provided to YouTube by The Orchard Enterprises Perfume Garden · The Chameleons What Does Anything Mean? Basically (2009 Remaster) ℗ 2009 Blue Apple Music Released on: 2009-11-23 Auto-generated by YouTube.
Part Of A System - Unplugged Live Session Connect with Perfumed Garden: https://www.instagram.com/perfumedgardenofficial https://www.facebook.com/perfumedgardenvienna https://open.spotify.com/artist/6iZQLlqT8HaN5Wo3KHmzKK?si=Yp0SyivpS8yGAAGcW-v5pA Recording by Ian Clay Camera by Daniel Morawitz Video by Daniel Zineldin Written and performed by Perfumed Garden at Redbox Mödling
As played on the air by John Peel, 53 years ago, this week. Enjoy! Whole show (2hrs+) can be found here: http://archive.org/details/004-john-peel-perfumed-garden-radio-london-06-08-67
John Peel playing a listener's record called The Perfumed Garden Blues or John Peel's Lament, broadcast on Radio London on 22nd July 1967. Geoffrey Prowse was born in Tottenham, London in 1942. He was the oldest of 3 children, a brother, Robert (Bobby, Bob) and a sister, Rita. He went to Bruce Grove Junior school and then to Tottenham County School. He left there when he was 14 to study at the Hornsey School of Art. He was a prolific and hugely talented painter, writer, musician and composer. An avid John Peel fan, he composed The Perfumed Garden Blues or John Peel's Lament which was played on Peel's Radio London show. He met John Peel on at least one occasion when he took his two daughters, Sophie and Lelia, to John Peel's house for tea. Geoffrey died tragically in 1972 at the age of ...
The Perfumed Garden Show with UK presenter Mike Wright, alternative music radio like no other at perfumedradio.com
Provided to YouTube by IIP-DDS John Peel Opening the Gates of the Perfumed Garden (Perfumed Garden, 14th August 1967) · Tyrannosaurus Rex A Whole Zinc of Finches ℗ Easy Action Released on: 2010-05-31 Auto-generated by YouTube.
The only reason I've created and uploaded this is that I highly appreciate John Peel and love this poem by Adrian Henri very much, as well as this performance by him and Andy Roberts, and I couldn't find it on Youtube. The photo is taken from Adrian Henri's memorial website: http://www.adrianhenri.com/biography-tributes-johnpeel.html http://www.adrianhenri.com/ and it can also be found at Andy Roberts's official website: http://www.andyrobertsmusic.com/news-adrian-henri.html
A 66 minute segment of John Peel's 40 birthday party show broadcast by BBC Radio 1 on Aug 30th 1979. Recorded onto a decent quality cassette tape live off the radio in stereo FM on the night by Mark Stanfield of Ynyshir, Rhondda, S. Wales. Full track listing and broadcast details here: http://peel.wikia.com/wiki/30_August_1979
25 years on from Blur's last session at Peel Acres, Damon Albarn returns with Tom Ravenscroft to select his favourite records from John Peel's vast collection created across his lifetime. Damon tells us which record he would love to take home, shares his memories from Peel Acres with Blur and reveals the record everyone needs in their collection. ------------------------------------------------------------------------------------------------------------------------- Subscribe and 🔔 to BBC Sounds YouTube: https://www.youtube.com/c/bbcsounds?sub_confirmation=1 Listen to the full episode here: https://www.bbc.co.uk/sounds/play/m00148j7 Find more episodes of The Collection here: https://www.bbc.co.uk/sounds/brand/m0014cg1 Fresh on BBC Sounds playlist: https://www.youtube.com/playlist?list...
The complete session recorded by The Chameleons on 8 June 1983 for the John Peel show on BBC Radio 1 and broadcast on the 14th of that month. Tracklist: 1. Perfumed Garden (1:35) 2. Don't Fall (8:17) 3. Second Skin (Film) (13:59) 4. Nostalgia (20:54)
John Peel's first ever radio appearance was on American radio station WRR, where he was introduced by Bill "Hoss" Carroll on Kat's Karavan in 1961. John Peel's real name was John Ravenscroft and the audio consists of the first 25 minutes of the show.
Abdullah Ibrahim (born Adolph Johannes Brand on 9 October 1934 and formerly known as Dollar Brand) is a South African pianist and composer. His music reflects many of the musical influences of his childhood in the multicultural port areas of Cape Town, ranging from traditional African songs to the gospel of the AME Church and ragas, to more modern jazz and other Western styles. Ibrahim is considered the leading figure in the subgenre Cape jazz. Within jazz, his music particularly reflects the influence of Thelonious Monk and Duke Ellington. With his wife, the jazz singer Sathima Bea Benjamin, he is father to the New York underground rapper Jean Grae, as well as to a son, Tsakwe.
Ibrahim was born in Cape Town on 9 October 1934, and was baptized Adolph Johannes Brand. He attended Trafalgar High School in Cape Town's District Six, and began piano lessons at the age of seven, making his professional debut at 15.
In 1959 and 1960, Ibrahim played with the Jazz Epistles in Sophiatown, alongside saxophonist Kippie Moeketsi, trumpeter Hugh Masekela, trombonist Jonas Gwangwa, bassist Johnny Gertze and drummer Makaya Ntshoko; in 1960, the group recorded the first jazz LP by Black South African musicians. Ibrahim then joined the European tour of the musical King Kong.
I'm sick of all these scars - the worst of me could feel its whole grace -
"the spring of that year came back and we have met again, and your scent is