<?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 ArcGIS Dashboard Using Arcade to union two datasets (featureLayers) in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1211959#M47845</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I want to display a table in ArcGIS Dashboard that contains data from two different featureLayers (datasets).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- I cannot use the Merge-functionality in ArcGIS Pro because the first featureLayers using geopoint, while the second featureLayer using polylines.&lt;/P&gt;&lt;P&gt;- Therefore I am trying to make an Arcade DataExpression to create a dictionary consising of data from the two different featureLayers.&lt;/P&gt;&lt;P&gt;- The two featureLayers both include the same fields&amp;nbsp;['objectid','CreationDate','Creator','formStatus','nettniva','id','komponenttype','driftsmerking','message','globalid','classid','spenning']&lt;/P&gt;&lt;P&gt;- I am &lt;STRONG&gt;NOT&lt;/STRONG&gt; using any filtering inside the Arcade-expression other than only selecting the fields I want to display in the table.&lt;/P&gt;&lt;P&gt;- I then want to use the ArcadeExpression in both a table and indicator widget (if possible) in the ArcGIS Dashbord.&lt;/P&gt;&lt;P&gt;- When I use "&lt;STRONG&gt;return fs1;&lt;/STRONG&gt;" I get data from my first featureLayer. This works but its not what I want., see the attached image "&lt;EM&gt;Image1 fs1.png&lt;/EM&gt;".&lt;/P&gt;&lt;P&gt;- When I use "&lt;STRONG&gt;return fs2;&lt;/STRONG&gt;" I get data from my second featureLayer. This works&amp;nbsp;but its not what I want., see the attached image "&lt;EM&gt;Image2 fs2.png&lt;/EM&gt;".&lt;/P&gt;&lt;P&gt;- But when I use "&lt;STRONG&gt;return FeatureSet(Text(dict));" &lt;/STRONG&gt;I only get a empty dictionary, see the attached image "&lt;EM&gt;Image3 empty dictionary.png&lt;/EM&gt;".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Is there any easier solution to this problem?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If not, can you see any errors in my Arcade Expression?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Since Im new to Arcade I may need a detailed description, but&amp;nbsp;&lt;/STRONG&gt;&lt;STRONG&gt;appreciate any tips &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;//Totalt antall rapporterte avvik Tabell

//ArcGIS Portal
var p = Portal('https://kraftnett.maps.arcgis.com');
//var all_fields = ['objectid','CreationDate','Creator','formStatus','nettniva','id','komponenttype','driftsmerking','message','globalid','classid','spenning']

//Feature: PointObject
var itemID_points = 'fbf01e5a639a4a3ea335e089652c109a';
var layerID_points = 0;
var fields_points = ['objectid','globalid','creationdate','creator','formStatus','nettniva','komponenttype'];

//Pull PointObject data
var fs1 = FeatureSetByPortalItem(p, itemID_points, layerID_points, fields_points, false);

//Create empty dictionary
var dict = {
    'fields': [
        {'name': 'ObjectId', 'type': 'esriFieldTypeInteger'},
        {'name': 'GlobalId', 'type': 'esriFieldTypeString'},
        {'name': 'CreationDate', 'type': 'esriFieldTypeDate'},
        {'name': 'Creator', 'type': 'esriFieldTypeString'},
        {'name': 'FormStatus', 'type': 'esriFieldTypeString'},
        {'name': 'Nettniva', 'type': 'esriFieldTypeString'},
        {'name': 'KomponentType', 'type': 'esriFieldTypeString'}
        ],
    'geometryType': '',
    'features': []
};

var index = 0;
//Loop through and add PointFeature data to dictionary
for (var feature in fs1) {
    dict.features[index++] = {
        'attributes': {
            'objectid': feature['objectid'],
            'globalid': feature['globalid'],
            'creationdate': feature['creationdate'],
            'creator': feature['creator'],
            'formStatus': feature['formStatus'],
            'nettniva': feature['nettniva'],
            'komponenttype': feature['komponenttype']
        }
    }
};

//Feature: LineObjects
var itemID_lines = '24481a7dc6d342db9c5b43cc8af9b8c1';
var layerID_lines = 0;
var fields_lines = ['objectid','globalid','creationdate','creator','formStatus','nettniva','komponenttype'];

//Pull LineObject data
var fs2 = FeatureSetByPortalItem(p, itemID_lines, layerID_lines, fields_lines, false);

