<?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: Line break inserted in macro string every ~268 characters in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407918#M99450</link>
    <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I'm summarizing diagnostics and putting them in an email by selecting distinct values from diagnostic data sets and putting into macro variables ...&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I would recommend not taking data out of datasets and putting it into macro variables.&amp;nbsp; Macro variables and macros are designed for generating code, not processing data.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You should be able to generate the email directly from the data without using macro variables.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 27 Oct 2017 04:53:45 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2017-10-27T04:53:45Z</dc:date>
    <item>
      <title>Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407837#M99412</link>
      <description>&lt;P&gt;I'm summarizing diagnostics and putting them in an email by selecting distinct values from diagnostic data sets and putting into macro variables that are separated by a carriage return ( byte(10) ). This all works fine except for when the macro variable contents exceeds ~268 characters-- I get extra line breaks. See example below, where the 3rd line and 5th line are broken when they should not be.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why, and how to prevent it/work around it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) WARNING: Data set WORK.OUTLIER_CAL_HEATMAP2 was not replaced because this step was stopped.&lt;/P&gt;
&lt;P&gt;2) WARNING: Multiple lengths were specified for the variable ATTRIBUTE_VALUE by input data set(s). This can cause truncation of data.&lt;/P&gt;
&lt;P&gt;3) WARNING: Multiple lengths were sp&amp;nbsp; &lt;STRONG&gt;[[breaks here]]&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;ecified for the variable breaktype by input data set(s). This can cause truncation of data.&lt;/P&gt;
&lt;P&gt;4) WARNING: The data set WORK.OUTLIER_CAL_HEATMAP2 may be incomplete.&amp;nbsp; When this step was stopped there were 0 observations and 5&lt;/P&gt;
&lt;P&gt;5) WARNING: The variable iteration in th&amp;nbsp;&lt;STRONG&gt;[[breaks here]]&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;e DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro export_weekly_diags(ds,vars);
	proc export data=&amp;amp;ds outfile="XXX" dbms=xlsx replace;
		sheet="&amp;amp;ds";
	run;
	%global diags_&amp;amp;ds;
	proc sql noprint;
		select distinct &amp;amp;vars into :diags_&amp;amp;ds separated by "%sysfunc(byte(10))" from &amp;amp;ds; *insert ascii character for carriage return between each record;
	quit;
%mend;
%export_weekly_diags(ds=allbatch_ucm_log,vars=msg)
%export_weekly_diags(ds=post_log,vars=log)
[[etc.]]

filename mail email  to=("XXX") subject="XXX";
 ;
DATA _NULL_; 
  FILE mail; 
  PUT "UCM Log:"; put "&amp;amp;diags_allbatch_ucm_log";
  PUT; 
  PUT "Post Log:"; put "&amp;amp;diags_post_log";
  PUT ; 
  [[etc.]]
RUN; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 27 Oct 2017 12:30:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407837#M99412</guid>
      <dc:creator>cau83</dc:creator>
      <dc:date>2017-10-27T12:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407843#M99415</link>
      <description>&lt;P&gt;That's not a dataset, these are messages from the SAS log.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2017 21:43:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407843#M99415</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-26T21:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407844#M99416</link>
      <description>&lt;P&gt;PS show your code.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2017 21:44:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407844#M99416</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-26T21:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407854#M99420</link>
      <description>&lt;P&gt;Since you have SAS data sets as your starting point, you should be able to remove the break character(s) there (before copying any data values into macro variables).&amp;nbsp; You'll need to identify the character(s) that are causing the extra breaks, and then apply the COMPRESS function to the SAS variables that you intend to copy into macro variables.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2017 22:26:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407854#M99420</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-10-26T22:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407918#M99450</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I'm summarizing diagnostics and putting them in an email by selecting distinct values from diagnostic data sets and putting into macro variables ...&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I would recommend not taking data out of datasets and putting it into macro variables.&amp;nbsp; Macro variables and macros are designed for generating code, not processing data.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You should be able to generate the email directly from the data without using macro variables.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 04:53:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407918#M99450</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-10-27T04:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407994#M99481</link>
      <description>&lt;P&gt;It is a data set-- I've written the log out and read it back in with a data step.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 12:28:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407994#M99481</guid>
      <dc:creator>cau83</dc:creator>
      <dc:date>2017-10-27T12:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407995#M99482</link>
      <description>&lt;P&gt;I added the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom-- can you point me to information on how to generate the email directly from the data? I want to be able to insert information from multiple data sets into an email body (I could concatenate and combine into one data set if necessary).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you able to use the SET statement to place all of the contents of a data set into the email (rather than the PUT statements)?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 12:33:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407995#M99482</guid>
      <dc:creator>cau83</dc:creator>
      <dc:date>2017-10-27T12:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407998#M99485</link>
      <description>&lt;P&gt;Use a set with the option&lt;/P&gt;
