'+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; })); }); -->

Lunette

In architecture, a lunette (French lunette, "little moon") is a half-moon shaped space, either filled with recessed masonry or void. A lunette is formed when a horizontal cornice transects a round-headed arch at the level of the imposts, where the arch springs. If a door is set within a round-headed arch, the space within the arch above the door, masonry or glass, is a lunette. If the door is a major access, and the lunette above is massive and deeply set, it may be called a tympanum.

The term is usefully employed to describe the section of interior wall between the curves of a vault and its springing line. A system of intersecting vaults produces lunettes on the wall surfaces above a cornice. The lunettes in the structure of the Sistine Chapel inspired Michelangelo to come up with inventive compositions for the spaces.

In neoclassical architecture of Robert Adam and his French contemporaries, like Ange-Jacques Gabriel, a favorite scheme set a series of windows within shallow blind arches. The lunettes above lent themselves to radiating motifs: a sunburst of bellflower husks, radiating fluting, a low vase of flowers, etc.

Lunette (disambiguation)

A lunette is a moon-shaped architectural detail.

Lunette may also refer to:

  • Lunette (fortification), an outwork consisting of a salient angle with two flanks and an open gorge
  • Lunette (Gargoyles), a fictional character in the animated television series "Gargoyles"
  • Lunette (geology), a wind-formed crescent dune shape
  • Lunette (stele), the curved top region of a stele (pillar-shaped monument), especially from ancient Egypt
  • Lunette Peak, a mountain on the border of the Canadian provinces of Alberta and British Columbia
  • Pyx, also called a lunette, a small enclosure for the Eucharistic host in the Roman Catholic and Anglo-Catholic churches
  • Musée des Lunettes et Lorgnettes Pierre Marly, a museum of eyeglasses in Paris
  • See also

  • Lunula (disambiguation)
  • Lune (disambiguation)

  • Lunette (fortification)

    In fortification, a lunette was originally an outwork of half-moon shape; later it became a redan with short flanks, in trace somewhat resembling a bastion standing by itself without curtains on either side. The gorge was generally open.

    One notable historical example of a lunette was the one used at the Battle of the Alamo in San Antonio, Texas, in March 1836. Another were the Bagration flèches, at the Battle of Borodino, in 1812.

    See also

  • List of established military terms
  • References

    Podcasts:

    • Evelina vs Lunette SMALL Menstrual Cup Squish

      Menstrual Cup Squish Comparison: Belladot - Evelina vs Lunette both in size SMALL Menstrual Cup Squish Evelina: https://www.belladot.com/products/evelina-menstrual-cup/ Lunette Cup: https://amzn.to/2K2GdMT ***DISCOUNTS*** A list of Shops & Discounts: https://goo.gl/ebQVWB ***TIP JAR*** PayPal.me/CrabbyPaddies Like what you see? What to see more? Help me, help others like you :) Anything helps to keep me going and to be able to afford to purchase the many reusable menstrual products on the market. Amazon affiliate links may provide me with a small commission at no extra cost to you. Otherwise, I purchase 98% of the menstrual cups that you see on my channel with my own money. Using the links provided here to purchase a cup/s may allow me (not always) a small commission to continue t...

      published: 10 Feb 2020
    • Yuuki vs Lunette menstrual cup

      More info below! My vlog channel: https://www.youtube.com/user/breefarmervlogs My Facebook page: https://www.facebook.com/preciousstarsYT My website for cloth pads and cups : http://www.preciousstars.net My instagram: @preciousstarspads My Twitter: https://twitter.com/preciousstarsYT

      published: 12 Jan 2015
    • Lunette model 1 vs model 2

      More info below! My Facebook page: https://www.facebook.com/preciousstarsYT My website for cloth pads and cups : https://www.preciousstars.net My instagram: @preciousstarspads My Twitter: https://twitter.com/preciousstarsYT

      published: 07 Oct 2014
    • Using A Menstrual Cup | Lunette Cup Review

      Purchase on Amazon: http://amzn.to/2kVFNdH _________ http://www.halleasebeast.com FB | Instagram | Snapchat - halleasebeast twitter: @hallease Not sponsored.

      published: 09 May 2015
    • What is a Lunette menstrual cup?

      Let us explain how Lunette works! Lunette menstrual cup is the future of feminine protection. You can ditch tampons and pads for good!

      published: 17 Dec 2015
    • Lunette Cup Review

      A very long overdue review of one of Kim's favorite cups- the Lunette! Made in Finland, the Lunette has been a popular cup for more than 10 years and their company has championed social issues near and dear to our hearts. Kim considers the Lunette Cup one of her Goldilocks, and is a top 3 cup in her rotation, which is saying quite a lot! Want to read this rather than watch it? Turn the captions on or head to our website to visit the blog post: https://putacupinit.com/lunette You can check out the Lunette cups, and compare them side by side to each other or to other brands, on our shop and compare page ✨ https://putacupinit.com/compare-shop-menstrual-cups/ Helpful PACII Resources: Featured Products: https://www.amazon.com/shop/putacupinit Quiz: https://vag.life/thecupquiz Chart: https:/...

      published: 16 Apr 2019
    • Lunette Menstrual Cup

      http://www.thegrommet.com/lunette-menstrual-cup-model-27 The Grommet discovers the Lunette silicone menstrual cup and finds it to be an eco-friendly, safe, effective tampon alternative.

      published: 23 May 2012
    • Saalt vs Lunette Sm "Squish" - Menstrual Cups

      ***LINKS*** Cup Comparison "Tool": http://bit.ly/2qOSr0E Red Herring on WordPress: redherringtv.wordpress.com RUMP info: menstrualcupreviews.net ***DISCOUNTS*** A total list of discount codes can be found here: http://bit.ly/2oUzHvv ***FIND ME*** Red Herring on FB: http://bit.ly/2vyAJF4 Crabby Paddies on FB: http://bit.ly/2wBQ849 Crabby Paddies Etsy shop: http://etsy.me/1FfoLvB Instagram: http://bit.ly/2fnan2f Pinterest: http://bit.ly/2vy98Uh redherringtv@hotmail.com ***OTHER STUFF*** Music: "Red Herring" by KaipoTheHeartThrob -http://bit.ly/2EsTkGV and Upbeat Forever Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 3.0 License http://creativecommons.org/licenses/by/3.0/ #mycupsonfleek #menstrualcups #menstrualcup #menstruationmatters #rumps #period...

      published: 14 Mar 2018
    • Oups 😬 #humour #lunette #lunettes #ophtalmologie #opticienne #btsopticienlunetier

      published: 19 Feb 2025
    • Mauvais djo feat MC YOSHI & Kokosvoice - Lunettes (Clip officiel)

      🔥 Lunettes - Mauvais Djo FT MC Yoshi, KokosVoice, (Clip Officiel) 🔥 Découvrez leur nouveau single « Lunettes » du tant attendu groupe Triangle des Bermudes (TDB) issue de leur nouveau EP « Triangles des Bermudes 2.0 » réunissant les Speakers Leader du style Club. @mc_yoshi, @kokosvoice, @mauvais-djo Abonnez-vous au profil Triangle des Bermudes sur Deezer, Spotify, Apple Music ou Napster : li.sten.to/triangledesbermudes Suivez Triangle des Bermudes sur : YouTube: https://www.youtube.com/@TRIANGLEDESBERMUDES Instagram: https://www.instagram.com/triangledesbermudes_off Spotify: https://open.spotify.com/album/3whA8dYLUDYsM5AVuN7scr Tiktok : https://www.tiktok.com/@triangledesbermudes.off Artistes présent sur le morceau: #mcyoshi, #kokosvoice, #mauvaisdjo Compositeur: Carlos Monsta R...

      published: 10 Jun 2024
    Evelina vs Lunette SMALL Menstrual Cup Squish
    1:24

    Evelina vs Lunette SMALL Menstrual Cup Squish

    • Order:
    • Duration: 1:24
    • Uploaded Date: 10 Feb 2020
    • views: 812
    Menstrual Cup Squish Comparison: Belladot - Evelina vs Lunette both in size SMALL Menstrual Cup Squish Evelina: https://www.belladot.com/products/evelina-menstrual-cup/ Lunette Cup: https://amzn.to/2K2GdMT ***DISCOUNTS*** A list of Shops & Discounts: https://goo.gl/ebQVWB ***TIP JAR*** PayPal.me/CrabbyPaddies Like what you see? What to see more? Help me, help others like you :) Anything helps to keep me going and to be able to afford to purchase the many reusable menstrual products on the market. Amazon affiliate links may provide me with a small commission at no extra cost to you. Otherwise, I purchase 98% of the menstrual cups that you see on my channel with my own money. Using the links provided here to purchase a cup/s may allow me (not always) a small commission to continue to provide you and others like you with information about the newest menstrual items on the market. I am not paid directly from companies to speak about their products. I do this of my own free will in my own time. ***FIND ME*** FB: www.facebook.com/RHerringTV Crabby Paddies on FB: www.facebook.com/RedHerringTV Instagram: www.instagram.com/RedHerringTV Pinterest: www.pinterest.com/RedHerringTV ***MUSIC*** "Walk in the Park", "Red Herring" & "Famous Bells" by KaipoTheHeartThrob All other music created by Red Herring #mycupsonfleek #menstrualcups #menstrualcup #menstruationmatters #rumps #periodpositive #zerowaste #menstrual #ditchthedisposables #redherringtv #evelinacup #belladot #lunette
    https://wn.com/Evelina_Vs_Lunette_Small_Menstrual_Cup_Squish
    Yuuki vs Lunette menstrual cup
    3:07

    Yuuki vs Lunette menstrual cup

    • Order:
    • Duration: 3:07
    • Uploaded Date: 12 Jan 2015
    • views: 25066
    More info below! My vlog channel: https://www.youtube.com/user/breefarmervlogs My Facebook page: https://www.facebook.com/preciousstarsYT My website for cloth pads and cups : http://www.preciousstars.net My instagram: @preciousstarspads My Twitter: https://twitter.com/preciousstarsYT
    https://wn.com/Yuuki_Vs_Lunette_Menstrual_Cup
    Lunette model 1 vs model 2
    7:23

    Lunette model 1 vs model 2

    • Order:
    • Duration: 7:23
    • Uploaded Date: 07 Oct 2014
    • views: 70814
    More info below! My Facebook page: https://www.facebook.com/preciousstarsYT My website for cloth pads and cups : https://www.preciousstars.net My instagram: @preciousstarspads My Twitter: https://twitter.com/preciousstarsYT
    https://wn.com/Lunette_Model_1_Vs_Model_2
    Using A Menstrual Cup | Lunette Cup Review
    9:19

    Using A Menstrual Cup | Lunette Cup Review

    • Order:
    • Duration: 9:19
    • Uploaded Date: 09 May 2015
    • views: 23712
    Purchase on Amazon: http://amzn.to/2kVFNdH _________ http://www.halleasebeast.com FB | Instagram | Snapchat - halleasebeast twitter: @hallease Not sponsored.
    https://wn.com/Using_A_Menstrual_Cup_|_Lunette_Cup_Review
    What is a Lunette menstrual cup?
    1:51

    What is a Lunette menstrual cup?

    • Order:
    • Duration: 1:51
    • Uploaded Date: 17 Dec 2015
    • views: 3255
    Let us explain how Lunette works! Lunette menstrual cup is the future of feminine protection. You can ditch tampons and pads for good!
    https://wn.com/What_Is_A_Lunette_Menstrual_Cup
    Lunette Cup Review
    9:44

    Lunette Cup Review

    • Order:
    • Duration: 9:44
    • Uploaded Date: 16 Apr 2019
    • views: 51199
    A very long overdue review of one of Kim's favorite cups- the Lunette! Made in Finland, the Lunette has been a popular cup for more than 10 years and their company has championed social issues near and dear to our hearts. Kim considers the Lunette Cup one of her Goldilocks, and is a top 3 cup in her rotation, which is saying quite a lot! Want to read this rather than watch it? Turn the captions on or head to our website to visit the blog post: https://putacupinit.com/lunette You can check out the Lunette cups, and compare them side by side to each other or to other brands, on our shop and compare page ✨ https://putacupinit.com/compare-shop-menstrual-cups/ Helpful PACII Resources: Featured Products: https://www.amazon.com/shop/putacupinit Quiz: https://vag.life/thecupquiz Chart: https://vag.life/metricchart FB Group: https://vag.life/cupnation If you love menstrual cups you need our PACII flair. YouTube viewers get an exclusive 10% discount with code YOUTUBE. https://shop.putacupinit.com #menstrualcup #lunettecup #review
    https://wn.com/Lunette_Cup_Review
    Lunette Menstrual Cup
    3:08

    Lunette Menstrual Cup

    • Order:
    • Duration: 3:08
    • Uploaded Date: 23 May 2012
    • views: 32839
    http://www.thegrommet.com/lunette-menstrual-cup-model-27 The Grommet discovers the Lunette silicone menstrual cup and finds it to be an eco-friendly, safe, effective tampon alternative.
    https://wn.com/Lunette_Menstrual_Cup
    Saalt vs Lunette Sm "Squish" - Menstrual Cups
    1:41

    Saalt vs Lunette Sm "Squish" - Menstrual Cups

    • Order:
    • Duration: 1:41
    • Uploaded Date: 14 Mar 2018
    • views: 8440
    ***LINKS*** Cup Comparison "Tool": http://bit.ly/2qOSr0E Red Herring on WordPress: redherringtv.wordpress.com RUMP info: menstrualcupreviews.net ***DISCOUNTS*** A total list of discount codes can be found here: http://bit.ly/2oUzHvv ***FIND ME*** Red Herring on FB: http://bit.ly/2vyAJF4 Crabby Paddies on FB: http://bit.ly/2wBQ849 Crabby Paddies Etsy shop: http://etsy.me/1FfoLvB Instagram: http://bit.ly/2fnan2f Pinterest: http://bit.ly/2vy98Uh redherringtv@hotmail.com ***OTHER STUFF*** Music: "Red Herring" by KaipoTheHeartThrob -http://bit.ly/2EsTkGV and Upbeat Forever Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 3.0 License http://creativecommons.org/licenses/by/3.0/ #mycupsonfleek #menstrualcups #menstrualcup #menstruationmatters #rumps #periodpositive #zerowaste #menstrual #ditchthedisposables I purchased ALL of these cups with my own money and am not paid in any way unless otherwise stated. These are my honest opinions and reviews as I find them on each of these specific Menstrual Cups. I am no way affiliated with any of the Menstrual Cup Companies that I feature.
    https://wn.com/Saalt_Vs_Lunette_Sm_Squish_Menstrual_Cups
    Oups 😬 #humour #lunette #lunettes #ophtalmologie #opticienne #btsopticienlunetier
    0:33

    Oups 😬 #humour #lunette #lunettes #ophtalmologie #opticienne #btsopticienlunetier

    • Order:
    • Duration: 0:33
    • Uploaded Date: 19 Feb 2025
    • views: 844
    https://wn.com/Oups_😬_Humour_Lunette_Lunettes_Ophtalmologie_Opticienne_Btsopticienlunetier
    Mauvais djo feat MC YOSHI & Kokosvoice - Lunettes (Clip officiel)
    3:12

    Mauvais djo feat MC YOSHI & Kokosvoice - Lunettes (Clip officiel)

    • Order:
    • Duration: 3:12
    • Uploaded Date: 10 Jun 2024
    • views: 823995
    🔥 Lunettes - Mauvais Djo FT MC Yoshi, KokosVoice, (Clip Officiel) 🔥 Découvrez leur nouveau single « Lunettes » du tant attendu groupe Triangle des Bermudes (TDB) issue de leur nouveau EP « Triangles des Bermudes 2.0 » réunissant les Speakers Leader du style Club. @mc_yoshi, @kokosvoice, @mauvais-djo Abonnez-vous au profil Triangle des Bermudes sur Deezer, Spotify, Apple Music ou Napster : li.sten.to/triangledesbermudes Suivez Triangle des Bermudes sur : YouTube: https://www.youtube.com/@TRIANGLEDESBERMUDES Instagram: https://www.instagram.com/triangledesbermudes_off Spotify: https://open.spotify.com/album/3whA8dYLUDYsM5AVuN7scr Tiktok : https://www.tiktok.com/@triangledesbermudes.off Artistes présent sur le morceau: #mcyoshi, #kokosvoice, #mauvaisdjo Compositeur: Carlos Monsta Réalisateur: Directed By Nono Partenaire : TDM Terry Make up : Louise-Yvette Talpin Danseuses : Anouk & Amina Chorégraphes : Carlitolevrai - Isma & Rocket Production: YPDP #lunettesmcyoshi #lunettesnoires #mauvaisdjo #mauvaisdjo #jaimismeslunettes #mauvaisdjofeatmcyoshi #amadoukokovoice #commandokokovoice #kokosvoicelunette #Triangledesbermudes #lunettes #Mauvaisdjo #Mcyoshi #Kokosvoice #Tdb #Ypdp #clubspeaker #speaker #poolparty #showcaseclub
    https://wn.com/Mauvais_Djo_Feat_Mc_Yoshi_Kokosvoice_Lunettes_(Clip_Officiel)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 41:22

    Evelina vs Lunette SMALL Menstrual Cup Squish

    Menstrual Cup Squish Comparison: Belladot - Evelina vs Lunette both in size SMALL Menstrual Cup Squish Evelina: https://www.belladot.com/products/evelina-menstrual-cup/ Lunette Cup: https://amzn.to/2K2GdMT ***DISCOUNTS*** A list of Shops & Discounts: https://goo.gl/ebQVWB ***TIP JAR*** PayPal.me/CrabbyPaddies Like what you see? What to see more? Help me, help others like you :) Anything helps to keep me going and to be able to afford to purchase the many reusable menstrual products on the market. Amazon affiliate links may provide me with a small commission at no extra cost to you. Otherwise, I purchase 98% of the menstrual cups that you see on my channel with my own money. Using the links provided here to purchase a cup/s may allow me (not always) a small commission to continue to provide you and others like you with information about the newest menstrual items on the market. I am not paid directly from companies to speak about their products. I do this of my own free will in my own time. ***FIND ME*** FB: www.facebook.com/RHerringTV Crabby Paddies on FB: www.facebook.com/RedHerringTV Instagram: www.instagram.com/RedHerringTV Pinterest: www.pinterest.com/RedHerringTV ***MUSIC*** "Walk in the Park", "Red Herring" & "Famous Bells" by KaipoTheHeartThrob All other music created by Red Herring #mycupsonfleek #menstrualcups #menstrualcup #menstruationmatters #rumps #periodpositive #zerowaste #menstrual #ditchthedisposables #redherringtv #evelinacup #belladot #lunette
    1:24
    Evelina vs Lunette SMALL Menstrual Cup Squish
    Menstrual Cup Squish Comparison: Belladot - Evelina vs Lunette both in size SMALL Menstru...
    published: 10 Feb 2020
    Play in Full Screen
    3:07
    Yuuki vs Lunette menstrual cup
    More info below! My vlog channel: https://www.youtube.com/user/breefarmervlogs My Faceb...
    published: 12 Jan 2015
    Play in Full Screen
    7:23
    Lunette model 1 vs model 2
    More info below! My Facebook page: https://www.facebook.com/preciousstarsYT My website fo...
    published: 07 Oct 2014
    Play in Full Screen
    9:19
    Using A Menstrual Cup | Lunette Cup Review
    Purchase on Amazon: http://amzn.to/2kVFNdH _________ http://www.halleasebeast.com FB | Ins...
    published: 09 May 2015
    Play in Full Screen
    1:51
    What is a Lunette menstrual cup?
    Let us explain how Lunette works! Lunette menstrual cup is the future of feminine protecti...
    published: 17 Dec 2015
    Play in Full Screen
    9:44
    Lunette Cup Review
    A very long overdue review of one of Kim's favorite cups- the Lunette! Made in Finland, th...
    published: 16 Apr 2019
    Play in Full Screen
    3:08
    Lunette Menstrual Cup
    http://www.thegrommet.com/lunette-menstrual-cup-model-27 The Grommet discovers the Lunette...
    published: 23 May 2012
    Play in Full Screen
    1:41
    Saalt vs Lunette Sm "Squish" - Menstrual Cups
    ***LINKS*** Cup Comparison "Tool": http://bit.ly/2qOSr0E Red Herring on WordPress: redhe...
    published: 14 Mar 2018
    Play in Full Screen
    0:33
    Oups 😬 #humour #lunette #lunettes #ophtalmologie #opticienne #btsopticienlunetier
    published: 19 Feb 2025
    Play in Full Screen
    3:12
    Mauvais djo feat MC YOSHI & Kokosvoice - Lunettes (Clip officiel)
    🔥 Lunettes - Mauvais Djo FT MC Yoshi, KokosVoice, (Clip Officiel) 🔥 Découvrez leur nouve...
    published: 10 Jun 2024
    Play in Full Screen

    Lunette

    In architecture, a lunette (French lunette, "little moon") is a half-moon shaped space, either filled with recessed masonry or void. A lunette is formed when a horizontal cornice transects a round-headed arch at the level of the imposts, where the arch springs. If a door is set within a round-headed arch, the space within the arch above the door, masonry or glass, is a lunette. If the door is a major access, and the lunette above is massive and deeply set, it may be called a tympanum.

    The term is usefully employed to describe the section of interior wall between the curves of a vault and its springing line. A system of intersecting vaults produces lunettes on the wall surfaces above a cornice. The lunettes in the structure of the Sistine Chapel inspired Michelangelo to come up with inventive compositions for the spaces.

    In neoclassical architecture of Robert Adam and his French contemporaries, like Ange-Jacques Gabriel, a favorite scheme set a series of windows within shallow blind arches. The lunettes above lent themselves to radiating motifs: a sunburst of bellflower husks, radiating fluting, a low vase of flowers, etc.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×