<?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: When do I need informat definition? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719611#M222843</link>
    <description>&lt;P&gt;The ATTRIB statement defines/modifies &lt;EM&gt;meta&lt;/EM&gt;data, it doesn't change values and cannot convert variable types. In your example the compiler sees&amp;nbsp;the variable name "&lt;FONT face="courier new,courier"&gt;amount&lt;/FONT&gt;" for the first time in the ATTRIB statement and based on this first occurrence the compiler decides about the type of that variable. Since COMMAX10.2 is a &lt;EM&gt;numeric&lt;/EM&gt; format, the decision is made: &lt;FONT face="courier new,courier"&gt;amount&lt;/FONT&gt; is defined as a &lt;EM&gt;numeric&lt;/EM&gt; variable. The informat specification COMMAX10.8 is consistent with that decision (so it doesn't cause an error). Then the compiler realizes that the SET statement tries to bring another variable with the same name (&lt;FONT face="courier new,courier"&gt;amount&lt;/FONT&gt;) into the program data vector (PDV) and that this is a &lt;EM&gt;character&lt;/EM&gt; variable. Thus a variable type conflict has occurred which cannot be resolved. It is documented by the error message&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;FONT color="#FF0000"&gt;ERROR: Variable amount has been defined as both character and numeric.&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;and SAS stops processing the DATA step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To create a dataset from INFORMAT_DATASET where &lt;FONT face="courier new,courier"&gt;amount&lt;/FONT&gt; is a numeric variable, a new variable must be created that is assigned the numeric value created from &lt;FONT face="courier new,courier"&gt;amount&lt;/FONT&gt; by means of the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lefunctionsref&amp;amp;docsetTarget=p19en16vskd2vhn1vwmxpxnglxxs.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;INPUT &lt;EM&gt;function&lt;/EM&gt;&lt;/A&gt; using a &lt;EM&gt;numeric&lt;/EM&gt; informat. In addition, renaming is necessary because the new variable must have a different name than the existing variable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data transform;
set informat_dataset(rename=(amount=amountc));
amount=input(amountc, commax8.);
format amount commax10.2;
drop amountc;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or similarly:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data transform(drop=amount rename=(amountn=amount));
set informat_dataset;
amountn=input(amount, commax8.);
format amountn commax10.2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Feb 2021 12:05:12 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2021-02-16T12:05:12Z</dc:date>
    <item>
      <title>When do I need informat definition?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719324#M222722</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to understand when I do need the informat statement. I know that this is defined for reading data but I have create a csv file with 3 rows and after changing the number randomly i can't see any change in my data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc import datafile="/dwh/home/a12c1d7/Test/Input.csv"
        out=staedte
        dbms=csv
       	replace;
     	getnames=yes;
     	delimiter=';';
run;

data final;
	attrib
		ID 		length=8 	format=8. 	informat=8.
		Stadt 	length=$10.	format=$10.	
	;
	set work.staedte;
run;
		
proc contents data=final;
run;&lt;/PRE&gt;&lt;P&gt;ID Values are&amp;nbsp;34865837,&amp;nbsp;98,&amp;nbsp;67322491.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why is it important to define informat?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 12:47:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719324#M222722</guid>
      <dc:creator>Hansmuffs</dc:creator>
      <dc:date>2021-02-15T12:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: When do I need informat definition?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719334#M222729</link>
      <description>&lt;P&gt;In this case, and many other cases, the informat does not make a difference and does not need to be defined. In other cases, SAS cannot read the numbers properly and so informats are needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As long as your input values are integers, the informat is not necessary.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 13:54:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719334#M222729</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-02-15T13:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: When do I need informat definition?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719347#M222737</link>
      <description>&lt;P&gt;I'll give you two examples when you will need to use informat:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Suppose you got a date like '02/15/2021' as a string. Can you sort it by date?&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Of course not because the string: '08/12/2020' will be after the above date though it is earlier.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;The informat mmddyy10. will replace it to an unteger, the number of days since 01/01/1960 (which = 0).&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;There are many other informats to deal with date, time, timestamp (dat and time).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) Usually we use formats to display a string (code translation to its meaning).&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Sometimes it is comfort to do the reverse - convert a character or a string to its numeric value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Suppose you have a variable with values 'YES' or 'NO'. Convert it by informat to 1 or 0 - then it is easier&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; to check wether it is TRUE (=1) or FALSE (=0);&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 14:34:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719347#M222737</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-02-15T14:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: When do I need informat definition?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719405#M222747</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/305587"&gt;@Hansmuffs&lt;/a&gt;,&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/305587"&gt;@Hansmuffs&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I try to understand when I do need the informat statement.&lt;/P&gt;
