<?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: Proc Report - Center all data in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230382#M14522</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Some sample code with SASHELP.CLASS illustrates how to do centering. I did each column as centered and varied the headers so you could see the impact. When I use ODS EXCEL or TAGSETS.EXCELXP, the results are the same...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;
&lt;P&gt;&lt;IMG title="centering_ods_excel.png" alt="centering_ods_excel.png" src="https://communities.sas.com/t5/image/serverpage/image-id/532i6D7DF90443ED82CA/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;Here's the code:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;ods excel file='c:\temp\o_x_new.xlsx' style=htmlblue;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;ods tagsets.excelxp file='c:\temp\o_t_xp.xml' style=htmlblue;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc report data=sashelp.class;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; column name age sex;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; define name /&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)={just=left cellwidth=1.0in} &lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={just=center cellwidth=1.0in};&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; define age /&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)={just=right cellwidth=1.0in} &lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={just=center cellwidth=1.0in};&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; define sex /&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)={just=center cellwidth=1.0in} &lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={just=center cellwidth=1.0in};&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;ods _all_ close;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Oct 2015 21:27:20 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2015-10-16T21:27:20Z</dc:date>
    <item>
      <title>Proc Report - Center all data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230300#M14520</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;When I run the below code it is opening in Excel.  The "# of coils" data is left justified in excel.  &lt;BR /&gt;I want it to be center justified.  Any help would be appreciated.&lt;BR /&gt;&lt;BR /&gt;proc report data=WORK.APPEND_TABLE_0038 nowd 
STYLE(REPORT)={rules=all cellspacing=0 bordercolor=black}
;
column color no_of_coils ;
TITLE1  "&amp;lt;td align=left colspan=5 &amp;gt;&amp;lt;font size=4 color=black&amp;gt;&amp;lt;b&amp;gt;Rust Prevention Report: %TRIM(%QSYSFUNC(DATE(), NLDATE20.))&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;";
TITLE2 "&amp;lt;td align=center colspan=5 &amp;gt;&amp;lt;font size=3 color=black&amp;gt;&amp;lt;b&amp;gt;TPC Slit Coils&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;"; 
TITLE3 "&amp;lt;td align=center colspan=5 &amp;gt;&amp;lt;font size=2 color=black&amp;gt;&amp;lt;b&amp;gt;6-10 Yellow; More than 10 Red&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;";

compute no_of_coils;

if color = 'yellow'
then
call define ('no_of_coils','style','style=[background=yellow]');
if color = 'red'
then 
call define ('no_of_coils','style','style=[background=red]');

endcomp;
define no_of_coils / display '# of coils';
define color / display noprint;


;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Oct 2015 14:27:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230300#M14520</guid>
      <dc:creator>LAtwood</dc:creator>
      <dc:date>2015-10-16T14:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - Center all data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230357#M14521</link>
      <description>&lt;P&gt;Please show the code that sends this to Excel, ODS EXCEL, TAGSETS.EXCELXP, MSOffice, html being opened with Excel, something else. The different methods of sending to Excel sometimes require different approaches to get the desired appearance.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2015 19:55:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230357#M14521</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-10-16T19:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - Center all data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230382#M14522</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Some sample code with SASHELP.CLASS illustrates how to do centering. I did each column as centered and varied the headers so you could see the impact. When I use ODS EXCEL or TAGSETS.EXCELXP, the results are the same...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;
