<?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: newbie general powershell looping question in Software Development Kit (SDK) and API Discussions</title>
    <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132110#M2400</link>
    <description>&lt;P&gt;Did you execute the code? &amp;nbsp;Cause I'm not sure what you mean...it outputs correctly from what I can tell:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;name    id   status    
----    --   ------    
server1 x123 production
server1 x234 production
server1 x345 production
server2 x999 anything  &lt;/PRE&gt;&lt;P&gt;The hash is only used to store the first name -&amp;gt; status and keep them for later. &amp;nbsp;I'm assuming that the names are not always in order, e.g there could be another "server1" after "server2", which is why I'm using the hash to store the values.&lt;/P&gt;</description>
    <pubDate>Wed, 21 Jun 2017 13:37:56 GMT</pubDate>
    <dc:creator>asulliva</dc:creator>
    <dc:date>2017-06-21T13:37:56Z</dc:date>
    <item>
      <title>newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132081#M2397</link>
      <description>&lt;P&gt;I have a sorted csv file in the following format:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;name, uniqueID,&amp;nbsp;environment&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;server1 x123 &lt;STRONG&gt;production&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;server1 x234 installed&lt;/P&gt;&lt;P&gt;server1 x345 n/a&lt;/P&gt;&lt;P&gt;server2 x999 anything&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what I want to do is read the environment for the first occurance of server1, and then update the unique identifiers via API for any subsequent occurances of the name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so my expected output would be &amp;nbsp;&lt;/P&gt;&lt;P&gt;server1 &amp;nbsp;x123 &amp;nbsp;&lt;STRONG&gt;production&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;server1 x234 &amp;nbsp; &lt;STRONG&gt;production&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;server1 x345 &amp;nbsp; &lt;STRONG&gt;production&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;server2 &amp;nbsp;x999 anything&lt;/P&gt;&lt;P&gt;etc ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone know what type of foreach loop with a nested loop would produce such a result?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 14:56:33 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132081#M2397</guid>
      <dc:creator>stephen2</dc:creator>
      <dc:date>2025-06-04T14:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132082#M2398</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.netapp.com/t5/user/viewprofilepage/user-id/12113"&gt;@stephen2&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a quick example I created:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$csv = "name,id,status
server1,x123,production
server1,x234,installed
server1,x345,n/a
server2,x999,anything"

$lines = $csv | ConvertFrom-Csv

$values = @{}
$output = New-Object System.Collections.Generic.List[System.Object]

foreach ($line in $lines) {
    if ($values.Keys -notcontains $line.name) {
        $values.Add($line.name, $line.status)
    }

    $line.status = $values.($line.name)
    $output.Add($line)
}

$output&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 19:35:34 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132082#M2398</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2017-06-20T19:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132109#M2399</link>
      <description>&lt;P&gt;Thanks Andrew - using the hash table does not help because for each record, I have to maintain the id field, so I need to accomplish the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;first record, store the env field and write the server, id, and env field&lt;/P&gt;&lt;P&gt;subsequent record - write the server, id, and saved env&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to accomplist the functionality using some other structure?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 13:33:25 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132109#M2399</guid>
      <dc:creator>stephen2</dc:creator>
      <dc:date>2017-06-21T13:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132110#M2400</link>
      <description>&lt;P&gt;Did you execute the code? &amp;nbsp;Cause I'm not sure what you mean...it outputs correctly from what I can tell:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;name    id   status    