&lt;P&gt;(...)&lt;/P&gt;
&lt;P&gt;Why is it important to define informat?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I think for a better understanding we should distinguish between using &lt;EM&gt;informats&lt;/EM&gt; and using an &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=p164164hob450kn1agkpcosya669.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;INFORMAT &lt;EM&gt;statement&lt;/EM&gt;&lt;/A&gt;. Often informats are specified in the&amp;nbsp;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=n0oaql83drile0n141pdacojq97s.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;INPUT statement&lt;/A&gt;&amp;nbsp;when reading raw data which cannot be read with the default informats (i.e., &lt;EM&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=leforinforref&amp;amp;docsetTarget=n14sqpf1cubqknn1vmkzkp1oph87.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;w.d&lt;/A&gt;&lt;/EM&gt; for numeric and &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=leforinforref&amp;amp;docsetTarget=n1v0ez0x2x99qdn15797taed37ji.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;$&lt;EM&gt;w&lt;/EM&gt;.&lt;/A&gt; for character values). Reading dates is among the most common use cases.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
length id $5;
input id seqno dat :yymmdd. val :numx. unit :$10.;
format dat ddmmyyp10.;
cards;
00001 1 2021-02-15 3,14 mmol/l
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Without a date informat (here: &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=leforinforref&amp;amp;docsetTarget=n18uyqeusnl0fxn1d9pvhm49j4za.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;YYMMDD.&lt;/A&gt;) the raw value "2021-02-15" could not be read (as the SAS date value 22326) into the &lt;EM&gt;numeric&lt;/EM&gt; variable DAT. Similarly, the comma in "3&lt;STRONG&gt;,&lt;/STRONG&gt;14" (meant as the numeric value 3.14) requires an informat (such as &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=v_006&amp;amp;docsetId=leforinforref&amp;amp;docsetTarget=n0yvn3aj60qyjmn11fg3jbrbvs5c.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;NUMX.&lt;/A&gt;) that interprets the comma as a decimal separator. The purpose of the $10. informat in the above example is to define variable UNIT as a character variable of length 10. Alternatively, this definition could be included in the LENGTH statement (note that "$10" there is &lt;EM&gt;not&lt;/EM&gt; an informat specification and therefore not followed by a period):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;length id $5 unit $10;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;With this preparation UNIT could be read without an informat specification (as are ID and SEQNO). However, UNIT would then appear as the &lt;EM&gt;second&lt;/EM&gt; variable in the dataset (e.g. in default PROC PRINT output), not in its "natural" position after VAL. The colon modifier in front of the three informat specifications is necessary to perform &lt;EM&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lestmtsref&amp;amp;docsetTarget=n0lrz3gb7m9e4rn137op544ddg0v.htm&amp;amp;locale=en#p1wk2kecsf6iz8n1ufug4i5pg6id" target="_blank" rel="noopener"&gt;modified list input&lt;/A&gt;&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All informat specifications could be moved to an INFORMAT statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;informat dat yymmdd. val numx. unit $10.;
input id seqno dat val unit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The consequences are:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Again, the variable order in the dataset is affected. For example, SEQNO is now the last variable because it's mentioned after all other variable names.&lt;/LI&gt;
&lt;LI&gt;Most importantly, the three informats are "permanently" associated with the corresponding variables, i.e., they are now part of the metadata, as can be seen in PROC CONTENTS output (excerpt):
&lt;PRE&gt;      Alphabetic List of Variables and Attributes

#    Variable    Type    Len    Format        &lt;FONT color="#FF00FF"&gt;&lt;STRONG&gt;Informat&lt;/STRONG&gt;&lt;/FONT&gt;

