<?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: Color-code groups on forest plot in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843767#M333572</link>
    <description>How do you want to display or layout ? Post a picture .</description>
    <pubDate>Fri, 11 Nov 2022 12:33:30 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2022-11-11T12:33:30Z</dc:date>
    <item>
      <title>Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843384#M333432</link>
      <description>&lt;P&gt;Hi friends,&lt;/P&gt;
&lt;P&gt;This is hand-drawn, and please also see sample code of forest plot:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=whole noautolegend;
   scatter y=reg x=oddsratioest / xerrorlower=LowerCL xerrorupper=UpperCL
           markerattrs=(symbol=diamondfilled) datalabel=oddsratioest
           datalabelattrs=(weight=bold);
   scatter y=reg x=lowercl / datalabel = lowercl markerattrs=(size=0 color=crimson);
   scatter y=reg x=uppercl / datalabel = uppercl markerattrs=(size=0 color=crimson);
   refline 1 / axis=x;
  * xaxis grid type=log label="Odds Ratio (log scale)";  /* specify log scale */
  * yaxis grid display=(nolabel) discreteorder=data reverse;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I want to take it one step further by color-coding groups like I drew here:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pink_poodle_0-1668008240501.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/77121i474246FC0DBDCCCC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pink_poodle_0-1668008240501.png" alt="pink_poodle_0-1668008240501.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Can SAS do that? I know R can, but I am worse at it. Any suggestions are appreciated.&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 15:38:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843384#M333432</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2022-11-09T15:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843400#M333440</link>
      <description>&lt;P&gt;What variable controls / indicates membership in a "group"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Typically if you provide a GROUP= option then your ODS style will typically provide different colors, markers, lines for each level of a group.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 16:09:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843400#M333440</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-11-09T16:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843410#M333446</link>
      <description>&lt;P&gt;For example, variable &lt;EM&gt;type&lt;/EM&gt;. I output one-line datasets with ORs and CIs from proc logistic and add outcome = "mort" (one of y-axis labels), type = "TBI" (one of the groups to color-code). Then I set the one-line datasets and try to color-code the resulting CI forest plot by type.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 16:28:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843410#M333446</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2022-11-09T16:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843413#M333447</link>
      <description>&lt;P&gt;I am not sure I understand your data but provide an actual variable named TYPE or similar to each record in your plot data set and use the Group option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are plotting different data sets then combine them and provide the appropriate Type value for each plot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or show what your data set that you are attempting to plot look like.&lt;/P&gt;
&lt;P&gt;Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt; will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the &amp;lt;&amp;gt; icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 16:34:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843413#M333447</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-11-09T16:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843417#M333450</link>
      <description>I am lazier than Mark from the dataset link &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; :&lt;BR /&gt;type	outcome	OddsRatioEst	LowerCL	UpperCL	pValue&lt;BR /&gt;tbi	   mort6	0.998	0.988	1.008	0.7641&lt;BR /&gt;tbi	   mort24	1.004	0.994	1.013	0.4554&lt;BR /&gt;tbi	   mort	1.009	1.001	1.018	0.0284&lt;BR /&gt;no_tbi	mort6	0.998	0.988	1.008	0.7641&lt;BR /&gt;no_tbi	mort24	1.004	0.994	1.013	0.4554&lt;BR /&gt;no_tbi	mort	1.009	1.001	1.018	0.0284</description>
      <pubDate>Wed, 09 Nov 2022 16:48:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843417#M333450</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2022-11-09T16:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843437#M333456</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/235176"&gt;@pink_poodle&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I am lazier than Mark from the dataset link &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; :&lt;BR /&gt;type outcome OddsRatioEst LowerCL UpperCL pValue&lt;BR /&gt;tbi mort6 0.998 0.988 1.008 0.7641&lt;BR /&gt;tbi mort24 1.004 0.994 1.013 0.4554&lt;BR /&gt;tbi mort 1.009 1.001 1.018 0.0284&lt;BR /&gt;no_tbi mort6 0.998 0.988 1.008 0.7641&lt;BR /&gt;no_tbi mort24 1.004 0.994 1.013 0.4554&lt;BR /&gt;no_tbi mort 1.009 1.001 1.018 0.0284&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This data as shown will not plot at all with the Sgplot code shown:&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;proc sgplot data=whole noautolegend;
   scatter y=reg x=oddsratioest / xerrorlower=LowerCL xerrorupper=UpperCL
           markerattrs=(symbol=diamondfilled) datalabel=oddsratioest
           datalabelattrs=(weight=bold);
   scatter y=reg x=lowercl / datalabel = lowercl markerattrs=(size=0 color=crimson);
   scatter y=reg x=uppercl / datalabel = uppercl markerattrs=(size=0 color=crimson);
   refline 1 / axis=x;
  * xaxis grid type=log label="Odds Ratio (log scale)";  /* specify log scale */
  * yaxis grid display=(nolabel) discreteorder=data reverse;
