<?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: RTF Table of contents in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7039#M2677</link>
    <description>Hi:&lt;BR /&gt;
  To get rid of item numbers, in the TOC, you need a style template, as described in these Tech Support notes:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/23/345.html" target="_blank"&gt;http://support.sas.com/kb/23/345.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/23/344.html" target="_blank"&gt;http://support.sas.com/kb/23/344.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
The reason the original questions (in the notes) were about HTML, is that you  -do- see numbered contents items in the HTML TOC. But, when I get a TOC with RTF, I don't get numbers on the left in the TOC, (unless I put them in myself) so I'm not sure what enumeration you want to remove?? The page numbers that appear on the right? &lt;BR /&gt;
    &lt;BR /&gt;
I see what you mean about the GCHART, you're right, it doesn't seem to use the setlabel string in the TOC. It seems to use my DES= string:&lt;BR /&gt;
[pre]&lt;BR /&gt;
    vbar age / discrete &lt;BR /&gt;
               des='Age';&lt;BR /&gt;
[/pre]&lt;BR /&gt;
   &lt;BR /&gt;
So one workaround might be to use DES= for the string you want to see in the TOC.  The description can be up to 256 characters.&lt;BR /&gt;
&lt;BR /&gt;
You might want to work with Tech Support if you have more ODS DOCUMENT questions -- as the code can get quite lengthy and they have the most experience with ODS DOCUMENT.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Wed, 17 Dec 2008 07:48:16 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2008-12-17T07:48:16Z</dc:date>
    <item>
      <title>RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7031#M2669</link>
      <description>I would like to generate an automatic table of contents in Word using the wordstyle and prepage statements. When I try to do this, the table of contents looks fine, but the text specified in the prepage statement is within a little one-celled table. Is there a way to change this and make the text of the prepage statement look more like a title? I would also like to change the font.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;BR /&gt;
&lt;BR /&gt;
Below is my code:&lt;BR /&gt;
&lt;BR /&gt;
options nodate nonumber;&lt;BR /&gt;
ods noptitle;&lt;BR /&gt;
ods rtf  file='F:\newdoc.rtf' bodytitle wordstyle="{\s1 Heading 1;}"  contents notoc_data;&lt;BR /&gt;
ods escapechar='\';&lt;BR /&gt;
&lt;BR /&gt;
ods rtf prepage='\R/RTF"\s1 " Names; run;&lt;BR /&gt;
&lt;BR /&gt;
   proc freq data=sashelp.class;&lt;BR /&gt;
   	tables name;&lt;BR /&gt;
   run;&lt;BR /&gt;
&lt;BR /&gt;
ods rtf close;</description>
      <pubDate>Wed, 20 Feb 2008 20:05:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7031#M2669</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-02-20T20:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7032#M2670</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;ods rtf prepage='\R/RTF"\s1 " Names; run;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;
&lt;BR /&gt;
You're missing a single quote somewhere on the line above, but I doubt that will "fix" your problem.</description>
      <pubDate>Thu, 21 Feb 2008 15:43:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7032#M2670</guid>
      <dc:creator>advoss</dc:creator>
      <dc:date>2008-02-21T15:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7033#M2671</link>
      <description>I believe the box you see is from a gridline around the text. One the "table" pull down in Word, you can cut the grid lines off.&lt;BR /&gt;
&lt;BR /&gt;
Also, the prepage line should look more like :&lt;BR /&gt;
ods rtf prepage='\R/RTF"\s1  Names"'; run;&lt;BR /&gt;
&lt;BR /&gt;
I don't beleive there is a prepage style in 9.1. There is in 9.2. To get the text to appear like a title, you can use :&lt;BR /&gt;
ods rtf prepage='\R/RTF"\s1\b\i  Names"'; run;&lt;BR /&gt;
&lt;BR /&gt;
to get it bold and italic.</description>
      <pubDate>Thu, 21 Feb 2008 15:49:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7033#M2671</guid>
      <dc:creator>wayne_sas</dc:creator>
      <dc:date>2008-02-21T15:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7034#M2672</link>
      <description>Even if I make the gridlines around the prepage text invisible, the text is still part of the table, and I want the actual text to not be part of the table, but separate like a title. Is this possible?&lt;BR /&gt;
