<?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: iLogic rule all of a sudden not working in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329521#M90072</link>
    <description>&lt;P&gt;Cleared out temp folders. No luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code runs as in it looks for a spreadsheet. No error messages whatsoever.&lt;/P&gt;</description>
    <pubDate>Fri, 12 Oct 2018 05:06:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-10-12T05:06:41Z</dc:date>
    <item>
      <title>iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329239#M90064</link>
      <description>&lt;P&gt;Greetings all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been using an ilogic rule for some time without any issues. The code (see below) I got from Curtis Waguespacks's site from memory. A really good resource for productivity in my case; it writes data from a spreadsheet to the title block, labels etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All of a sudden it will no longer work! Any ideas on how to get this thing working again?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have not changed a thing - before you ask...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'Browse for the Excel file&lt;BR /&gt;Dim oFileDlg As inventor.FileDialog = Nothing&lt;BR /&gt;InventorVb.Application.CreateFileDialog(oFileDlg)&lt;BR /&gt;oFileDlg.Filter = "Excel Files (*.xls;*.xlsx)|*.xls;*.xlsx"&lt;BR /&gt;oFileDlg.DialogTitle = "Select a Project Information Excel File"&lt;BR /&gt;oFileDlg.InitialDirectory = ThisDoc.Path&lt;BR /&gt;oFileDlg.CancelError = True&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;oFileDlg.ShowOpen()&lt;BR /&gt;If Err.Number &amp;lt;&amp;gt; 0 Then&lt;BR /&gt;'exit if file not selected&lt;BR /&gt;Return&lt;BR /&gt;ElseIf oFileDlg.FileName &amp;lt;&amp;gt; "" Then&lt;BR /&gt;myXLS&amp;nbsp; = oFileDlg.FileName&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;'look at sheet1 of the spreadsheet&lt;BR /&gt;GoExcel.Open(myXLS, "Sheet1")&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Dim oName As String = GoExcel.CellValue("A1")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B1")&lt;BR /&gt;oName = GoExcel.CellValue("A2")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B2")&lt;BR /&gt;oName = GoExcel.CellValue("A3")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B3")&lt;BR /&gt;oName = GoExcel.CellValue("A4")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B4")&lt;BR /&gt;oName = GoExcel.CellValue("A5")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B5")&lt;BR /&gt;oName = GoExcel.CellValue("A6")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B6")&lt;BR /&gt;oName = GoExcel.CellValue("A7")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B7")&lt;BR /&gt;oName = GoExcel.CellValue("A8")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B8")&lt;BR /&gt;oName = GoExcel.CellValue("A9")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B9")&lt;BR /&gt;oName = GoExcel.CellValue("A10")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B10")&lt;BR /&gt;oName = GoExcel.CellValue("A11")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B11")&lt;BR /&gt;oName = GoExcel.CellValue("A12")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B12")&lt;BR /&gt;oName = GoExcel.CellValue("A13")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B13")&lt;BR /&gt;oName = GoExcel.CellValue("A14")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B14")&lt;BR /&gt;oName = GoExcel.CellValue("A15")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B15")&lt;BR /&gt;oName = GoExcel.CellValue("A16")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B16")&lt;BR /&gt;oName = GoExcel.CellValue("A17")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B17")&lt;BR /&gt;oName = GoExcel.CellValue("A18")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B18")&lt;BR /&gt;oName = GoExcel.CellValue("A19")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B19")&lt;BR /&gt;oName = GoExcel.CellValue("A20")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B20")&lt;BR /&gt;oName = GoExcel.CellValue("A21")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B21")&lt;BR /&gt;oName = GoExcel.CellValue("A22")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B22")&lt;BR /&gt;oName = GoExcel.CellValue("A23")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B23")&lt;BR /&gt;oName = GoExcel.CellValue("A24")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B24")&lt;BR /&gt;oName = GoExcel.CellValue("A25")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B25")&lt;BR /&gt;oName = GoExcel.CellValue("A26")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B26")&lt;BR /&gt;oName = GoExcel.CellValue("A27")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B27")&lt;BR /&gt;oName = GoExcel.CellValue("A28")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B28")&lt;BR /&gt;oName = GoExcel.CellValue("A29")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B29")&lt;BR /&gt;oName = GoExcel.CellValue("A30")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B30")&lt;BR /&gt;oName = GoExcel.CellValue("A31")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B31")&lt;BR /&gt;oName = GoExcel.CellValue("A32")&lt;BR /&gt;iProperties.Value("Custom", oName) = GoExcel.CellValue("B32")&lt;BR /&gt;GoExcel.Close&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 00:07:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329239#M90064</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-12T00:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329268#M90065</link>
      <description>&lt;P&gt;Hello&amp;nbsp;@Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Is there any automatically updates for the windows system or office 365 in your side?&lt;/P&gt;
