<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <updated></updated>
  <generator>https://nostr.ae</generator>

  <title>Nostr notes by </title>
  <author>
    <name></name>
  </author>
  <link rel="self" type="application/atom+xml" href="https://nostr.ae/npub1yz88535e0ydqye9q9x8l5cz9d3g6ervfjgyk5xm88zvktmxvstlsuy4pdt.rss" />
  <link href="https://nostr.ae/npub1yz88535e0ydqye9q9x8l5cz9d3g6ervfjgyk5xm88zvktmxvstlsuy4pdt" />
  <id>https://nostr.ae/npub1yz88535e0ydqye9q9x8l5cz9d3g6ervfjgyk5xm88zvktmxvstlsuy4pdt</id>
  <icon></icon>
  <logo></logo>




  <entry>
    <id>https://nostr.ae/nevent1qqsyuahy7kwdnly90zgx23wa4q74ajrteyawaym3cn44myxw7wp58zqzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp07k8av50</id>
    
      <title type="html">📅 Original date posted:2022-09-03 📝 Original message: Hi ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsyuahy7kwdnly90zgx23wa4q74ajrteyawaym3cn44myxw7wp58zqzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp07k8av50" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsqfya3cuj0xn5klqu3fr2put8kd425g0spjvgwaensw77kdqghe7q8vez04&#39;&gt;nevent1q…ez04&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2022-09-03&lt;br/&gt;📝 Original message:&lt;br/&gt;Hi Alex,&lt;br/&gt;&lt;br/&gt;This is quite similar to eclair&amp;#39;s cluster mode [1] so I can definitely say&lt;br/&gt;it&amp;#39;s a great idea :-)&lt;br/&gt;&lt;br/&gt;Our rationale was as much reducing the attack surface (we didn&amp;#39;t like our&lt;br/&gt;node being directly accessible from the internet) as improving scalability&lt;br/&gt;(handling the constant flow of connections/disconnections from mobile&lt;br/&gt;wallets, and a ton of gossip).&lt;br/&gt;&lt;br/&gt;Some specific points on our implementation:&lt;br/&gt;- there can be N instances of proxy and their number can be adjusted&lt;br/&gt;without downtime&lt;br/&gt;- our proxy also does preprocessing for gossip (they keep an up-to-date&lt;br/&gt;copy of routing table and directly answer queries, and also dedup incoming&lt;br/&gt;announcements before forwarding to the backend, where the announcements are&lt;br/&gt;verified)&lt;br/&gt;- outgoing connections (initiated by an operator from the backend) are also&lt;br/&gt;initiated by the proxy. Even incoming connections from Tor are directed to&lt;br/&gt;the proxy. The backend node handles zero LN connections&lt;br/&gt;- since the front needs the node key for the secure handshake, this led us&lt;br/&gt;to introduce a separate key hierarchy for channel management [2]&lt;br/&gt;- we have considered, but not implemented, a &amp;#34;lockdown mode&amp;#34; where the&lt;br/&gt;front would only allow incoming connections from known peers that already&lt;br/&gt;have a channel&lt;br/&gt;- if your setup has a separate db server (e.g. postgres), and logs are&lt;br/&gt;properly rotated/streamed out, then the resources that typically run out&lt;br/&gt;when scaling up (file descriptors, disk space, etc.) should be really under&lt;br/&gt;control on your main node&lt;br/&gt;&lt;br/&gt;Hope that helps,&lt;br/&gt;&lt;br/&gt;Pierre&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;[1] &lt;a href=&#34;https://github.com/ACINQ/eclair/blob/master/docs/Cluster.md&#34;&gt;https://github.com/ACINQ/eclair/blob/master/docs/Cluster.md&lt;/a&gt;&lt;br/&gt;[2] &lt;a href=&#34;https://github.com/ACINQ/eclair/pull/1584&#34;&gt;https://github.com/ACINQ/eclair/pull/1584&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;Le jeu. 1 sept. 2022 à 19:56, Alex Akselrod via Lightning-dev &amp;lt;&lt;br/&gt;lightning-dev at lists.linuxfoundation.org&amp;gt; a écrit :&lt;br/&gt;&lt;br/&gt;&amp;gt; At NYDIG, we&amp;#39;re considering ways to harden large LND deployments. Joost&lt;br/&gt;&amp;gt; and I discussed that currently, when external untrusted peers make inbound&lt;br/&gt;&amp;gt; connections, LND must verify the identity of the peer during the noise&lt;br/&gt;&amp;gt; handshake, and it must do this before enforcing any potential key-based&lt;br/&gt;&amp;gt; allow lists. This is done in the same process as the node&amp;#39;s other critical&lt;br/&gt;&amp;gt; tasks, such as monitoring the chain.&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt; To reduce the attack area of the main node process, we&amp;#39;d like to propose a&lt;br/&gt;&amp;gt; means to optionally separate the peer communication into a separate&lt;br/&gt;&amp;gt; process: something like CLN&amp;#39;s connectd, running separately, and the&lt;br/&gt;&amp;gt; connections would be multiplexed over a single network connection initiated&lt;br/&gt;&amp;gt; from the node to the proxy. The core of our current idea is demonstrated in&lt;br/&gt;&amp;gt; a draft PR: &lt;a href=&#34;https://github.com/lightningnetwork/lnd/pull/6843&#34;&gt;https://github.com/lightningnetwork/lnd/pull/6843&lt;/a&gt;&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt; I&amp;#39;d love some early feedback on the general direction of this. If this&lt;br/&gt;&amp;gt; would be interesting, I&amp;#39;ll build it out into a fully working feature.&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt; Thanks,&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt; Alex Akselrod&lt;br/&gt;&amp;gt; _______________________________________________&lt;br/&gt;&amp;gt; Lightning-dev mailing list&lt;br/&gt;&amp;gt; Lightning-dev at lists.linuxfoundation.org&lt;br/&gt;&amp;gt; &lt;a href=&#34;https://lists.linuxfoundation.org/mailman/listinfo/lightning-dev&#34;&gt;https://lists.linuxfoundation.org/mailman/listinfo/lightning-dev&lt;/a&gt;&lt;br/&gt;&amp;gt;&lt;br/&gt;-------------- next part --------------&lt;br/&gt;An HTML attachment was scrubbed...&lt;br/&gt;URL: &amp;lt;&lt;a href=&#34;http://lists.linuxfoundation.org/pipermail/lightning-dev/attachments/20220903/3d759580/attachment.html&amp;gt&#34;&gt;http://lists.linuxfoundation.org/pipermail/lightning-dev/attachments/20220903/3d759580/attachment.html&amp;gt&lt;/a&gt;;
    </content>
    <updated>2023-06-09T15:06:46&#43;02:00</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs8vgxs0j59a4s4vz458a9q0t5d955pyqa4fcpkhedn0w2kky6lmggzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp070cczzj</id>
    
      <title type="html">📅 Original date posted:2021-11-23 📝 Original message: &amp;gt; ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs8vgxs0j59a4s4vz458a9q0t5d955pyqa4fcpkhedn0w2kky6lmggzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp070cczzj" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsxkeqhyu7ld7qh9ehwehhaepyualvw8cffz8jdaqs505va4d86uecs3dlae&#39;&gt;nevent1q…dlae&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2021-11-23&lt;br/&gt;📝 Original message:&lt;br/&gt;&amp;gt; so You propose Acinq / Blockstream / Lightning Labs do not have funds to&lt;br/&gt;run a box or 2 ?&lt;br/&gt;&lt;br/&gt;Fwiw we already do that with our main node. It&amp;#39;s even better than a demo&lt;br/&gt;one because it has real economic activity, and has a lot of channels to a&lt;br/&gt;variety of nodes implementations and versions.&lt;br/&gt;&lt;br/&gt;Sometimes our node is behind eclair master branch, but it&amp;#39;s always&lt;br/&gt;up-to-date for critical commits and releases. So we eat our own dog food&lt;br/&gt;and will experience force closes before our users do.&lt;br/&gt;&lt;br/&gt;Pierre&lt;br/&gt;-------------- next part --------------&lt;br/&gt;An HTML attachment was scrubbed...&lt;br/&gt;URL: &amp;lt;&lt;a href=&#34;http://lists.linuxfoundation.org/pipermail/lightning-dev/attachments/20211123/fa3738a8/attachment.html&amp;gt&#34;&gt;http://lists.linuxfoundation.org/pipermail/lightning-dev/attachments/20211123/fa3738a8/attachment.html&amp;gt&lt;/a&gt;;
    </content>
    <updated>2023-06-09T15:04:29&#43;02:00</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvxwfxeedqfns6tkcur3eka9wlcyte8lpdl07jqdpdtjy7rkelwxqzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp07w587qp</id>
    
      <title type="html">📅 Original date posted:2019-11-22 📝 Original message: &amp;gt; ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvxwfxeedqfns6tkcur3eka9wlcyte8lpdl07jqdpdtjy7rkelwxqzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp07w587qp" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs9274z8jl23mkw7c5n2xa9vaxajuk3ellhe3se5e8mqek0dtrz5egsc26mw&#39;&gt;nevent1q…26mw&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2019-11-22&lt;br/&gt;📝 Original message:&lt;br/&gt;&amp;gt; The high-level idea would be that the sender must solve a small PoW puzzle&lt;br/&gt;&lt;br/&gt;&amp;lt;insert meme: &amp;#34;Yo dawg I heard you like pow systems...&amp;#34; &amp;gt;
    </content>
    <updated>2023-06-09T14:57:08&#43;02:00</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsfvu9mtjxpamp3gtvzw846mghyjwl9euc7c9pkk5e85kmg34n2l2szyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp0776md04</id>
    
      <title type="html">📅 Original date posted:2019-04-03 📝 Original message: Hello ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsfvu9mtjxpamp3gtvzw846mghyjwl9euc7c9pkk5e85kmg34n2l2szyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp0776md04" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsvghleyhqm02ta9cyguccad54lsavv5z2xfyyx7enuu4tux2g7jecxhj5vc&#39;&gt;nevent1q…j5vc&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2019-04-03&lt;br/&gt;📝 Original message:&lt;br/&gt;Hello ZmnSCPxj,&lt;br/&gt;&lt;br/&gt;&amp;gt; Do you refer to the changing from &amp;#34;H&amp;#34;TLC to &amp;#34;P&amp;#34;TLC point-locked timelocked contracts?&lt;br/&gt;&amp;gt; i.e. instead of payment hash / preimage, we use payment point / scalar.&lt;br/&gt;&lt;br/&gt;Yes, that is what I meant. Cryptography isn&amp;#39;t my strong suit though,&lt;br/&gt;so I&amp;#39;m not able to go into much more details.&lt;br/&gt;&lt;br/&gt;Cheers,&lt;br/&gt;&lt;br/&gt;Pierre
    </content>
    <updated>2023-06-09T14:54:47&#43;02:00</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvytrreu3e9vnmpr80sptam64e0gamallspn6mkhrf9har873z5tqzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp074j92vw</id>
    
      <title type="html">📅 Original date posted:2019-04-01 📝 Original message: Hello ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvytrreu3e9vnmpr80sptam64e0gamallspn6mkhrf9har873z5tqzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp074j92vw" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs9m5vhy2tkkeqfuazzjngkzw0jtqstrvylc23xp3evhfcequ5dq6g9jt3pc&#39;&gt;nevent1q…t3pc&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2019-04-01&lt;br/&gt;📝 Original message:&lt;br/&gt;Hello ZmnSCPxj,&lt;br/&gt;&lt;br/&gt;&amp;gt; Unless we propose to massively change the onion packet construction...?&lt;br/&gt;&lt;br/&gt;I&amp;#39;m afraid we would have to make some changes. I imagine we would have&lt;br/&gt;two onions:&lt;br/&gt;- one for the adjacent hops (this is the onion we are currently using)&lt;br/&gt;- one for the trampoline hops&lt;br/&gt;&lt;br/&gt;The &amp;#39;trampoline onion&amp;#39; would be contained in the per-hop payload of&lt;br/&gt;the final node of the &amp;#39;adjacent onion&amp;#39;. So in your example B would:&lt;br/&gt;1) receive the htlc&lt;br/&gt;2) see that it is the last hop in the route, and extract the trampoline payload&lt;br/&gt;3) peel the trampoline onion and see that it should delegate the payment to C&lt;br/&gt;4) find a route to C and set the trampoline onion as payload for C&lt;br/&gt;&lt;br/&gt;I haven&amp;#39;t studied PR #593 enough to tell how easy that would be&lt;br/&gt;achievable though.&lt;br/&gt;&lt;br/&gt;There is another unrelated issue: because trampoline nodes don&amp;#39;t know&lt;br/&gt;anything about what happened before they received the onion, they may&lt;br/&gt;unintentionnaly create overlapping routes. So we can&amp;#39;t simply use the&lt;br/&gt;payment_hash as we currently do, we would have to use something a bit&lt;br/&gt;more elaborate. (maybe private keys?)&lt;br/&gt;&lt;br/&gt;Cheers,&lt;br/&gt;&lt;br/&gt;Pierre
    </content>
    <updated>2023-06-09T14:54:46&#43;02:00</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsxj7z5xk7c40nx5pa7j4y06p2579arupgx8qu7zlq2dn2m7h3aepqzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp07m9nff0</id>
    
      <title type="html">📅 Original date posted:2018-10-08 📝 Original message: &amp;gt; ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsxj7z5xk7c40nx5pa7j4y06p2579arupgx8qu7zlq2dn2m7h3aepqzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp07m9nff0" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs9kjsymyewcvhle7n0g2xaumug9x4uy0ctz4tnruqpeaschgcm49svryv9a&#39;&gt;nevent1q…yv9a&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2018-10-08&lt;br/&gt;📝 Original message:&lt;br/&gt;&amp;gt; But there&amp;#39;s no reason to believe that the invoicer has more knowledge about all but the last hop.&lt;br/&gt;&lt;br/&gt;I disagree: there is a good chance that the receiver is a 24/7 running&lt;br/&gt;merchant/website, with a full up-to-date view of the network, whereas&lt;br/&gt;the payer is most likely a mobile wallet with less&lt;br/&gt;accurate/partial/out of date information.&lt;br/&gt;&lt;br/&gt;At least this is what we are seeing on the current mainnet. Routing&lt;br/&gt;table sync is hard on mobile clients, and I think that it makes sense&lt;br/&gt;that receivers &amp;#34;help&amp;#34; senders, after all incentives are aligned.&lt;br/&gt;&lt;br/&gt;Cheers,&lt;br/&gt;&lt;br/&gt;Pierre
    </content>
    <updated>2023-06-09T14:51:33&#43;02:00</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqszfmwfqvntu7z3cu4vckvtnj34pl987a7587hu5d7dx7l35p6m34szyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp074lm43s</id>
    
      <title type="html">📅 Original date posted:2018-10-04 📝 Original message: Ha! I ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqszfmwfqvntu7z3cu4vckvtnj34pl987a7587hu5d7dx7l35p6m34szyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp074lm43s" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsrf7tjec0kvrea8ud63gyue77hcnvzhgkm55zt7fzwjuj4uel6a8g7qcrzf&#39;&gt;nevent1q…crzf&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2018-10-04&lt;br/&gt;📝 Original message:&lt;br/&gt;Ha! I actually came up with the idea two months ago (but you beat me&lt;br/&gt;to it on the implementation so we&amp;#39;re even :-)&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://github.com/ACINQ/eclair-wallet/issues/101#issuecomment-408619207&#34;&gt;https://github.com/ACINQ/eclair-wallet/issues/101#issuecomment-408619207&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;Le jeu. 20 sept. 2018 à 04:12, Rusty Russell &amp;lt;rusty at blockstream.com&amp;gt; a écrit :&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt; Hi all,&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt;         I&amp;#39;m considering a change to c-lightning, where `invoice` would&lt;br/&gt;&amp;gt; automatically append an &amp;#39;r&amp;#39; field for a channel which has sufficient&lt;br/&gt;&amp;gt; *incoming* capacity for the amount (using a weighted probability across&lt;br/&gt;&amp;gt; our peers).&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt;          This isn&amp;#39;t quite what &amp;#39;r&amp;#39; was for, but it would be a useful&lt;br/&gt;&amp;gt; hint for payment routing and also potentially for establishing an&lt;br/&gt;&amp;gt; initial channel.  This is an issue for the Blockstream Store which&lt;br/&gt;&amp;gt; deliberately doesn&amp;#39;t advertize an address any more to avoid&lt;br/&gt;&amp;gt; centralization.&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt; Thoughts welcome!&lt;br/&gt;&amp;gt; Rusty.&lt;br/&gt;&amp;gt; _______________________________________________&lt;br/&gt;&amp;gt; Lightning-dev mailing list&lt;br/&gt;&amp;gt; Lightning-dev at lists.linuxfoundation.org&lt;br/&gt;&amp;gt; &lt;a href=&#34;https://lists.linuxfoundation.org/mailman/listinfo/lightning-dev&#34;&gt;https://lists.linuxfoundation.org/mailman/listinfo/lightning-dev&lt;/a&gt;
    </content>
    <updated>2023-06-09T14:51:32&#43;02:00</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs27jkj4slm7vdg4wpzfyraurxaj3n847vkel7ke48stj9lrfdwhyqzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp07fxyhqc</id>
    
      <title type="html">📅 Original date posted:2015-11-19 📝 Original message: &amp;gt; ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs27jkj4slm7vdg4wpzfyraurxaj3n847vkel7ke48stj9lrfdwhyqzyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp07fxyhqc" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsdfemzqhqjr3wrrdnmzexd8zp9f0r7dc75r9dlrcxr2c3g30d7pdcdpaxgh&#39;&gt;nevent1q…axgh&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2015-11-19&lt;br/&gt;📝 Original message:&lt;br/&gt;&amp;gt; it will be a talk at Scaling Bitcoin HK.&lt;br/&gt;&lt;br/&gt;That&amp;#39;s great news! Looking forward to it
    </content>
    <updated>2023-06-09T14:45:08&#43;02:00</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqszrcx65rg3lls2n88p70rjrcrtn0hn9udyyn9lfwfsn2pgt2pfvgszyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp07lutacx</id>
    
      <title type="html">📅 Original date posted:2015-11-19 📝 Original message: Hi ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqszrcx65rg3lls2n88p70rjrcrtn0hn9udyyn9lfwfsn2pgt2pfvgszyqsgu7jxn9u35qny5q5cl7nqg4k9rtyd3xfqj6smvuufje0vejp07lutacx" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqspz58p5sdcjd0m4z2392ce56pjp89wwh8vqy2vkkjj84g7g4fdatge6ee9a&#39;&gt;nevent1q…ee9a&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2015-11-19&lt;br/&gt;📝 Original message:&lt;br/&gt;Hi guys,&lt;br/&gt;&lt;br/&gt;Do you know of any available resources on &amp;#34;segregated witness&amp;#34; ? I&lt;br/&gt;couldn&amp;#39;t find any.&lt;br/&gt;&lt;br/&gt;Cheers,&lt;br/&gt;&lt;br/&gt;Pierre
    </content>
    <updated>2023-06-09T14:45:07&#43;02:00</updated>
  </entry>

</feed>