//Loop through and add PointFeature data to dictionary
for (var feature in fs2) {
    dict.features[index++] = {
        'attributes': {
            'objectid': feature['objectid'],
            'globalid': feature['globalid'],
            'creationdate': feature['creationdate'],
            'creator': feature['creator'],
            'formStatus': feature['formStatus'],
            'nettniva': feature['nettniva'],
            'komponenttype': feature['komponenttype']
        }
    }
};

//Return result
//return fs1;
return FeatureSet(Text(dict));
//return dict;
//return [fs1, fs2]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards Lars&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 13 Sep 2022 14:00:22 GMT</pubDate>
    <dc:creator>LarsChristianØstgaard</dc:creator>
    <dc:date>2022-09-13T14:00:22Z</dc:date>
    <item>
      <title>ArcGIS Dashboard Using Arcade to union two datasets (featureLayers)</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1211959#M47845</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I want to display a table in ArcGIS Dashboard that contains data from two different featureLayers (datasets).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- I cannot use the Merge-functionality in ArcGIS Pro because the first featureLayers using geopoint, while the second featureLayer using polylines.&lt;/P&gt;&lt;P&gt;- Therefore I am trying to make an Arcade DataExpression to create a dictionary consising of data from the two different featureLayers.&lt;/P&gt;&lt;P&gt;- The two featureLayers both include the same fields&amp;nbsp;['objectid','CreationDate','Creator','formStatus','nettniva','id','komponenttype','driftsmerking','message','globalid','classid','spenning']&lt;/P&gt;&lt;P&gt;- I am &lt;STRONG&gt;NOT&lt;/STRONG&gt; using any filtering inside the Arcade-expression other than only selecting the fields I want to display in the table.&lt;/P&gt;&lt;P&gt;- I then want to use the ArcadeExpression in both a table and indicator widget (if possible) in the ArcGIS Dashbord.&lt;/P&gt;&lt;P&gt;- When I use "&lt;STRONG&gt;return fs1;&lt;/STRONG&gt;" I get data from my first featureLayer. This works but its not what I want., see the attached image "&lt;EM&gt;Image1 fs1.png&lt;/EM&gt;".&lt;/P&gt;&lt;P&gt;- When I use "&lt;STRONG&gt;return fs2;&lt;/STRONG&gt;" I get data from my second featureLayer. This works&amp;nbsp;but its not what I want., see the attached image "&lt;EM&gt;Image2 fs2.png&lt;/EM&gt;".&lt;/P&gt;&lt;P&gt;- But when I use "&lt;STRONG&gt;return FeatureSet(Text(dict));" &lt;/STRONG&gt;I only get a empty dictionary, see the attached image "&lt;EM&gt;Image3 empty dictionary.png&lt;/EM&gt;".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Is there any easier solution to this problem?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If not, can you see any errors in my Arcade Expression?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Since Im new to Arcade I may need a detailed description, but&amp;nbsp;&lt;/STRONG&gt;&lt;STRONG&gt;appreciate any tips &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;//Totalt antall rapporterte avvik Tabell

//ArcGIS Portal
var p = Portal('https://kraftnett.maps.arcgis.com');
//var all_fields = ['objectid','CreationDate','Creator','formStatus','nettniva','id','komponenttype','driftsmerking','message','globalid','classid','spenning']

//Feature: PointObject
var itemID_points = 'fbf01e5a639a4a3ea335e089652c109a';
var layerID_points = 0;
var fields_points = ['objectid','globalid','creationdate','creator','formStatus','nettniva','komponenttype'];

//Pull PointObject data
var fs1 = FeatureSetByPortalItem(p, itemID_points, layerID_points, fields_points, false);

//Create empty dictionary
var dict = {
    'fields': [
        {'name': 'ObjectId', 'type': 'esriFieldTypeInteger'},
        {'name': 'GlobalId', 'type': 'esriFieldTypeString'},
        {'name': 'CreationDate', 'type': 'esriFieldTypeDate'},
        {'name': 'Creator', 'type': 'esriFieldTypeString'},
        {'name': 'FormStatus', 'type': 'esriFieldTypeString'},
        {'name': 'Nettniva', 'type': 'esriFieldTypeString'},
        {'name': 'KomponentType', 'type': 'esriFieldTypeString'}
        ],
    'geometryType': '',
    'features': []
};

var index = 0;
//Loop through and add PointFeature data to dictionary
for (var feature in fs1) {
    dict.features[index++] = {
        'attributes': {
            'objectid': feature['objectid'],
            'globalid': feature['globalid'],
            'creationdate': feature['creationdate'],
            'creator': feature['creator'],
            'formStatus': feature['formStatus'],
            'nettniva': feature['nettniva'],
            'komponenttype': feature['komponenttype']
        }
    }
};