&lt;P&gt;&lt;IMG title="centering_ods_excel.png" alt="centering_ods_excel.png" src="https://communities.sas.com/t5/image/serverpage/image-id/532i6D7DF90443ED82CA/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;Here's the code:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;ods excel file='c:\temp\o_x_new.xlsx' style=htmlblue;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;ods tagsets.excelxp file='c:\temp\o_t_xp.xml' style=htmlblue;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;proc report data=sashelp.class;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; column name age sex;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; define name /&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)={just=left cellwidth=1.0in} &lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={just=center cellwidth=1.0in};&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; define age /&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)={just=right cellwidth=1.0in} &lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={just=center cellwidth=1.0in};&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; define sex /&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(header)={just=center cellwidth=1.0in} &lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={just=center cellwidth=1.0in};&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;ods _all_ close;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2015 21:27:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230382#M14522</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2015-10-16T21:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - Center all data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230720#M14532</link>
      <description>&lt;P&gt;GOPTIONS ACCESSIBLE;&lt;BR /&gt;%LET RV=%SYSFUNC(APPSRV_HEADER(CONTENT-TYPE,APPLICATION/VND.MS-EXCEL)));&lt;BR /&gt;ODS PATH work.templat(update) WORK.templat(read) sashelp.tmplmst(read);&lt;/P&gt;
&lt;P&gt;PROC TEMPLATE;&lt;BR /&gt;DEFINE STYLE STYLES.TEST;&lt;BR /&gt;STYLE TABLE /&lt;BR /&gt;borderwidth=1&lt;BR /&gt;bordercolor=black&lt;BR /&gt;font_face=black;&lt;BR /&gt;END;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;ODS LISTING CLOSE;&lt;/P&gt;
&lt;P&gt;ODS HTML BODY=_WEBOUT STYLE=STYLES.TEST;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2015 13:08:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230720#M14532</guid>
      <dc:creator>LAtwood</dc:creator>
      <dc:date>2015-10-20T13:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - Center all data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230725#M14533</link>
      <description>&lt;P&gt;Also, I probably wasn't clear enough. &amp;nbsp;The whole column needs to be centered on the page. &amp;nbsp;Currently when opening the one column displays in column A in the spreadsheet (all the way to the left). &amp;nbsp;Is there a way to center this one column on the page?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2015 13:10:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230725#M14533</guid>
      <dc:creator>LAtwood</dc:creator>
      <dc:date>2015-10-20T13:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - Center all data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230851#M14540</link>
      <description>Hi:&lt;BR /&gt;  You're using ODS HTML to _WEBOUT with APPSRV_HEADER -- are you using SAS/IntrNet or SAS Stored Processes? &lt;BR /&gt;&lt;BR /&gt;Sorry I misunderstood what you meant. With HTML output, even if you "fool" the browser into launching Excel for you with your APPSRV_HEADER, Excel's default treatment for HTML files is to start the output in Column A. That is not what I consider "left-justifying" the column. HTML output when opened in Excel is still HTML output treated like an Excel sheet. The "centering" that can happen is an after the fact control that you add when you provide the Print instructions and tell Excel to center the output horizontally and vertically on the page.&lt;BR /&gt;&lt;BR /&gt;Or, instead of ODS HTML (depending on your version of SAS), you might consider using a different destination that allows more control over the PRINT options when ODS output is opened in Excel. I believe that TAGSETS.EXCELXP and TAGSETS.MSOFFICE2K_X both allow you to specify printing options in the syntax. But with plain ODS HTML, the only place the output ever starts is in Column A on the worksheet.&lt;BR /&gt;&lt;BR /&gt;That is the way that Excel works with HTML.&lt;BR /&gt;&lt;BR /&gt;Now, if you are using this as a SAS Stored Process and the SAS Add-in for Microsoft Office, then when you run the Stored Process, you get a prompt asking you where you want the output to be placed in the existing sheet, in a new sheet or in a new workbook. My memory is that if you place the output in the existing sheet or a new sheet, you get to give the starting column, such as A1 or G2, etc.&lt;BR /&gt; &lt;BR /&gt;cynthia</description>
      <pubDate>Wed, 21 Oct 2015 00:35:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/230851#M14540</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2015-10-21T00:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - Center all data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/231175#M14550</link>
      <description>&lt;P&gt;Hi Cynthia,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I downloaded excelxp tagset. &amp;nbsp;I now have the following code.&lt;/P&gt;