&lt;P&gt;It appears that my office 365 automatically upgrade to 1809 version.&amp;nbsp;&lt;img id="smileymad" class="emoticon emoticon-smileymad" src="https://forums.autodesk.com/i/smilies/16x16_smiley-mad.png" alt="Smiley Mad" title="Smiley Mad" /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 513px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/556631iAEAE973DA98C8B19/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 01:01:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329268#M90065</guid>
      <dc:creator>Xun.Zhang</dc:creator>
      <dc:date>2018-10-12T01:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329356#M90066</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Not to state the obvious, but have you done a restart?&lt;/P&gt;&lt;P&gt;I am not saying that this is the issue in your case, but I speak from past experience, that when the rules suddenly stop working, a restart always fixes it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also something I discovered, clearing the temp folder solves quite a few issues.&lt;/P&gt;&lt;P&gt;Your code works on my system, but I am still running office 2010.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 01:55:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329356#M90066</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2018-10-12T01:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329366#M90067</link>
      <description>&lt;P&gt;I also am running office 2010. I have tried restarting a number of times; to no avail.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have Windows 10 updates turned off as last time it updated Inventor would not work!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will try clearing the temp folder when I get back to my laptop.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FYI; I'm using Inventor 2016 Pro.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 02:08:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329366#M90067</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-12T02:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329447#M90068</link>
      <description>&lt;P&gt;Hi! This could be Windows related. Somehow Inventor 2016 no longer can start an Excel process. Try this and see if the theory is true. Open any existing part and go to Manage -&amp;gt; Create iPart. Does it work? If yes, it could be iLogic specific. If it does not work, it means Inventor cannot kick off an Excel process. You might need to re-register Inventor. Try the two followings.&lt;/P&gt;
&lt;P&gt;1) Go to Control Panel -&amp;gt; Programs and Features -&amp;gt; find Inventor Pro 2016 -&amp;gt; right-click on it -&amp;gt; Uninstall/Change -&amp;gt; Repair Install.&lt;/P&gt;
&lt;P&gt;Does the iLogic rule run now?&lt;/P&gt;
&lt;P&gt;2) Go to command prompt -&amp;gt; cmd -&amp;gt; type "C:\Program Files\Autodesk\Inventor 2016\bin\Inventor.exe /install" and hit &amp;lt;Enter&amp;gt;. This will re-register Inventor 2016.&lt;/P&gt;
&lt;P&gt;Does it run now?&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 03:55:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329447#M90068</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2018-10-12T03:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329450#M90069</link>
      <description>&lt;P&gt;That's odd.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you able to shed some more light on the problem?&lt;/P&gt;&lt;P&gt;Are there any error messages?&lt;/P&gt;&lt;P&gt;Does some of the code run? (eg, start browsing for an excel file)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try and add some message boxes in the code to debug it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 03:57:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329450#M90069</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2018-10-12T03:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329452#M90070</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOL&lt;/P&gt;&lt;P&gt;Your post came in while I was typing a response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 03:59:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329452#M90070</guid>
      <dc:creator>rhasell</dc:creator>
      <dc:date>2018-10-12T03:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329507#M90071</link>
      <description>&lt;P&gt;'C:\Program' is not recognized as an internal or external command,&lt;BR /&gt;operable program or batch file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The control panel method did not work either.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 04:55:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329507#M90071</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-12T04:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329521#M90072</link>
      <description>&lt;P&gt;Cleared out temp folders. No luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code runs as in it looks for a spreadsheet. No error messages whatsoever.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 05:06:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8329521#M90072</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-12T05:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8330884#M90073</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tested this with Inventor 2017 and Windows 10, Office 365 Excel version 1809, build 10827.20138, and it works as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this example version of the code, it should give you a couple of messages that might help confirm that the rule is working, one showing the selected excel file, and one showing the resulting iProperty info. If those don't show the results expected then you might post back, and that might give a hint as to what the problem is.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note too that this example has an Update line at the end, this is needed when working with a title block to "refresh" the sheet and show that the custom iprops have changed, otherwise the drawing doesn't update when the rule has finished, but will on save, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;'Browse for the Excel file
Dim oFileDlg As inventor.FileDialog = Nothing
InventorVb.Application.CreateFileDialog(oFileDlg)
oFileDlg.Filter = "Excel Files (*.xls;*.xlsx)|*.xls;*.xlsx"
oFileDlg.DialogTitle = "Select a Project Information Excel File"
oFileDlg.InitialDirectory = ThisDoc.Path
oFileDlg.CancelError = True
On Error Resume Next
oFileDlg.ShowOpen()
If Err.Number &amp;lt;&amp;gt; 0 Then
'exit if file not selected
MessageBox.Show("Some Error Happened", "iLogic")
Return
ElseIf oFileDlg.FileName &amp;lt;&amp;gt; "" Then
myXLS  = oFileDlg.FileName
MessageBox.Show("Excel File = " &amp;amp; myXLS, "iLogic")
End If

'look at sheet1 of the spreadsheet
GoExcel.Open(myXLS, "Sheet1")


Dim oName As String = GoExcel.CellValue("A1")
iProperties.Value("Custom", oName) = GoExcel.CellValue("B1")
oString = iProperties.Value("Custom", oName)

oName = GoExcel.CellValue("A2")
iProperties.Value("Custom", oName) = GoExcel.CellValue("B2")
oString = oString &amp;amp; " | " &amp;amp; iProperties.Value("Custom", oName)

oName = GoExcel.CellValue("A3")
iProperties.Value("Custom", oName) = GoExcel.CellValue("B3")
oString = oString &amp;amp; " | " &amp;amp; iProperties.Value("Custom", oName)

GoExcel.Close

MessageBox.Show(oString, "iLogic")

InventorVb.DocumentUpdate()

&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 15:33:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8330884#M90073</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2018-10-12T15:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic rule all of a sudden not working</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8342002#M90223</link>
      <description>&lt;P&gt;Curtis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate the code you supplied, and apologies; I’ve had a bit on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your code works as in I get an iLogic dialog confirming the excel file: ‘Excel File =’ but unfortunately it still does not populate the title block after saving.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I remembered this week that I had office 365 on this laptop, which was giving me grief, so uninstalled it. Not sure if that would have effected anything, so I’ve since uninstalled and reinstalled Office 2010, but still the error exists.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Oct 2018 23:31:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-rule-all-of-a-sudden-not-working/m-p/8342002#M90223</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-17T23:31:56Z</dc:date>
    </item>
  </channel>
</rss>

