<?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 do I do merging with changing variables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/477202#M286096</link>
    <description>&lt;P&gt;Okay, the task was too interesting anyway to refuse it. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
if _n_=1 then do;
  dcl hash h(dataset: 'have_b(rename=(parent_id=p_id parent_name=p_name))', multidata: 'y');
  h.definekey('id');
  h.definedata('p_id', 'p_name');
  h.definedone();

  dcl hash ho(ordered: 'y');
  ho.definekey('id', 'name', 'parent_id',  'parent_name',
                             'parent_id1', 'parent_name1',
                             'parent_id2', 'parent_name2',
                             'parent_id3', 'parent_name3',
                             'parent_id4', 'parent_name4');
  ho.definedone();

  dcl hiter hoi('ho');
end;

array pid[5] parent_id parent_id1-parent_id4;
array pn[5] $40 parent_name parent_name1-parent_name4;
length p_name $40;

set have_a end=last;

if 0 then call missing(p_id, p_name);

/* Find "parents" of IDs from HAVE_A */

rc=h.find();
if rc=0 then do until(rc);
  parent_id=p_id;
  parent_name=p_name;
  rca=ho.add();
  rc=h.find_next();
end;
else rca=ho.add();

/* Find "grandparents", "great-grandparents" etc. (four iterations) */

if last then do;
  do i=1 to 4;
    do while(hoi.next()=0);
      if not missing(pid[i]) then do;
        rc=h.find(key: pid[i]);
        rcflag=(rc=0);
        do while(rc=0);
          pid[i+1]=p_id;
          pn[i+1]=p_name;
          rca=ho.add();
          if rca=0 then hoi.next();
          if rcflag then do;
            call missing(pid[i+1], pn[i+1]);
            ho.remove();
            rcflag=0;
          end;
          rc=h.find_next();
        end;
      end;
    end;
  end;
  ho.output(dataset: 'want');
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please note that dataset WANT is automatically sorted by the variables listed in the argument of &lt;FONT face="courier new,courier"&gt;ho.definekey&lt;/FONT&gt; and free of duplicate observations (even in case of duplicates in the input datasets).&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jul 2018 18:59:25 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2018-07-11T18:59:25Z</dc:date>
    <item>
      <title>How do I do merging with changing variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476274#M286089</link>
      <description>&lt;P&gt;I have 2 datasets with the following variables:&lt;/P&gt;&lt;P&gt;DatasetA - ID, Name&lt;/P&gt;&lt;P&gt;DatasetB - ID, Name, Parent_ID, Parent_Name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to keep merging and&amp;nbsp;tracing the relationship between the ID and Parent_ID up to 5 times, like a family tree.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My output dataset should have columns like this:&lt;/P&gt;&lt;P&gt;ID, Name, Parent_ID, Parent_Name,&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;Parent_ID1, Parent_Name1,&amp;nbsp;&amp;nbsp;Parent_ID2, Parent_Name2,&amp;nbsp;&amp;nbsp;Parent_ID3, Parent_Name3,&amp;nbsp;&amp;nbsp;Parent_ID4, Parent_Name4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently I create multiple data steps.&lt;/P&gt;&lt;P&gt;Step 1: Match ID (dataset A) with ID (dataset B).&lt;/P&gt;&lt;P&gt;Step 2: Match Parent_ID(dataset A)&lt;SPAN&gt;&amp;nbsp;with ID (dataset B) and rename Parent_ID from dataset B to Parent_ID1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Step 2: Match Parent_ID1with ID (dataset B)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;etc.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jul 2018 11:07:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476274#M286089</guid>
      <dc:creator>jungjein</dc:creator>
      <dc:date>2018-07-08T11:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do merging with changing variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476289#M286090</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/219861"&gt;@jungjein&lt;/a&gt;&amp;nbsp;and welcome to the SAS Support Communities!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Create test data */

data have_a;
input id name :$40.;
cards;
123456 Detroit
134567 Bordeaux
;

data have_b;
input id name :&amp;amp;$40. parent_id parent_name :&amp;amp;$40.;
cards;
123456  Detroit             123450  Wayne County
123450  Wayne County        123400  Michigan
123400  Michigan            123000  USA
123000  USA                 120000  North America
120000  North America       100000  Earth
134567  Bordeaux            134560  Gironde
134560  Gironde             134500  Nouvelle-Aquitaine
134500  Nouvelle-Aquitaine  134000  France
134000  France              130000  Europe
130000  Europe              100000  Earth
;

/* Perform look-ups */

data want;
if _n_=1 then do;
  dcl hash h(dataset: 'have_b');
  h.definekey('id');
  h.definedata('parent_id', 'parent_name');
  h.definedone();
  if 0 then set have_b;
