<?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: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669731#M100514</link>
    <description>&lt;P&gt;This worked great, thank you.&lt;/P&gt;&lt;P&gt;My issue getting a clean date was ignorance, pretty much.&lt;/P&gt;&lt;P&gt;All I had to do to make this work for me was add an additional field to group by so I got each day per collar, rather than across the entire dataset.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Tue, 02 Dec 2025 16:25:53 GMT</pubDate>
    <dc:creator>AlfredBaldenweck</dc:creator>
    <dc:date>2025-12-02T16:25:53Z</dc:date>
    <item>
      <title>Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669519#M100498</link>
      <description>&lt;P&gt;Pretty much what the title says.&lt;/P&gt;&lt;P&gt;I have a dataset with 100,000 records, each one taken about every 15 minutes. I only need one per day for most cases.&lt;/P&gt;&lt;P&gt;I'd like to make a view to grab just one record per day.&lt;/P&gt;&lt;P&gt;Since I have to update/overwrite this table pretty frequently, I don't want to add a "date" field to make this work, because then I'm going to have to do it each time.&lt;/P&gt;&lt;P&gt;I'd like to use a file geodatabase, but those are extremely touchy so I'm experimenting with a mobile gdb instead.&lt;/P&gt;&lt;P&gt;The general flow is select the min timestamp from each day, grouping by day, then joining that to the main table where the objectIDs or something match.&lt;/P&gt;&lt;P&gt;What I can't figure out is how to cleanly get DATE from a DATETIME. I've tried sqlite's format&amp;nbsp; and date() functions with no luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know how to do this?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 00:14:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669519#M100498</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-12-02T00:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669580#M100501</link>
      <description>&lt;P&gt;Will this view definition work? In my testing, this returns the earliest record for each day.&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;SELECT *
FROM MyTable
WHERE DateField IN (
    SELECT MIN(DateField)
    FROM MyTable
    GROUP BY strftime('%Y-%m-%d', DateField )
);&lt;/LI-CODE&gt;&lt;P&gt;I'm not sure where you are having the issue with getting a clean date. If you're needing a view with an additional column containing a clean date from your source table, you can use this:&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;SELECT 
    *,
    DATE(DateField) AS OnlyDate
FROM MyTable
WHERE DateField IN (
    SELECT MIN(DateField)
    FROM MyTable
    GROUP BY DATE(DateField)
);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 07:45:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669580#M100501</guid>
      <dc:creator>RyanUthoff</dc:creator>
      <dc:date>2025-12-02T07:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669684#M100507</link>
      <description>&lt;P&gt;You never specified the type of solution you wanted, Ryan gives you an SQL approach, below is a model builder approach using some earthquake data from living atlas.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="DuncanHornby_2-1764687576539.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/144640i2FF5577F4118AC76/image-size/large?v=v2&amp;amp;px=999" role="button" title="DuncanHornby_2-1764687576539.png" alt="DuncanHornby_2-1764687576539.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;An in-memory copy of the table is created to which I add a text field. I then extract out the date portion in the format of dd/mm/yyyy.&lt;/P&gt;&lt;P&gt;To extract just the date portion I use the calculate field script of:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;justdate(!eventTime!)
