<?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: How to append 100 datasets having similar names in SAS Health and Life Sciences</title>
    <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6566#M655</link>
    <description>May I recommend you create a new post when you have a new question/problem in the SAS Discussion Forums, please?  Also, take a moment to consider the particular forum where you post your item, as well.&lt;BR /&gt;
&lt;BR /&gt;
Regarding your most recent update to your post, your code shows the SAS variable COMPVAR being concatenated, however you will experience data truncation of COMPVAR unless you use LEFT and TRIM or some other technique to remove the blanks with each iterative test and assignment.&lt;BR /&gt;
&lt;BR /&gt;
Add some SAS PUT _ALL_ statements within your DATA step processing to display "before" and "after" value contents in order to debug your program.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
    <pubDate>Thu, 08 Jan 2009 13:48:06 GMT</pubDate>
    <dc:creator>sbb</dc:creator>
    <dc:date>2009-01-08T13:48:06Z</dc:date>
    <item>
      <title>How to append 100 datasets having similar names</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6559#M648</link>
      <description>I got 100 datasets, let's say data1, data2,...., &amp;amp; data100.  I just want to append them together.  They all have same fields and so on.  I'd like something like this (of course it does not work).&lt;BR /&gt;
&lt;BR /&gt;
data data_combined;&lt;BR /&gt;
   set data1 -- data100;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
Thanks a lot.&lt;BR /&gt;
&lt;BR /&gt;
-Nilan</description>
      <pubDate>Fri, 25 Jan 2008 22:14:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6559#M648</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-01-25T22:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to append 100 datasets having similar names</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6560#M649</link>
      <description>Hi:&lt;BR /&gt;
  Well, there's always cut and paste. Seriously though, there are a few different methods you could use. For example, you could write a SAS macro program to detect all the SAS datasets in a certain folder and then automate building a SET statement to concatenate all the files into one SAS data set. Or you could go for a simpler macro program to just type the names of the files for you, as long as the names fall into a pattern that you can automate.&lt;BR /&gt;
 &lt;BR /&gt;
  The SAS Macro facility is like a typewriter -- the only difference is that instead of you typing on a keyboard, you write a program and tell the macro facility what kind of code to write for you, and send to the compiler when you invoke it. For example, let's make 4 files, named fil1, fil2, fil3, fil4:&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
** make 4 data files;&lt;BR /&gt;
data fil1 fil2 fil3 fil4;&lt;BR /&gt;
  x=1; y=2; z=3;&lt;BR /&gt;
  output fil1;&lt;BR /&gt;
  x+2; y+2; z+2;&lt;BR /&gt;
  output fil2;&lt;BR /&gt;
  x+3; y+3; z+3;&lt;BR /&gt;
  output fil3;&lt;BR /&gt;
  x+4; y+4; z+4;&lt;BR /&gt;
  output fil4;&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
Now, let's say you want to combine the files together in the following ways:&lt;BR /&gt;
[pre]&lt;BR /&gt;
data newfile;&lt;BR /&gt;
  set fil1 fil2 fil3 fil4;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
** or;&lt;BR /&gt;
&lt;BR /&gt;
data newfile;&lt;BR /&gt;
  set fil2 fil3 fil4;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
** or ;&lt;BR /&gt;
&lt;BR /&gt;
data newfile;&lt;BR /&gt;
  set fil1 fil2 fil3;&lt;BR /&gt;
run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Now we have some working SAS code, but it's sort of a pain to keep typing the data set names over and over -- imagine if you had 100 data sets. The only piece of the code that really needs to change is the list of names of the file after the SET statement.  So, how about a macro program that will just build the list of data set names for you:&lt;BR /&gt;
[pre]&lt;BR /&gt;
  &lt;BR /&gt;
%macro makename(dsn=, start=, stop=);&lt;BR /&gt;
  %do i = &amp;amp;start %to &amp;amp;stop;&lt;BR /&gt;
     &amp;amp;dsn.&amp;amp;i&lt;BR /&gt;
  %end;&lt;BR /&gt;
%mend makename;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
This is just the definition -- it doesn't DO anything until it's invoked. So where would you invoke it?&lt;BR /&gt;
[pre]&lt;BR /&gt;
** Now use the macro program to get all 4 files; &lt;BR /&gt;
options mprint symbolgen;&lt;BR /&gt;
data newfile1;&lt;BR /&gt;
  set %makename(dsn=fil, start=1, stop=4);&lt;BR /&gt;
run;&lt;BR /&gt;
    &lt;BR /&gt;