end;
array pid    parent_id1-parent_id4;
array pn $40 parent_name1-parent_name4;
set have_a;
call missing(of parent:);
rc=h.find();
p_id=parent_id;
p_name=parent_name;
do i=1 to dim(pn) while(h.find(key: parent_id)=0);
  pid[i]=parent_id;
  pn[i]=parent_name;
end;
parent_id=p_id;
parent_name=p_name;
drop rc i p_:;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jul 2018 15:03:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476289#M286090</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2018-07-08T15:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do merging with changing variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476384#M286091</link>
      <description>&lt;P&gt;Thanks, but I had this problem when I tried it on my data.&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;call missing (of parent:);
ERROR 252-185: The MISSING subroutine call does not have enough arguments.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Not all my id in have_a can be matched to a id in have_b.&lt;/P&gt;&lt;P&gt;The output I want could have some columns left blank if not traced but those that could be traced should be traced further to a parent_id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2018 08:48:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476384#M286091</guid>
      <dc:creator>jungjein</dc:creator>
      <dc:date>2018-07-09T08:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do merging with changing variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476389#M286092</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/219861"&gt;@jungjein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;call missing (of parent:);
ERROR 252-185: The MISSING subroutine call does not have enough arguments.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This error message means that no variable named "parent..." existed when&amp;nbsp;CALL MISSING was executed. However, using my code this situation cannot occur. As you can see in my program, the ARRAY statements create plenty of "parent..." variables and dataset HAVE_B (see the first SET statement) contributes some as well. So, please post test data in the form of data steps (use my first two data steps as a template) and the program code&amp;nbsp;which produced the error message. Then we will see what the issue with your program is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/219861"&gt;@jungjein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not all my id in have_a can be matched to a id in have_b.&lt;/P&gt;
&lt;P&gt;The output I want could have some columns left blank if not traced but those that could be traced should be traced further to a parent_id&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This is no problem. I had tested my code with non-matching IDs as you describe them. Again, please provide test data where my code does not produce the results you expected and describe clearly what the output dataset in this case should look like.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2018 09:13:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476389#M286092</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2018-07-09T09:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do merging with changing variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476654#M286093</link>
      <description>&lt;P&gt;Thanks for the explanation, I have figured it out.&lt;/P&gt;&lt;P&gt;But is there a way for me to do a one -to-many tracing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i.e. if the have_b dataset has more than 1 record for each id...&lt;/P&gt;&lt;P&gt;I tried it on your code but it only show&amp;nbsp;one record per id.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jul 2018 02:58:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476654#M286093</guid>
      <dc:creator>jungjein</dc:creator>
      <dc:date>2018-07-10T02:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do merging with changing variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476701#M286094</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/219861"&gt;@jungjein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;But is there a way for me to do a one -to-many tracing?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i.e. if the have_b dataset has more than 1 record for each id...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In this case you'd have to declare the hash object like&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;dcl hash h(dataset: 'have_b', multidata: 'y');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and use the FIND_NEXT method to retrieve the individual parent IDs and names (after finding the first of the group with FIND). The recursive nature of this search will add complexity to the code, though.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest you give it a try, using my code and the above&amp;nbsp;hints as a basis, and come back with more specific questions if you get stuck. It's certainly an interesting programming task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've just searched the archive of the SAS Support Communities for "recursive search" and found&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Finde-out-who-belong-to-the-same-household/ta-p/221156" target="_blank"&gt;this article&lt;/A&gt;&amp;nbsp;in the&amp;nbsp;SAS Communities Library. It seems that Ksharp addressed a similar problem. So, maybe you can get additional ideas from his code.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jul 2018 09:34:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476701#M286094</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2018-07-10T09:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do merging with changing variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476965#M286095</link>
      <description>&lt;P&gt;I tried it on your dataset but I'm not sure how the FIND_NEXT part fits in.&lt;/P&gt;&lt;P&gt;Appreciate your help on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Create test data */

 

data have_a;

input id name :$40.;

cards;

123456 Detroit

134567 Bordeaux

472831 Lille

;

 

data have_b;

input id name :&amp;amp;$40. parent_id parent_name :&amp;amp;$40.;

cards;

123456  Detroit             123450  Wayne County

123456  Detroit             319484  Bastille

123450  Wayne County        123400  Michigan

123400  Michigan            123000  USA

123000  USA                 120000  North America

120000  North America       100000  Earth

134567  Bordeaux            134560  Gironde

134560  Gironde             134500  Nouvelle-Aquitaine

134500  Nouvelle-Aquitaine  134000  France

134000  France              130000  Europe

130000  Europe              100000  Earth

