<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Messaging</title>
        <link>http://ayende.com/Blog/category/550.aspx</link>
        <description>Messaging</description>
        <language>en-US</language>
        <copyright>Ayende Rahien</copyright>
        <managingEditor>Ayende@ayende.com</managingEditor>
        <generator>Subtext Version 2.0.0.0</generator>
        <item>
            <title>What am I missing? MSMQ Perf Issue</title>
            <link>http://ayende.com/Blog/archive/2009/10/18/what-am-i-missing-msmq-perf-issue.aspx</link>
            <description>&lt;p&gt;I am getting some strange perf numbers from MSMQ, and I can’t quite figure out what is going on here.&lt;/p&gt;  &lt;p&gt;The scenario is simple, I have a process reading from queue 1 and writing to queue 2. But performance isn’t anywhere near where I think it should be.&lt;/p&gt;  &lt;p&gt;In my test scenario, I have queue 1 filled with 10,000 messages, each about 1.5 Kb in size. My test code does a no op move between the queues. Both queues are transactional.&lt;/p&gt;  &lt;p&gt;Here is the code:&lt;/p&gt;  &lt;blockquote&gt;   &lt;div id="codeSnippetWrapper"&gt;     &lt;pre id="codeSnippet" class="csharpcode"&gt;&lt;span class="kwrd"&gt;private&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;void&lt;/span&gt; CopyData()&lt;br /&gt;{&lt;br /&gt;    var q1 = &lt;span class="kwrd"&gt;new&lt;/span&gt; MessageQueue(&lt;span class="str"&gt;@".\private$\test_queue1"&lt;/span&gt;);&lt;br /&gt;    var q2 = &lt;span class="kwrd"&gt;new&lt;/span&gt; MessageQueue(&lt;span class="str"&gt;@".\private$\test_queue2"&lt;/span&gt;);&lt;br /&gt;    q2.Purge();&lt;br /&gt;    var sp = Stopwatch.StartNew();&lt;br /&gt;    &lt;span class="kwrd"&gt;while&lt;/span&gt; (&lt;span class="kwrd"&gt;true&lt;/span&gt;)&lt;br /&gt;    {&lt;br /&gt;        &lt;span class="kwrd"&gt;using&lt;/span&gt; (var msmqTx = &lt;span class="kwrd"&gt;new&lt;/span&gt; MessageQueueTransaction())&lt;br /&gt;        {&lt;br /&gt;            msmqTx.Begin();&lt;br /&gt;&lt;br /&gt;            Message message;&lt;br /&gt;            &lt;span class="kwrd"&gt;try&lt;/span&gt;&lt;br /&gt;            {&lt;br /&gt;                message = q1.Receive(TimeSpan.FromMilliseconds(0), msmqTx);&lt;br /&gt;            }&lt;br /&gt;            &lt;span class="kwrd"&gt;catch&lt;/span&gt; (MessageQueueException e)&lt;br /&gt;            {&lt;br /&gt;                Console.WriteLine(e);&lt;br /&gt;                &lt;span class="kwrd"&gt;break&lt;/span&gt;;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            q2.Send(message, msmqTx);&lt;br /&gt;&lt;br /&gt;            msmqTx.Commit();&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;    Console.WriteLine(&lt;span class="str"&gt;"{0:#,#}"&lt;/span&gt;, sp.ElapsedMilliseconds);&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;

&lt;p&gt;Using this code, it takes&lt;strong&gt; 236.8&lt;/strong&gt; &lt;em&gt;seconds&lt;/em&gt; to move 10,000 messages. If I use System.Transactions, instead of MSMQ’s internal transactions, I get comparable speeds.&lt;/p&gt;

&lt;p&gt;Just to give you an idea, this is about 40 messages a second, this number is ridiculously low.&lt;/p&gt;

&lt;p&gt;Changing the code so each operation is a separate transaction, like this:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;div id="codeSnippetWrapper"&gt;
    &lt;pre id="codeSnippet" class="csharpcode"&gt;&lt;span class="kwrd"&gt;private&lt;/span&gt; &lt;span class="kwrd"&gt;static&lt;/span&gt; &lt;span class="kwrd"&gt;void&lt;/span&gt; CopyData()&lt;br /&gt;{&lt;br /&gt;    var q1 = &lt;span class="kwrd"&gt;new&lt;/span&gt; MessageQueue(&lt;span class="str"&gt;@".\private$\test_queue1"&lt;/span&gt;);&lt;br /&gt;    var q2 = &lt;span class="kwrd"&gt;new&lt;/span&gt; MessageQueue(&lt;span class="str"&gt;@".\private$\test_queue2"&lt;/span&gt;);&lt;br /&gt;    q2.Purge();&lt;br /&gt;    var sp = Stopwatch.StartNew();&lt;br /&gt;    &lt;span class="kwrd"&gt;while&lt;/span&gt; (&lt;span class="kwrd"&gt;true&lt;/span&gt;)&lt;br /&gt;    {&lt;br /&gt;&lt;br /&gt;        Message message;&lt;br /&gt;        &lt;span class="kwrd"&gt;try&lt;/span&gt;&lt;br /&gt;        {&lt;br /&gt;            message = q1.Receive(TimeSpan.FromMilliseconds(0), MessageQueueTransactionType.Single);&lt;br /&gt;        }&lt;br /&gt;        &lt;span class="kwrd"&gt;catch&lt;/span&gt; (MessageQueueException e)&lt;br /&gt;        {&lt;br /&gt;            Console.WriteLine(e);&lt;br /&gt;            &lt;span class="kwrd"&gt;break&lt;/span&gt;;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        q2.Send(message, MessageQueueTransactionType.Single);&lt;br /&gt;    }&lt;br /&gt;    Console.WriteLine(&lt;span class="str"&gt;"{0:#,#}"&lt;/span&gt;, sp.ElapsedMilliseconds);&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;

&lt;p&gt;Means that it takes 16.3 seconds, or about 600 messages per second, which is far closer to what I would expect.&lt;/p&gt;

&lt;p&gt;This is on a quad core machine 8 GB RAM (4 GB free), so I don’t think that it is the machine that is causing the problem. I can see similar results on other machines as well.&lt;/p&gt;

&lt;p&gt;Am I missing something? Is there something in my code that is wrong? &lt;/p&gt;&lt;img src="http://ayende.com/Blog/aggbug/11177.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ayende Rahien</dc:creator>
            <guid>http://ayende.com/Blog/archive/2009/10/18/what-am-i-missing-msmq-perf-issue.aspx</guid>
            <pubDate>Sun, 18 Oct 2009 09:24:00 GMT</pubDate>
            <comments>http://ayende.com/Blog/archive/2009/10/18/what-am-i-missing-msmq-perf-issue.aspx#feedback</comments>
            <slash:comments>37</slash:comments>
            <wfw:commentRss>http://ayende.com/Blog/comments/commentRss/11177.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Rhino Queues feature: detecting message failures</title>
            <link>http://ayende.com/Blog/archive/2009/04/06/rhino-queues-feature-detecting-message-failures.aspx</link>
            <description>&lt;p&gt;One of the more annoying problems with async messaging is that you have no way of knowing if the destination that you are sending to is up or not. Well, that is also one of the major advantages, of course. It gets annoying, however, when you need to be able to respond to node failure in a more proactive manner. There are ways around that, usually with message replies, heartbeats or timeouts, but they tend to be complex, and they also tend to be visible for the actual application.&lt;/p&gt; &lt;p&gt;I just added a very small feature for Rhino Queues that would let you know whenever we have failed to send a message to its destination. Note that failing to send the message to the destination doesn't really mean much, Rhino Queues will retry sending the message in increasing intervals for about 3 days. In fact, here is the retry schedule for a message before it is considered dead:&lt;/p&gt; &lt;table class="MsoTableMediumShading2Accent6" style="border-right: medium none; border-top: medium none; border-left: medium none; width: 194pt; border-bottom: medium none; border-collapse: collapse; mso-border-top-alt: solid windowtext 2.25pt; mso-border-bottom-alt: solid windowtext 2.25pt; mso-yfti-tbllook: 1184; mso-padding-alt: 0in 5.4pt 0in 5.4pt" cellspacing="0" cellpadding="0" width="261" border="1"&gt; &lt;tbody&gt; &lt;tr style="height: 15pt; mso-yfti-irow: -1; mso-yfti-firstrow: yes"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: windowtext 2.25pt solid; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: windowtext 2.25pt solid; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; mso-yfti-cnfc: 517"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;Retry&lt;?xml:namespace prefix = o /?&gt;&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: windowtext 2.25pt solid; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: windowtext 2.25pt solid; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; mso-yfti-cnfc: 1"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;Delay&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: windowtext 2.25pt solid; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: windowtext 2.25pt solid; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; mso-yfti-cnfc: 1"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;Time&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 0"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:00:00&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:00:00&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 1"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:00:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:00:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 2"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:00:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:00:05&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 3"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;3&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:00:09&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:00:14&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 4"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:00:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:00:30&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 5"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;5&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:00:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:00:55&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 6"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;6&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:00:36&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:01:31&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 7"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;7&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:00:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:02:20&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 8"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;8&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:01:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:03:24&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 9"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;9&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:01:21&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:04:45&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 10"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;10&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:01:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:06:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 11"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;11&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:02:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:08:26&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 12"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;12&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:02:24&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:10:50&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 13"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;13&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:02:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:13:39&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 14"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;14&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:03:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:16:55&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 15"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;15&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:03:45&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:20:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 16"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;16&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:04:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:24:56&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 17"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;17&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:04:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:29:45&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 18"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;18&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:05:24&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:35:09&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 19"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;19&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:06:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:41:10&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 20"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;20&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:06:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:47:50&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 21"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;21&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:07:21&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 00:55:11&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 22"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;22&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:08:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 01:03:15&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 23"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;23&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:08:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 01:12:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 24"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;24&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:09:36&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 01:21:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 25"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;25&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:10:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 01:32:05&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 26"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;26&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:11:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 01:43:21&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 27"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;27&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:12:09&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 01:55:30&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 28"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;28&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:13:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 02:08:34&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 29"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;29&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:14:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 02:22:35&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 30"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;30&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:15:00&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 02:37:35&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 31"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;31&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:16:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 02:53:36&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 32"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;32&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:17:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 03:10:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 33"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;33&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:18:09&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 03:28:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 34"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;34&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:19:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 03:48:05&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 35"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;35&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:20:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 04:08:30&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 36"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;36&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:21:36&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 04:30:06&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 37"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;37&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:22:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 04:52:55&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 38"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;38&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:24:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 05:16:59&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 39"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;39&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:25:21&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 05:42:20&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 40"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;40&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:26:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 06:09:00&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 41"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;41&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:28:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 06:37:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 42"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;42&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:29:24&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 07:06:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 43"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;43&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:30:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 07:37:14&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 44"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;44&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:32:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 08:09:30&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 45"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;45&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:33:45&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 08:43:15&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 46"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;46&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:35:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 09:18:31&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 47"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;47&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:36:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 09:55:20&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 48"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;48&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:38:24&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 10:33:44&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 49"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;49&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:40:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 11:13:45&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 50"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;50&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:41:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 11:55:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 51"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;51&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:43:21&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 12:38:46&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 52"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;52&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:45:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 13:23:50&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 53"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;53&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:46:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 14:10:39&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 54"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;54&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:48:36&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 14:59:15&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 55"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;55&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:50:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 15:49:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 56"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;56&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:52:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 16:41:56&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 57"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;57&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:54:09&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 17:36:05&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 58"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;58&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:56:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 18:32:09&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 59"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;59&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;0:58:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 19:30:10&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 60"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;60&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:00:00&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 20:30:10&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 61"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;61&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:02:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 21:32:11&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 62"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;62&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:04:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 22:36:15&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 63"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;63&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:06:09&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/6/2009 23:42:24&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 64"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;64&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:08:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 00:50:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 65"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;65&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:10:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 02:01:05&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 66"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;66&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:12:36&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 03:13:41&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 67"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;67&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:14:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 04:28:30&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 68"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;68&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:17:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 05:45:34&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 69"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;69&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:19:21&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 07:04:55&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 70"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;70&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:21:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 08:26:35&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 71"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;71&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:24:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 09:50:36&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 72"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;72&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:26:24&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 11:17:00&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 73"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;73&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:28:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 12:45:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 74"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;74&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:31:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 14:17:05&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 75"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;75&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:33:45&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 15:50:50&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 76"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;76&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:36:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 17:27:06&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 77"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;77&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:38:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 19:05:55&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 78"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;78&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:41:24&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 20:47:19&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 79"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;79&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:44:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/7/2009 22:31:20&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 80"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;80&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:46:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 00:18:00&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 81"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;81&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:49:21&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 02:07:21&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 82"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;82&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:52:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 03:59:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 83"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;83&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:54:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 05:54:14&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 84"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;84&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;1:57:36&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 07:51:50&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 85"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;85&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:00:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 09:52:15&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 86"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;86&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:03:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 11:55:31&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 87"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;87&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:06:09&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 14:01:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 88"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;88&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:09:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 16:10:44&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 89"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;89&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:12:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 18:22:45&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 90"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;90&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:15:00&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 20:37:45&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 91"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;91&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:18:01&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/8/2009 22:55:46&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 92"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;92&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:21:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/9/2009 01:16:50&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 93"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;93&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:24:09&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/9/2009 03:40:59&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 94"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;94&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:27:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/9/2009 06:08:15&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 95"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;95&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:30:25&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/9/2009 08:38:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 96"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;96&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:33:36&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/9/2009 11:12:16&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 97"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;97&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:36:49&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/9/2009 13:49:05&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 98"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;98&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:40:04&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/9/2009 16:29:09&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 99"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 4" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;99&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:43:21&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: medium none; height: 15pt" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/9/2009 19:12:30&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr style="height: 15pt; mso-yfti-irow: 100; mso-yfti-lastrow: yes"&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #f79646; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: windowtext 2.25pt solid; height: 15pt; mso-background-themecolor: accent6" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 68" align="right"&gt;&lt;b&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;100&lt;o:p /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 48pt; padding-top: 0in; border-bottom: windowtext 2.25pt solid; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="64"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;2:46:40&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt; &lt;td style="border-right: medium none; padding-right: 5.4pt; border-top: medium none; padding-left: 5.4pt; background: #d8d8d8; padding-bottom: 0in; border-left: medium none; width: 98pt; padding-top: 0in; border-bottom: windowtext 2.25pt solid; height: 15pt; mso-background-themecolor: background1; mso-background-themeshade: 216" valign="top" nowrap="" width="131"&gt; &lt;p class="MsoNormal" style="margin-bottom: 0pt; line-height: normal; text-align: right; mso-yfti-cnfc: 64" align="right"&gt;&lt;span style="color: black; mso-ascii-font-family: calibri; mso-fareast-font-family: 'Times New Roman'; mso-hansi-font-family: calibri; mso-bidi-font-family: 'Times New Roman'"&gt;4/9/2009 21:59:10&lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p&gt;This new feature doesn't impact this, it will simply tell you whenever a send failure has occurred. This lets you build more sophisticated error handling strategies around that. You will probably want to wait for several consecutive failures of the same endpoint before deciding to do something about it, of course, but the capability is there.&lt;/p&gt;&lt;img src="http://ayende.com/Blog/aggbug/10844.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ayende Rahien</dc:creator>
            <guid>http://ayende.com/Blog/archive/2009/04/06/rhino-queues-feature-detecting-message-failures.aspx</guid>
            <pubDate>Mon, 06 Apr 2009 18:02:04 GMT</pubDate>
            <comments>http://ayende.com/Blog/archive/2009/04/06/rhino-queues-feature-detecting-message-failures.aspx#feedback</comments>
            <slash:comments>4</slash:comments>
            <wfw:commentRss>http://ayende.com/Blog/comments/commentRss/10844.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Rhino Queues, Take 6</title>
            <link>http://ayende.com/Blog/archive/2009/04/03/rhino-queues-take-6.aspx</link>
            <description>&lt;p&gt;As I stated before, I started writing a queuing system a few days ago, loosely based on my previous efforts in this area, but aimed to create a production ready queuing infrastructure that I can use in my own applications. The decision to build this was not made lightly, but I wanted a queuing system that met my needs, and was flexible enough to extend at needs. &lt;/p&gt;  &lt;p&gt;The design goals stated for Rhino Queues were:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;XCopy deployable &lt;/li&gt;    &lt;li&gt;Zero configuration &lt;/li&gt;    &lt;li&gt;Durable &lt;/li&gt;    &lt;li&gt;Supports System.Transactions &lt;/li&gt;    &lt;li&gt;Works well with Load Balancing hardware &lt;/li&gt;    &lt;li&gt;Supports sub queues &lt;/li&gt;    &lt;li&gt;Support arbitrarily large messages &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;It is now &lt;a href="https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk/queues"&gt;publically available&lt;/a&gt;, and I think it deserve some discussion.&lt;/p&gt;  &lt;p&gt;Here is a very simple example of using it:&lt;/p&gt;  &lt;div&gt;   &lt;pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, 'Courier New', courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"&gt;&lt;span style="color: #0000ff"&gt;var&lt;/span&gt; queueManager = &lt;span style="color: #0000ff"&gt;new&lt;/span&gt; QueueManager(&lt;span style="color: #0000ff"&gt;new&lt;/span&gt; IPEndPoint(IPAddress.Loopback, 2200), &lt;span style="color: #006080"&gt;"queues.esent"&lt;/span&gt;);
queueManager.CreateQueues(&lt;span style="color: #006080"&gt;"Web"&lt;/span&gt;);
&lt;span style="color: #0000ff"&gt;var&lt;/span&gt; queue = queueManager.GetQueue(&lt;span style="color: #006080"&gt;"Web"&lt;/span&gt;);

&lt;span style="color: #0000ff"&gt;while&lt;/span&gt;(ContinueProcessing)
{
    &lt;span style="color: #0000ff"&gt;using&lt;/span&gt;(&lt;span style="color: #0000ff"&gt;var&lt;/span&gt; tx = &lt;span style="color: #0000ff"&gt;new&lt;/span&gt; TransactionScope())
    {
        &lt;span style="color: #0000ff"&gt;var&lt;/span&gt; msg = queue.Receive();
        Console.WriteLine(&lt;span style="color: #006080"&gt;"Message from {0}:"&lt;/span&gt;, msg.Headers[&lt;span style="color: #006080"&gt;"source"&lt;/span&gt;]);
        Console.WriteLine(Encoding.Unicode.GetString(msg.Data));
        tx.Complete();
    }
}&lt;/pre&gt;
&lt;/div&gt;

&lt;p&gt;This example is merely to show the API.&lt;/p&gt;

&lt;p&gt;The actual software is pretty interesting. Communication between different queues are done using TCP, with a protocol that works well with load balancing hardware, making load balancing queued application as easy as balancing any HTTP based app.&lt;/p&gt;

&lt;p&gt;You cannot see it in the API example, but the system is supporting System.Transactions fully, so sending a message is delayed until a transaction is committed, and receipt of a message would be rolled back on transaction rollback. We even support recovery after a hard crash, by plugging into the recovery mechanism that MSDTC offers us. &lt;/p&gt;

&lt;p&gt;All messages are durable, so a system reboot will not remove them. While the default mode for Rhino Queues is an embedded component in your application (XCopy deployable), we still support the ability to deliver a message to a server that is down, by implementing a fairly flexible message retry mechanism.&lt;/p&gt;

&lt;p&gt;Because Rhino Service Bus makes such a heavy use of this, we are also support sub queues, and we have no hard limit on the size of messages that we can deliver.&lt;/p&gt;

&lt;p&gt;I delayed announcing this until I could finish integrating this completely into Rhino Service Bus, but this is now done, and should just work. Rhino Service Bus will still supports MSMQ, but I think that a lot of the work that we are going to do now on Rhino Service Bus would be with the new queuing infrastructure.&lt;/p&gt;&lt;img src="http://ayende.com/Blog/aggbug/10842.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ayende Rahien</dc:creator>
            <guid>http://ayende.com/Blog/archive/2009/04/03/rhino-queues-take-6.aspx</guid>
            <pubDate>Thu, 02 Apr 2009 23:06:58 GMT</pubDate>
            <comments>http://ayende.com/Blog/archive/2009/04/03/rhino-queues-take-6.aspx#feedback</comments>
            <slash:comments>28</slash:comments>
            <wfw:commentRss>http://ayende.com/Blog/comments/commentRss/10842.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Introducing Rhino Queues</title>
            <link>http://ayende.com/Blog/archive/2009/04/01/introducing-rhino-queues.aspx</link>
            <description>&lt;p&gt;After running into a spate of problems with MSMQ, and following my &lt;a href="http://ayende.com/Blog/archive/2009/04/01/saying-goodbye-to-proprietary-software.aspx"&gt;previous decision&lt;/a&gt;, I decided that I might as well bite the bullet and do what I usually do, write my own. I have looked into other queuing systems, and all of them has something in them that precluded me from using them. And not, that something wasn’t “I didn’t write them”, whatever &lt;em&gt;some people&lt;/em&gt; may think.&lt;/p&gt;  &lt;p&gt;I have the advantage of writing Rhino Queues 5 times already, but this time I am setting up with a set of new goals. I intend to unveil my creation soon, but for now, I thought it would be a good idea to talk a bit about the features that I intend to build.&lt;/p&gt;  &lt;p&gt;Rhino Queues is a queuing system that is:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;XCopy deployable&lt;/li&gt;    &lt;li&gt;Zero configuration&lt;/li&gt;    &lt;li&gt;Durable&lt;/li&gt;    &lt;li&gt;Supports System.Transactions&lt;/li&gt;    &lt;li&gt;Works well with Load Balancing hardware&lt;/li&gt;    &lt;li&gt;Supports sub queues&lt;/li&gt;    &lt;li&gt;Support arbitrarily large messages&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;I’ll talk about this in more details when I can actually show working code (which would be in a bit)…&lt;/p&gt;&lt;img src="http://ayende.com/Blog/aggbug/10839.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ayende Rahien</dc:creator>
            <guid>http://ayende.com/Blog/archive/2009/04/01/introducing-rhino-queues.aspx</guid>
            <pubDate>Wed, 01 Apr 2009 18:28:47 GMT</pubDate>
            <comments>http://ayende.com/Blog/archive/2009/04/01/introducing-rhino-queues.aspx#feedback</comments>
            <slash:comments>11</slash:comments>
            <wfw:commentRss>http://ayende.com/Blog/comments/commentRss/10839.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Solving problems with messaging: Creating a new user</title>
            <link>http://ayende.com/Blog/archive/2009/02/22/solving-problems-with-messaging-creating-a-new-user.aspx</link>
            <description>&lt;p&gt;Another example, which is naturally asynchronous, is the way most web sites create a new user. This is done in a two stage process. First, the user fills in their details and initial validation is done on the user information (most often, that we have no duplicate user names).&lt;/p&gt;  &lt;p&gt;Then, we send an email to the user and ask them to validate their email address. It is only when they validate their account that we will create a real user and let them login into the system. If a certain period of time elapsed (24 hours to a few days, usually), we need to delete any action that we perform and make that user name available again.&lt;/p&gt;  &lt;p&gt;When we want to solve the problem with messaging, we run into an interesting problem. The process of creating the user is a multi message process, in which we have to maintain the current state. Not only that, but we also need to deal with the timing issues build into this problem.&lt;/p&gt;  &lt;p&gt;It gets a bit more interesting when you consider the cohesiveness of the problem. Let us consider a typical implementation.&lt;/p&gt;  &lt;p&gt;First, we have the issue of the CreateUser page:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_2.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="274" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_thumb.png" width="364" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Then we have the process of actually validating the user:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_4.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="217" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_thumb_1.png" width="359" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;And, lest us forget, we have a scheduled job to remove expired user account reservations:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_6.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="166" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_thumb_2.png" width="470" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;We have the logic for this single feature scattered across three different places, which execute in different times, and likely reside in different projects.&lt;/p&gt;  &lt;p&gt;Not only that, but if we want to make the experience pleasant for the user, we have a &lt;em&gt;lot&lt;/em&gt; to deal with. Sending an email is &lt;em&gt;slow&lt;/em&gt;. You don’t want to put this as a part of synchronous process, if only because of the latency it will add to showing a response to the user. It is also an unreliable process. And we haven’t even started to discuss error handling yet.&lt;/p&gt;  &lt;p&gt;For that matter, sending an email is not something that you should just new an SmtpClient for. You have to make sure that someone doesn’t use your CreateUser page to bomb someone else’s mailbox, you need to keep track of emails for regulatory reasons, you need to detect invalid emails (from SMTP response), etc. &lt;/p&gt;  &lt;p&gt;Let us see how we can do this with async messaging, first we will tackle the register user and send an email to validate their email:&lt;/p&gt;  &lt;p /&gt;  &lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_10.png"&gt;&lt;img title="image" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="634" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_thumb_4.png" width="1044" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;When the user click on the link in their email, we have the following set of interactions:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_12.png"&gt;&lt;img title="image" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="754" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_thumb_5.png" width="1044" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;And, of course, we need to expire the reserved username:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_14.png"&gt;&lt;img title="image" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="370" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/SolvingproblemswithmessagingCreatinganew_AC81/image_thumb_6.png" width="540" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;In the diagrams, everything that happens in the App Server is happening inside the context of a single saga. This is a single class that manages all the logic relating to the creation of a new user. That is good in itself, but I gain a few other things from this approach.&lt;/p&gt;  &lt;p&gt;Robustness from errors and &lt;em&gt;fast&lt;/em&gt; response times are one thing, of course, but there are other things that I am not touching here. In the previous example, I have shown a very simplistic approach to handling the behavior, where everything is happening inline. This is done because, frankly, I didn’t have the time to sit and draw all the pretty boxes for the sync example. &lt;/p&gt;  &lt;p&gt;In the real world, we would want to have pretty much the same separation in the sync example as well. And now we are running into even more “interesting” problems. Especially if we started out with everything running locally. The sync model make it really hard to ignore the fallacies of distributed computing. The async model put them in your face, and make you deal with them explicitly.&lt;/p&gt;  &lt;p&gt;The level of complexity that you have to deal with with async messaging remains more or less constant when you try to bring the issues of scalability, fault tolerance and distribution. They most certainly do &lt;em&gt;not &lt;/em&gt;stay the same when you have sync model.&lt;/p&gt;  &lt;p&gt;Another advantage of this approach is that we are using the actor model, which make it very explicit who is doing what and why, and allow us to work on all of those in an independent fashion.&lt;/p&gt;  &lt;p&gt;The end result is a system compromised of easily disassembled parts. It is easy to understand what is going on because the interactions between the parts of the system are explicit, understood and not easily bypassed.&lt;/p&gt;&lt;img src="http://ayende.com/Blog/aggbug/10800.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ayende Rahien</dc:creator>
            <guid>http://ayende.com/Blog/archive/2009/02/22/solving-problems-with-messaging-creating-a-new-user.aspx</guid>
            <pubDate>Sun, 22 Feb 2009 20:16:16 GMT</pubDate>
            <comments>http://ayende.com/Blog/archive/2009/02/22/solving-problems-with-messaging-creating-a-new-user.aspx#feedback</comments>
            <slash:comments>20</slash:comments>
            <wfw:commentRss>http://ayende.com/Blog/comments/commentRss/10800.aspx</wfw:commentRss>
        </item>
        <item>
            <title>The cost of messaging</title>
            <link>http://ayende.com/Blog/archive/2009/02/09/the-cost-of-messaging.aspx</link>
            <description>&lt;p&gt;Greg Young has a post about the &lt;a href="http://codebetter.com/blogs/gregyoung/archive/2009/02/09/cost.aspx"&gt;cost of messaging&lt;/a&gt;. I fully agree that the cost isn't going to be in the time that you are going to spend actually writing the message body. You are going to have a lot of those, and if you take more than a minute or two to write one, I am offering overpriced speed your typing courses.&lt;/p&gt; &lt;p&gt;The cost of messaging, and a very real one, comes when you need to understand the system. In a system where message exchange is the form of communication, it can be significantly harder to understand what is going on. For tightly coupled system, you can generally just follow the path of the code. But for messages?&lt;/p&gt; &lt;p&gt;When I publish a message, that is all I care about in the view of the current component. But in the view of the system? I sure as hell care about who is consuming it and what it is doing with it.&lt;/p&gt; &lt;p&gt;Usually, the very first feature in a system that I write is login a user. That is a good proof that all the systems are working.&lt;/p&gt; &lt;p&gt;We will ignore the UI and the actual backend for user storage for a second, let us thing about how we would deal with this issue if we had messaging in place? We have the &lt;a href="http://www.udidahan.com/2007/11/10/asynchronous-high-performance-login-for-web-farms/"&gt;following guidance&lt;/a&gt; from Udi about this exact topic. I am going to try to break it down even further.&lt;/p&gt; &lt;p&gt;We have the following components in the process. The user, the browser (distinct from the user), the web server and the authentication service. &lt;/p&gt;&lt;p&gt;We will start looking at how this approach works by seeing how system startup works. &lt;/p&gt;&lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/Thecostofmessaging_14FD1/image_2.png"&gt;&lt;img height="430" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/Thecostofmessaging_14FD1/image_thumb.png" width="440" border="0" /&gt;&lt;/a&gt;  &lt;/p&gt;&lt;p&gt;The web server asks the authentication service for the users. The authentication service send the web server all the users he is aware off. The web server then cache them internally. When a user try to login, we can now satisfy that request directly from our cache, without having to talk the the authentication service. This means that we have a fully local authentication story, which would be &lt;em&gt;blazingly&lt;/em&gt; fast. &lt;/p&gt;&lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/Thecostofmessaging_14FD1/image_4.png"&gt;&lt;img height="250" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/Thecostofmessaging_14FD1/image_thumb_1.png" width="660" border="0" /&gt;&lt;/a&gt;  &lt;/p&gt;&lt;p&gt;But what happens if we get a user that we don't have in the cache? (Maybe the user just registered and we weren't notified about it yet?). &lt;/p&gt;&lt;p&gt;We ask the authentication service whatever or not this is a valid user. But we don't wait for a reply. Instead, we send the browser the instruction to call us after a brief wait. The browser set this up using JavaScript. During that time, the authentication service respond, telling us that this is a valid user. We simply put this into the cache, the way we would handle all users updates. &lt;/p&gt;&lt;p&gt;Then the browser call us again (note that this is transparent to the user), and we have the information that we need, so we can successfully log them in: &lt;/p&gt;&lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/Thecostofmessaging_14FD1/image_6.png"&gt;&lt;img height="461" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/Thecostofmessaging_14FD1/image_thumb_2.png" width="726" border="0" /&gt;&lt;/a&gt;  &lt;/p&gt;&lt;p&gt;There is another scenario here, what happens if the user is &lt;em&gt;not&lt;/em&gt; valid. The first part of the scenario is identical, we ask the authentication service to tell us if this is valid or not. When the service reply that this is not a valid user, we cache that. When the browser call back to us, we can tell it that this is not a valid user. &lt;/p&gt;&lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/Thecostofmessaging_14FD1/image_8.png"&gt;&lt;img height="430" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/Thecostofmessaging_14FD1/image_thumb_3.png" width="660" border="0" /&gt;&lt;/a&gt;  &lt;/p&gt;&lt;p&gt;(Just to make things interesting, we also have to ensure that the invalid users cache will expire or has a limited size, because otherwise this is an invitation for DOS attack.) &lt;/p&gt;&lt;p&gt;Finally, we have the process of creating a new user in the application, which work in the following fashion: &lt;/p&gt;&lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/Thecostofmessaging_14FD1/image_10.png"&gt;&lt;img height="340" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/Thecostofmessaging_14FD1/image_thumb_4.png" width="660" border="0" /&gt;&lt;/a&gt;  &lt;/p&gt;&lt;p&gt;Now, I just took three pages to explain something that can be explained very easily using: &lt;/p&gt;&lt;ul&gt; &lt;li&gt;usp_CreateUser&lt;/li&gt; &lt;li&gt;usp_ValidateLogin&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Backed by the ACID guarantees of the database, those two stored procedures are &lt;em&gt;much&lt;/em&gt; simpler to reason about, explain and in general work with.&lt;/p&gt; &lt;p&gt;We have way more complexity to work with. And this complexity spans all layers, from the back end to the UI! My UI guys needs to know about async messaging!&lt;/p&gt; &lt;p&gt;Isn't this a bit extreme? Isn't this heavy weight? Isn't this utterly ridiculous?&lt;/p&gt; &lt;p&gt;Yes, it is, absolutely. The problem with the two SPs solution is that it would work beautifully for a simple scenario, but it creaks when start talking about the more complex ones.&lt;/p&gt; &lt;p&gt;Authentication is usually a heavy operation. ValidateLogin is not just doing a query. It is also recording stats, updating last login date, etc. It is also something that users will do frequently. It make sense to try to optimize that.&lt;/p&gt; &lt;p&gt;Once we leave the trivial solution area, we are face with a myriad of problems that the messaging solution solve. There is no chance of farm wide locks in the messaging solution, because there is never a lock taking place. There are no waiting threads in the messaging solution, because we never query anything but our own local state.&lt;/p&gt; &lt;p&gt;We can take the authentication service down for maintenance and the only thing that will be affected is new user registration. The entire &lt;em&gt;system&lt;/em&gt; is more robust.&lt;/p&gt; &lt;p&gt;Those are the tradeoffs that we have to deal with when we get to high complexity features. It make sense to start crafting them, instead of just assembling a solution.&lt;/p&gt; &lt;p&gt;Just stop and think about what it would require of you to understand how &lt;em&gt;logins&lt;/em&gt; work in the messaging system, vs. the two SP system. I don't think that anyone can argue that the messaging system is simpler to understand, and that is where the real cost is.&lt;/p&gt; &lt;p&gt;However, I think that you'll find that after getting used to the new approach, you'll find that it start making sense. Not only that, but it is fairly easy to see how to approach problems once you have started to get a feel for messaging.&lt;/p&gt;&lt;img src="http://ayende.com/Blog/aggbug/10773.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ayende Rahien</dc:creator>
            <guid>http://ayende.com/Blog/archive/2009/02/09/the-cost-of-messaging.aspx</guid>
            <pubDate>Mon, 09 Feb 2009 21:53:35 GMT</pubDate>
            <comments>http://ayende.com/Blog/archive/2009/02/09/the-cost-of-messaging.aspx#feedback</comments>
            <slash:comments>38</slash:comments>
            <wfw:commentRss>http://ayende.com/Blog/comments/commentRss/10773.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Msmq and troublesome API experience</title>
            <link>http://ayende.com/Blog/archive/2009/01/03/msmq-and-troublesome-api-experience.aspx</link>
            <description>&lt;p&gt;There is just &lt;em&gt;one&lt;/em&gt; thing in the Msmq API that I &lt;em&gt;hate&lt;/em&gt;.&lt;/p&gt; &lt;p&gt;If you try to send to a queue using the wrong transaction, it will silently &lt;em&gt;not&lt;/em&gt; send you message, but give absolutely no error.&lt;/p&gt; &lt;p&gt;This is incredibly error prone, and has caused me quite a number of bugs.&lt;/p&gt; &lt;p&gt;If at all possible, API should never silently fail. In this case, the API should throw an explicit argument exception, saying that this transaction is not valid for this queue.&lt;/p&gt; &lt;p&gt;That would make things &lt;em&gt;much&lt;/em&gt; simpler all around.&lt;/p&gt;&lt;img src="http://ayende.com/Blog/aggbug/10701.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ayende Rahien</dc:creator>
            <guid>http://ayende.com/Blog/archive/2009/01/03/msmq-and-troublesome-api-experience.aspx</guid>
            <pubDate>Sat, 03 Jan 2009 09:51:37 GMT</pubDate>
            <comments>http://ayende.com/Blog/archive/2009/01/03/msmq-and-troublesome-api-experience.aspx#feedback</comments>
            <slash:comments>5</slash:comments>
            <wfw:commentRss>http://ayende.com/Blog/comments/commentRss/10701.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Rhino Service Bus</title>
            <link>http://ayende.com/Blog/archive/2008/12/17/rhino-service-bus.aspx</link>
            <description>&lt;p&gt;First, I need to justify why I am doing this. In the past, I have evaluated both NServiceBus and Mass Transit, and I have created applications to try both of them up. Both code bases have enlightened me about the notions of messaging and how to make use of them. That said, they are both of much wider scope than I need right now, and that is hurting me. What do I mean by that?&lt;/p&gt; &lt;p&gt;Right now I am introducing a whole lot of concepts to a team, and I want to make sure that we have as few moving parts as possible.  If you go through the code, you'll see that I liberally stole from both ideas and code from Mass Transit and NServiceBus. My main goal was to get to a level with no configuration, no complexity, high degree of flexibility from design stand point, but a very rigid structure for the users. Along the way I also took care to try to build into this support for some concepts that I think are interesting (message interception, taking advantage of features in MSMQ 4.0, message modules, etc).&lt;/p&gt; &lt;p&gt;The current code base is tiny, ~2,550 lines of code, cohesive, and well designed (I believe). It doesn't do everything that NServiceBus or Mass Transit , but I think that it is an interesting project, and I intend to take it to production.&lt;/p&gt; &lt;p&gt;Some of the highlights:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;C# 3.0 &amp;amp; MSMQ 4.0 - taking advantage of features such as sub queues, async queue receiving.&lt;/li&gt; &lt;li&gt;Pluggable internal architecture.&lt;/li&gt; &lt;li&gt;Minimal moving parts, strongly opinionated.&lt;/li&gt; &lt;li&gt;Hard focus on developer productivity and ease of use.&lt;/li&gt; &lt;li&gt;Conventions, assertions and convictions.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Let me try to go over each item and explain what I mean in it.&lt;/p&gt; &lt;p&gt;I have the freedom to chose my platform for this project, and I decided to make as much use of the platform features as I can, to make my life easier. C# 3.0 makes a lot of tasks more pleasant, if only because of extension methods and the ability to filter using Where(), and I am quite addicted to var.&lt;/p&gt; &lt;p&gt;But probably more interesting is the use of MSMQ 4.0 sub queues, I am using them here to make sure that an endpoint is a consolidated unit. Take a look:&lt;/p&gt; &lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/RhinoServiceBus_9F43/image_2.png"&gt;&lt;img height="103" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/RhinoServiceBus_9F43/image_thumb.png" width="154" border="0" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Using this approach, subscriptions are stored in a sub queue of the current queue, and I can reroute errors to the error sub queue. This keeps everything in a single place, and simplify understanding what is actually going on in the application, not to mention that it keeps everything together (less queues, less places to check, less things can go wrong). Aysnc queue receiving is another different thing that I am doing. This allow me to avoid consuming application level threads when they are not needed, and defer this to the level of the OS.&lt;/p&gt; &lt;p&gt;The next two points are sort of contrary to one another. On the one hand, I have a &lt;em&gt;very&lt;/em&gt;  strong bias toward pluggable systems, but at the same time, I wanted to make something that requires very little from the user. That is, it should require very little configuration and a real effort to break. I solved that by creating they type of architecture that I generally do, but by making the public API as simple as possible:&lt;/p&gt; &lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/RhinoServiceBus_9F43/image_6.png"&gt;&lt;img height="244" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/RhinoServiceBus_9F43/image_thumb_2.png" width="451" border="0" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Startable service bus does just that, it allow you to start &amp;amp; dispose of the bus. The real interesting tidbits are in IServiceBus.&lt;/p&gt; &lt;p&gt;Subscribe and Unsubscribe should be pretty much self explanatory, I think. They let other endpoints know that you are are interested / not interested in a particular message type.&lt;/p&gt; &lt;p&gt;Send will send (bet you wouldn't figure that one out if I didn't told you!) a message to a particular end point, although you can (and probably will) just send a message, and the bus will figure out who the message owner on its own (one of the few pieces of configuration that I did put in).&lt;/p&gt; &lt;p&gt;Reply will send a message back to the originator of the message we are currently handling. If you aren't handling a message, it will throw.&lt;/p&gt; &lt;p&gt;Notify &amp;amp; Publish are very similar, both of them will publish the message to all interested subscribers, but they have one very different semantic. If you publish a message and it has no subscribers, it is considered an error, and it will throw. If you you use notify, it is expected that you might not have any subscribers. I find this distinction important enough that I wanted to capture this in the API.&lt;/p&gt; &lt;p&gt;AddInstanceSubscription is something that I am not sure that I like yet, although I can see why I would need it if I didn't have it. It allow a live instance to request to subscribe to messages from the bus. &lt;/p&gt; &lt;p&gt;One thing that you will notice is that there is absolutely no facility for request / reply here. At least, not to the same instance of the object. Actually, that is not accurate, you &lt;em&gt;can &lt;/em&gt;handle this scenario, but you would have to handle your own locking, I am not going to provide anything there for you. This is a scenario that I want to discourage.&lt;/p&gt; &lt;p&gt;Let us move from the bus to the actual message handlers. In Rhino ServiceBus, they are specified as:&lt;/p&gt; &lt;p&gt;&lt;a href="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/RhinoServiceBus_9F43/image_8.png"&gt;&lt;img height="259" alt="image" src="http://ayende.com/Blog/images/ayende_com/Blog/WindowsLiveWriter/RhinoServiceBus_9F43/image_thumb_3.png" width="691" border="0" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;A standard consumer for messages need to implement ConsumerOf&amp;lt;TMsg&amp;gt;, and that about it. The bus will automatically check the container for all types that match that, subscribe them to their destinations, and get ready to start processing messages. OccasionalConsumerOf&amp;lt;TMsg&amp;gt; is a way to tell the bus that we aren't really interested in automatically subscribing, Maybe we intend to use this using AddInstanceSubscription or maybe we want to programmatically control subscriptions.&lt;/p&gt; &lt;p&gt;InitiatedBy&amp;lt;TMsg&amp;gt; and Orchestrate&amp;lt;TMsg&amp;gt; are messages that drives sagas. I don't have much to say about them except that they work much the same way you would use them in NServiceBus or Mass Transit.&lt;/p&gt; &lt;p&gt;If you look at the API, you probably notice something interesting. A lot of the &lt;em&gt;concepts&lt;/em&gt; are very similar to the way NServiceBus handle them, but the some of the API (especially for message handlers) is much closer to Mass Transit.  As I mentioned, I dug deep into both of them before deciding to build my own. Much of the behavior is also modeled around the way NServiceBus works (transactional message interactions, auto roll backs on error, message handlers are not expected to deal with errors, auto retries, moving to error sub queue for administrator attention, etc).&lt;/p&gt; &lt;p&gt; Here is the configuration for an endpoint in the service bus:&lt;/p&gt; &lt;blockquote&gt;&lt;pre&gt;&lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;castle&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
  &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;facilities&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;facility&lt;/span&gt; &lt;span style="color: #ff0000"&gt;id&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"rhino.esb"&lt;/span&gt; &lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
      &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;bus&lt;/span&gt; &lt;span style="color: #ff0000"&gt;threadCount&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"1"&lt;/span&gt;
           &lt;span style="color: #ff0000"&gt;numberOfRetries&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"5"&lt;/span&gt;
           &lt;span style="color: #ff0000"&gt;endpoint&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"msmq://localhost/test_queue2"&lt;/span&gt;
             &lt;span style="color: #0000ff"&gt;/&amp;gt;&lt;/span&gt;
      &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;messages&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
        &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;add&lt;/span&gt; &lt;span style="color: #ff0000"&gt;assembly&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"Rhino.ServiceBus.Tests"&lt;/span&gt;
             &lt;span style="color: #ff0000"&gt;endpoint&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"msmq://localhost/test_queue"&lt;/span&gt;&lt;span style="color: #0000ff"&gt;/&amp;gt;&lt;/span&gt;
      &lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000"&gt;messages&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000"&gt;facility&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
  &lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000"&gt;facilities&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000"&gt;castle&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;/blockquote&gt;
&lt;p&gt;And in order to start the bus:&lt;/p&gt;
&lt;blockquote&gt;&lt;pre&gt;var container = &lt;span style="color: #0000ff"&gt;new&lt;/span&gt; WindsorContainer(&lt;span style="color: #0000ff"&gt;new&lt;/span&gt; XmlInterpreter());&lt;span style="color: #008000"&gt;// read config from app.config&lt;/span&gt;
container.Kernel.AddFacility("&lt;span style="color: #8b0000"&gt;rhino.esb&lt;/span&gt;", &lt;span style="color: #0000ff"&gt;new&lt;/span&gt; RhinoServiceBusFacility());&lt;span style="color: #008000"&gt;// wire up facility for rhino service bus&lt;/span&gt;
container.Register(
    AllTypes.FromAssembly(Assembly)
        .BasedOn(&lt;span style="color: #0000ff"&gt;typeof&lt;/span&gt;(IMessageConsumer))
    );

var bus = container.Resolve&amp;lt;IStartableServiceBus&amp;gt;();
bus.Start();&lt;/pre&gt;&lt;/blockquote&gt;
&lt;p&gt;And this is it, messages arrives at the test_queue2 endpoint will now be served.&lt;/p&gt;
&lt;p&gt;There &lt;em&gt;isn't&lt;/em&gt; any additional configuration, and every line of configuration here is something that an administrator is likely to want to change. Note that we pick up consumers automatically from the container, and we register them automatically. This is another step that I am doing in order to reduce the amount of things that you should worry about.&lt;/p&gt;
&lt;p&gt;I mentioned that I somehow had to resolve my own drive toward pluggable architecture and operational flexibility with the need to create a simple, standard way of doing things. I solved the problem making the code pluggable, but the RhinoServiceBusFacility has very strong opinions about how things should go, and it is responsible of setting the bus' policies.&lt;/p&gt;
&lt;p&gt;Another design goal was that this system should be extremely developer friendly. This means that I took the time to investigate and warn about as many failure paths as possible. For example, publishing without subscribers, which is something that happened to me in the past, and took me some time to figure out. I consider errors to be part of the user interface of a framework. Bad errors are a big problem, and can cause tremendous amount of time wastage along the way, just tracking down issues. &lt;/p&gt;
&lt;p&gt;No configuration is another, but there are a few others. For example, Rhino ServiceBus contains a logging mode in which all messaging activities can be sent to a separate queue, to allow us a time delayed view of what is actually going on. The serialization format on the wire is also human readable (xml, and heavily influenced by how NServiceBus's serialization format is built).&lt;/p&gt;
&lt;p&gt;Here is an example of a test message:&lt;/p&gt;
&lt;blockquote&gt;&lt;pre&gt;&lt;span style="color: #0000ff"&gt;&amp;lt;?&lt;/span&gt;xml version="1.0" encoding="utf-8"&lt;span style="color: #0000ff"&gt;?&amp;gt;&lt;/span&gt;
&lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;esb&lt;/span&gt;:&lt;span style="color: #800000"&gt;messages&lt;/span&gt; &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;esb&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"http://servicebus.hibernatingrhinos.com/2008/12/20/esb"&lt;/span&gt;
              &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;tests&lt;/span&gt;.&lt;span style="color: #ff0000"&gt;order&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"Rhino.ServiceBus.Tests.XmlSerializerTest+Order, Rhino.ServiceBus.Tests"&lt;/span&gt;
              &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;uri&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"uri"&lt;/span&gt;
              &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;int&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"int"&lt;/span&gt;
              &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;guid&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"guid"&lt;/span&gt;
              &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;datetime&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"datetime"&lt;/span&gt;
              &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;timespan&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"timespan"&lt;/span&gt;
              &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;array_of_tests&lt;/span&gt;.&lt;span style="color: #ff0000"&gt;orderline&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"Rhino.ServiceBus.Tests.XmlSerializerTest+OrderLine[], Rhino.ServiceBus.Tests"&lt;/span&gt;
              &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;tests&lt;/span&gt;.&lt;span style="color: #ff0000"&gt;orderline&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"Rhino.ServiceBus.Tests.XmlSerializerTest+OrderLine, Rhino.ServiceBus.Tests"&lt;/span&gt;
              &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;string&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"string"&lt;/span&gt;
              &lt;span style="color: #ff0000"&gt;xmlns&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;generic&lt;/span&gt;.&lt;span style="color: #ff0000"&gt;list_of_int&lt;/span&gt;=&lt;span style="color: #0000ff"&gt;"System.Collections.Generic.List`1[[System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
  &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;tests.order&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;Order&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;uri&lt;/span&gt;:&lt;span style="color: #800000"&gt;Url&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;msmq://www.ayende.com/&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;uri&lt;/span&gt;:&lt;span style="color: #800000"&gt;Url&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;Count&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;5&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;Count&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;guid&lt;/span&gt;:&lt;span style="color: #800000"&gt;OrderId&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;1909994f-8173-452c-a651-14725bb09cb6&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;guid&lt;/span&gt;:&lt;span style="color: #800000"&gt;OrderId&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;datetime&lt;/span&gt;:&lt;span style="color: #800000"&gt;At&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;2008-12-17T00:00:00.0000000&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;datetime&lt;/span&gt;:&lt;span style="color: #800000"&gt;At&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;timespan&lt;/span&gt;:&lt;span style="color: #800000"&gt;TimeToDelivery&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;P0Y0M1DT0H0M0S&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;timespan&lt;/span&gt;:&lt;span style="color: #800000"&gt;TimeToDelivery&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;array&lt;/span&gt;&lt;span style="color: #ff0000"&gt;_of_tests&lt;/span&gt;.&lt;span style="color: #ff0000"&gt;orderline&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;OrderLines&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
      &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;tests.orderline&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
        &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;string&lt;/span&gt;:&lt;span style="color: #800000"&gt;Product&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;milk&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;string&lt;/span&gt;:&lt;span style="color: #800000"&gt;Product&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
        &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;generic.list&lt;/span&gt;&lt;span style="color: #ff0000"&gt;_of_int&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;Fubar&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
          &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;1&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
          &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;2&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
          &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;3&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
        &lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000"&gt;generic.list&lt;/span&gt;_of_int:Fubar&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
      &lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000"&gt;tests.orderline&lt;/span&gt;:value&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
      &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;tests.orderline&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
        &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;string&lt;/span&gt;:&lt;span style="color: #800000"&gt;Product&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;butter&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;string&lt;/span&gt;:&lt;span style="color: #800000"&gt;Product&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
        &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000"&gt;generic.list&lt;/span&gt;&lt;span style="color: #ff0000"&gt;_of_int&lt;/span&gt;:&lt;span style="color: #ff0000"&gt;Fubar&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
          &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;4&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
          &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;5&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
          &lt;span style="color: #0000ff"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;6&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;int&lt;/span&gt;:&lt;span style="color: #800000"&gt;value&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
        &lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000"&gt;generic.list&lt;/span&gt;_of_int:Fubar&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
      &lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000"&gt;tests.orderline&lt;/span&gt;:value&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
    &lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000"&gt;array&lt;/span&gt;_of_tests.orderline:OrderLines&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
  &lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000"&gt;tests.order&lt;/span&gt;:Order&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color: #0000ff"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #c71585"&gt;esb&lt;/span&gt;:&lt;span style="color: #800000"&gt;messages&lt;/span&gt;&lt;span style="color: #0000ff"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;/blockquote&gt;
&lt;p&gt;That is pretty readable, I think. And yes, I am aware of the other million of XML serialization formats that are out there. I wanted something &lt;em&gt;readable&lt;/em&gt;, remember?&lt;/p&gt;
&lt;p&gt;Another common pain in the... knee with messaging systems is debugging. Usually you have a sender and a receiver, which communicate with one another via messaging, and trying to track down what is going on between them can be a pretty nasty issue. Frankly, I would much rather wish that I &lt;em&gt;didn't&lt;/em&gt; have to debug this, but that is not going to happen any time soon, so I wanted to create a good debugging experience. Rhino ServiceBus is hostable in any type process, and for development, I set it up so my web front end also host the back end, this make debugging through complex message flows pretty much seamless. &lt;/p&gt;
&lt;p&gt;Last, conventions and assertions. I have a very clear idea about what I want to do with this library, and the code reflects that. Things like making a distinction between publish and notify, or making it hard to do request reply are just part of that. Another is the notion of an endpoint as a fully independent unit, as you can see in the notion of subscriptions being part of a sub queue on the endpoint, rather than being backed by either a service (Mass Transit) or a separate queue or database based subscription storage (NServiceBus).&lt;/p&gt;
&lt;p&gt;And now we get to talk about convictions. Rhino ServiceBus will actively fight against you if you try to do things that you shouldn't. For example, if you try to send a batch of messages containing over 256 messages, it will fail. But more than that, if you try to send a message containing a &lt;em&gt;collection&lt;/em&gt; that has more than 256 items, it will also fail. In both cases, it will alert you to a problem with unbounded result set. The proper way to handle this scenario is to send several batches of messages. Then it is the job of the transport to ensure that they get to the destination in the appropriate fashion, and that is free to join them together if it really wants to.&lt;/p&gt;
&lt;p&gt;One final notion relates to the idea of service isolation. Right now, Rhino ServiceBus doesn't have an explicit notion about that, but it does let you run several services as part of the same process. I intend to take it a bit further once I finish polishing up the host, to the point where you can say that a service is an assembly, and you can host several of them (isolated to their own AppDomains) in the same process.&lt;/p&gt;
&lt;p&gt;But that is enough, I think. You can get the source in the usual place: &lt;/p&gt;
&lt;p&gt;&lt;a title="http://github.com/ayende/rhino-esb" href="http://github.com/ayende/rhino-esb"&gt;http://github.com/ayende/rhino-esb&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Some stats:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I started the project at about noon, Sunday. &lt;/li&gt;
&lt;li&gt;It has 36 commits so far, and I am already using it for a real project. &lt;/li&gt;
&lt;li&gt;2,550 lines of code.&lt;/li&gt;
&lt;li&gt;1,761 lines of tests&lt;/li&gt;
&lt;li&gt;86% test coverage in 81 tests&lt;/li&gt;
&lt;li&gt;C# 3.0&lt;/li&gt;
&lt;li&gt;MSMQ 4.0 - Vista or Windows Server 2008&lt;/li&gt;&lt;/ul&gt;&lt;img src="http://ayende.com/Blog/aggbug/10663.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ayende Rahien</dc:creator>
            <guid>http://ayende.com/Blog/archive/2008/12/17/rhino-service-bus.aspx</guid>
            <pubDate>Wed, 17 Dec 2008 07:37:18 GMT</pubDate>
            <comments>http://ayende.com/Blog/archive/2008/12/17/rhino-service-bus.aspx#feedback</comments>
            <slash:comments>34</slash:comments>
            <wfw:commentRss>http://ayende.com/Blog/comments/commentRss/10663.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>