<?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: Basic Arcade question - Show last inspection date from related record in pop-up in ArcGIS Field Maps Questions</title>
    <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527599#M9397</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/80456"&gt;@ZachBodenner&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;Thank you both for your replies!!!&lt;/P&gt;&lt;P&gt;I've learned a lot and feel like I'm armed well for future featureset arcade troubleshooting, and you've really challenged me to up my developer game&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":rolling_on_the_floor_laughing:"&gt;🤣&lt;/span&gt; I had a long message written out to you, and then decided to test just one more thing, and well... that thing worked.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Short story&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;It works if I add it as an Attribute expression not as an Arcade element... maybe that was just a rookie mistake on my part. Why is that?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="elpinguino_1-1724725424218.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/113574i1D29D40FAC3D2356/image-size/medium?v=v2&amp;amp;px=400" role="button" title="elpinguino_1-1724725424218.png" alt="elpinguino_1-1724725424218.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Long story&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I changed DES to DESC.&lt;/LI&gt;&lt;LI&gt;I changed featuresetbyrelationshipname to featuresetbyid.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;It is returning the latest bait station check date in the expression builder. Before it used to only return "No checks to date."&lt;/P&gt;&lt;P&gt;It doesn't show in the pop-up still though, and I've made sure I'm testing on a pop-up that has a bait station check.&lt;/P&gt;&lt;P&gt;I've had a look at the Developer Tools&amp;gt; Console. (Still new to this part, so tell me if I've missed something.)&lt;/P&gt;&lt;P&gt;It looks like it sees there are related records, and the dates for them.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="elpinguino_0-1724725129132.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/113573i73F1B8AB5C598848/image-size/medium?v=v2&amp;amp;px=400" role="button" title="elpinguino_0-1724725129132.png" alt="elpinguino_0-1724725129132.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is my latest arcade expression.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;//FeatureSetById(featureSetCollection_, id_)

var relatedrecords = OrderBy(
  FeatureSetById(
    $map,
    "19188cd37b9-layer-124",
    ['DateChecked'],
    false
  ),
  "DateChecked DESC"
);

var cnt = Count(relatedrecords);
Console('related record count', cnt);
var relatedinfo = "";

if (cnt &amp;gt; 0) {
  var info = First(relatedrecords);
  Console(info)
  relatedinfo = Text((info.DateChecked), "ddd DD/MM/YYYY");
}

return DefaultValue(relatedinfo, "No checks to date")&lt;/LI-CODE&gt;&lt;P&gt;It still doesn't show in the pop-up though.&lt;/P&gt;&lt;P&gt;Next steps&lt;/P&gt;&lt;P&gt;Now I'm trying to get the featureset to pull three more fields and output that as "(BaitType) (BaitAdded) by (X) on ddd DD/MM/YYYY."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Aug 2024 02:40:41 GMT</pubDate>
    <dc:creator>elpinguino</dc:creator>
    <dc:date>2024-08-27T02:40:41Z</dc:date>
    <item>
      <title>Basic Arcade question - Show last inspection date from related record in pop-up</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1526851#M9383</link>
      <description>&lt;P&gt;Hi Field Mappers,&lt;/P&gt;&lt;P&gt;Got an easy win for you.. I think? I am still fairly new to working with FeatureSets in arcade.&lt;/P&gt;&lt;P&gt;I have a parent/child relationship point and record. I want to show the last date checked from the record in the parent pop-up. When I go to add it in as an attribute expression and "Run" it it works, however when I go into map viewer and in Field Maps I can't get it to work.&lt;/P&gt;&lt;P&gt;I've followed a few basic tutorials online, but am not sure what's wrong here.&lt;/P&gt;&lt;P&gt;I have double and triple checked I have the correct FeatureSetByRelationshipName relationship name and checked field names for upper and lower cases.&lt;/P&gt;&lt;P&gt;My parent and child are both points.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var relatedrecords = OrderBy(FeatureSetByRelationshipName($feature,"BaitStation_Checks"), "DateChecked DES");
