<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:g-custom="http://base.google.com/cns/1.0" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
  <channel>
    <title>LA ROUTE DU RHUM</title>
    <link>https://www.florencebonnot.com</link>
    <description>INVITATION à ART+RHUM FESTIVAL</description>
    <atom:link href="https://www.florencebonnot.com/feed/rss2" type="application/rss+xml" rel="self" />
    <image>
      <title>LA ROUTE DU RHUM</title>
      <url>https://cdn.website-editor.net/8cdcebf62d8a4b0284584819742f97e0/dms3rep/multi/IMG_5590.JPG</url>
      <link>https://www.florencebonnot.com</link>
    </image>
    <item>
      <title>Bientôt, du 13 au 16 JUIN 2019 !</title>
      <link>https://www.florencebonnot.com/bientot-du-13-au-16-juin-2019bac1a248</link>
      <description>Florence BONNOT expose à la PooL Art Fair de Guadeloupe en juin 2019</description>
      <content:encoded>&lt;h3&gt;&#xD;
  
                  
  Florence BONNOT expose à la PooL Art Fair Guadeloupe 2019, stand B 9

                &#xD;
&lt;/h3&gt;&#xD;
&lt;div&gt;&#xD;
  &lt;img src="https://cdn.website-editor.net/8cdcebf62d8a4b0284584819742f97e0/dms3rep/multi/20190513125743397_0001.jpg" alt="" title=""/&gt;&#xD;
  &lt;span&gt;&#xD;
  &lt;/span&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div&gt;&#xD;
  &lt;img src="https://cdn.website-editor.net/8cdcebf62d8a4b0284584819742f97e0/dms3rep/multi/CANADA%2Bnew%2BIMG_6213.jpg" alt="" title=""/&gt;&#xD;
  &lt;span&gt;&#xD;
  &lt;/span&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;!-- ========= Meta Tags ========= --&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;!-- PWA settings --&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;script&gt;&#xD;

//&lt;![CDATA[

  
//]]&gt;
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;script&gt;&#xD;

//&lt;![CDATA[

  
//]]&gt;
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;script&gt;&#xD;


//&lt;![CDATA[
&lt;b&gt;
    function toHash(str){var hash=5381,i=str.length;while(i){hash=hash*33^str.charCodeAt(--i)}return hash&amp;gt;&amp;gt;&amp;gt;0}
    var cacheKey = '1878021936~8cdcebf62d8a4b0284584819742f97e0~home~~false~desktop:::PAGES_SHORT_CACHE:::1557766211000';
    var hashedCacheKey = cacheKey ? toHash(cacheKey) : '';
    &lt;/b&gt;
//]]&gt;
  
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;script&gt;&#xD;


//&lt;![CDATA[
&lt;b&gt;
        (function(global){
    const cacheKey = global.cacheKey;
    const isOffline = ('onLine' in navigator) &amp;&amp; (navigator.onLine === false);
    const hasServiceWorkerSupport = 'serviceWorker' in navigator;
    if(isOffline) {
        console.log('offline mode');
    }
    if(!hasServiceWorkerSupport){
        console.log('service worker is not supported');
    }
    if (hasServiceWorkerSupport &amp;&amp; !isOffline) {

        window.addEventListener('load', function() {
            const serviceWorkerPath = '/runtime-service-worker.js?v=1';
            navigator.serviceWorker.register(serviceWorkerPath, { scope: './' }).then(function(registration) {
                // Registration was successful
                console.log('ServiceWorker registration successful with scope: ', registration.scope);
                checkCacheKey().then(function(result) {
                    if(result &amp;&amp; result.newKey) {
                        // stale version
                        console.log('stale version, current key:', cacheKey, ';;; new key:', result.newKey);
                        messageServiceWorker({ command: 'deletePagesCache'});
                    }
                });
            }, function(err) {
                // registration failed :(
                console.log('ServiceWorker registration failed: ', err);
            }).catch(function(err) {
                console.log(err)
            });
        });

        // helper function to refresh the page
        var refreshPage = (function(){
            var refreshing;
            return function(){
                if (refreshing) return;
                // prevent multiple refreshes
                var refreshkey = 'refreshed' + location.href;
                var prevRefresh = localStorage.getItem(refreshkey);
                if(prevRefresh) {
                    localStorage.removeItem(refreshkey);
                    if((Date.now() - prevRefresh) &amp;lt; 30000) {
                        return; // dont go into a refresh loop
                    }
                }
                refreshing = true;
                localStorage.setItem(refreshkey, Date.now());
                console.log('refereshing page');
                window.location.reload();
            }
        }())

        // checks the updated cache key
        function checkCacheKey() {
            var baseUrl = '/_dm/s/rt/actions/cacheKey';
            const uri = location.pathname;
            var cacheKeyUrl = baseUrl + (baseUrl.indexOf('?') &amp;gt; -1 ? '&amp;' : '?') + 'skip_sw_cache&amp;uri=' + encodeURIComponent(uri);
            return fetch(cacheKeyUrl)
            .then(function(resp) {
                return (resp &amp;&amp; resp.json) ? resp.json() : {};
            })
            .then(function(cacheObj) {
                if(cacheObj &amp;&amp; cacheObj.value) {
                    if(cacheObj.value !== cacheKey) {
                        // stale version
                        return { newKey: cacheObj.value };
                    }
                }
            })
            .catch(function(err) {
                return {};
            });
        }

        function messageServiceWorker(data) {
            return new Promise(function(resolve, reject) {
                if(navigator.serviceWorker.controller) {
                    var worker = navigator.serviceWorker.controller;
                    var messageChannel = new MessageChannel();
                    messageChannel.port1.onmessage = replyHandler;
                    worker.postMessage(data, [messageChannel.port2]);
                    function replyHandler (event) {
                        resolve(event.data);
                    }
                } else {
                    resolve();
                }
            })
        }
    }
}(window))&lt;/b&gt;
//]]&gt;
  
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;!-- Add manifest --&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;!-- Tell the browser it's a PWA --&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;!-- Tell iOS it's a PWA --&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;!-- End PWA settings --&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;!--Add favorites icons--&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;!-- End favorite icons --&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;!-- render the required CSS and JS in the head section --&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;script&gt;&#xD;


