<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Numeric precision on export to a flat file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/965011#M375766</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/9046"&gt;@LuisValença&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I saw those two example values in a dataset, my first thought would be: These values are affected by rounding errors already, based on the (possibly false) assumption that the first actually represents&amp;nbsp;&lt;SPAN&gt;152677201 + 2/15 =&amp;nbsp;152677201.133333&lt;STRONG&gt;333&lt;/STRONG&gt;... and the second&amp;nbsp;327653072.3&lt;STRONG&gt;9&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Are they the result of some arithmetic calculation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My second thought would be concerned with the limited precision of numeric variables in general when so many decimal digits are involved. A closer look confirms that at least the second number, &lt;FONT face="courier new,courier"&gt;b&lt;/FONT&gt;, is beyond the limit mentioned by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35763"&gt;@yabwon&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;:&amp;nbsp;Translated back to the decimal system, the internal binary 64-bit floating-point representation (see BINARY64. format) of that number under Windows or Unix stands for&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;327653072.38999998&lt;STRONG&gt;569488525390625&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;So the eighth decimal place (8) is not correctly represented. In fact, the least significant bit of the internal representation has a place value of 2**-24≈5.96E-8, which is the difference between &lt;FONT face="courier new,courier"&gt;b&lt;/FONT&gt; and the largest (64-bit floating-point) number less than &lt;FONT face="courier new,courier"&gt;b&lt;/FONT&gt;,&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;327653072.3899999&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/FONT&gt;6090240478515625&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;or the smallest number greater than &lt;FONT face="courier new,courier"&gt;b&lt;/FONT&gt;,&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;327653072.3&lt;STRONG&gt;900000&lt;FONT color="#FF0000"&gt;4&lt;/FONT&gt;&lt;/STRONG&gt;5299530029296875&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first number, &lt;FONT face="courier new,courier"&gt;a&lt;/FONT&gt;, is properly represented, though, in spite of its 16 decimal digits: The decimal equivalent of the internal representation is&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;152677201.1333332061767578125&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;and the least significant bit has a place value of 2**-2&lt;STRONG&gt;5&lt;/STRONG&gt;≈2.98E-8, which is sufficiently small for the seven decimals&amp;nbsp;1333332.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to keep the numeric values to the precision as stored by SAS,&amp;nbsp;&lt;EM&gt;including&lt;/EM&gt; the unavoidable numeric representation errors (due to rounding the infinitely many binary digits needed for an &lt;EM&gt;exact&lt;/EM&gt; representation of those decimal fractions), a format showing the internal representation such as &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/leforinforref/p1b6ugw71lmhnpn1wixijtysezzg.htm" target="_blank" rel="noopener"&gt;BINARY64.&lt;/A&gt; (as suggested by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35763"&gt;@yabwon&lt;/a&gt;) or &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/leforinforref/n0ueabv26pr2fwn19uxk2f4bf10y.htm" target="_blank" rel="noopener"&gt;HEX16.&lt;/A&gt; might be an option. But your other "application" must be able to read those binary or hexadecimal representations properly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is not the case,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;'s suggestion might come to the rescue: While I haven't seen "twice the normal precision" in the DS2 documentation, the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/ds2ref/p0e8igzv6k1mvqn1a2a5gbi7dsnx.htm" target="_blank" rel="noopener"&gt;BIGINT data type&lt;/A&gt; should accommodate all the 17 decimal digits of &lt;FONT face="courier new,courier"&gt;b&lt;/FONT&gt; in an &lt;EM&gt;integer&lt;/EM&gt; value. (Note the rounding errors that a naive integer conversion can produce, though, e.g.,&amp;nbsp;&lt;FONT face="courier new,courier"&gt;100*0.07 ne 7&lt;/FONT&gt;.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I think it would be simpler to &lt;STRONG&gt;write the integer and fractional parts of the numbers separately:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;348   data _null_;
349   do x=152677201.1333332, 327653072.38999998;
350     i=int(x);
351     f=x-i;
352     length c $65;
353     if -1&amp;lt;x&amp;lt;0 then c=put(f,32.29);
354     else c=catx('.',put(i, 32.),scan(put(abs(f), 32.30),2,'.'));
355     put c;
356   end;
357   run;