319484  Bastille                100001  Mars

319484  Bastille                100002  Venus

;

 

/* Perform look-ups */

 

data want;

if _n_=1 then do;

  dcl hash h(dataset: 'have_b', multidata: 'y');

  h.definekey('id');

  h.definedata('parent_id', 'parent_name');

  h.definedone();

  if 0 then set have_b;

end;

array pid    parent_id1-parent_id4;

array pn $40 parent_name1-parent_name4;

set have_a;

call missing(of parent:);

rc=h.find();

p_id=parent_id;

p_name=parent_name;

do i=1 to dim(pn) while(h.find(key: parent_id)=0);

  pid[i]=parent_id;

  pn[i]=parent_name;

end;

parent_id=p_id;

parent_name=p_name;

drop rc i p_:;

run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Jul 2018 00:31:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/476965#M286095</guid>
      <dc:creator>jungjein</dc:creator>
      <dc:date>2018-07-11T00:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do merging with changing variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/477202#M286096</link>
      <description>&lt;P&gt;Okay, the task was too interesting anyway to refuse it. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
if _n_=1 then do;
  dcl hash h(dataset: 'have_b(rename=(parent_id=p_id parent_name=p_name))', multidata: 'y');
  h.definekey('id');
  h.definedata('p_id', 'p_name');
  h.definedone();

  dcl hash ho(ordered: 'y');
  ho.definekey('id', 'name', 'parent_id',  'parent_name',
                             'parent_id1', 'parent_name1',
                             'parent_id2', 'parent_name2',
                             'parent_id3', 'parent_name3',
                             'parent_id4', 'parent_name4');
  ho.definedone();

  dcl hiter hoi('ho');
end;

array pid[5] parent_id parent_id1-parent_id4;
array pn[5] $40 parent_name parent_name1-parent_name4;
length p_name $40;

set have_a end=last;

if 0 then call missing(p_id, p_name);

/* Find "parents" of IDs from HAVE_A */

rc=h.find();
if rc=0 then do until(rc);
  parent_id=p_id;
  parent_name=p_name;
  rca=ho.add();
  rc=h.find_next();
end;
else rca=ho.add();

/* Find "grandparents", "great-grandparents" etc. (four iterations) */

if last then do;
  do i=1 to 4;
    do while(hoi.next()=0);
      if not missing(pid[i]) then do;
        rc=h.find(key: pid[i]);
        rcflag=(rc=0);
        do while(rc=0);
          pid[i+1]=p_id;
          pn[i+1]=p_name;
          rca=ho.add();
          if rca=0 then hoi.next();
          if rcflag then do;
            call missing(pid[i+1], pn[i+1]);
            ho.remove();
            rcflag=0;
          end;
          rc=h.find_next();
        end;
      end;
    end;
  end;
  ho.output(dataset: 'want');
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please note that dataset WANT is automatically sorted by the variables listed in the argument of &lt;FONT face="courier new,courier"&gt;ho.definekey&lt;/FONT&gt; and free of duplicate observations (even in case of duplicates in the input datasets).&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 18:59:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/477202#M286096</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2018-07-11T18:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do merging with changing variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/477363#M286097</link>
      <description>&lt;P&gt;Hey thanks!&lt;/P&gt;&lt;P&gt;I was playing around with it but when I tried changing the id and parent_id to character in both have_a and have_b, it showed an error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;input id :$6. name :$40.;
input id :&amp;amp;$6. name :&amp;amp;$40. parent_id :&amp;amp;$6. parent_name :&amp;amp;$40.;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have also amended the array part&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;array pid[5] $6 parent_id parent_id1-parent_id4;
array pn[5] $40 parent_name parent_name1-parent_name4;
length p_name $40;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ERROR: Type mismatch for data variable p_id at line 54 and column 3.
ERROR: Hash data set load failed
ERROR: Data step component object failure. Aborted during the Execution phase.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Jul 2018 08:16:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/477363#M286097</guid>
      <dc:creator>jungjein</dc:creator>
      <dc:date>2018-07-12T08:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do merging with changing variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/477371#M286098</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/219861"&gt;@jungjein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have also amended the array part&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;array pid[5] $6 parent_id parent_id1-parent_id4;
array pn[5] $40 parent_name parent_name1-parent_name4;
length p_name $40;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Good, but you forgot to amend the LENGTH statement accordingly.&lt;/P&gt;
&lt;PRE&gt;length &lt;FONT color="#FF0000"&gt;p_id $6&lt;/FONT&gt; p_name $40;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2018 08:48:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-do-merging-with-changing-variables/m-p/477371#M286098</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2018-07-12T08:48:27Z</dc:date>
    </item>
  </channel>
</rss>