&lt;BR /&gt;
In SAS 8, you could just use a title statement to make a table of contents, but this seems not to work in SAS 9, so I wanted to try it with the prepage statement. I am not getting the results I want.&lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
      <pubDate>Thu, 21 Feb 2008 20:04:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7034#M2672</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-02-21T20:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7035#M2673</link>
      <description>Hi:&lt;BR /&gt;
  I guess that as powerful as prepage and wordstyle are, I find that I can do a lot with simpler techniques.&lt;BR /&gt;
 &lt;BR /&gt;
  Ever since ODS PROCLABEL and CONTENTS=YES work together, I find that many of the kinds of thing I was tempted to do with WORDSTYLE, I can do with ODS PROCLABEL and the string I specify there shows up automatically in the Table of Contents created with CONTENTS=YES. (see code sample below)&lt;BR /&gt;
   &lt;BR /&gt;
  This paper is a presentation that covers 3 different RTF Table of Contents methods. Perhaps it will be useful to you:&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/forum2007/097-2007.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/forum2007/097-2007.pdf&lt;/A&gt;&lt;BR /&gt;
   &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods rtf file='somefile.rtf' bodytitle contents=yes;&lt;BR /&gt;
     &lt;BR /&gt;
ods proclabel 'First Procedure';&lt;BR /&gt;
proc freq data=sashelp.shoes;&lt;BR /&gt;
table product;&lt;BR /&gt;
run;&lt;BR /&gt;
    &lt;BR /&gt;
ods proclabel 'Second Procedure';&lt;BR /&gt;
proc print data=sashelp.shoes(obs=5) contents='Proc Print';&lt;BR /&gt;
run;&lt;BR /&gt;
   &lt;BR /&gt;
ods proclabel 'Third Procedure';&lt;BR /&gt;
proc means data=sashelp.shoes min mean max std;&lt;BR /&gt;
class product;&lt;BR /&gt;
var returns;&lt;BR /&gt;
run;&lt;BR /&gt;
   &lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Fri, 22 Feb 2008 06:39:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7035#M2673</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-02-22T06:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7036#M2674</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I have already tried using the ods proclabel and contents=yes, but these provide a way more detailed TOC than I need. All I want is to have the variable name in the TOC, I don't need the detailed list (sometimes there are three entries for just one table!)&lt;BR /&gt;
&lt;BR /&gt;
I have thoroughly read through the paper that you reference already and found the second method (with the wordstyle option) to be the most convenient. However, I was just frustrated that I could not change the prepage text from not being part of the table. &lt;BR /&gt;
&lt;BR /&gt;
However, if I do decide to live with the fact that the text is in a table, how can I change the font? One poster above mentioned being able to change it to bold and italic, but how can I change the font face? I have created my own style with proc template, but can't figure out which style I would have to change in the template to change the prepage text. If I can also do it in the ods prepage statement, then that would be okay as well.&lt;BR /&gt;
&lt;BR /&gt;
Thanks!</description>
      <pubDate>Fri, 22 Feb 2008 14:55:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7036#M2674</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-02-22T14:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7037#M2675</link>
      <description>Hi:&lt;BR /&gt;
  I believe that to change the font face, you'd have to define a Word Style or change a Word Style (in normal.dot) so that Heading1 was a particular font face. This is a good question for Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
  I'd probably take a different approach instead of prepage. It sounds to me like you want to change the hierarchy in the table of contents -- to flatten the levels that you see. So this might be a good job for ODS DOCUMENT.&lt;BR /&gt;
 &lt;BR /&gt;
ODS DOCUMENT allows you to create a DOCUMENT from your procedure's output objects -- it's like a "frozen" image of your output objects after the procedure is finished, but before the output objects get sent to the final ODS destination.&lt;BR /&gt;
 &lt;BR /&gt;
 That means you can rearrange the output objects or make new folders or flatten the hierarchy of the folder structure. I generally do this by creating one copy of the "original" structured document and then making a new document store with the structure I want. That way, I have a backup of the original output objects and I can always prove that I did nothing to change the output from the procedure, I just rearranged it.&lt;BR /&gt;
&lt;BR /&gt;
  Then, once I've done the rearranging and/or relabeling I want, I can REPLAY the new ODS DOCUMENT to whatever destination I want. There is a point and click window that lets you do the rearranging and renaming very easily. Since it's a LOT of steps, I took the easy way out and built a program using the batch syntax of PROC DOCUMENT to do the same thing as I would do in the point and click window, but it has the added advantage of being something that I can post and you can run (in SAS 9.1.3).&lt;BR /&gt;
 &lt;BR /&gt;
  ODS DOCUMENT/PROC DOCUMENT has some limitations in SAS 9.1.3 and you can read about them in the Compatibility section here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/ods/odsdocument/ref.html" target="_blank"&gt;http://support.sas.com/rnd/base/ods/odsdocument/ref.html&lt;/A&gt;&lt;BR /&gt;