152677201.133333206176750000000000000000
327653072.389999985694880000000000000000
&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Edit:&lt;/U&gt;&lt;/STRONG&gt; In the first version of this post I used the BEST32. and BEST16. format, respectively, for the integer and fractional parts, but this can cause problems in cases where those formats switch to scientific notation. Example:&amp;nbsp;0.00000123 would be written as 1.23E-6.&lt;/P&gt;
&lt;P&gt;Also, the sign of negative numbers between -1 and 0 would have been lost.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt; Caution:&lt;/STRONG&gt; The suggested code above fails for extremely large and extremely small numbers which require scientific notation, e.g., 1.23E50 or 1.23E-50.&lt;/P&gt;</description>
    <pubDate>Thu, 24 Apr 2025 07:22:34 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2025-04-24T07:22:34Z</dc:date>
    <item>
      <title>Numeric precision on export to a flat file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/964976#M375749</link>
      <description>&lt;P&gt;I have a problem when I try to export numbers to a csv file for use in another application. The example shows that the results are not the same when I use 3 different formats&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;data _null_;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;a = 152677201.1333332;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;put "Without format " a;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;put "Format Best32." a best32.;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;put "Format E32." a e32.;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;b = 327653072.38999998;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;put "Without format " b;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;put "Format Best32." b best32.;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;put "Format E32." b e32.;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&amp;nbsp;run;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Output&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;Without format 152677201.13&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Format Best32. 152677201.133333&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Format E32. 1.5267720113333320000000000E+08&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Without format 327653072.39&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Format Best32. 327653072.39&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Format E32. 3.2765307239000000000000000E+08&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;This is a real case. What is the best way to export these values without loss of precision, so that they don't interfere with another application?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 18:05:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/964976#M375749</guid>
      <dc:creator>LuisValença</dc:creator>
      <dc:date>2025-04-23T18:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric precision on export to a flat file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/964979#M375751</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess you have already read throug thi part of the documentation about numerical precision:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lepg/p0dv87zb3bnse6n1mqo360be70qr.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/lepg/p0dv87zb3bnse6n1mqo360be70qr.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and you know that in IEEE standard you are able to present "precisely" numbers up to 15 digits.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your case both a and b are longer, so even:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;a = 152677201.1333332;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;might give rounding "issues".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that other application is running on SAS you could use binary64. to prints bits:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
a = 152677201.1333332;
put "Format binary64." a binary64.;

b = 327653072.38999998;
put "Format binary64." b binary64.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Format binary64.
0100000110100010001100110101011010100010010001000100010001000000
Format binary64.
0100000110110011100001111001011011010000011000111101011100001010
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 18:36:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/964979#M375751</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2025-04-23T18:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric precision on export to a flat file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/964980#M375752</link>
      <description>&lt;P&gt;SAS can handle numbers up to about 15 digits without loss of precision. After that you will lose precision. You can use &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/proc/n0ujllmd28quj5n17r2ibrdya9ld.htm" target="_self"&gt;PROC DS2&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;to handle numbers with twice the normal precision.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 18:38:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/964980#M375752</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2025-04-23T18:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric precision on export to a flat file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/964988#M375756</link>
      <description>&lt;P&gt;I don't see any issue here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you don't use a format the data step will use BEST12.&amp;nbsp; That explains the only difference I can see.&lt;/P&gt;