var cnt = Count(relatedrecords);
var relatedinfo = "";
if (cnt &amp;gt; 0) {
var info = First(relatedrecords);
relatedinfo = Text((info.DateChecked), "ddd DD/MM/YYYY");
}
DefaultValue(relatedinfo,"No checks to date")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Any help you can offer would be greatly appreciated.&lt;/P&gt;&lt;P&gt;In addition I would like to grab info from two more fields in the most recent check. Same feature we're calling from above. If anyone has a tip for that I'd love to know. Thanks in advance for your time and helping me broaden my arcade knowledge.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2024 14:02:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1526851#M9383</guid>
      <dc:creator>elpinguino</dc:creator>
      <dc:date>2024-08-25T14:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Arcade question - Show last inspection date from related record in pop-up</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527043#M9385</link>
      <description>&lt;P&gt;Try using "DESC" instead of "DES"? I don't know if that's what's going wrong, but I think Arcade using DESC from sorting.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 12:53:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527043#M9385</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-08-26T12:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Arcade question - Show last inspection date from related record in pop-up</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527046#M9386</link>
      <description>&lt;P&gt;Honestly, I don't see anything wrong with your expression here, except maybe your OrderBy function needs a "C" on "DES"? Attribute rules are supposed to have access to all FeatureSet functions. You're saying that the expression doesn't work in the web map &lt;EM&gt;or &lt;/EM&gt;Field Maps, just in the expression builder?&lt;/P&gt;&lt;P&gt;Two suggestions:&lt;/P&gt;&lt;P&gt;First, include more parameters on your FeatureSetByRelationshipName function. By specifying the fields you want and not including any geometry, less data will be going back and forth, which would speed up a slow expression.&lt;/P&gt;&lt;P&gt;Second, maybe just try some debugging. Add Console statements to your expression, then open your browser's Developer Tools and watch the "Console" tab and see what it says.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var relatedrecords = OrderBy(
  FeatureSetByRelationshipName(
    $feature,
    "BaitStation_Checks",
    ['DateChecked'],
    false
  ),
  "DateChecked DESC"
);

var cnt = Count(relatedrecords);
Console('related record count', cnt);
var relatedinfo = "";

if (cnt &amp;gt; 0) {
  var info = First(relatedrecords);
  Console(info)
  relatedinfo = Text((info.DateChecked), "ddd DD/MM/YYYY");
}

return DefaultValue(relatedinfo, "No checks to date")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_0-1724677243860.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/113461iBDE800B0BCD4B362/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_0-1724677243860.png" alt="jcarlson_0-1724677243860.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 13:00:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527046#M9386</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-08-26T13:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Arcade question - Show last inspection date from related record in pop-up</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527054#M9387</link>
      <description>&lt;P&gt;Evidently "DES" is totally fine with Arcade!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_0-1724677535777.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/113462iC3C8E4ABEE4AD45B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_0-1724677535777.png" alt="jcarlson_0-1724677535777.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It gets weirder and funnier. Literally &lt;STRONG&gt;any text &lt;/STRONG&gt;after the field name besides "ASC" is treated as "DESC". A typo on "DESC" is fine. But a typo on "ASC" will give you the opposite!&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_1-1724677650890.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/113464i26D9ABBF608A7987/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_1-1724677650890.png" alt="jcarlson_1-1724677650890.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jcarlson_2-1724677722381.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/113465iF6E1DA131D8952ED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jcarlson_2-1724677722381.png" alt="jcarlson_2-1724677722381.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 13:08:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527054#M9387</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2024-08-26T13:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Arcade question - Show last inspection date from related record in pop-up</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527139#M9391</link>
      <description>&lt;P&gt;Another thought is that there have been a lot of reports of FeaturesetByRelationshipName giving people trouble. You could try FeaturesetByName instead?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Interesting not that&amp;nbsp;FeaturesetByRelationshipName actually fixed a problem I had gotten when I was using&amp;nbsp;FeaturesetByName, but hey, might be worth a short either way.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 14:36:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527139#M9391</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-08-26T14:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Arcade question - Show last inspection date from related record in pop-up</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527140#M9392</link>
      <description>&lt;P&gt;That is crazy and funny, but I guess that's a built in null check, which has probably helped a lot of people out!&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 14:36:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527140#M9392</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-08-26T14:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Arcade question - Show last inspection date from related record in pop-up</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527599#M9397</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/80456"&gt;@ZachBodenner&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/363906"&gt;@jcarlson&lt;/a&gt;&amp;nbsp;Thank you both for your replies!!!&lt;/P&gt;&lt;P&gt;I've learned a lot and feel like I'm armed well for future featureset arcade troubleshooting, and you've really challenged me to up my developer game&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":rolling_on_the_floor_laughing:"&gt;🤣&lt;/span&gt; I had a long message written out to you, and then decided to test just one more thing, and well... that thing worked.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Short story&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;It works if I add it as an Attribute expression not as an Arcade element... maybe that was just a rookie mistake on my part. Why is that?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="elpinguino_1-1724725424218.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/113574i1D29D40FAC3D2356/image-size/medium?v=v2&amp;amp;px=400" role="button" title="elpinguino_1-1724725424218.png" alt="elpinguino_1-1724725424218.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Long story&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I changed DES to DESC.&lt;/LI&gt;&lt;LI&gt;I changed featuresetbyrelationshipname to featuresetbyid.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;It is returning the latest bait station check date in the expression builder. Before it used to only return "No checks to date."&lt;/P&gt;&lt;P&gt;It doesn't show in the pop-up still though, and I've made sure I'm testing on a pop-up that has a bait station check.&lt;/P&gt;&lt;P&gt;I've had a look at the Developer Tools&amp;gt; Console. (Still new to this part, so tell me if I've missed something.)&lt;/P&gt;&lt;P&gt;It looks like it sees there are related records, and the dates for them.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="elpinguino_0-1724725129132.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/113573i73F1B8AB5C598848/image-size/medium?v=v2&amp;amp;px=400" role="button" title="elpinguino_0-1724725129132.png" alt="elpinguino_0-1724725129132.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is my latest arcade expression.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;//FeatureSetById(featureSetCollection_, id_)