For what's new with ODS DOCUMENT in SAS 9.2, there's information here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/new92/92document.html" target="_blank"&gt;http://support.sas.com/rnd/base/new92/92document.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Note that if you use my code, then the document store goes away when the SAS session is over because I have written everything to the WORK library.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
    &lt;BR /&gt;
The ODS DOCUMENT way to "flatten" the table of contents:&lt;BR /&gt;
[pre]&lt;BR /&gt;
title;&lt;BR /&gt;
footnote;&lt;BR /&gt;
options nodate nonumber center orientation=portrait;&lt;BR /&gt;
ods noptitle;&lt;BR /&gt;
ods listing;&lt;BR /&gt;
     &lt;BR /&gt;
** make a subset of data;&lt;BR /&gt;
proc sort data=sashelp.shoes out=shoes;&lt;BR /&gt;
  by region;&lt;BR /&gt;
  where region in ('Asia', 'Pacific');&lt;BR /&gt;
run;&lt;BR /&gt;
    &lt;BR /&gt;
** make a new document store;&lt;BR /&gt;
** and show the "original" RTF contents;&lt;BR /&gt;
ods document name=work.shoedoc(write);&lt;BR /&gt;
ods rtf file='c:\temp\origrtf_file.rtf' contents=yes;&lt;BR /&gt;
proc means data=shoes min mean max;&lt;BR /&gt;
  by region;&lt;BR /&gt;
  var Sales;&lt;BR /&gt;
  class product;&lt;BR /&gt;
run;&lt;BR /&gt;
     &lt;BR /&gt;
proc freq data=shoes;&lt;BR /&gt;
  by region;&lt;BR /&gt;
  table product;&lt;BR /&gt;
run;&lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
ods document close;&lt;BR /&gt;
     &lt;BR /&gt;
** Get information on the new ODS DOCUMENT;&lt;BR /&gt;
** specifically, the names of the output objects for later copying;&lt;BR /&gt;
proc document name=work.shoedoc; &lt;BR /&gt;
  list;&lt;BR /&gt;
run;&lt;BR /&gt;
  list / levels=all;&lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
    &lt;BR /&gt;
** now build a new document store with the folder structure;&lt;BR /&gt;
** and object names and labels we want;&lt;BR /&gt;
** but I had to know the "official" object names which I cut and pasted from;&lt;BR /&gt;
** the LISTING in the step above;&lt;BR /&gt;
** And, there is a stray page break that I want to take out before the PROC MEANS;&lt;BR /&gt;
** Summary object for Asia;&lt;BR /&gt;
** I could also insert page breaks, but that is a different example;&lt;BR /&gt;
** I also want to add some titles and some "before" notes that will;&lt;BR /&gt;
** be different for Asia and Pacific.;&lt;BR /&gt;
proc document name=work.newshoedoc2(write);&lt;BR /&gt;
  make ASIA, PACIFIC; &lt;BR /&gt;
run;&lt;BR /&gt;
  dir;&lt;BR /&gt;
run;&lt;BR /&gt;
  dir ASIA;&lt;BR /&gt;
  dir;&lt;BR /&gt;
run;&lt;BR /&gt;
  copy \work.shoedoc\Freq#1\ByGroup1#1\Table1#1\OneWayFreqs#1 to ^;&lt;BR /&gt;
  copy \work.shoedoc\Means#1\ByGroup1#1\Summary#1 to ^;&lt;BR /&gt;
run;&lt;BR /&gt;
  dir \PACIFIC;&lt;BR /&gt;
  copy \work.shoedoc\Freq#1\ByGroup2#1\Table1#1\OneWayFreqs#1 to ^;&lt;BR /&gt;
  copy \work.shoedoc\Means#1\ByGroup2#1\Summary#1 to ^;&lt;BR /&gt;
       &lt;BR /&gt;
  obpage \ASIA#1\Summary#1 / delete;&lt;BR /&gt;
  setlabel \ASIA 'Region=Asia';&lt;BR /&gt;
  setlabel \ASIA#1\OneWayFreqs#1 'Product';&lt;BR /&gt;
  setlabel \ASIA#1\Summary#1 'Sales';&lt;BR /&gt;
  setlabel \PACIFIC 'Region=Pacific';&lt;BR /&gt;
  setlabel \PACIFIC#1\OneWayFreqs#1 'Product';&lt;BR /&gt;
  setlabel \PACIFIC#1\Summary#1 'Sales';&lt;BR /&gt;
     &lt;BR /&gt;
  obtitle1 \ASIA#1\OneWayFreqs#1 'New Title for Asia';&lt;BR /&gt;
  obbnote1 \ASIA#1\OneWayFreqs#1 'Not many Boots sold here.';&lt;BR /&gt;
     &lt;BR /&gt;
  obtitle1 \PACIFIC#1\OneWayFreqs#1 'New Title for Pacific';&lt;BR /&gt;
  obbnote1 \PACIFIC#1\OneWayFreqs#1 'More Boots sold here.';&lt;BR /&gt;
   &lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
    &lt;BR /&gt;
