<?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: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976200#M378277</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/442367"&gt;@sc5&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks for replying!&lt;BR /&gt;&lt;BR /&gt;Every script has that piece of code in it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the main script is like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%include "mydir/report_1.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_2.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_3.sas";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and each of those scripts has the code snippet in them.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Is "mydir" a fully qualified path?&amp;nbsp; For example if SAS is running on Unix does it start with / ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does the path mentioned exist on the machine where SAS is running?&lt;/P&gt;
&lt;P&gt;Does the user that is being used to run the job have permission to read the SAS programs?&lt;/P&gt;</description>
    <pubDate>Thu, 02 Oct 2025 01:08:26 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2025-10-02T01:08:26Z</dc:date>
    <item>
      <title>Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976195#M378273</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;&lt;BR /&gt;There's this bit of code in a few report scripts that works perfectly fine when run manually, but &lt;STRONG&gt;crashes&lt;/STRONG&gt; every other month &lt;STRONG&gt;when run as part of an automated scheduled job.&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This job calls multiple scripts sequentially one after another and this bit of code exists in each of those scripts. The first script works fine in the automated run, but all other scripts that follow fail. But again, running them all sequentially &lt;STRONG&gt;manually works&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;data _null_;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;mth_start = intnx('month',today(),-1,'B');&lt;/DIV&gt;
&lt;DIV&gt;mth_end = intnx('month',today(),-1,'E');&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;call symput('mth_s', put(mth_start,date9.));&lt;/DIV&gt;
&lt;DIV&gt;call symput('mth_e', put(mth_end,date9.));&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;run;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;%put &amp;amp;mth_s;&lt;/DIV&gt;
&lt;DIV&gt;%put &amp;amp;mth_e;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;In the logs it says&amp;nbsp;WARNING: Apparent symbolic reference MTH_S not resolved.&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;And then when the macro variables are called later on in Proc SQL WHERE clauses, the scripts just fail.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Any advice on how I can fix this?&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;EDIT:&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P&gt;Every script has that piece of code in it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the main script is like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%include "mydir/report_1.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_2.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_3.sas";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and each of those scripts has the code snippet in them.&amp;nbsp;&lt;/P&gt;
&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;/DIV&gt;</description>
      <pubDate>Thu, 02 Oct 2025 00:56:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976195#M378273</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2025-10-02T00:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976197#M378274</link>
      <description>&lt;P&gt;My guess is that each of your scripts is run in its own SAS session hence it won't know about macro variables created in the first script / SAS session. Running the scripts in one SAS session would solve the problem. However since you haven't provided any details regarding how your scheduled job is structured, it is a bit hard to offer further guidance.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 00:59:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976197#M378274</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-10-02T00:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976198#M378275</link>
      <description>&lt;P&gt;Thanks for replying!&lt;BR /&gt;&lt;BR /&gt;Every script has that piece of code in it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the main script is like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%include "mydir/report_1.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_2.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_3.sas";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and each of those scripts has the code snippet in them.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 00:56:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976198#M378275</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2025-10-02T00:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976199#M378276</link>
      <description>&lt;P&gt;We would need to see a snippet of the SAS log from the scheduled job from the start until the macro error to understand what is happening.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 01:05:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976199#M378276</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-10-02T01:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976200#M378277</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/442367"&gt;@sc5&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks for replying!&lt;BR /&gt;&lt;BR /&gt;Every script has that piece of code in it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the main script is like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%include "mydir/report_1.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_2.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_3.sas";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and each of those scripts has the code snippet in them.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Is "mydir" a fully qualified path?&amp;nbsp; For example if SAS is running on Unix does it start with / ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does the path mentioned exist on the machine where SAS is running?&lt;/P&gt;
