<?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: Field calculation for loop incremented by 1 in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724289#M41032</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In short....that is what the field calculator does... it provides the framework to loop through the rows and apply a function, which is also why it works on selections leaving the unselected untouched.&amp;nbsp; This would require a separate bit of code in itself to work with selections.&amp;nbsp; It does have its drawbacks,&amp;nbsp; like having to use globals to keep track of what has gone on in the previous row (ie a previous value).&amp;nbsp; &lt;/P&gt;&lt;P&gt;Sometimes the field calculator is just faster for simple things.&amp;nbsp; It only gets difficult when people try to push the envelop and get it to do things for which it wasn't designed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Feb 2016 18:54:51 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2016-02-25T18:54:51Z</dc:date>
    <item>
      <title>Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724276#M41019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have my attribute table sorted ascending according to my street names (Aprox. 1914 records). I need to make a new field that starts at 10,000 and increments by 1 until it is filled. Is there a way I can do this? I'm thinking of doing some loop that increments by one (because the default for loop in the field calculator repeats the same number) but I don't know how to do that. Any help? Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kimball Hansen&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2011 14:49:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724276#M41019</guid>
      <dc:creator>KimballHansen</dc:creator>
      <dc:date>2011-10-04T14:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724277#M41020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have my attribute table sorted ascending according to my street names (Aprox. 1914 records). I need to make a new field that starts at 10,000 and increments by 1 until it is filled. Is there a way I can do this? I'm thinking of doing some loop that increments by one (because the default for loop in the field calculator repeats the same number) but I don't know how to do that. Any help? Thanks.&lt;BR /&gt;&lt;BR /&gt;Kimball Hansen&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Not sure how you would do it in the field calculator, but you could create a script&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; updateTheRows = arcpy.UpdateCursor("C:\\Filename.shp","","","","AddressName A" ) #get the rows from the shapefile order by address ascending
&amp;nbsp;&amp;nbsp;&amp;nbsp; i = 0&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; for updateTheRow in updateTheRows:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; updateTheRow.setValue("FieldNameToUpdate",10000 + i)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; updateTheRows.updateRow(updateTheRow)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i= i+1

&amp;nbsp;&amp;nbsp;&amp;nbsp; del updateTheRow
&amp;nbsp;&amp;nbsp;&amp;nbsp; del updateTheRows
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:58:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724277#M41020</guid>
      <dc:creator>TerrySilveus</dc:creator>
      <dc:date>2021-12-12T06:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724278#M41021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks. I'm very new to python and scripts and don't understand how to begin with that code. Could you please give me a step by step example? Also, which variables are yours that I'm going to cut so I can paste mine? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kimball Hansen&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 17:16:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724278#M41021</guid>
      <dc:creator>KimballHansen</dc:creator>
      <dc:date>2011-10-05T17:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724279#M41022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Kimball I know how you feel about being new to python.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Go into your table, right click on the field you want to populate and go to field calculator.&amp;nbsp; Click the Python button on the top (default is VB).&amp;nbsp; Paste the code into the field calculator.&amp;nbsp; TPalmer already changed pStart to 10000 for you, but you can change that number to whatever starting number you need.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;rec=0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;def autoIncrement():&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; global rec&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; pStart = 10000 #adjust start value, if req'd &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; pInterval = 1 #adjust interval value, if req'd&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; if (rec == 0): &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; rec = pStart &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; else: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; rec = rec + pInterval &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; return rec&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;__esri_field_calculator_splitter__&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;autoIncrement().&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 20:12:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724279#M41022</guid>
      <dc:creator>TomMagdaleno</dc:creator>
      <dc:date>2011-10-05T20:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724280#M41023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I copied that code and when I run the Field Calculator I get an error. The error number is 000539 if that has any relevance to you. Does the field have to be a certain type? (I tried int and double and both didn't work). Or do all the records need to have zero or 1 first in them to us the code? I don't have any other guesses of what to do.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 21:38:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724280#M41023</guid>
      <dc:creator>KimballHansen</dc:creator>
      <dc:date>2011-10-05T21:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724281#M41024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I copied that code and when I run the Field Calculator I get an error. The error number is 000539 if that has any relevance to you. Does the field have to be a certain type? (I tried int and double and both didn't work). Or do all the records need to have zero or 1 first in them to us the code? I don't have any other guesses of what to do.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;There should have been a text message after the number, the text will be more useful to determine the issue, however make sure your indenting is correct for python and that Python is checked as the code type.&amp;nbsp; Python REQUIRES block indenting&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, I don't believe this code takes into account that you wanted the records numbered in address order.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2011 18:18:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724281#M41024</guid>
      <dc:creator>TerrySilveus</dc:creator>
      <dc:date>2011-10-06T18:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724282#M41025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;There should have been a text message after the number, the text will be more useful to determine the issue, however make sure your indenting is correct for python and that Python is checked as the code type.&amp;nbsp; Python REQUIRES block indenting&lt;BR /&gt;&lt;BR /&gt;However, I don't believe this code takes into account that you wanted the records numbered in address order.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know Python so I don't know what parts to indent.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2011 20:06:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724282#M41025</guid>
      <dc:creator>KimballHansen</dc:creator>
      <dc:date>2011-10-06T20:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724283#M41026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I don't know Python so I don't know what parts to indent.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