//&lt;![CDATA[
&lt;b&gt;

    if (!window.requestIdleCallback) {
        window.requestIdleCallback = function (fn) {
            setTimeout(fn, 0);
        }
    }

    function loadCSS(link) {
        var urlParams = new URLSearchParams(window.location.search);
        var noCSS = !!urlParams.get('nocss');
        var cssTimeout = urlParams.get('cssTimeout') || 0;

        if (noCSS) {
            return;
        }
        requestIdleCallback(function () {
            window.setTimeout(function () {
                link.onload = null;
                link.rel = 'stylesheet';
                link.type = 'text/css'
            }, parseInt(cssTimeout, 10));
        });
    }

&lt;/b&gt;
//]]&gt;
  
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;script&gt;&#xD;


//&lt;![CDATA[
&lt;b&gt;
(function(n){"use strict";if(!n.l){n.l=function(){}}var o=loadCSS.t={};o.o=function(){var l;try{l=n.document.createElement("link").relList.supports("preload")}catch(e){l=false}return function(){return l}}();o.i=function(e){var l=e.media||"all";function enableStylesheet(){if(e.addEventListener){e.removeEventListener("load",enableStylesheet)}else if(e.attachEvent){e.detachEvent("onload",enableStylesheet)}e.setAttribute("onload",null);e.media=l}if(e.addEventListener){e.addEventListener("load",enableStylesheet)}else if(e.attachEvent){e.attachEvent("onload",enableStylesheet)}setTimeout(function(){e.rel="stylesheet";e.media="only x"});setTimeout(enableStylesheet,3e3)};o.s=function(){if(o.o()){return}var e=n.document.getElementsByTagName("link");for(var l=0;l&amp;lt;e.length;l++){var t=e[l];if(t.rel==="preload"&amp;&amp;t.getAttribute("as")==="style"&amp;&amp;!t.getAttribute("data-loadcss")){t.setAttribute("data-loadcss",true);o.i(t)}}};if(!o.o()){o.s();var e=n.setInterval(o.s,500);if(n.addEventListener){n.addEventListener("load",function(){o.s();n.clearInterval(e)})}else if(n.attachEvent){n.attachEvent("onload",function(){o.s();n.clearInterval(e)})}}if(typeof exports!=="undefined"){exports.l=loadCSS}else{n.l=loadCSS}})(typeof global!=="undefined"?global:this);
&lt;/b&gt;
//]]&gt;
  
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;!-- End render the required css and JS in the head section --&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;!-- SYS- MUFORDFfRVVfUFJPRA== --&gt;    &lt;b&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;script&gt;&#xD;

//&lt;![CDATA[

  
//]]&gt;
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;script&gt;&#xD;

//&lt;![CDATA[

  
//]]&gt;
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;script&gt;&#xD;

//&lt;![CDATA[

  
//]]&gt;
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;script&gt;&#xD;

//&lt;![CDATA[

  
//]]&gt;
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;script&gt;&#xD;

//&lt;![CDATA[

  
//]]&gt;
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;script&gt;&#xD;

//&lt;![CDATA[

  
//]]&gt;
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;script&gt;&#xD;

//&lt;![CDATA[

  
//]]&gt;
                    &#xD;
    &lt;/script&gt;&#xD;
    &lt;script&gt;&#xD;