&lt;P&gt;Does the user that is being used to run the job have permission to read the SAS programs?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 01:08:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976200#M378277</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-10-02T01:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976201#M378278</link>
      <description>&lt;P&gt;Yup, all of that is fine.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I didn't want to include company name info, but it's basically in the format&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%include "d:\mydir1\mydir2\report_1.sas";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's a windows server.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;there's absolutely no issue with the path names. It successfully calls these scripts and starts running them, we have hundreds of jobs that run successfully in the same format, etc.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue is *after* these scripts are called, in the middle of each script's execution, *only* with macro variables not resolving, and *only* when run as part of the scheduled run.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for replying!:)&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 01:12:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976201#M378278</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2025-10-02T01:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976202#M378279</link>
      <description>&lt;P&gt;Note that you can do the same thing without the data step.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let mth_s = %sysfunc(intnx(month,%sysfunc(today()),-1,B),date9.);
%let mth_e = %sysfunc(intnx(month,%sysfunc(today()),-1,E),date9.);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Oct 2025 01:17:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976202#M378279</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-10-02T01:17:19Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976203#M378280</link>
      <description>&lt;P&gt;Did you review the full logs of the entire SAS session to find the FIRST error?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you try setting the SOURCE2 option (or add the /SOURCE2 option to the %INCLUDE statement) so that you can see the statements that are being executed?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another thing to double check is the lengths of the lines in those %INCLUDE files.&amp;nbsp; I have seen situations where long lines are truncated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another thing to double check is if the files have physical tab characters in them.&amp;nbsp; When you submit SAS code from the Program Editor window in SAS Display Manager the tabs are automatically converted into spaces for you.&amp;nbsp; But when you use %INCLUDE to read the files that does not happen. So the program might execute differently.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 01:25:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976203#M378280</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-10-02T01:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976204#M378281</link>
      <description>&lt;P&gt;Note that the %INCLUDE command also supports the IgnoreDosEof option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4 class="xisDoc-argument"&gt;IGNOREDOSEOF&lt;/H4&gt;
&lt;DIV class="xisDoc-argumentDescription"&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;is used in the context of&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="xisDoc-nobr"&gt;I/O&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;operations on variable record format files. When this option is specified, any occurrence of ^Z is interpreted as character data and not as an end-of-file marker.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 02 Oct 2025 01:35:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976204#M378281</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-10-02T01:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976218#M378283</link>
      <description>&lt;P&gt;When you say it crashes&amp;nbsp;&lt;STRONG&gt;every other month&lt;/STRONG&gt;, then you need to look there. Something that goes active only in odd or even months.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 05:52:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976218#M378283</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2025-10-02T05:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976233#M378285</link>
      <description>&lt;P&gt;Can you post the log (at least the log snippet for the code shown)?&amp;nbsp; Your program has that DATA step, followed immediately by the two %PUT statements?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would look for an error in the log prior to this point.&amp;nbsp; When scheduled jobs run, SAS will (by default) enter syntax check mode when an error occurs.&amp;nbsp; If an error occurred earlier in the session, and SAS entered syntax check mode, then the DATA step would not execute, so the macro variables would not be created.&amp;nbsp; But I believe the %PUT statements would still execute.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code you showed is fine, so the problem must be somewhere else.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 12:33:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976233#M378285</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2025-10-02T12:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976416#M378315</link>
      <description>&lt;P&gt;In case the data step you shared is within a macro, the macro variables created could be in local scope.&amp;nbsp; If that's the issue then try with below amendments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1759652205078.png" style="width: 541px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110408i9CA93820A3E83005/image-dimensions/541x115?v=v2" width="541" height="115" role="button" title="Patrick_0-1759652205078.png" alt="Patrick_0-1759652205078.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Oct 2025 08:17:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976416#M378315</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2025-10-05T08:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976497#M378356</link>
      <description>I'll try this, thank you! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;The data step is within a macro, but the macro variables created are also being used within the same macro function and failing to resolve.</description>
      <pubDate>Mon, 06 Oct 2025 23:01:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976497#M378356</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2025-10-06T23:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976498#M378357</link>
      <description>&lt;P&gt;BTW, if there is a prior error in your program, your DATA step creating the macro variables won't execute, so your macro variables wont be created. You might want to check that possibility.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Oct 2025 23:33:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976498#M378357</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-10-06T23:33:42Z</dc:date>
    </item>
  </channel>
</rss>

