<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Georgi's Blog</title>
	<atom:link href="http://joro.geodar.com/diary/feed/" rel="self" type="application/rss+xml" />
	<link>http://joro.geodar.com/diary</link>
	<description>It's about my life</description>
	<pubDate>Wed, 15 Apr 2009 23:35:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ID3 tags of songs</title>
		<link>http://joro.geodar.com/diary/2009/04/15/682/</link>
		<comments>http://joro.geodar.com/diary/2009/04/15/682/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 23:30:05 +0000</pubDate>
		<dc:creator>TeraHz</dc:creator>
		
		<category><![CDATA[[lang_bg]Животът ми[/lang_bg][lang_en]My Life[/lang_en]]]></category>

		<guid isPermaLink="false">http://joro.geodar.com/diary/2009/04/15/682/</guid>
		<description><![CDATA[
Recently I got a collection of bulgarian songs with very nice filenames but no ID3 tags. So I wrote a simple script that reads a file with name like so: &#8220;trackN artist - song.mp3&#8243;, converts it to cyrillic and writes the tags.

The format of the filename can be easily changed by modifying the regex and [...]]]></description>
			<content:encoded><![CDATA[</p>
<p>Recently I got a collection of bulgarian songs with very nice filenames but no ID3 tags. So I wrote a simple script that reads a file with name like so: &#8220;trackN artist - song.mp3&#8243;, converts it to cyrillic and writes the tags.
</p>
<p>The format of the filename can be easily changed by modifying the regex and you can add other tags as well. I knew in advance that my compilation will have 500 songs, that&#8217;s why the track numbers are set to &#8220;$track/500&#8243;. At this point is is quite custom script for my needs but can be easily changed to translate to other languages and modify other tags.
</p>
<p>The cyrillic conversion is not perfect, but I&#8217;m too lasy to fix it as it isn&#8217;t that bad either.</p>
<ol class="codelist">
<li class="tab0 odd"><code>#!/usr/bin/perl -w</code></li>
<li class="tab0 even"><code>use Data::Dumper;</code></li>
<li class="tab0 odd"><code>use MP3::Tag;</code></li>
<li class="tab0 even"><code>use Encode;</code></li>
<li class="odd">&nbsp;</li>
<li class="tab0 even"><code>my $filename = $ARGV[0];</code></li>
<li class="tab0 odd"><code>my $artist;</code></li>
<li class="tab0 even"><code>my $track;</code></li>
<li class="tab0 odd"><code>my $song;</code></li>
<li class="even">&nbsp;</li>
<li class="tab0 odd"><code>print &quot;Working on $filename\n&quot;;</code></li>
<li class="even">&nbsp;</li>
<li class="tab0 odd"><code>@cyr = ('ч','щ','ш','ю','а','б','в','г','д','е','ж','з','и','й','к'</code></li>
<li class="tab16 even"><code>,'л','м','н','о','п','р','с','т','у','ф','х','ц','ъ','ь','я',</code></li>
<li class="tab16 odd"><code>'у','Ч','Щ','Ш','Ю','А','Б','В', 'Г','Д','Е','Ж','З','И','Й',</code></li>
<li class="tab16 even"><code>'К','Л','М','Н','О','П','Р','С','Т','У','Ф','Х','Ц','Ъ','Ь','Я','У');</code></li>
<li class="odd">&nbsp;</li>
<li class="tab0 even"><code>@lat = ('ch','sht','sh','iu','a','b','v','g','d','e','j','z','i','j',</code></li>
<li class="tab16 odd"><code>'k','l','m','n','o','p','r','s','t','u','f','h','c','y','y',</code></li>
<li class="tab16 even"><code>'q','w','Ch','Sht','Sh','Iu','A','B','V', 'G','D','E','J','Z',</code></li>
<li class="tab16 odd"><code>'I','J','K','L','M','N','O','P','R','S','T','U','F','H','C','Y','Y','Q','W');</code></li>
<li class="even">&nbsp;</li>
<li class="tab0 odd"><code>sub trim($)</code></li>
<li class="tab0 even"><code>{</code></li>
<li class="tab1 odd"><code>my $string = shift;</code></li>
<li class="tab1 even"><code>$string =~ s/^\s+//;</code></li>
<li class="tab1 odd"><code>$string =~ s/\s+$//;</code></li>
<li class="tab1 even"><code>return $string;</code></li>
<li class="tab0 odd"><code>}</code></li>
<li class="even">&nbsp;</li>
<li class="tab0 odd"><code>$temp=$filename;</code></li>
<li class="tab0 even"><code>$temp=~s/\.mp3//gi;</code></li>
<li class="tab0 odd"><code>if ($temp =~ m/([\d]{3})\s+(.+\s*.+)\s?-\s?(.+\s?.+)/)</code></li>
<li class="tab1 even"><code>{</code></li>
<li class="tab2 odd"><code>$track = $1;</code></li>
<li class="tab2 even"><code>$artist = $2;</code></li>
<li class="tab2 odd"><code>$song = $3;</code></li>
<li class="tab1 even"><code>}</code></li>
<li class="tab0 odd"><code>my $retext = &quot;$track $artist - $song&quot;;</code></li>
<li class="tab0 even"><code>print $retext.&quot;\t&quot;;</code></li>
<li class="tab0 odd"><code>$i = 0;</code></li>
<li class="tab0 even"><code>while($i &lt; @lat) {</code></li>
<li class="tab1 odd"><code>$l = $lat[$i];</code></li>
<li class="tab1 even"><code>$c = $cyr[$i];</code></li>
<li class="tab1 odd"><code>$artist=~s/$l/$c/g;</code></li>
<li class="tab1 even"><code>$song=~s/$l/$c/g;</code></li>
<li class="odd">&nbsp;</li>
<li class="tab1 even"><code>#print $l.&quot;\t&quot;.$c.&quot;\n&quot;;</code></li>
<li class="tab1 odd"><code>$i++;</code></li>
<li class="tab0 even"><code>}</code></li>
<li class="odd">&nbsp;</li>
<li class="even">&nbsp;</li>
<li class="tab0 odd"><code>$songname = &quot;$track &quot;.trim($artist).&quot; - &quot;.trim($song);</code></li>
<li class="tab0 even"><code>print $songname.&quot;\n&quot;;</code></li>
<li class="odd">&nbsp;</li>
<li class="tab0 even"><code>$mp3 = MP3::Tag-&gt;new($filename);</code></li>
<li class="tab0 odd"><code>$mp3-&gt;get_tags;</code></li>
<li class="tab0 even"><code>my $id3v2 = $mp3-&gt;new_tag(&quot;ID3v2&quot;);</code></li>
<li class="tab0 odd"><code>$id3v2-&gt;add_frame('TRCK', &quot;$track/500&quot;);</code></li>
<li class="tab0 even"><code>$id3v2-&gt;add_frame('TIT2', decode('UTF-8',$song));</code></li>
<li class="tab0 odd"><code>$id3v2-&gt;add_frame('TPE1', decode('UTF-8',$artist));</code></li>
<li class="tab0 even"><code>$id3v2-&gt;write_tag;</code></li>
<li class="odd">&nbsp;</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://joro.geodar.com/diary/2009/04/15/682/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Buhti</title>
		<link>http://joro.geodar.com/diary/2009/04/11/658/</link>
		<comments>http://joro.geodar.com/diary/2009/04/11/658/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 19:47:45 +0000</pubDate>
		<dc:creator>TeraHz</dc:creator>
		
		<category><![CDATA[[lang_bg]Рецепти[/lang_bg][lang_en]Recipies[/lang_en]]]></category>

		<guid isPermaLink="false">http://joro.geodar.com/diary/?p=658</guid>
		<description><![CDATA[
	

Ingredients:

500g flour
200g yogurt
3 eggs
150g sugar
1/2 tsp salt
zest of 1 lemon
confectioners sugar for topping
1/2 tsp vanilla extract
1/2 tsp baking soda
200g oil for frying



Directions:

Mix the yogurt, baking soda, eggs and sugar well, then add the salt, flour and lemon zest.
Make a soft dough and roll it to 1/2 to 1 cm. thickness.
From the rolled dough, cut circles, [...]]]></description>
			<content:encoded><![CDATA[<div class="recipe">
	<a href="http://joro.geodar.com/pics/displayimage.php?pos=-7527"><img src="/pics/albums/various/thumb_buhti.jpg" alt="Бухти"/></a></p>
<div class="ingredients">
<span class="rh2">Ingredients:</span></p>
<ol>
<li>500g flour</li>
<li>200g yogurt</li>
<li>3 eggs</li>
<li>150g sugar</li>
<li>1/2 tsp salt</li>
<li>zest of 1 lemon</li>
<li>confectioners sugar for topping</li>
<li>1/2 tsp vanilla extract</li>
<li>1/2 tsp baking soda</li>
<li>200g oil for frying</li>
</ol>
</div>
<div class="directions">
<span class="rh2">Directions:</span></p>
<ol>
<li>Mix the yogurt, baking soda, eggs and sugar well, then add the salt, flour and lemon zest.</li>
<li>Make a soft dough and roll it to 1/2 to 1 cm. thickness.</li>
<li>From the rolled dough, cut circles, squares and other shapes and fry them in the oil.</li>
<li>When the buhti are ready (to golden brown color), top with confectioners sugar and serve while hot.</li>
</ol>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://joro.geodar.com/diary/2009/04/11/658/feed/</wfw:commentRss>
		</item>
		<item>
		<title>First big concert of MI3</title>
		<link>http://joro.geodar.com/diary/2009/03/30/653/</link>
		<comments>http://joro.geodar.com/diary/2009/03/30/653/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 02:26:11 +0000</pubDate>
		<dc:creator>TeraHz</dc:creator>
		
		<category><![CDATA[[lang_bg]Животът ми[/lang_bg][lang_en]My Life[/lang_en]]]></category>

		<category><![CDATA[мюзик айдъл]]></category>

		<guid isPermaLink="false">http://joro.geodar.com/diary/?p=653</guid>
		<description><![CDATA[The first big concert from the Bulgarian music idol was not bad. I think Rusina and Boyan did the best job of all. I especially liked Boyan for his performance. On the other hand the hosts, the drama around the abuse and the two roma guys is a bit too much for my linking. All [...]]]></description>
			<content:encoded><![CDATA[<p>The first big concert from the Bulgarian music idol was not bad. I think Rusina and Boyan did the best job of all. I especially liked Boyan for his performance. On the other hand the hosts, the drama around the abuse and the two roma guys is a bit too much for my linking. All in all was a good concert though.</p>
]]></content:encoded>
			<wfw:commentRss>http://joro.geodar.com/diary/2009/03/30/653/feed/</wfw:commentRss>
		</item>
		<item>
		<title>It is time to store the sauerkraut</title>
		<link>http://joro.geodar.com/diary/2009/03/30/651/</link>
		<comments>http://joro.geodar.com/diary/2009/03/30/651/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 00:45:36 +0000</pubDate>
		<dc:creator>TeraHz</dc:creator>
		
		<category><![CDATA[[lang_bg]Животът ми[/lang_bg][lang_en]My Life[/lang_en]]]></category>

		<category><![CDATA[cooking]]></category>

		<category><![CDATA[sauerkraut]]></category>

		<category><![CDATA[кисело зеле]]></category>

		<guid isPermaLink="false">http://joro.geodar.com/diary/?p=651</guid>
		<description><![CDATA[Because the weather is starting to worm up, I decided to store the rest of my sauerkraut. The easiest way, of course, is to freeze it and that is what I did. I left 40-50 whole leaves for stuffed cabbage, and the rest (from 8 whole cabbage heads) prepared directly for cooking.
I also left 2 [...]]]></description>
			<content:encoded><![CDATA[<p>Because the weather is starting to worm up, I decided to store the rest of my sauerkraut. The easiest way, of course, is to freeze it and that is what I did. I left 40-50 whole leaves for stuffed cabbage, and the rest (from 8 whole cabbage heads) prepared directly for cooking.</p>
<p>I also left 2 heads outside to see how well it stays good so I know next year.</p>
<p>I hope it is still good after thawing it, but I don&#8217;t think there will be problems by freezing it.</p>
<p><a href="http://joro.geodar.com/pics/displayimage.php?album=22&#038;pos=11"><img src="http://joro.geodar.com/pics/albums/various/thumb_food-8.jpg" alt="sauerkraut in bags" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://joro.geodar.com/diary/2009/03/30/651/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Breads</title>
		<link>http://joro.geodar.com/diary/2009/03/30/629/</link>
		<comments>http://joro.geodar.com/diary/2009/03/30/629/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 00:36:24 +0000</pubDate>
		<dc:creator>TeraHz</dc:creator>
		
		<category><![CDATA[[lang_bg]Животът ми[/lang_bg][lang_en]My Life[/lang_en]]]></category>

		<category><![CDATA[cooking]]></category>

		<guid isPermaLink="false">http://joro.geodar.com/diary/?p=629</guid>
		<description><![CDATA[Since I got a bread machine I&#8217;ve been experimenting with this bulgarian sweet bread that everyone I know loves. I tries a few recipes and decorations. I&#8217;ve never twisted? this bread before and since now didn&#8217;t realize that one thread disappears visually.

3 threads, 4 threads and 4 threads baked

4 threads, 4 threads baked in the [...]]]></description>
			<content:encoded><![CDATA[<p>Since I got a bread machine I&#8217;ve been experimenting with this bulgarian sweet bread that everyone I know loves. I tries a few recipes and decorations. I&#8217;ve never twisted? this bread before and since now didn&#8217;t realize that one thread disappears visually.</p>
<p><a href="http://joro.geodar.com/pics/displayimage.php?album=22&#038;pos=4" style="margin:5px"><img alt="3 threads" src="http://joro.geodar.com/pics/albums/various/thumb_food-1.jpg" title="3 threads" width="150" height="113" /></a><a href="http://joro.geodar.com/pics/displayimage.php?album=22&#038;pos=7" style="margin:5px"><img alt="4 threads" src="http://joro.geodar.com/pics/albums/various/thumb_food-4.jpg" title="4 плитки" width="150" height="113" /></a><a href="http://joro.geodar.com/pics/displayimage.php?album=22&#038;pos=8" style="margin:5px"><img alt="4 threads - done" src="http://joro.geodar.com/pics/albums/various/thumb_food-5.jpg" title="4 threads - done" width="150" height="113" /></a><br />
<small style="margin:5px"><em>3 threads, 4 threads and 4 threads baked</em></small></p>
<p><a href="http://joro.geodar.com/pics/displayimage.php?album=22&#038;pos=5" style="margin:5px"><img alt="4 short threads" src="http://joro.geodar.com/pics/albums/various/thumb_food-2.jpg" title="4 short threads" width="150" height="113" /></a><a href="http://joro.geodar.com/pics/displayimage.php?album=22&#038;pos=6" style="margin:5px"><img alt="4 short threads - baked" src="http://joro.geodar.com/pics/albums/various/thumb_food-3.jpg" title="4 short threads - baked" width="150" height="113" /></a><br />
<small style="margin:5px"><em>4 threads, 4 threads baked in the bread maker</em></small></p>
<p>Of course, I&#8217;ve made bread in the machine as well.<br />
<a href="http://joro.geodar.com/pics/displayimage.php?album=22&#038;pos=10" style="margin:5px"><img alt="white bread" src="http://joro.geodar.com/pics/albums/various/thumb_food-7.jpg" title="white bread" width="150" height="113" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://joro.geodar.com/diary/2009/03/30/629/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Badminton</title>
		<link>http://joro.geodar.com/diary/2009/03/24/626/</link>
		<comments>http://joro.geodar.com/diary/2009/03/24/626/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 03:20:24 +0000</pubDate>
		<dc:creator>TeraHz</dc:creator>
		
		<category><![CDATA[[lang_bg]Животът ми[/lang_bg][lang_en]My Life[/lang_en]]]></category>

		<category><![CDATA[sport]]></category>

		<guid isPermaLink="false">http://joro.geodar.com/diary/2009/03/24/626/</guid>
		<description><![CDATA[Yesterday I went to play badminton. I&#8217;ve never played before by the rules (and didn&#8217;t know them). All in all was quite a bit of running around.
The bad part was it is not in Stamford and it is $15 bucks per person for 2 hours of play, which I think is not cheap.
]]></description>
			<content:encoded><![CDATA[<p>Yesterday I went to play <a href="http://en.wikipedia.org/wiki/badminton" target="_blank" >badminton</a>. I&#8217;ve never played before by the rules (and didn&#8217;t know them). All in all was quite a bit of running around.<br />
The bad part was it is not in Stamford and it is $15 bucks per person for 2 hours of play, which I think is not cheap.</p>
]]></content:encoded>
			<wfw:commentRss>http://joro.geodar.com/diary/2009/03/24/626/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Name day for Dari</title>
		<link>http://joro.geodar.com/diary/2009/03/19/623/</link>
		<comments>http://joro.geodar.com/diary/2009/03/19/623/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 03:09:26 +0000</pubDate>
		<dc:creator>TeraHz</dc:creator>
		
		<category><![CDATA[[lang_bg]Животът ми[/lang_bg][lang_en]My Life[/lang_en]]]></category>

		<category><![CDATA[dary]]></category>

		<category><![CDATA[дари]]></category>

		<guid isPermaLink="false">http://joro.geodar.com/diary/?p=623</guid>
		<description><![CDATA[According to the Orthodox calendar, today is the day of St. Hrisant and Daria, thus our sweet Dary has a so called name day. We wish her good luck and all the best (hug).
BTW According to other sources Darina also has a name day on Todor&#8217;s name day, and I&#8217;ve heard on Christmas as well?&#8230;
Good [...]]]></description>
			<content:encoded><![CDATA[<p>According to the Orthodox calendar, today is the day of St. Hrisant and Daria, thus our sweet <a href="http://dary.geodar.com">Dary</a> has a so called name day. We wish her good luck and all the best (hug).</p>
<p>BTW According to other sources Darina also has a name day on Todor&#8217;s name day, and I&#8217;ve heard on Christmas as well?&#8230;</p>
<p>Good luck Dari</p>
]]></content:encoded>
			<wfw:commentRss>http://joro.geodar.com/diary/2009/03/19/623/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Climbing</title>
		<link>http://joro.geodar.com/diary/2009/03/19/614/</link>
		<comments>http://joro.geodar.com/diary/2009/03/19/614/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 02:12:51 +0000</pubDate>
		<dc:creator>TeraHz</dc:creator>
		
		<category><![CDATA[[lang_bg]Животът ми[/lang_bg][lang_en]My Life[/lang_en]]]></category>

		<category><![CDATA[[lang_bg]Статии[/lang_bg][lang_en]Articles[/lang_en]]]></category>

		<category><![CDATA[climbing]]></category>

		<category><![CDATA[sports]]></category>

		<guid isPermaLink="false">http://joro.geodar.com/diary/2009/03/19/614/</guid>
		<description><![CDATA[I think I have not blogged about it yet (I have not posted anything in a while &#8230;). For a few months now, I&#8217;ve been going to this climbing gym once a week, doing some bouldering in the beginning and now top roping as well. I wasn&#8217;t expecting it to be so physically demanding activity. [...]]]></description>
			<content:encoded><![CDATA[<p>I think I have not blogged about it yet (I have not posted anything in a while &#8230;). For a few months now, I&#8217;ve been going to this climbing gym once a week, doing some <a href="http://en.wikipedia.org/wiki/bouldering" target="_blank" >bouldering</a> in the beginning and now <a href="http://en.wikipedia.org/wiki/top roping" target="_blank" >top roping</a> as well. I wasn&#8217;t expecting it to be so physically demanding activity. Every time after a workout, my muscles cannot recover for a couple a days. I&#8217;m still a beginner and not very good at it yet. I can boulder at most V3 (I did one V4 last week) and top rope at most 5.9.<br />
Last week I got new climbing shoes, because it turned out I shouldn&#8217;t be wearing socks and the shoes should be snug fit, mine were pretty loose even with socks so&#8230; Unfortunately, now I have to pass the break-in period of the new shoes. I hope it happens faster rather than later. When it gets warmer I might visit one of the near by outdoors climbing locations (<a href="http://en.wikipedia.org/wiki/The_Gunks#Climbing_in_the_Gunks" target="_blank" >The Gunks</a> is a couple of hours drive and it seems to be quite famous in the NE US).</p>
]]></content:encoded>
			<wfw:commentRss>http://joro.geodar.com/diary/2009/03/19/614/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hawaii Videos and photos</title>
		<link>http://joro.geodar.com/diary/2009/03/19/613/</link>
		<comments>http://joro.geodar.com/diary/2009/03/19/613/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 02:03:56 +0000</pubDate>
		<dc:creator>TeraHz</dc:creator>
		
		<category><![CDATA[[lang_bg]Животът ми[/lang_bg][lang_en]My Life[/lang_en]]]></category>

		<category><![CDATA[hawaii]]></category>

		<guid isPermaLink="false">http://joro.geodar.com/diary/2009/03/19/613/</guid>
		<description><![CDATA[Almost all videos are ready:
http://joro.geodar.com/videos/Hawaii/
The pics are also uploaded in the gallery:
http://joro.geodar.com/pics/thumbnails.php?album=83
]]></description>
			<content:encoded><![CDATA[<p>Almost all videos are ready:<br />
<a href="http://joro.geodar.com/videos/Hawaii/">http://joro.geodar.com/videos/Hawaii/</a><br />
The pics are also uploaded in the gallery:<br />
<a href="http://joro.geodar.com/pics/thumbnails.php?album=83">http://joro.geodar.com/pics/thumbnails.php?album=83</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joro.geodar.com/diary/2009/03/19/613/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MiChuan Taiji</title>
		<link>http://joro.geodar.com/diary/2009/03/19/612/</link>
		<comments>http://joro.geodar.com/diary/2009/03/19/612/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 02:01:38 +0000</pubDate>
		<dc:creator>TeraHz</dc:creator>
		
		<category><![CDATA[[lang_bg]Животът ми[/lang_bg][lang_en]My Life[/lang_en]]]></category>

		<category><![CDATA[taiji]]></category>

		<guid isPermaLink="false">http://joro.geodar.com/diary/2009/03/19/612/</guid>
		<description><![CDATA[My books on the Yangjia Michuan Taiji Quan form arrived recently. I also got a video with the demonstration of the form and some tips, but it is in mandarin, so &#8230; can&#8217;t use it yet. I will start to read the books tho, which are both english and chinese.
]]></description>
			<content:encoded><![CDATA[<p>My books on the Yangjia Michuan Taiji Quan form arrived recently. I also got a video with the demonstration of the form and some tips, but it is in mandarin, so &#8230; can&#8217;t use it yet. I will start to read the books tho, which are both english and chinese.</p>
]]></content:encoded>
			<wfw:commentRss>http://joro.geodar.com/diary/2009/03/19/612/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