ods listing close;&lt;BR /&gt;
   &lt;BR /&gt;
options nodate nonumber orientation=portrait center;&lt;BR /&gt;
** now replay the new document store with the contents= option;&lt;BR /&gt;
ods rtf file='c:\temp\newtoc.rtf' contents=yes;&lt;BR /&gt;
proc document name=work.newshoedoc2;&lt;BR /&gt;
  replay;&lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
   &lt;BR /&gt;
ods listing;&lt;BR /&gt;
  &lt;BR /&gt;
[/pre]</description>
      <pubDate>Sat, 23 Feb 2008 22:29:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7037#M2675</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-02-23T22:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7038#M2676</link>
      <description>This is the only document I've found that lets me manipulate an html contents file in my code. &lt;BR /&gt;
&lt;BR /&gt;
However, I'm coming up a little short. On the setlabels, I have everything defined and working for tables. But I am also trying to reference a proc gchart procedure. When I run the code like I have for the tables, the contents page keeps the default name (HBar chart of Item) rather than the name I am assigning it with the setlabel. &lt;BR /&gt;
&lt;BR /&gt;
Also, is it possible to remove the enumeration from the contents page?</description>
      <pubDate>Tue, 16 Dec 2008 21:35:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7038#M2676</guid>
      <dc:creator>rab24</dc:creator>
      <dc:date>2008-12-16T21:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7039#M2677</link>
      <description>Hi:&lt;BR /&gt;
  To get rid of item numbers, in the TOC, you need a style template, as described in these Tech Support notes:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/23/345.html" target="_blank"&gt;http://support.sas.com/kb/23/345.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/23/344.html" target="_blank"&gt;http://support.sas.com/kb/23/344.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
The reason the original questions (in the notes) were about HTML, is that you  -do- see numbered contents items in the HTML TOC. But, when I get a TOC with RTF, I don't get numbers on the left in the TOC, (unless I put them in myself) so I'm not sure what enumeration you want to remove?? The page numbers that appear on the right? &lt;BR /&gt;
    &lt;BR /&gt;
I see what you mean about the GCHART, you're right, it doesn't seem to use the setlabel string in the TOC. It seems to use my DES= string:&lt;BR /&gt;
[pre]&lt;BR /&gt;
    vbar age / discrete &lt;BR /&gt;
               des='Age';&lt;BR /&gt;
[/pre]&lt;BR /&gt;
   &lt;BR /&gt;
So one workaround might be to use DES= for the string you want to see in the TOC.  The description can be up to 256 characters.&lt;BR /&gt;
&lt;BR /&gt;
You might want to work with Tech Support if you have more ODS DOCUMENT questions -- as the code can get quite lengthy and they have the most experience with ODS DOCUMENT.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 17 Dec 2008 07:48:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7039#M2677</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-12-17T07:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7040#M2678</link>
      <description>You sell yourself short Cynthia. All of your suggestions worked perfectly! I'm creating HTML output, so it was the numbered content on the left that I wanted to remove.&lt;BR /&gt;
&lt;BR /&gt;
And since #Byval() is allowed in the DES=, I can still get unique labels which makes the workaround perfect for my uses.</description>
      <pubDate>Wed, 17 Dec 2008 15:08:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7040#M2678</guid>
      <dc:creator>rab24</dc:creator>
      <dc:date>2008-12-17T15:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: RTF Table of contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7041#M2679</link>
      <description>Hi:&lt;BR /&gt;
  Oh, somehow I missed that "HTML" for TOC results in the top of your other post. I somehow still had RTF firmly in mind.&lt;BR /&gt;
&lt;BR /&gt;
  I'm glad you got it going. I haven't played with ODS Document and Graph that much, so I'd never noticed that behavior of SETLABEL. That was a good lesson!&lt;BR /&gt;
&lt;BR /&gt;
  Thanks,&lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 17 Dec 2008 16:02:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/RTF-Table-of-contents/m-p/7041#M2679</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-12-17T16:02:38Z</dc:date>
    </item>
  </channel>
</rss>