&lt;PRE&gt;end=done&lt;/PRE&gt;
&lt;P&gt;At _n_ = 1, put your email header.&lt;/P&gt;
&lt;P&gt;Put your strings from the dataset&lt;/P&gt;
&lt;P&gt;At done, put your email footer&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 12:39:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/407998#M99485</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-27T12:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408024#M99497</link>
      <description>&lt;P&gt;There is a lot of help with writing email messages from data in the documentation.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=hostunx&amp;amp;docsetTarget=p1hl3t66coao7bn18vrmhx2gte1q.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=hostunx&amp;amp;docsetTarget=p1hl3t66coao7bn18vrmhx2gte1q.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are reading messages from the SAS log then it is also likely that the messages in the SAS log were already split into multiple lines because the SAS log has a maximum record length, which you can control using the LINESIZE option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you asking how to process the log and figure out when a message has spanned multiple lines?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 13:49:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408024#M99497</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-10-27T13:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408026#M99498</link>
      <description>&lt;P&gt;My preferred way to do this would be to filter the relevant lines from the log with grep into a text file, and attach that text file to the email.&lt;/P&gt;
&lt;P&gt;Or do the grep in a filename pipe and use that as an infile in the data _null_ that creates the email.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 13:55:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408026#M99498</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-27T13:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408028#M99500</link>
      <description>&lt;P&gt;&lt;SPAN&gt;"it is also likely that the messages in the SAS log were already split into multiple lines"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This is not the case. You can see that longer lines (or just as long) are not split in my example. Furthermore, the fact that it happens about every 268 characters is a sign that the behavior is within the macro variables. It's not coincidence, I saw it happen across 6 different macro strings.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 14:00:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408028#M99500</guid>
      <dc:creator>cau83</dc:creator>
      <dc:date>2017-10-27T14:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408029#M99501</link>
      <description>I am using IF's to filter the lines and create a data set that exports to excel. If I was going to attach a file I'd just attach the excel. &lt;BR /&gt;Regardless-- I'm not so much looking for workarounds unless it accomplishes this exact thing. I can easily read this with the line breaks, it's just an annoyance but one I'll put up with versus creating and attaching text files. &lt;BR /&gt;I'd like to understand better the macro behavior.</description>
      <pubDate>Fri, 27 Oct 2017 14:02:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408029#M99501</guid>
      <dc:creator>cau83</dc:creator>
      <dc:date>2017-10-27T14:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408043#M99504</link>
      <description>&lt;P&gt;I really cannot tell what your program is doing. But if you have data like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have ;
  infile cards truncover ;
  input line $char200. ;