ods listing;&lt;BR /&gt;
proc print data=newfile1;&lt;BR /&gt;
title "newfile1";&lt;BR /&gt;
run;&lt;BR /&gt;
     &lt;BR /&gt;
[/pre]&lt;BR /&gt;
Or, another way to invoke it would be to use this SET statement:&lt;BR /&gt;
[pre]&lt;BR /&gt;
  set %makename(dsn=fil, start=2, stop=4);&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
In this example, the macro variable &amp;amp;DSN will hold the text string FIL and the &lt;BR /&gt;
%DO loop will iterate from the &amp;amp;START value to the &amp;amp;STOP value. &lt;BR /&gt;
&lt;BR /&gt;
So the value of &amp;amp;I will increment for each iteration through the loop. The place where the data set name gets generate is between the %DO and the %END...the first time (in the first invocation) through the loop, &amp;amp;DSN will resolve to FIL and &amp;amp;I will resolve to 1 so the macro will type FIL1 for you. Then the next time through the loop, then DSN will still be FIL and &amp;amp;I will be 2 and so the macro will type FIL2, etc, etc.&lt;BR /&gt;
&lt;BR /&gt;
With the debugging macro options MPRINT and SYMBOLGEN turned on, you can see how the macro variable references resolve by reviewing the generated statements in the SAS Log.&lt;BR /&gt;
&lt;BR /&gt;
For more help, you can read the SAS Macro Facility documentation which is quite good. Or look for macro program examples on the Tech Support site. Or look for SUGI and SGF papers about SAS Macro programming, like this one:&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/sugi28/056-28.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi28/056-28.pdf&lt;/A&gt;&lt;BR /&gt;
For help with a particular macro coding question, Tech Support is always happy to help.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Sat, 26 Jan 2008 04:04:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6560#M649</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-01-26T04:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to append 100 datasets having similar names</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6561#M650</link>
      <description>Wow, it's so simple.  I wonder why I could not come up with it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;  I was trying to do it using proc sql.&lt;BR /&gt;
&lt;BR /&gt;
proc sql;&lt;BR /&gt;
select day_num into:myfilelist seperated by ' data'&lt;BR /&gt;
...&lt;BR /&gt;
&lt;BR /&gt;
I was almost there...but the first file name has a problem with this method. &lt;BR /&gt;
&lt;BR /&gt;
I'm going to use your method.  &lt;BR /&gt;
&lt;BR /&gt;
Thanks Cynthia.&lt;BR /&gt;
&lt;BR /&gt;
-Nilan</description>
      <pubDate>Sat, 26 Jan 2008 16:08:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6561#M650</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-01-26T16:08:59Z</dc:date>
    </item>
    <item>
      <title>Iterations</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6562#M651</link>
      <description>hi all,&lt;BR /&gt;
   I need your help on this please. Say my data has columns id, category id date&lt;BR /&gt;