var relatedrecords = OrderBy(
  FeatureSetById(
    $map,
    "19188cd37b9-layer-124",
    ['DateChecked'],
    false
  ),
  "DateChecked DESC"
);

var cnt = Count(relatedrecords);
Console('related record count', cnt);
var relatedinfo = "";

if (cnt &amp;gt; 0) {
  var info = First(relatedrecords);
  Console(info)
  relatedinfo = Text((info.DateChecked), "ddd DD/MM/YYYY");
}

return DefaultValue(relatedinfo, "No checks to date")&lt;/LI-CODE&gt;&lt;P&gt;It still doesn't show in the pop-up though.&lt;/P&gt;&lt;P&gt;Next steps&lt;/P&gt;&lt;P&gt;Now I'm trying to get the featureset to pull three more fields and output that as "(BaitType) (BaitAdded) by (X) on ddd DD/MM/YYYY."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 02:40:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527599#M9397</guid>
      <dc:creator>elpinguino</dc:creator>
      <dc:date>2024-08-27T02:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Arcade question - Show last inspection date from related record in pop-up</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527835#M9401</link>
      <description>&lt;P&gt;When you made the arcade element expression, did you remove the pre-filled return portion? The return needs to be in that format for the arcade element version to work, you can't just have a simple return.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 13:16:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527835#M9401</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-08-27T13:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Arcade question - Show last inspection date from related record in pop-up</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527853#M9402</link>
      <description>&lt;P&gt;Yes I removed this:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;/* &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Open the Suggestions tab and choose a template to get started creating different content types for your pop-up. &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;To learn more about using Arcade to create pop-up content visit: &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;A href="https://developers.arcgis.com/arcade/guide/profiles/#popup-element" target="_blank"&gt;https://developers.arcgis.com/arcade/guide/profiles/#popup-element&lt;/A&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;*/&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; { &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;'text'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;text&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;'place your text or html here'&lt;/SPAN&gt; &lt;SPAN&gt;//this property supports html tags &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I don't understand enough about writing code to understand what you mean. Can you show me?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 27 Aug 2024 13:45:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1527853#M9402</guid>
      <dc:creator>elpinguino</dc:creator>
      <dc:date>2024-08-27T13:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Basic Arcade question - Show last inspection date from related record in pop-up</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1528589#M9409</link>
      <description>&lt;P&gt;Yeah okay, so if you're using the Arcade Element in the popup, the return must be enclosed in those curly brackets. Essentially what you could have done to make your original code work here (as opposed to an attribute expression) is to do this:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;return{
 type:'text'
 text: DefaultValue(relatedinfo, "No checks to date")
}&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 28 Aug 2024 13:03:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/basic-arcade-question-show-last-inspection-date/m-p/1528589#M9409</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-08-28T13:03:22Z</dc:date>
    </item>
  </channel>
</rss>

