<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: IsCommandAvailable causes nullref exception in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259305#M47662</link>
    <description>&lt;P&gt;I'll see whether I can get it running in Revit 2019 for you...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Sep 2018 08:00:46 GMT</pubDate>
    <dc:creator>jeremytammik</dc:creator>
    <dc:date>2018-09-11T08:00:46Z</dc:date>
    <item>
      <title>IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8258750#M47659</link>
      <description>&lt;P&gt;Ok, this is absolutely doing my head in as I have searched for countless examples all of which seem to suggest I'm not doing anything wrong... Basically, I just want to control the visibility/usability of my external command. Everywhere I've read suggests:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;namespace HERibbon
{
    // [Transaction(TransactionMode.Manual)]
    [Regeneration(RegenerationOption.Manual)]
    public class Availability : IExternalCommandAvailability
    {
        public bool IsCommandAvailable(UIApplication uiApp, CategorySet catSet)
        {
            // if (catSet.IsEmpty) return true;
            // if (uiApp.ActiveUIDocument.Document.IsFamilyDocument) return false;
            // if (uiApp.ActiveUIDocument.Document.IsModifiable) return true;
            return true;
        }
    }
    class App : IExternalApplication
    {
        static void AddRibbonPanel(UIControlledApplication application)
        {
            // Create the ribbon tab
            String tabName = @"H&amp;amp;E Tools";
            application.CreateRibbonTab(tabName);

            // Create the panels on that tab
            RibbonPanel rp_About = application.CreateRibbonPanel(tabName, "About");

            // Get our installation path
            string thisAssemblyPath = Assembly.GetExecutingAssembly().Location;

            // Add to the About Panel
            // About
            PushButtonData pbData_About = new PushButtonData("About", "Info", thisAssemblyPath, "HETools.About");
            // pbData_About.AvailabilityClassName = "HERibbon.Availability";
            PushButton pb_About = rp_About.AddItem(pbData_About) as PushButton;
            pb_About.ToolTip = @"H&amp;amp;E Tools version info.";
            BitmapImage image_About = new BitmapImage(new Uri(@"C:\Program Files\HETools\src\about.ico"));
            pb_About.LargeImage = image_About;
            pb_About.Image = image_About;
            pb_About.AvailabilityClassName = "HERibbon.Availability";
        }

        public Result OnStartup(UIControlledApplication application)
        {
            AddRibbonPanel(application);
            return Result.Succeeded;
        }

        public Result OnShutdown(UIControlledApplication application)
        {
            return Result.Succeeded;
        }
    }
}&lt;/PRE&gt;&lt;P&gt;The commented out code are combos I've tried to get this thing to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is when I select my tab on the ribbon when no document is open I get the following error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Capture.PNG" style="width: 386px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/544674iEDCF794C59EFE19E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Debug says the exception is thrown at the public bool IsCommandAvailable. If I comment out the class, my plugin works fine. Even with the&amp;nbsp;exception, the plugins still work once a project is opened, however, I need to fix this. My main plugin is a workshare enabler that I obviously can't have being run in the family editor (for example).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have literally tried copying and pasting&amp;nbsp;&lt;A href="http://www.revitapidocs.com/2015/c05acaf4-4cd9-8fd6-db06-44b22ae4f987.htm" target="_blank"&gt;this sample&lt;/A&gt;&amp;nbsp;and I still get a null ref error. I started from thebuildingcoder's zerodoc and am getting the same exception. I am absolutely out of ideas... has something changed in 2019?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 02:33:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8258750#M47659</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-11T02:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259236#M47660</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear John,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for your query.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Welcome to the digital world of programming.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Unfortunately, the computer will always just do what you tell it to.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Not what you want.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It normally takes a decade or two for a novice programmer to accept and get used to that hard fact.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Barring bugs in the libraries you use, of course, including and not limited to the Revit API.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Therefore, I personally prefer to DIY and just fight with my own bugs, whenever I can.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;First of all, debug your code step by step to discover exactly which line throws the exception, so you can identify the null reference culprit. That will probably clear the problem right away.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Next: have you looked at this old sample of mine?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2011/02/enable-ribbon-items-in-zero-document-state.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2011/02/enable-ribbon-items-in-zero-document-state.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If that does not help, I would suggest the next step: search globally for IExternalCommandAvailability in the official Revit SDK samples, then in The Building Coder blog, then on the Internet in general.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I am sure there is a really easy fix, which will be totally obvious once you discover it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Good luck!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 07:31:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259236#M47660</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-09-11T07:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259249#M47661</link>
      <description>&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. Per my post, I have debugged and the exception is thrown at the public bool.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And yes, again per my post, I have copied your example verbatim, and it threw the exact same error (hence me wondering if something has changed in 2019).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate the help.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 07:37:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259249#M47661</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-11T07:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259305#M47662</link>
      <description>&lt;P&gt;I'll see whether I can get it running in Revit 2019 for you...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 08:00:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259305#M47662</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-09-11T08:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259419#M47663</link>
      <description>&lt;P&gt;there is a setting in the addin-manifest file [ &lt;SPAN&gt;NotVisibleWhenNoActiveDocument&lt;/SPAN&gt; ] that will disable&amp;nbsp;your&amp;nbsp; button when there is no document!&lt;/P&gt;&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2010/05/addin-visibility-mode.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2010/05/addin-visibility-mode.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 08:58:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259419#M47663</guid>
      <dc:creator>FAIR59</dc:creator>
      <dc:date>2018-09-11T08:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259496#M47664</link>
      <description>&lt;P&gt;I migrated the ZeroDocPanel to Revit 2019 for you and encountered no problem with that whatsoever.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I debugged it, and the OnStartup and&amp;nbsp;&lt;SPAN&gt;IsCommandAvailable methods are both called just as expected.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The external command&amp;nbsp;is listed and can be executed&amp;nbsp;in the external tools menu in zero document state:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="zero_doc_button_2019.png" style="width: 937px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/544830i271D337EE3762ADA/image-size/large?v=v2&amp;amp;px=999" role="button" title="zero_doc_button_2019.png" alt="zero_doc_button_2019.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The command execution displays the task dialogue:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="zero_doc_cmd_msg_2019.png" style="width: 373px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/544832iB09C5B6B978F5305/image-size/large?v=v2&amp;amp;px=999" role="button" title="zero_doc_cmd_msg_2019.png" alt="zero_doc_cmd_msg_2019.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So your problem is elsewhere, and you can restart from scratch with my updated sample to avoid it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 09:23:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259496#M47664</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-09-11T09:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259505#M47665</link>
      <description>&lt;P&gt;Maybe you would like me to add the link?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/jeremytammik/ZeroDocPanel" target="_blank"&gt;https://github.com/jeremytammik/ZeroDocPanel&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 09:24:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259505#M47665</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-09-11T09:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259708#M47666</link>
      <description>&lt;P&gt;Here is the blog post pointing out the update and the new “ZeroDocPanel GitHub repository:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2018/09/support-dlls-zero-document-state-and-forge-accelerator-update.html#2" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2018/09/support-dlls-zero-document-state-and-forge-accelerator-update.html#2&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Sep 2018 10:51:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8259708#M47666</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-09-11T10:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8271323#M47667</link>
      <description>&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've downloaded your file, but haven't had the chance to implement it as yet (projects getting in the way). Given I&amp;nbsp;have tried copying your code verbatim, I suspect the problem may lay elsewhere. I'll try commenting&amp;nbsp;everything out and debugging one step at a time to see if I can isolate the cause.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do appreciate you taking the time to have a look.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FAIR59 re: manifest file - I'm aware of this, though it is limiting. The plugins I've written - and one I have planned - will require a bit more&amp;nbsp;flexibility. I'll need to get this working basically...&lt;/P&gt;</description>
      <pubDate>Sun, 16 Sep 2018 23:01:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8271323#M47667</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-16T23:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8271377#M47668</link>
      <description>&lt;P&gt;I don't know why, but for some reason changing the UIControlledApplication var name from "application" to "uiApp" inexplicably fixed the issue.&lt;/P&gt;&lt;PRE&gt;public bool IsCommandAvailable(UIApplication uiApp, CategorySet catSet)
static void AddRibbonPanel(UIControlledApplication application)
public Result OnStartup(UIControlledApplication application)
public Result OnShutdown(UIControlledApplication application)&lt;/PRE&gt;&lt;P&gt;Bizarre.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2018 00:46:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8271377#M47668</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-17T00:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: IsCommandAvailable causes nullref exception</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8271602#M47669</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear John,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for your confirmation and congratulations to hear it is working now, however bizarre the resolution.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2018 06:14:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/iscommandavailable-causes-nullref-exception/m-p/8271602#M47669</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-09-17T06:14:15Z</dc:date>
    </item>
  </channel>
</rss>