run;&lt;/LI-CODE&gt;
&lt;P&gt;The Y variable REG does not appear in your "example". If you had a Reg variable you could drop the Markerattrs as adding Group=Type should use a different marker for each level of type (and create a legend linking the text to the marker appearance).&lt;/P&gt;
&lt;P&gt;Use LINEATTRS and LABEL plus LABELATTRS to address the appearanc of the Refline.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a small example of a Scatter plot with a Refline that you should be able to run using the SASHELP.CLASS data set.&lt;/P&gt;
&lt;P&gt;(Since your "example data" did not include all the variables you say you want to plot)&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=sashelp.class;
   scatter x=height y=weight/group=sex;
   refline 60 / axis=x lineattrs=(color=red thickness=.1in) 
       label='Some label text' labelattrs=(color=red)
   ;
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 18:27:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843437#M333456</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-11-09T18:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843494#M333472</link>
      <description>&lt;P&gt;Reg is called outcome in this dataset, sorry about the confusion. I think the group option does not work here, because group splits up a scatter statement which is one “tree” in a forest plot. I want the “trees” to be intact.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 01:58:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843494#M333472</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2022-11-10T01:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843499#M333474</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/235176"&gt;@pink_poodle&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Reg is called outcome in this dataset, sorry about the confusion. I think the group option does not work here, because group splits up a scatter statement which is one “tree” in a forest plot. I want the “trees” to be intact.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Okay, if a group isn't going to work then you may need separate data , as in a different Y variable for each "plot". Then separate plot statements for the different y. Set the characteristics for each plot separately.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 02:04:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843499#M333474</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-11-10T02:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843565#M333489</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*
Your data is not right .
Why these two type have the same value of odds ratio?
*/
data whole;
input type $ outcome $ OddsRatioEst LowerCL UpperCL pValue;
cards;
tbi mort6 1.104 1.08 1.118 1.4641
tbi mort24 1.12 1.10 1.18 0.4554
tbi mort 1.031 1.001 1.18 0.0284
no_tbi mort6 0.98 0.888 1.00 0.7641
no_tbi mort24 0.964 0.894 1.013 0.4554
no_tbi mort 0.97 0.901 0.98 0.0284
;

title  c=green "No TBI                         " c=orange "                      Isolated TBI " ;
proc sgplot data=whole noautolegend noborder;
styleattrs datacolors=( orange green)  datacontrastcolors=( orange green) ;
   refline 1 / axis=x lineattrs=(color=red thickness=3) label='1.000' labelpos=min labelattrs=(weight=bold color=red size=12);
   highlow y=outcome low=LowerCL high=UpperCL /lineattrs=(thickness=3) group=type;
   scatter y=outcome x=oddsratioest / group=type
           markerattrs=(symbol=squarefilled size=12) datalabel=oddsratioest
           datalabelattrs=(weight=bold size=12);
   yaxis grid type=discrete display=(nolabel noline noticks) discreteorder=data reverse;
   xaxis label='Odds Ratio' ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1668080697515.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/77161i8575978917A0C54B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1668080697515.png" alt="Ksharp_0-1668080697515.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 11:44:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843565#M333489</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-11-10T11:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843709#M333548</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;, this looks great, thank you! I did same numbers because what if CIs overlap. I guess we would need to shift one group a little below the other.</description>
      <pubDate>Fri, 11 Nov 2022 01:43:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843709#M333548</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2022-11-11T01:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843753#M333565</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*
Then you need option:

groupdisplay=cluster
*/

data whole;
input type $ outcome $ OddsRatioEst LowerCL UpperCL pValue;
cards;
tbi mort6 1.104 1.08 1.118 1.4641
tbi mort24 1.12 1.10 1.18 0.4554
tbi mort 1.031 1.001 1.18 0.0284
no_tbi mort6 0.98 0.888 1.00 0.7641
no_tbi mort24 0.964 0.894 1.013 0.4554
no_tbi mort 0.97 0.901 0.98 0.0284
;

title  c=green "No TBI                         " c=orange "                      Isolated TBI " ;
proc sgplot data=whole noautolegend noborder;
styleattrs datacolors=( orange green)  datacontrastcolors=( orange green) ;
   refline 1 / axis=x lineattrs=(color=red thickness=3) label='1.000' labelpos=min labelattrs=(weight=bold color=red size=12);
   highlow y=outcome low=LowerCL high=UpperCL /lineattrs=(thickness=3) group=type groupdisplay=cluster;
   scatter y=outcome x=oddsratioest / group=type
           markerattrs=(symbol=squarefilled size=12) datalabel=oddsratioest   groupdisplay=cluster
           datalabelattrs=(weight=bold size=12);
   yaxis grid type=discrete display=(nolabel noline noticks) discreteorder=data reverse;
   xaxis label='Odds Ratio' ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1668167473445.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/77202iF5C325D015000518/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1668167473445.png" alt="Ksharp_0-1668167473445.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 11:50:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843753#M333565</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-11-11T11:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843766#M333571</link>
      <description>&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;, beautiful! I am sorry to “torture” you, but could you please add one more group in navy blue called “Non-isolated TBI” ? That will make it perfect, and the boss will be very happy :).</description>
      <pubDate>Fri, 11 Nov 2022 12:31:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843766#M333571</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2022-11-11T12:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843767#M333572</link>
      <description>How do you want to display or layout ? Post a picture .</description>
      <pubDate>Fri, 11 Nov 2022 12:33:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843767#M333572</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-11-11T12:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843771#M333574</link>
      <description>&lt;P&gt;You want this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data whole;
input type $ outcome $ OddsRatioEst LowerCL UpperCL pValue;
cards;
tbi mort6 1.104 1.08 1.118 1.4641
tbi mort24 1.12 1.10 1.18 0.4554
tbi mort 1.031 1.001 1.18 0.0284
no_tbi mort6 0.98 0.888 1.00 0.7641
no_tbi mort24 0.964 0.894 1.013 0.4554
no_tbi mort 0.97 0.901 0.98 0.0284
isolated mort6 1.01 0.988 1.16 0.7641
isolated mort24 1.1 0.94 1.13 0.4554
isolated mort 0.98 0.971 1.08 0.0284
;

title  c=green "No TBI                         " c=navy "Non-isolated TBI"    c=orange "                      Isolated TBI " ;
proc sgplot data=whole noautolegend noborder;
styleattrs datacolors=( orange green navy)  datacontrastcolors=( orange green navy) ;
   refline 1 / axis=x lineattrs=(color=red thickness=3) label='1.000' labelpos=min labelattrs=(weight=bold color=red size=12);
   highlow y=outcome low=LowerCL high=UpperCL /lineattrs=(thickness=3) group=type groupdisplay=cluster;
   scatter y=outcome x=oddsratioest / group=type
           markerattrs=(symbol=squarefilled size=12) datalabel=oddsratioest   groupdisplay=cluster
           datalabelattrs=(weight=bold size=12);
   yaxis colorbands=odd type=discrete display=(nolabel noline noticks) discreteorder=data reverse;
   xaxis label='Odds Ratio' ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1668170610877.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/77204i505DC83378F4911E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1668170610877.png" alt="Ksharp_0-1668170610877.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 12:43:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843771#M333574</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-11-11T12:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Color-code groups on forest plot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843821#M333591</link>
      <description>Yes, this is perfect, thank you so much!</description>
      <pubDate>Fri, 11 Nov 2022 16:32:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Color-code-groups-on-forest-plot/m-p/843821#M333591</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2022-11-11T16:32:23Z</dc:date>
    </item>
  </channel>
</rss>