//&lt;![CDATA[

  
//]]&gt;
                    &#xD;
    &lt;/script&gt;&#xD;
  &lt;/p&gt;&#xD;
  &lt;div&gt;&#xD;
    &lt;!--StartFragment--&gt;    &lt;div&gt;&#xD;
      &lt;div&gt;&#xD;
        &lt;br/&gt;&#xD;
        &lt;div&gt;&#xD;
          &lt;i&gt;&#xD;
            &lt;b&gt;&#xD;
              
                              
              " Hospitalité "
            
                            &#xD;
            &lt;/b&gt;&#xD;
          &lt;/i&gt;&#xD;
        &lt;/div&gt;&#xD;
        &lt;div&gt;&#xD;
          &lt;i&gt;&#xD;
            &lt;b&gt;&#xD;
              
                              
              Peinture à l'huile sur toile 100 x 81cm / Commande privée de la Société 
            
                            &#xD;
            &lt;/b&gt;&#xD;
          &lt;/i&gt;&#xD;
          &lt;i&gt;&#xD;
            &lt;b&gt;&#xD;
              
                              
              UN JOUR MONTREAL
            
                            &#xD;
            &lt;/b&gt;&#xD;
          &lt;/i&gt;&#xD;
        &lt;/div&gt;&#xD;
        &lt;br/&gt;&#xD;
        &lt;div&gt;&#xD;
          &lt;div&gt;&#xD;
            &lt;b&gt;&#xD;
            &lt;/b&gt;&#xD;
          &lt;/div&gt;&#xD;
          &lt;div&gt;&#xD;
          &lt;/div&gt;&#xD;
          &lt;i&gt;&#xD;
            &lt;div&gt;&#xD;
            &lt;/div&gt;&#xD;
            &lt;div&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                " Ne soyez pas trop sévères 
              
                              &#xD;
              &lt;/b&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                avec vos frères
              
                              &#xD;
              &lt;/b&gt;&#xD;
            &lt;/div&gt;&#xD;
            &lt;div&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                Ils arrivent sur des bateaux de fortune
              
                              &#xD;
              &lt;/b&gt;&#xD;
            &lt;/div&gt;&#xD;
            &lt;div&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                quelque part sur notre Terre,
              
                              &#xD;
              &lt;/b&gt;&#xD;
            &lt;/div&gt;&#xD;
            &lt;div&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                ne demandent pas la lune, 
              
                              &#xD;
              &lt;/b&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                juste le gîte et le couvert.
              
                              &#xD;
              &lt;/b&gt;&#xD;
            &lt;/div&gt;&#xD;
            &lt;div&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                Nous sommes tous issus 
              
                              &#xD;
              &lt;/b&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                du même père
              
                              &#xD;
              &lt;/b&gt;&#xD;
            &lt;/div&gt;&#xD;
            &lt;div&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                et devons rendre des comptes 
              
                              &#xD;
              &lt;/b&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                à la même messagère
              
                              &#xD;
              &lt;/b&gt;&#xD;
            &lt;/div&gt;&#xD;
            &lt;div&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                qui nous rappelle 
              
                              &#xD;
              &lt;/b&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                que nous sommes éphémères "
              
                              &#xD;
              &lt;/b&gt;&#xD;
            &lt;/div&gt;&#xD;
            &lt;div&gt;&#xD;
              &lt;br/&gt;&#xD;
            &lt;/div&gt;&#xD;
            &lt;div&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                (Extrait du poème "Hospitalité" de 
              
                              &#xD;
              &lt;/b&gt;&#xD;
              &lt;b&gt;&#xD;
                
                                
                Kamal Zerdoumi 2018)
              
                              &#xD;
              &lt;/b&gt;&#xD;
            &lt;/div&gt;&#xD;
            &lt;div&gt;&#xD;
            &lt;/div&gt;&#xD;
          &lt;/i&gt;&#xD;
          &lt;div&gt;&#xD;
          &lt;/div&gt;&#xD;
          &lt;div&gt;&#xD;
            &lt;b&gt;&#xD;
            &lt;/b&gt;&#xD;
          &lt;/div&gt;&#xD;
        &lt;/div&gt;&#xD;
      &lt;/div&gt;&#xD;
      &lt;div&gt;&#xD;
        &lt;div&gt;&#xD;
        &lt;/div&gt;&#xD;
      &lt;/div&gt;&#xD;
    &lt;/div&gt;&#xD;
    &lt;div&gt;&#xD;
      &lt;div&gt;&#xD;
        &lt;div&gt;&#xD;
        &lt;/div&gt;&#xD;
      &lt;/div&gt;&#xD;
    &lt;/div&gt;&#xD;
    &lt;!--EndFragment--&gt;  &lt;/div&gt;&#xD;
  &lt;b&gt;&#xD;
    &lt;p&gt;&#xD;
    &lt;/p&gt;&#xD;
  &lt;/b&gt;&#xD;