//Feature: LineObjects
var itemID_lines = '24481a7dc6d342db9c5b43cc8af9b8c1';
var layerID_lines = 0;
var fields_lines = ['objectid','globalid','creationdate','creator','formStatus','nettniva','komponenttype'];

//Pull LineObject data
var fs2 = FeatureSetByPortalItem(p, itemID_lines, layerID_lines, fields_lines, false);

//Loop through and add PointFeature data to dictionary
for (var feature in fs2) {
    dict.features[index++] = {
        'attributes': {
            'objectid': feature['objectid'],
            'globalid': feature['globalid'],
            'creationdate': feature['creationdate'],
            'creator': feature['creator'],
            'formStatus': feature['formStatus'],
            'nettniva': feature['nettniva'],
            'komponenttype': feature['komponenttype']
        }
    }
};

//Return result
//return fs1;
return FeatureSet(Text(dict));
//return dict;
//return [fs1, fs2]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards Lars&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 14:00:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1211959#M47845</guid>
      <dc:creator>LarsChristianØstgaard</dc:creator>
      <dc:date>2022-09-13T14:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboard Using Arcade to union two datasets (featureLayers)</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1213403#M47943</link>
      <description>&lt;P&gt;I found a solution to this problem.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The problem&lt;/STRONG&gt; was that the date field was really a datetime field (containing day, month year, hour, minute, second, nanosecond.. So the whole output failed to be displayed due to the creationdate field in datetime was not in esriFieldTypeDate format.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The solution&lt;/STRONG&gt; was to create a new field and convert the datetime (&lt;SPAN&gt;yyyy-MM-dd HH:mm:ss.SSS&lt;/SPAN&gt;) to date (&lt;SPAN&gt;yyyy-M&lt;/SPAN&gt;&lt;SPAN&gt;M-dd HH:mm:ss&lt;/SPAN&gt;) and casting this in a esriFieldTypeDate format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;//Totalt antall rapporterte avvik Tabell * Virker

// Portal
var p = Portal('https://kraftnett.maps.arcgis.com');

// Create FeatureSet for points
var fs1 = FeatureSetByPortalItem(p,'fbf01e5a639a4a3ea335e089652c109a', 0, ['globalid','objectid','komponenttype','nettniva','formStatus','creator','CreationDate','id','driftsmerking','message','classid','spenning'], true);

// Create Featureset for lines
var fs2 = FeatureSetByPortalItem(p,'24481a7dc6d342db9c5b43cc8af9b8c1', 0 ,['globalid','objectid','komponenttype','nettniva','formStatus','creator','CreationDate','id','driftsmerking','message','classid','spenning'], true);

// Create empty feature array and feat object for output
var features = [];
var feat;

// Iterate fs1
for (var feature in fs1) {
    
    // Filter points by polygon
    //var pts = Contains(feature, fs2);
    
    // Create feature with aggregated values
    feat = { 
        'attributes': { 
            'objecttype': ['PointObject'],
            'objectid': feature['objectid'],
            'globalid': feature['globalid'],
            'komponenttype': feature['komponenttype'],
            'nettniva': feature['nettniva'],
            'formStatus': feature['formStatus'],
            'creator': feature['creator'],
            'creationdate': feature['CreationDate'],
            '_creationdate': Number(Date(Year(feature['CreationDate']), Month(feature['CreationDate']), Day(feature['CreationDate']))),
            'id': feature['id'],
            'driftsmerking': feature['driftsmerking'],
            'message': feature['message'],
            'classid': feature['classid'],
            'spenning': feature['spenning']
        }
    };
    
    // Push feature into array
    Push(features, feat);
};

for (var feature in fs2) {
    
    // Filter points by polygon
    //var pts = Contains(feature, fs2);
    
    // Create feature with aggregated values
    feat = { 
        'attributes': { 
            'objecttype': ['LineObject'],
            'objectid': feature['objectid'],
            'globalid': feature['globalid'],
            'komponenttype': feature['komponenttype'],
            'nettniva': feature['nettniva'],
            'formStatus': feature['formStatus'],
            'creator': feature['creator'],
            'creationdate': feature['CreationDate'],
            '_creationdate': Number(Date(Year(feature['CreationDate']), Month(feature['CreationDate']), Day(feature['CreationDate']))),
            'id': feature['id'],
            'driftsmerking': feature['driftsmerking'],
            'message': feature['message'],
            'classid': feature['classid'],
            'spenning': feature['spenning']
        }
    };
    
    // Push feature into array
    Push(features, feat);
};

// Create dict for output FeatureSet
var out_dict = { 
    'fields': [
        {'name': 'objecttype', 'type': 'esriFieldTypeString'},
        {'name': 'objectid', 'type': 'esriFieldTypeOID'},
        {'name': 'globalid', 'type': 'esriFieldTypeGlobalID'},
        {'name': 'komponenttype', 'type': 'esriFieldTypeString'},
        {'name': 'nettniva', 'type': 'esriFieldTypeString'},
        {'name': 'formStatus', 'type': 'esriFieldTypeString'},
        {'name': 'creator', 'type': 'esriFieldTypeString'},
        {'name': 'creationdate', 'type': 'esriFieldTypeString'},
        {'name': '_creationdate', 'type': 'esriFieldTypeDate'},
        {'name': 'id', 'type': 'esriFieldTypeString'},
        {'name': 'driftsmerking', 'type': 'esriFieldTypeString'},
        {'name': 'message', 'type': 'esriFieldTypeString'},
        {'name': 'classid', 'type': 'esriFieldTypeString'},
        {'name': 'spenning', 'type': 'esriFieldTypeString'}
    ],
  'geometryType': '', 
  'features': features 
}; 



// Convert dictionary to feature set. 
return FeatureSet(Text(out_dict));&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 14:18:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1213403#M47943</guid>
      <dc:creator>LarsChristianØstgaard</dc:creator>
      <dc:date>2022-09-16T14:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboard Using Arcade to union two datasets (featureLayers)</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1299925#M52864</link>
      <description>&lt;P&gt;With this week's update to Arcade and ArcGIS Dashboards, date fields in feature set constructors now just work. You no longer have to wrap dates with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Number()&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;if you pass the &lt;EM&gt;dictionary&lt;/EM&gt; into the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;FeatureSet()&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;function (which as of this release accepts a dictionary as opposed to only text based JSON).&lt;/P&gt;&lt;P&gt;Instead of:&lt;/P&gt;&lt;PRE&gt;return FeatureSet(Text(dict))&lt;/PRE&gt;&lt;P&gt;Do this:&lt;/P&gt;&lt;PRE&gt;return FeatureSet(dict)&lt;/PRE&gt;&lt;P&gt;Learn more in&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.esri.com/t5/arcgis-dashboards-blog/dashboard-data-expressions-what-has-changed-june/ba-p/1298782" target="_blank" rel="noopener"&gt;this blog post&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;NOTE: For Enterprise users, this update is targeted for 11.2&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 19:18:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1299925#M52864</guid>
      <dc:creator>DavidNyenhuis1</dc:creator>
      <dc:date>2023-06-15T19:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboard Using Arcade to union two datasets (featureLayers)</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1327446#M54511</link>
      <description>&lt;P&gt;Thanks for the update, I will try this&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2023 20:24:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1327446#M54511</guid>
      <dc:creator>LarsChristianØstgaard</dc:creator>
      <dc:date>2023-09-11T20:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboard Using Arcade to union two datasets (featureLayers)</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1505332#M60208</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the code. In case the two feature sets fs1 and fs2 have the same structure and fields, how can I adjust the code to avoid writing the name of all fields?&lt;/P&gt;&lt;P&gt;Oussama&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 12:51:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1505332#M60208</guid>
      <dc:creator>OussamaMerhi</dc:creator>
      <dc:date>2024-07-15T12:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Dashboard Using Arcade to union two datasets (featureLayers)</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1509363#M60465</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/404713"&gt;@OussamaMerhi&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use the &lt;A href="https://developers.arcgis.com/arcade/function-reference/feature_functions/#schema" target="_self"&gt;&lt;FONT face="andale mono,times"&gt;Schema()&lt;/FONT&gt;&lt;/A&gt; function to get the schema, which includes an array of fields.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// From above example
//Pull PointObject data
var fs1 = FeatureSetByPortalItem(p, itemID_points, layerID_points, fields_points, false);

// Get the schema from the feature set
var fs1Schema = Schema(fs1);
var fs1Fields = fs1Schema.fields;
var fs1GeomType = fs1Schema.geometryType

//Create empty dictionary
var dict = {
    'fields': fs1Fields,
    'geometryType': fs1GeomType,
    'features': []
};&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 24 Jul 2024 15:54:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/arcgis-dashboard-using-arcade-to-union-two/m-p/1509363#M60465</guid>
      <dc:creator>DavidNyenhuis1</dc:creator>
      <dc:date>2024-07-24T15:54:33Z</dc:date>
    </item>
  </channel>
</rss>