---------------------
from datetime import datetime
def justdate(dt):
    date_value = datetime.strptime(dt, "%Y-%m-%dT%H:%M:%S")
    x = date_value.strftime("%d/%m/%Y")
    return x&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I then run the summary Statistics tool as:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="DuncanHornby_3-1764687757120.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/144642i17309F226A6C7244/image-size/large?v=v2&amp;amp;px=999" role="button" title="DuncanHornby_3-1764687757120.png" alt="DuncanHornby_3-1764687757120.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The result is a table filter down from 2000+ rows to 49 as shown below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="DuncanHornby_4-1764687893404.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/144643iDB00CFB7E252CBB8/image-size/large?v=v2&amp;amp;px=999" role="button" title="DuncanHornby_4-1764687893404.png" alt="DuncanHornby_4-1764687893404.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The frequency field gives you an indication of how many time stamps occurred on the day.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 15:05:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669684#M100507</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2025-12-02T15:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669699#M100510</link>
      <description>&lt;P&gt;It helps to:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Provide your data schema (field names, data types, etc...), or at least the relevant parts&lt;/LI&gt;&lt;LI&gt;Even better, provide sample data.&amp;nbsp; If sharing data itself isn't possible, create an example dataset that can be shared.&lt;/LI&gt;&lt;LI&gt;Share code snippets of what has been tried so far&lt;/LI&gt;&lt;LI&gt;Share expected result and what results you are currently getting.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 02 Dec 2025 15:31:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669699#M100510</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2025-12-02T15:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669731#M100514</link>
      <description>&lt;P&gt;This worked great, thank you.&lt;/P&gt;&lt;P&gt;My issue getting a clean date was ignorance, pretty much.&lt;/P&gt;&lt;P&gt;All I had to do to make this work for me was add an additional field to group by so I got each day per collar, rather than across the entire dataset.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 16:25:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669731#M100514</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-12-02T16:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669831#M100525</link>
      <description>&lt;P&gt;Actually, sorry. The view draws but cannot be identified or selected because the ObjectID comes in as an integer, so it does not have a Unique ID field.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_0-1764702904048.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/144680iDC5FF27CF423BDB8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_0-1764702904048.png" alt="AlfredBaldenweck_0-1764702904048.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="AlfredBaldenweck_1-1764702942894.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/144681i446FD80A53091DC0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_1-1764702942894.png" alt="AlfredBaldenweck_1-1764702942894.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How does one set a field as the primary key in a select statement? Google is not being super helpful.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 19:16:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669831#M100525</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-12-02T19:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669874#M100529</link>
      <description>&lt;P&gt;Well.&lt;/P&gt;&lt;P&gt;As it turns out, mobile gdbs will let you use this sort of expression as a definition query instead of only as a view, so that mostly solves my problem. Bizarre.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, why are fGDB views so nasty to work with?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 20:41:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669874#M100529</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-12-02T20:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669896#M100535</link>
      <description>&lt;P&gt;To quote myself from an earlier response:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1371"&gt;@JoshuaBixby&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;It helps to:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Provide your data schema (field names, data types, etc...), or at least the relevant parts&lt;/LI&gt;&lt;LI&gt;Even better, provide sample data.&amp;nbsp; If sharing data itself isn't possible, create an example dataset that can be shared.&lt;/LI&gt;&lt;LI&gt;Share code snippets of what has been tried so far&lt;/LI&gt;&lt;LI&gt;Share expected result and what results you are currently getting.&lt;/LI&gt;&lt;/OL&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Item #3 could be replaced with an explanation of a workflow instead of code snippets.&amp;nbsp; For example, how exactly are you interacting with the data?&amp;nbsp; You state:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;I have a dataset with 100,000 records, each one taken about every 15 minutes. I only need one per day for most cases.&lt;/P&gt;&lt;P&gt;I'd like to make a view to grab just one record per day.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Most cases?&amp;nbsp; What exactly does that mean, and what are the cases you wouldn't need just 1 record per day?&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;And what are you doing with a collection of 1 record per day?&amp;nbsp; Are you interacting with it in Pro for data exploration, are you making a static/hardcopy map, are you publishing it as a GIS service to make an interactive web map, etc....?&lt;BR /&gt;&lt;BR /&gt;Sharing what the requirements are will help people determine if there is a completely different approach entirely than focusing on how to manage date fields and objectids in a table view.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 21:36:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669896#M100535</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2025-12-02T21:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669973#M100543</link>
      <description>&lt;P&gt;Most of the information was not really important, since I knew what I wanted to do.&lt;/P&gt;&lt;P&gt;We have radio collars on some wildlife to track where they go (for the most part, migration, although during mating season we'll zoom in a little bit). Over the past 6 months, the average animal has taken about 30,000 points, and we're likely to get another 18 months of data from them. For the most part, we do not need that level of detail, since we're tracking them across the western half of the continent, so just getting a single point per day is good enough for a high-level check on what they're doing (fun fact: some of these guys are going several hundred miles in a week).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_1-1764724058216.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/144720i4F1B71F3BE6C291F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_1-1764724058216.png" alt="AlfredBaldenweck_1-1764724058216.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Therefore, I chose to get the first point of each day (typically around midnight. Again, no need to be super detailed here) for each bird and needed to figure out to extract just the&amp;nbsp;&lt;STRONG&gt;date&lt;/STRONG&gt; from a&amp;nbsp;&lt;STRONG&gt;datetime&lt;/STRONG&gt; field. Because I will be updating/overwriting this table weekly or semiweekly as I download it from the server collecting it (as a csv), I was looking at creating a view, since that should update automatically with any given table (compare to manually doing this every week).&lt;/P&gt;&lt;P&gt;What ended up working was&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/154737"&gt;@RyanUthoff&lt;/a&gt;&amp;nbsp;'s code, with an extra groupby field to separate out by animal, not just by date.&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;SELECT *
FROM MyTable
WHERE GPSTime IN (
    SELECT MIN(GPSTime)
    FROM CollarPoints
    GROUP BY strftime('%Y-%m-%d', GPSTime, GPSNumber
);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This got me the desired effect (and is probably more efficient than my original plan of a self-join).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_2-1764724133298.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/144721iCF1C28F782D7B7B3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_2-1764724133298.png" alt="AlfredBaldenweck_2-1764724133298.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;(daily points, green line is all the points at once)&lt;/P&gt;&lt;P&gt;However, as mentioned above, file GDB views are near impossible under the best of circumstances (try: "select * from tableA" and lmk if it works), so I have to use a mobile geodatabase. In doing so, it turns out that for whatever reason, mobile gdbs do not recognize the objectid field as the primary key. I experimented a little bit and tried adding a little "OBJECTID as OID" for fun and that was also recognized as a generic integer field (see earlier post. Data draws and table loads, but selecting does nothing, neither does Identify).&lt;/P&gt;&lt;P&gt;I thought that this may be an issue with the subquery. However, upon testing again with a very straightforward "select * from TableA", that view also does not have a recognized OID field, so I'm kind of at a loss and may put in a ticket for it. (Ditto for "select Objectid, SHAPE from TableA"). Adding a globalID field does not help, either.&lt;/P&gt;&lt;P&gt;In any case, mobile geodatabases allow for complex SQL in definition queries, so I was able to copy query I used for the view into the Definition Query editor,&amp;nbsp; and get what I needed.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlfredBaldenweck_4-1764725614724.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/144724i856E1C9643D79616/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlfredBaldenweck_4-1764725614724.png" alt="AlfredBaldenweck_4-1764725614724.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;GPSTime
    IN(
    SELECT
        MIN(GPSTime)
    FROM
        Collarpoints
    GROUP BY
        strftime('%Y-%m-%d', GPSTime),
        GpsNumber
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, to make a long story short, my issue that spawned this post was not being able to figure out how to turn a datetime into a date.&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/154737"&gt;@RyanUthoff&lt;/a&gt;&amp;nbsp;'s solution of just turning it into formatted text worked great and was exactly what I needed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 01:36:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1669973#M100543</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-12-03T01:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1670172#M100563</link>
      <description>&lt;P&gt;I am glad you got a solution.&amp;nbsp; Since you are using a mobile geodatabase, I was going to suggest a more complex definition query, and it seems you went down that route on your own.&amp;nbsp; I will note that the code as shared here does not guarantee a single record for each GpsNumber (I am assuming each GpsNumber represents a different collar/animal), i.e., there may be edge cases where multiple GPSTime records exist in the layer for a single GpsNumber.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 17:13:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1670172#M100563</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2025-12-03T17:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: Mobile or File Geodatabase Views: Grab earliest record of each day using only a datetime field?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1670173#M100564</link>
      <description>&lt;P&gt;Fair point. Might be worth it to add a unique or TOP() to it somewhere.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 17:14:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/mobile-or-file-geodatabase-views-grab-earliest/m-p/1670173#M100564</guid>
      <dc:creator>AlfredBaldenweck</dc:creator>
      <dc:date>2025-12-03T17:14:41Z</dc:date>
    </item>
  </channel>
</rss>