&lt;/div&gt;</content:encoded>
      <enclosure url="https://cdn.website-editor.net/8cdcebf62d8a4b0284584819742f97e0/dms3rep/multi/CANADA%2Bnew%2BIMG_6213.jpg" length="838100" type="image/png" />
      <pubDate>Mon, 13 May 2019 18:00:55 GMT</pubDate>
      <guid>https://www.florencebonnot.com/bientot-du-13-au-16-juin-2019bac1a248</guid>
      <g-custom:tags type="string">Guadeloupe,Canada,Nature,Caraïbes,mangrove,artiste-peintre</g-custom:tags>
      <media:content medium="image" url="https://cdn.website-editor.net/8cdcebf62d8a4b0284584819742f97e0/dms3rep/multi/CANADA%2Bnew%2BIMG_6213.jpg">
        <media:description>thumbnail</media:description>
      </media:content>
    </item>
    <item>
      <title>INVITATION ART+RHUM FESTIVAL</title>
      <link>https://www.florencebonnot.com/art-plus-rhum-festival-</link>
      <description>L'Art Contemporain et La Route du Rhum  -  Vous êtes cordialement invités au vernissage ART+RHUM FESTIVAL en présence de Mme Josette BOREL-LINCERTIN, Présidente du Conseil Départemental, Marraine du Festival, le MARDI 13 NOVEMBRE 2018 à 18h 30 au Pavillon Hybissa, Chantier FORMADO, route du MACTe, POINTE A PITRE.</description>
      <content:encoded>&lt;h3&gt;&#xD;
  
                  
  du 11 au 17 novembre 2018

                &#xD;
&lt;/h3&gt;&#xD;
&lt;div&gt;&#xD;
  &lt;img src="https://cdn.website-editor.net/8cdcebf62d8a4b0284584819742f97e0/dms3rep/multi/IMG_5591.JPG" alt="" title=""/&gt;&#xD;
  &lt;span&gt;&#xD;
  &lt;/span&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div data-rss-type="text"&gt;&#xD;
  &lt;p&gt;&#xD;
    &lt;b&gt;&#xD;
      &lt;i&gt;&#xD;
        
                        
      Florence BONNOT expose au Pavillon HYBISSA, Chantier FORMADO (FORBIN) route du MACTe à POINTE A PITRE (peinture La Route du Rhum)
    
                      &#xD;
      &lt;/i&gt;&#xD;
    &lt;/b&gt;&#xD;
    &lt;br/&gt;&#xD;
    &lt;b&gt;&#xD;
      &lt;i&gt;&#xD;
        
                        
      et au Pavillon SIMA, 6 quai LAYRLE à POINTE A PITRE (peinture Plus léger qu'un bouchon ...) 
      
                        &#xD;
        &lt;br/&gt;&#xD;
        &lt;a href="http://www.art-rhum-festival.com"&gt;&#xD;
          
                          
        www.art-rhum-festival.com
      
                        &#xD;
        &lt;/a&gt;&#xD;
      &lt;/i&gt;&#xD;
    &lt;/b&gt;&#xD;
  &lt;/p&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div&gt;&#xD;
  &lt;img src="https://cdn.website-editor.net/8cdcebf62d8a4b0284584819742f97e0/dms3rep/multi/353c50df-cac6-4ff3-904a-e1fe731faf4d.png" alt="" title=""/&gt;&#xD;
  &lt;span&gt;&#xD;
  &lt;/span&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;div&gt;&#xD;
  &lt;img src="https://cdn.website-editor.net/8cdcebf62d8a4b0284584819742f97e0/dms3rep/multi/IMG_5556.JPG" alt="" title=""/&gt;&#xD;
  &lt;span&gt;&#xD;
  &lt;/span&gt;&#xD;
&lt;/div&gt;</content:encoded>
      <enclosure url="https://cdn.website-editor.net/8cdcebf62d8a4b0284584819742f97e0/dms3rep/multi/logo%2B%28glisse%CC%81%28e%29s%29%2B-%2Bcopie.jpg" length="5076" type="image/jpeg" />
      <pubDate>Tue, 13 Nov 2018 19:11:13 GMT</pubDate>
      <author>duda-owner-ionos@ionos.com (Duda Owner IONOS)</author>
      <guid>https://www.florencebonnot.com/art-plus-rhum-festival-</guid>
      <g-custom:tags type="string">ROUTE,RHUM,ART,PEINTURE,FLORENCE,BONNOT</g-custom:tags>
      <media:content medium="image" url="https://cdn.website-editor.net/8cdcebf62d8a4b0284584819742f97e0/dms3rep/multi/logo%2B%28glisse%CC%81%28e%29s%29%2B-%2Bcopie.jpg">
        <media:description>thumbnail</media:description>
      </media:content>
    </item>
  </channel>
</rss>