&lt;PRE&gt;152677201.13
152677201.133333&lt;/PRE&gt;
&lt;P&gt;But your first number cannot be represented exactly as a floating point binary number. Which is why your attempt to assign that value to it ends up rounded.&lt;/P&gt;
&lt;PRE&gt;152677201.1333332
152677201.133333&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 19:46:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/964988#M375756</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-04-23T19:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Numeric precision on export to a flat file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/965011#M375766</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/9046"&gt;@LuisValença&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I saw those two example values in a dataset, my first thought would be: These values are affected by rounding errors already, based on the (possibly false) assumption that the first actually represents&amp;nbsp;&lt;SPAN&gt;152677201 + 2/15 =&amp;nbsp;152677201.133333&lt;STRONG&gt;333&lt;/STRONG&gt;... and the second&amp;nbsp;327653072.3&lt;STRONG&gt;9&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Are they the result of some arithmetic calculation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My second thought would be concerned with the limited precision of numeric variables in general when so many decimal digits are involved. A closer look confirms that at least the second number, &lt;FONT face="courier new,courier"&gt;b&lt;/FONT&gt;, is beyond the limit mentioned by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35763"&gt;@yabwon&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;:&amp;nbsp;Translated back to the decimal system, the internal binary 64-bit floating-point representation (see BINARY64. format) of that number under Windows or Unix stands for&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;327653072.38999998&lt;STRONG&gt;569488525390625&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;So the eighth decimal place (8) is not correctly represented. In fact, the least significant bit of the internal representation has a place value of 2**-24≈5.96E-8, which is the difference between &lt;FONT face="courier new,courier"&gt;b&lt;/FONT&gt; and the largest (64-bit floating-point) number less than &lt;FONT face="courier new,courier"&gt;b&lt;/FONT&gt;,&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;327653072.3899999&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/FONT&gt;6090240478515625&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;or the smallest number greater than &lt;FONT face="courier new,courier"&gt;b&lt;/FONT&gt;,&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;327653072.3&lt;STRONG&gt;900000&lt;FONT color="#FF0000"&gt;4&lt;/FONT&gt;&lt;/STRONG&gt;5299530029296875&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first number, &lt;FONT face="courier new,courier"&gt;a&lt;/FONT&gt;, is properly represented, though, in spite of its 16 decimal digits: The decimal equivalent of the internal representation is&lt;/P&gt;
&lt;PRE&gt;&lt;FONT size="4"&gt;152677201.1333332061767578125&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;and the least significant bit has a place value of 2**-2&lt;STRONG&gt;5&lt;/STRONG&gt;≈2.98E-8, which is sufficiently small for the seven decimals&amp;nbsp;1333332.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to keep the numeric values to the precision as stored by SAS,&amp;nbsp;&lt;EM&gt;including&lt;/EM&gt; the unavoidable numeric representation errors (due to rounding the infinitely many binary digits needed for an &lt;EM&gt;exact&lt;/EM&gt; representation of those decimal fractions), a format showing the internal representation such as &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/leforinforref/p1b6ugw71lmhnpn1wixijtysezzg.htm" target="_blank" rel="noopener"&gt;BINARY64.&lt;/A&gt; (as suggested by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35763"&gt;@yabwon&lt;/a&gt;) or &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/leforinforref/n0ueabv26pr2fwn19uxk2f4bf10y.htm" target="_blank" rel="noopener"&gt;HEX16.&lt;/A&gt; might be an option. But your other "application" must be able to read those binary or hexadecimal representations properly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is not the case,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;'s suggestion might come to the rescue: While I haven't seen "twice the normal precision" in the DS2 documentation, the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/ds2ref/p0e8igzv6k1mvqn1a2a5gbi7dsnx.htm" target="_blank" rel="noopener"&gt;BIGINT data type&lt;/A&gt; should accommodate all the 17 decimal digits of &lt;FONT face="courier new,courier"&gt;b&lt;/FONT&gt; in an &lt;EM&gt;integer&lt;/EM&gt; value. (Note the rounding errors that a naive integer conversion can produce, though, e.g.,&amp;nbsp;&lt;FONT face="courier new,courier"&gt;100*0.07 ne 7&lt;/FONT&gt;.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I think it would be simpler to &lt;STRONG&gt;write the integer and fractional parts of the numbers separately:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;348   data _null_;
349   do x=152677201.1333332, 327653072.38999998;
350     i=int(x);
351     f=x-i;
352     length c $65;
353     if -1&amp;lt;x&amp;lt;0 then c=put(f,32.29);
354     else c=catx('.',put(i, 32.),scan(put(abs(f), 32.30),2,'.'));
355     put c;
356   end;
357   run;

152677201.133333206176750000000000000000
327653072.389999985694880000000000000000
&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Edit:&lt;/U&gt;&lt;/STRONG&gt; In the first version of this post I used the BEST32. and BEST16. format, respectively, for the integer and fractional parts, but this can cause problems in cases where those formats switch to scientific notation. Example:&amp;nbsp;0.00000123 would be written as 1.23E-6.&lt;/P&gt;
&lt;P&gt;Also, the sign of negative numbers between -1 and 0 would have been lost.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt; Caution:&lt;/STRONG&gt; The suggested code above fails for extremely large and extremely small numbers which require scientific notation, e.g., 1.23E50 or 1.23E-50.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 07:22:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Numeric-precision-on-export-to-a-flat-file/m-p/965011#M375766</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2025-04-24T07:22:34Z</dc:date>
    </item>
  </channel>
</rss>