2    dat         Num       8    DDMMYYP10.    &lt;FONT color="#FF00FF"&gt;&lt;STRONG&gt;YYMMDD.&lt;/STRONG&gt;&lt;/FONT&gt;
1    id          Char      5
5    seqno       Num       8
4    unit        Char     10                  &lt;FONT color="#FF00FF"&gt;&lt;STRONG&gt;$10.&lt;/STRONG&gt;&lt;/FONT&gt;
3    val         Num       8                  &lt;FONT color="#FF00FF"&gt;&lt;STRONG&gt;NUMX.
&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In many if not most cases these permanent informat metadata are unnecessary and often annoying. For instance, they will show up as "differing attributes" in PROC COMPARE output if the compared dataset does not have them. If one of the informats was user-defined, an error message "&lt;FONT face="courier new,courier"&gt;ERROR: The informat &amp;lt;&lt;EM&gt;informat name&lt;/EM&gt;&amp;gt; was not found or could not be loaded.&lt;/FONT&gt;" would occur when working with dataset TEST in a SAS session without access to the informat definition. A common source of such informat metadata is PROC IMPORT (using INFORMAT statements behind the scenes).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is why I rarely use INFORMAT &lt;EM&gt;statements&lt;/EM&gt;&amp;nbsp;and rather remove existing informat metadata (by means of PROC DATASETS).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are two examples where an INFORMAT statement and permanently associated informats do make (some) sense:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Convenient assignment of informat specifications to a list of variables which are not consecutive in the raw data to be read:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test1;
input dat1 val1 dat2 val2 dat3 val3 dat4 val4 dat5 val5;
informat dat: yymmdd.;
format dat: ddmmyyp10.;
cards;
20210111 2 20210120 3 20210203 5 20210210 7 20210215 11
;&lt;/CODE&gt;&lt;/PRE&gt;
Note that the colon here (to define a name prefix variable list) has nothing to do with the colon related to modified list input in the first DATA step.&lt;/LI&gt;
&lt;LI&gt;Using a "template dataset" to provide informat specifications (and other metadata like formats or variable labels) for a new dataset &lt;EM&gt;with the same structure&lt;/EM&gt;:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test2;
if 0 then set test1;
input dat1 val1 dat2 val2 dat3 val3 dat4 val4 dat5 val5;
cards;
20210303 13 20210430 17 20210513 19 20210608 23 20210719 29
;&lt;/CODE&gt;&lt;/PRE&gt;
This technique simplifies the code and avoids repetitions, especially if many variables with various formats, informats, etc. are involved (more than in this example).&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Mon, 15 Feb 2021 17:47:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719405#M222747</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-02-15T17:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: When do I need informat definition?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719589#M222835</link>
      <description>&lt;P&gt;Okay this is really an excellent explanation.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a last example.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;data informat_dataset;
	amount= '25,25000';
run;

data transform;
	attrib
		amount format=commax10.2 informat=commax10.8
	;
	set informat_dataset;
run;&lt;/PRE&gt;&lt;P&gt;When i execute this, I get the log error...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ERROR: Variable amtcurrency has been defined as both character and numeric.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What I have to change that the transformation regarding to format and informat will be executed?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks and regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hans&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2021 10:46:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719589#M222835</guid>
      <dc:creator>Hansmuffs</dc:creator>
      <dc:date>2021-02-16T10:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: When do I need informat definition?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719611#M222843</link>
      <description>&lt;P&gt;The ATTRIB statement defines/modifies &lt;EM&gt;meta&lt;/EM&gt;data, it doesn't change values and cannot convert variable types. In your example the compiler sees&amp;nbsp;the variable name "&lt;FONT face="courier new,courier"&gt;amount&lt;/FONT&gt;" for the first time in the ATTRIB statement and based on this first occurrence the compiler decides about the type of that variable. Since COMMAX10.2 is a &lt;EM&gt;numeric&lt;/EM&gt; format, the decision is made: &lt;FONT face="courier new,courier"&gt;amount&lt;/FONT&gt; is defined as a &lt;EM&gt;numeric&lt;/EM&gt; variable. The informat specification COMMAX10.8 is consistent with that decision (so it doesn't cause an error). Then the compiler realizes that the SET statement tries to bring another variable with the same name (&lt;FONT face="courier new,courier"&gt;amount&lt;/FONT&gt;) into the program data vector (PDV) and that this is a &lt;EM&gt;character&lt;/EM&gt; variable. Thus a variable type conflict has occurred which cannot be resolved. It is documented by the error message&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;FONT color="#FF0000"&gt;ERROR: Variable amount has been defined as both character and numeric.&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;and SAS stops processing the DATA step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To create a dataset from INFORMAT_DATASET where &lt;FONT face="courier new,courier"&gt;amount&lt;/FONT&gt; is a numeric variable, a new variable must be created that is assigned the numeric value created from &lt;FONT face="courier new,courier"&gt;amount&lt;/FONT&gt; by means of the &lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=lefunctionsref&amp;amp;docsetTarget=p19en16vskd2vhn1vwmxpxnglxxs.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;INPUT &lt;EM&gt;function&lt;/EM&gt;&lt;/A&gt; using a &lt;EM&gt;numeric&lt;/EM&gt; informat. In addition, renaming is necessary because the new variable must have a different name than the existing variable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data transform;
set informat_dataset(rename=(amount=amountc));
amount=input(amountc, commax8.);
format amount commax10.2;
drop amountc;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or similarly:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data transform(drop=amount rename=(amountn=amount));
set informat_dataset;
amountn=input(amount, commax8.);
format amountn commax10.2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2021 12:05:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/When-do-I-need-informat-definition/m-p/719611#M222843</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-02-16T12:05:12Z</dc:date>
    </item>
  </channel>
</rss>