cards4;
1) WARNING: Data set WORK.OUTLIER_CAL_HEATMAP2 was not replaced because this step was stopped.
2) WARNING: Multiple lengths were specified for the variable ATTRIBUTE_VALUE by input data set(s). This can cause truncation of data.
3) WARNING: Multiple lengths were specified for the variable breaktype by input data set(s). This can cause truncation of data.
4) WARNING: The data set WORK.OUTLIER_CAL_HEATMAP2 may be incomplete.  When this step was stopped there were 0 observations and 5
5) WARNING: The variable iteration in the DROP, KEEP, or RENAME list has never been referenced.
;;;;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And you want to send it in an email then write it using a data step. Do NOT first put it into a single macro variable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  set have ;
  file email ;
  len = length(line);
  put line $varying200. len ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you did for some strange reason what to put those 5 lines of text into a single macro variable then mark the line breaks with something and use the data step to split it into lines for the PUT statement to output.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  file email ;
  longline="&amp;amp;my_macro_variable";
  dlm='0A'x ;
  do i=1 to countw(longline,dlm);
    length line $200;
    line = scan(longline,i,dlm);
    len = length(line);
    put line $varying200. len ;
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that this will only work for macro variables whose length is short enough to fit into a data set variables. Macro variables can be up to 64K bytes and regular variables only 32K.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 14:23:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408043#M99504</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-10-27T14:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408073#M99512</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  set have ;
  file email ;
  len = length(line);
  put line $varying200. len ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This puts the datasets in the body of the email w/o line breaks. However I can't add single headers and blank rows as easily. Using this code I get these results:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA _NULL_; 
  FILE mail; 
  set diags_post_log(in=a) diags_zero_fc2(in=b);
  if a then do;
  	if _n_=1 then put "Post Log:";
	put log;
	end;
  else if b then do;
	if _n_=1 then put "Zero FC:";
	put new_skill_name attribute_value;
	end;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Results:&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;Post Log:&lt;/P&gt;
&lt;P&gt;WARNING: Data set WORK.OUTLIER_CAL_HEATMAP2 was not replaced because this step was stopped.&lt;/P&gt;
&lt;P&gt;WARNING: Multiple lengths were specified for the variable ATTRIBUTE_VALUE by input data set(s). This can cause truncation of data.&lt;/P&gt;
&lt;P&gt;WARNING: Multiple lengths were specified for the variable breaktype by input data set(s). This can cause truncation of data.&lt;/P&gt;
&lt;P&gt;WARNING: The data set WORK.OUTLIER_CAL_HEATMAP2 may be incomplete.&amp;nbsp; When this step was stopped there were 0 observations and 5&lt;/P&gt;
&lt;P&gt;WARNING: The variable iteration in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;
&lt;P&gt;bm-collections-checks NONE&lt;/P&gt;
&lt;P&gt;kwys-document-image-error NONE&lt;/P&gt;
&lt;P&gt;nb-annuity-nondesktop-dup-policy SUPERSTAR nbd-transfer-rate-lock-flwp STAR pos-72t-calculation NONE pos-annuity-ntos-over-100k NONE &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like a blank row and then a header row before "bm-collections-checks". _n_=1 is not relative to the input data set. I could possibly count the records and substitute if _N_=&amp;amp;recordcount1 (or something like that, i might need to add to it for the blank). That's getting more complicated however as I go down to groups 3 - 6.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 15:05:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408073#M99512</guid>
      <dc:creator>cau83</dc:creator>
      <dc:date>2017-10-27T15:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408087#M99521</link>
      <description>&lt;P&gt;Not sure what is causing all of your other warnings but if you want to concatenate two dataset and count the number of observations contributed by each then make your own counter variable, do not try to use the data step loop counter _N_.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data concat;
  row+1;
  set sashelp.class(obs=3 in=in1) sashelp.class(obs=2 in=in2);
  if in2 and not lag(in2) then row=1;
run;

proc print ;
  var row name;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;Obs    row     Name

 1      1     Alfred
 2      2     Alice
 3      3     Barbara
 4      1     Alfred
 5      2     Alice
&lt;/PRE&gt;</description>
      <pubDate>Fri, 27 Oct 2017 15:39:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408087#M99521</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-10-27T15:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Line break inserted in macro string every ~268 characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408101#M99529</link>
      <description>&lt;P&gt;Thanks, I'll do the appending and counting a bit differently from that based on complexity but I'll probably switch my approach from macro to the SET statement approach you posted previously.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 16:43:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-inserted-in-macro-string-every-268-characters/m-p/408101#M99529</guid>
      <dc:creator>cau83</dc:creator>
      <dc:date>2017-10-27T16:43:51Z</dc:date>
    </item>
  </channel>
</rss>

