<?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 SQL &amp; Counting in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92616#M19513</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is EVERY instance of Numerator and Denominator coming up zero? Have you confirmed that that crossings that should not be zero are returning zeros?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jul 2013 18:52:39 GMT</pubDate>
    <dc:creator>Fugue</dc:creator>
    <dc:date>2013-07-29T18:52:39Z</dc:date>
    <item>
      <title>Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92609#M19506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please excuse a SQL newbie question but I've searched and haven't found the answer I need. I'm trying to count the occurences where 3 things are true using the code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table rates as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select distinct time, start, end, hsp_id, hsp_state_code, type, count(input(hsp_id,7.)=&amp;amp;id. and input(nexthsp_id,7.)=&amp;amp;id. and readm30=1) as Numerator2 format=comma.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count(input(hsp_id,7.)=&amp;amp;id.) as Denominator2 format=comma.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; calculated Numerator/calculated Denominator as pct format=percent8.3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from readmabase&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; group by hsp_id, time&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; order by hsp_state_code, hsp_id, time;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to count where both hsp_id and nexthsp_id (character variables) equal &amp;amp;id. (a given hospital ID) and readm30 = 1 (numeric variable). When I run the code, Numerator2 and Denominator2 are always the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 17:46:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92609#M19506</guid>
      <dc:creator>BTAinRVA</dc:creator>
      <dc:date>2013-07-26T17:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92610#M19507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc sql; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table rates as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select distinct &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; time, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; start,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hsp_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hsp_state_code,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(case when input(hsp_id,7.)=&amp;amp;id. and input(nexthsp_id,7.)=&amp;amp;id. and readm30=1 then 1 else 0 end) as Numerator2 format=comma.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(case when input(hsp_id,7.)=&amp;amp;id. then 1 else 0 end) as Denominator2 format=comma.,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; calculated Numerator/calculated Denominator as pct format=percent8.3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from readmabase&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; group by time,start,end,hsp_id,hsp_state_code,type&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; order by hsp_state_code, hsp_id, time;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 18:08:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92610#M19507</guid>
      <dc:creator>DBailey</dc:creator>
      <dc:date>2013-07-26T18:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92611#M19508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DBailey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. I think that's what I'm looking for. However when I run it, the variables Numerator2 and Denominator2 all come up zeros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get a note: Invalid string. Invalid argument to function INPUT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 19:44:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92611#M19508</guid>
      <dc:creator>BTAinRVA</dc:creator>
      <dc:date>2013-07-26T19:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92612#M19509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could try :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc sql; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table rates as&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; time, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; start,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hsp_id,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hsp_state_code,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(hsp_id="&amp;amp;id." and nexthsp_id="&amp;amp;id." and readm30=1) as Numerator2 format=comma.,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(hsp_id="&amp;amp;id.") as Denominator2 format=comma.,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; calculated Numerator/calculated Denominator as pct format=percent8.3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from readmabase&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; group by time,start,end,hsp_id,hsp_state_code,type&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; order by hsp_state_code, hsp_id, time;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 22:00:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92612#M19509</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-07-26T22:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92613#M19510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. You state hsp_id and nexthsp_id are character, and your code suggests they can be readily converted to numbers. But, if there are non-numeric characters (e.g. letters A-Z), then the input function will return an error. Are there also hidden characters that may cause a problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think you need to convert hsp_id and nexthsp_id to numeric values. You can accomplish the same result by leaving convert hsp_id and nexthsp_id as text and enclosing your macro parm in quotes, i.e. '&amp;amp;id'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Does your macro variable &amp;amp;id have enclosing quotes? The following two statements will be interpreted quite differently:&lt;/P&gt;&lt;P&gt;%let id = '123';&lt;/P&gt;&lt;P&gt;%let id = 123;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. The combination of your grouping function (the correct grouping clause is suggested by Dbailey given your code example) and the case statements (SUM(CASE . . . )) will return 0s whenever there are no observations that satisfy the case statement for a given crossing. So, if there are no observations for a given crossing of time-start-end-hsp_id-hsp_state_code-type where hsp_id=&amp;amp;id. and nexthsp_id=&amp;amp;id. and readm30=1, then the numerator will be 0. Similarly, the denominator will be 0 whenever there are no matches of hsp_id=&amp;amp;id for a given crossing of time-start-end-hsp_id-hsp_state_code-type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. If you want your output to only include crossings with non-zero denominators, then add a where statement (e.g. where hsp_id=&amp;amp;id) and you can simplify the expression for the numerator var more simply (e.g. count ( * ) as numerator).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It would also be helpful if we had some sample data and a sample of what you want your output to look like.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 22:28:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92613#M19510</guid>
      <dc:creator>Fugue</dc:creator>
      <dc:date>2013-07-26T22:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92614#M19511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PG,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response. That code runs without any warning or errors but Numerator2 and Denominator2 are still coming up all zeros&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 18:41:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92614#M19511</guid>
      <dc:creator>BTAinRVA</dc:creator>
      <dc:date>2013-07-29T18:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92615#M19512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fuque,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response. The variables hsp_id and nexthsp_id could possibly have non-numeric characters. It would be best to compare them as character strings rather than numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The macro variable id does not have quotes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 18:47:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92615#M19512</guid>
      <dc:creator>BTAinRVA</dc:creator>
      <dc:date>2013-07-29T18:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92616#M19513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is EVERY instance of Numerator and Denominator coming up zero? Have you confirmed that that crossings that should not be zero are returning zeros?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 18:52:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92616#M19513</guid>
      <dc:creator>Fugue</dc:creator>
      <dc:date>2013-07-29T18:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92617#M19514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PG &amp;amp; Fuque,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I apologize, they aren't all coming up zeros. The Numerator and Denominator are all zeros except for the given hsp_id I gave it with the variable id. So it's doing exactly what I told it to do but not what I really want it to do. I'll have to give this a second thought. What I want to do is sum the quarterly 30-day readmissions for each hsp_id (Denominator) and the sum the number of those readmissions that went back to that same hsp_id (Numerator).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for all your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 20:07:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92617#M19514</guid>
      <dc:creator>BTAinRVA</dc:creator>
      <dc:date>2013-07-29T20:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92618#M19515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be helpful to have a decent sample of the input data with a bit of a data dictionary, and a layout of what you want the desired output to look like (with definitions of calculated elements).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 20:49:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92618#M19515</guid>
      <dc:creator>Fugue</dc:creator>
      <dc:date>2013-07-29T20:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92619#M19516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Variable names are wrong but here's a hint or starting point.&lt;/P&gt;&lt;P&gt;if hospid=next hospid then you want to count for numerator. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;sum(hospid=nexhospid) in sql logic. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 20:54:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92619#M19516</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-07-29T20:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Proc SQL &amp; Counting</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92620#M19517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fugue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should be able to figure it out from here. The big part I was unsure of was how to compare numbers and non-number character strings, which you answered in your first post. Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jul 2013 21:24:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-SQL-Counting/m-p/92620#M19517</guid>
      <dc:creator>BTAinRVA</dc:creator>
      <dc:date>2013-07-29T21:24:13Z</dc:date>
    </item>
  </channel>
</rss>