rec=0
def autoIncrement():
&amp;nbsp;&amp;nbsp; global rec
&amp;nbsp;&amp;nbsp; pStart = 10000 #adjust start value, if req'd
&amp;nbsp;&amp;nbsp; pInterval = 1 #adjust interval value, if req'd
&amp;nbsp;&amp;nbsp; if (rec == 0):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rec = pStart
&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rec = rec + pInterval
&amp;nbsp;&amp;nbsp; return rec
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You should check that you have "use code block" checked and "python" selected&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;then autoIncrement() goes in the bottom section and the function above goes in the top section "the code block"&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:58:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724283#M41026</guid>
      <dc:creator>TerrySilveus</dc:creator>
      <dc:date>2021-12-12T06:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724284#M41027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Right click on the field and choose "Field Calculator", select the Python radio button at the top and make sure the Show Codeblock box is checked.&amp;nbsp; Then select and copy lines of code in the first code block below and put them in the Pre-Logic Script Code block.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;rec=0 def autoIncrement():
&amp;nbsp;&amp;nbsp;&amp;nbsp; global rec
&amp;nbsp;&amp;nbsp;&amp;nbsp; pStart = 10000 #adjust start value, if req'd
&amp;nbsp;&amp;nbsp;&amp;nbsp; pInterval = 1 #adjust interval value, if req'd
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (rec == 0):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rec = pStart
&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rec = rec + pInterval
&amp;nbsp;&amp;nbsp;&amp;nbsp; return rec&lt;/PRE&gt;&lt;SPAN&gt;If you copy from the above code block, it should keep the proper indentation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then select and copy the below code and paste it into the box below YOURFIELDNAME = &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;autoIncrement()&lt;/PRE&gt;&lt;SPAN&gt;That should run and get you the results you need.&amp;nbsp; If not, you probably are trying to put a number in a text field or something.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have attached a screen capture of what my field calculator dialog looks like.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:58:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724284#M41027</guid>
      <dc:creator>JeffWard</dc:creator>
      <dc:date>2021-12-12T06:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724285#M41028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Also make sure that you have 0 records selected or the field calculator will only calculate values for the selected records.&amp;nbsp; I can't tell you how many times I have put in a script and had it run without any errors but it didn't look like any of the field values were changed.&amp;nbsp; They were changed, just the values for the selected records.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 19:57:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724285#M41028</guid>
      <dc:creator>JeffWard</dc:creator>
      <dc:date>2011-10-07T19:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724286#M41029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That worked perfectly. Thanks Jeff. When I ran it however it listed the numbers in order according to the OBJECTID field. I would like to have it run the calculator when I sort a different field ascending. I want to list my streets in alphabetical order and create this new field and run the script so the numbers ascend according to the aphabetical streets. Do you know if it's possible to do that or does it always sort according to the OBJECTID field?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 21:20:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724286#M41029</guid>
      <dc:creator>KimballHansen</dc:creator>
      <dc:date>2011-10-07T21:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724287#M41030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;That worked perfectly. Thanks Jeff. When I ran it however it listed the numbers in order according to the OBJECTID field. I would like to have it run the calculator when I sort a different field ascending. I want to list my streets in alphabetical order and create this new field and run the script so the numbers ascend according to the aphabetical streets. Do you know if it's possible to do that or does it always sort according to the OBJECTID field?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;That's what I suggested would happen in a previous post.&amp;nbsp; If you give my code a try as a python script you will be able to set any order you want.&amp;nbsp; I just am not sure how to translate that to the field calculator, because I don't use the field calculator that much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 21:29:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724287#M41030</guid>
      <dc:creator>TerrySilveus</dc:creator>
      <dc:date>2011-10-07T21:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724288#M41031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know this is an old thread, but how does it know to loop through the rows? I've seen this bit of code posted elsewhere and I never understood why just a for loop wouldn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 18:04:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724288#M41031</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-02-25T18:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Field calculation for loop incremented by 1</title>
      <link>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724289#M41032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In short....that is what the field calculator does... it provides the framework to loop through the rows and apply a function, which is also why it works on selections leaving the unselected untouched.&amp;nbsp; This would require a separate bit of code in itself to work with selections.&amp;nbsp; It does have its drawbacks,&amp;nbsp; like having to use globals to keep track of what has gone on in the previous row (ie a previous value).&amp;nbsp; &lt;/P&gt;&lt;P&gt;Sometimes the field calculator is just faster for simple things.&amp;nbsp; It only gets difficult when people try to push the envelop and get it to do things for which it wasn't designed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 18:54:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/field-calculation-for-loop-incremented-by-1/m-p/724289#M41032</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-02-25T18:54:51Z</dc:date>
    </item>
  </channel>
</rss>