&lt;P&gt;Is it possible&amp;nbsp;to&amp;nbsp;center the column "# of coils" to the center of the excel spreadsheet? &amp;nbsp;I cannot select a column like you suggested above because I have other proc reports that will display on the same sheet with more columns which will then cause this first proc report to still look aligned to the left.&lt;/P&gt;
&lt;P&gt;Also, my title does not display because it only displays to the width of the column "# of coils." &amp;nbsp;If I make the cellwidth larger of the column I can get the full title to display. &amp;nbsp;Any advice on this also?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;GOPTIONS ACCESSIBLE;&lt;BR /&gt;%LET RV=%SYSFUNC(APPSRV_HEADER(CONTENT-TYPE,APPLICATION/VND.MS-EXCEL));&lt;BR /&gt;%LET RV=%SYSFUNC(APPSRV_HEADER(CONTENT-DISPOSITION,ATTACHMENT; FILENAME="RUST_RPT_%sysfunc(today(),MMDDYY8.).XLS"));&lt;BR /&gt;ODS PATH work.templat(update) sasuser.templat(read) sashelp.tmplmst(read);&lt;BR /&gt;ods listing close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS tagsets.excelxp file=_WEBOUT style=styles.journal_borders&lt;BR /&gt;options(sheet_interval='none' sheet_name='Rust'&lt;BR /&gt;embedded_titles='yes' orientation='portrait' suppress_bylines='yes');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc report data=WORK.APPEND_TABLE_0038 nowd;&lt;BR /&gt;column color no_of_coils ;&lt;BR /&gt;TITLE1 f='Calibri' h=12pt "Rust Prevention Report: %TRIM(%QSYSFUNC(DATE(), NLDATE20.))";&lt;BR /&gt;TITLE2 f='Calibri' h=11pt "TPC Slit Coils"; &lt;BR /&gt;TITLE3 f='Calibri' h=10pt "6-10 days: Yellow &amp;gt; 10 days: Red";&lt;/P&gt;
&lt;P&gt;compute no_of_coils;&lt;/P&gt;
&lt;P&gt;if color = 'yellow'&lt;BR /&gt;then&lt;BR /&gt;call define ('no_of_coils','style','style=[background=yellow]');&lt;BR /&gt;if color = 'red'&lt;BR /&gt;then &lt;BR /&gt;call define ('no_of_coils','style','style=[background=red]');&lt;/P&gt;
&lt;P&gt;endcomp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;define no_of_coils / display '# of coils';&lt;BR /&gt;define color / display noprint;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2015 14:35:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/231175#M14550</guid>
      <dc:creator>LAtwood</dc:creator>
      <dc:date>2015-10-22T14:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - Center all data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/231176#M14551</link>
      <description>And yes I am using this as a stored process.</description>
      <pubDate>Thu, 22 Oct 2015 14:32:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/231176#M14551</guid>
      <dc:creator>LAtwood</dc:creator>
      <dc:date>2015-10-22T14:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - Center all data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/231302#M14553</link>
      <description>Hi: So, what do you define as the "center" of the Excel spreadsheet. You only have 1 column on the report. By default, the output starts in Column A.&lt;BR /&gt;&lt;BR /&gt;When you run this as a stored process, if the client application is Excel, you get prompted for the location to place the stored process output, when you use one of the supported destinations. This is a pop-up window inside the client application, so it cannot be controlled by SAS. &lt;BR /&gt;&lt;BR /&gt;And, even with TAGSETS.EXCELXP, if you use the CENTER_HORIZONTAL suboption, it still puts the column in A, but when printing centers the column on the print preview page.&lt;BR /&gt;&lt;BR /&gt;So I am not sure you can control the report the way you want or envision. This would be a question for Tech Support.&lt;BR /&gt;cynthia</description>
      <pubDate>Fri, 23 Oct 2015 03:57:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/231302#M14553</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2015-10-23T03:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Report - Center all data</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/231328#M14555</link>
      <description>&lt;P&gt;Thank you Cynthia. &amp;nbsp;I have submitted a ticket.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2015 11:37:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Proc-Report-Center-all-data/m-p/231328#M14555</guid>
      <dc:creator>LAtwood</dc:creator>
      <dc:date>2015-10-23T11:37:07Z</dc:date>
    </item>
  </channel>
</rss>