&lt;BR /&gt;
id   category_id         date&lt;BR /&gt;
10    100                01/01/2008&lt;BR /&gt;
10    101                03/01/2008&lt;BR /&gt;
10    100                02/01/2008&lt;BR /&gt;
11    111                01/01/2008&lt;BR /&gt;
11    111                02/01/2008&lt;BR /&gt;
12    112                01/01/2008&lt;BR /&gt;
12     13                 02/01/2008&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 identify duplicated complaints that belongs to reoccurrence based on  criteria&lt;BR /&gt;
(1)    Compare the n-1 id with the first id  (start date is date_1 and cate_ID is cate_ID_1) date_1 is the date on which the first id occurred and cate_id_1 is the cate_id of the first id&lt;BR /&gt;
a.    Interval_1=date_1-date_i (i=2nd, 3rd ..so on id's in the group. say id 10 is repeated 3 times, so we will compare first id with 2nd and 3rd)&lt;BR /&gt;
b.    If interval_1 &amp;lt; time_frame and cat_Id_i=cat_ID_1, than reoccur_1=1 else reoccur_1=0;&lt;BR /&gt;
c.    Sum the value of reoccur_1 within each HIC, define it as reoccur_sum_1;&lt;BR /&gt;
&lt;BR /&gt;
(2)    Compare the n-2 id  with the second id (start date is date_2 and cate_ID is cate_ID_2)&lt;BR /&gt;
a.    Interval_2=date_2-date_i&lt;BR /&gt;
b.    If interval_2 &amp;lt; time_frame and cat_Id_i=cat_ID_2, than reoccur_2=2 else reoccur_1=0;&lt;BR /&gt;
c.    Sum the value of reoccur_2 within each HIC, define it as reoccur_sum_2;&lt;BR /&gt;
&lt;BR /&gt;
(3)    ….general, Compare the n-J id with the Jth id (start date is date_J and cate_ID is cate_ID_J)&lt;BR /&gt;
a.    Interval_J=date_J-date_i&lt;BR /&gt;
b.    If interval_J &amp;lt; time_frame and cat_Id_i=cat_ID_J, than reoccur_J=1 else reoccur_J=0;&lt;BR /&gt;
c.    Sum the value of reoccur_J within each HIC, define it  as reoccur_sum_J;&lt;BR /&gt;
(4)    Continue doing this until J=n-1. Compare the nth id  with the n-1 th id (start date is date_n-1 and cate_ID is cate_ID_n-1)&lt;BR /&gt;
&lt;BR /&gt;
The task is to  know whether there are reoccurened complaints from the value of reoccur_sum_J.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
/*** I plan to delete the first.variable everytime and compare with the subsequent observations, This did not help me as there is a case where there are 40 ids and i have to delete the first.variable 39 times.***/</description>
      <pubDate>Fri, 02 Jan 2009 15:33:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6562#M651</guid>
      <dc:creator>SASPhile</dc:creator>
      <dc:date>2009-01-02T15:33:11Z</dc:date>
    </item>
    <item>
      <title>Iterations</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6563#M652</link>
      <description>Hi Cynthia:&lt;BR /&gt;
At the outset Happy New year!!&lt;BR /&gt;
&lt;BR /&gt;
   I need your help on this please. Say my data has columns id, category id date&lt;BR /&gt;
&lt;BR /&gt;
id   category_id         date&lt;BR /&gt;
10    100                01/01/2008&lt;BR /&gt;
10    101                03/01/2008&lt;BR /&gt;
10    100                02/01/2008&lt;BR /&gt;
11    111                01/01/2008&lt;BR /&gt;
11    111                02/01/2008&lt;BR /&gt;
12    112                01/01/2008&lt;BR /&gt;
12     13                 02/01/2008&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 identify duplicated complaints that belongs to reoccurrence based on  criteria&lt;BR /&gt;
(1)    Compare the n-1 id with the first id  (start date is date_1 and cate_ID is cate_ID_1) date_1 is the date on which the first id occurred and cate_id_1 is the cate_id of the first id&lt;BR /&gt;
a.    Interval_1=date_1-date_i (i=2nd, 3rd ..so on id's in the group. say id 10 is repeated 3 times, so we will compare first id with 2nd and 3rd)&lt;BR /&gt;
b.    If interval_1 &amp;lt; time_frame and cat_Id_i=cat_ID_1, than reoccur_1=1 else reoccur_1=0;&lt;BR /&gt;
c.    Sum the value of reoccur_1 within each HIC, define it as reoccur_sum_1;&lt;BR /&gt;
&lt;BR /&gt;
(2)    Compare the n-2 id  with the second id (start date is date_2 and cate_ID is cate_ID_2)&lt;BR /&gt;
a.    Interval_2=date_2-date_i&lt;BR /&gt;
b.    If interval_2 &amp;lt; time_frame and cat_Id_i=cat_ID_2, than reoccur_2=2 else reoccur_1=0;&lt;BR /&gt;
c.    Sum the value of reoccur_2 within each HIC, define it as reoccur_sum_2;&lt;BR /&gt;
&lt;BR /&gt;
(3)    ….general, Compare the n-J id with the Jth id (start date is date_J and cate_ID is cate_ID_J)&lt;BR /&gt;
a.    Interval_J=date_J-date_i&lt;BR /&gt;
b.    If interval_J &amp;lt; time_frame and cat_Id_i=cat_ID_J, than reoccur_J=1 else reoccur_J=0;&lt;BR /&gt;
c.    Sum the value of reoccur_J within each HIC, define it  as reoccur_sum_J;&lt;BR /&gt;
(4)    Continue doing this until J=n-1. Compare the nth id  with the n-1 th id (start date is date_n-1 and cate_ID is cate_ID_n-1)&lt;BR /&gt;
&lt;BR /&gt;
The task is to  know whether there are reoccurened complaints from the value of reoccur_sum_J.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
/*** I plan to delete the first.variable everytime and compare with the subsequent observations, This did not help me as there is a case where there are 40 ids and i have to delete the first.variable 39 times.***/</description>
      <pubDate>Fri, 02 Jan 2009 15:34:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6563#M652</guid>
      <dc:creator>SASPhile</dc:creator>
      <dc:date>2009-01-02T15:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Iterations</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6564#M653</link>
      <description>Hi:&lt;BR /&gt;
  I'd recommend reading about the LAG function as one possible alternative and using ARRAYs as the second alternative. There have been many forum postings on both topics and if you search on support.sas.com, you should also find some sample programs that may get you started.&lt;BR /&gt;
Lag:&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=14418㡒" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=14418㡒&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=11673⶙" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=11673⶙&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/25/938.html" target="_blank"&gt;http://support.sas.com/kb/25/938.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=11445ⲵ" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=11445ⲵ&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Array:&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/papers/sgf07/arrays1780.pdf" target="_blank"&gt;http://support.sas.com/rnd/papers/sgf07/arrays1780.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=13408㑠" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=13408㑠&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/sugi30/242-30.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi30/242-30.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/sugi27/p066-27.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi27/p066-27.pdf&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
  If it was my problem, I'd probably take your long skinny data and make a couple of arrays -- one array to hold the dates and another array to hold the category_id values. Then you could use do loops to go back and forth either using n-1 or n+1 arrary subscripting to do your comparisons.&lt;BR /&gt;
&lt;BR /&gt;
  But, you'll have to do some experimenting first to see which approach will work best for your needs. &lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Sun, 04 Jan 2009 07:06:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6564#M653</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-01-04T07:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to append 100 datasets having similar names</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6565#M654</link>
      <description>Hi There,&lt;BR /&gt;
  I have a small problem that is giving me issues.&lt;BR /&gt;
data rrt;&lt;BR /&gt;
input id catid1-catid5 reoccur1-reoccur5;&lt;BR /&gt;
datalines;&lt;BR /&gt;
10 11 12 13 14 15 0 0 1 1 0&lt;BR /&gt;
11 12 11 11 14 15 0 1 1 1 0&lt;BR /&gt;
12 13 12 11 14 12 1 0 1 1 0&lt;BR /&gt;
13 14 15 12 11 15 1 0 1 1 0&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
options mlogic mprint symbolgen;&lt;BR /&gt;
%macro F1(N= );&lt;BR /&gt;
Data  rrt2;&lt;BR /&gt;
Set  rrt;&lt;BR /&gt;
&lt;BR /&gt;
Array catID(&amp;amp;N);&lt;BR /&gt;
Array Reoccur(&amp;amp;N);&lt;BR /&gt;
length compvar $10;&lt;BR /&gt;
Compvar='';&lt;BR /&gt;
%Do _J=1 %to &amp;amp;N;&lt;BR /&gt;
/*retain compvar;*/&lt;BR /&gt;
Cat_ID_N&amp;amp;_J.= '*' || LEFT(TRIM(catID&amp;amp;_J.));&lt;BR /&gt;
&lt;BR /&gt;
if reoccur&amp;amp;_J. GT 1 and count(compvar,'*')=0 then compvar=Compvar || LEFT(TRIM(cat_ID_N&amp;amp;_J.));&lt;BR /&gt;
else if reoccur&amp;amp;_J. GT 1 and count(compvar,'*')GT 0 and count(Compvar,Cat_ID_N&amp;amp;_J.)=0 then Compvar=Compvar || LEFT(TRIM(cat_ID_N&amp;amp;_J.));&lt;BR /&gt;
%end;&lt;BR /&gt;
count_reoccurence=count(compvar,'*');&lt;BR /&gt;
run;&lt;BR /&gt;
%mend;&lt;BR /&gt;
%F1(N=5 );&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
My idea is to find the number of reoccurernces. In the above code compvar doesnt contain any values.&lt;BR /&gt;
And so count_reoccurence dosent return any values.</description>
      <pubDate>Wed, 07 Jan 2009 20:11:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6565#M654</guid>
      <dc:creator>SASPhile</dc:creator>
      <dc:date>2009-01-07T20:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to append 100 datasets having similar names</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6566#M655</link>
      <description>May I recommend you create a new post when you have a new question/problem in the SAS Discussion Forums, please?  Also, take a moment to consider the particular forum where you post your item, as well.&lt;BR /&gt;
&lt;BR /&gt;
Regarding your most recent update to your post, your code shows the SAS variable COMPVAR being concatenated, however you will experience data truncation of COMPVAR unless you use LEFT and TRIM or some other technique to remove the blanks with each iterative test and assignment.&lt;BR /&gt;
&lt;BR /&gt;
Add some SAS PUT _ALL_ statements within your DATA step processing to display "before" and "after" value contents in order to debug your program.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 08 Jan 2009 13:48:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/How-to-append-100-datasets-having-similar-names/m-p/6566#M655</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-01-08T13:48:06Z</dc:date>
    </item>
  </channel>
</rss>