----    --   ------    
server1 x123 production
server1 x234 production
server1 x345 production
server2 x999 anything  &lt;/PRE&gt;&lt;P&gt;The hash is only used to store the first name -&amp;gt; status and keep them for later. &amp;nbsp;I'm assuming that the names are not always in order, e.g there could be another "server1" after "server2", which is why I'm using the hash to store the values.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 13:37:56 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132110#M2400</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2017-06-21T13:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132112#M2401</link>
      <description>&lt;P&gt;I tried but I may have done something wrong. I modified as follows and got the below message&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;$csv = import-csv env.csv&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;$lines = $csv| ConvertFrom-Csv $values = @{} &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;$output = New-Object System.Collections.Generic.List[System.Object] &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;foreach ($line in $lines) { &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ($values.Keys -notcontains $line.name) { &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $values.Add($line.name, $line.status) &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $line.status = $values.($line.name) &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $output.Add($line)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;} &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;$output &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;ConvertFrom-Csv : Cannot validate argument on parameter 'InputObject'. The argument is null or empty. Provide an argument that is&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;At line:1 char:32&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;+ $lines = $csv| ConvertFrom-Csv $values = @{}&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;+&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ~~~~~~~&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + CategoryInfo&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;: InvalidData: (:) [ConvertFrom-Csv], ParameterBindingValidationException&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.PowerShell.Commands.ConvertFromCsvCommand&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 13:42:54 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132112#M2401</guid>
      <dc:creator>stephen2</dc:creator>
      <dc:date>2017-06-21T13:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132115#M2402</link>
      <description>&lt;P&gt;You don't need to use "Import-Csc" and "ConvertFrom-Csv", just one or the other. &amp;nbsp;If it's a file on disk, just use Import-Csv...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$lines = Import-Csv env.csv

$values = @{}
$output = New-Object System.Collections.Generic.List[System.Object]

foreach ($line in $lines) {
    if ($values.Keys -notcontains $line.name) {
        $values.Add($line.name, $line.status)
    }

    $line.status = $values.($line.name)
    $output.Add($line)
}

$output&lt;/PRE&gt;&lt;P&gt;If you want to output the result to a new CSV, use the ConvertTo-Csv cmdlet...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$output | ConvertTo-Csv -NoTypeInformation&lt;/PRE&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 13:47:42 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132115#M2402</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2017-06-21T13:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132116#M2403</link>
      <description>&lt;P&gt;thought I tried that, but I will give it a shot again. Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 13:49:26 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132116#M2403</guid>
      <dc:creator>stephen2</dc:creator>
      <dc:date>2017-06-21T13:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132117#M2404</link>
      <description>&lt;P&gt;where does the status field come from? Do I need to add it to my input file?&amp;nbsp; Im getting this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;Exception setting "status": "The property 'status' cannot be found on this object. Verify that the property exists and can be set."&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;At line:5 char:5&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;+&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $line.status = $values.($line.name)&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;+&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + CategoryInfo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : NotSpecified: (:) [], SetValueInvocationException&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT size="3"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + FullyQualifiedErrorId : ExceptionWhenSetting&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for this help by the way&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 13:55:35 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132117#M2404</guid>
      <dc:creator>stephen2</dc:creator>
      <dc:date>2017-06-21T13:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132119#M2405</link>
      <description>&lt;P&gt;I didn't use your original field names...I may have missed them &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using your field names it should be...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$lines = Import-Csv env.csv

$values = @{}
$output = New-Object System.Collections.Generic.List[System.Object]

foreach ($line in $lines) {
    if ($values.Keys -notcontains $line.name) {
        $values.Add($line.name, $line.environment)
    }

    $line.environment = $values.($line.name)
    $output.Add($line)
}

$output&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Jun 2017 13:59:36 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132119#M2405</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2017-06-21T13:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132120#M2406</link>
      <description>&lt;P&gt;ah - thank you - sorry Im a newbie&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 14:01:00 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132120#M2406</guid>
      <dc:creator>stephen2</dc:creator>
      <dc:date>2017-06-21T14:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132122#M2407</link>
      <description>&lt;P&gt;No worries! &amp;nbsp;Feel free to reach out here or on &lt;A href="http://netapp.io/slack" target="_self"&gt;Slack&lt;/A&gt;, we have a channel specifically for PowerShell questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 14:03:15 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132122#M2407</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2017-06-21T14:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: newbie general powershell looping question</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132123#M2408</link>
      <description>&lt;P&gt;worked perfect - thanks&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2017 14:10:26 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/newbie-general-powershell-looping-question/m-p/132123#M2408</guid>
      <dc:creator>stephen2</dc:creator>
      <dc:date>2017-06-21T14:10:26Z</dc:date>
    </item>
  </channel>
</rss>

