<?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 Display all the results of two searches. in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571789#M199250</link>
    <description>&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I am running two searches by combining them with appendcols.&lt;BR /&gt;But the final result is the common fields of both the searches.&lt;/P&gt;&lt;P&gt;I want the entire search result of both the main and subsearch.&lt;BR /&gt;I am using stats as well.&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Thu, 21 Oct 2021 11:05:28 GMT</pubDate>
    <dc:creator>email2vamsi</dc:creator>
    <dc:date>2021-10-21T11:05:28Z</dc:date>
    <item>
      <title>Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571789#M199250</link>
      <description>&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I am running two searches by combining them with appendcols.&lt;BR /&gt;But the final result is the common fields of both the searches.&lt;/P&gt;&lt;P&gt;I want the entire search result of both the main and subsearch.&lt;BR /&gt;I am using stats as well.&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 11:05:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571789#M199250</guid>
      <dc:creator>email2vamsi</dc:creator>
      <dc:date>2021-10-21T11:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571790#M199251</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/163101"&gt;@email2vamsi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;could you share your searches?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 11:07:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571790#M199251</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-10-21T11:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571796#M199255</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;sourcetype=abc index=123&lt;BR /&gt;| spath _url&lt;BR /&gt;| search _url=US OR ASIA&lt;BR /&gt;|spath "_US_ version"&lt;BR /&gt;| stats dc(hostname) by&amp;nbsp; US_ version&lt;BR /&gt;|rename US_ version as version&lt;BR /&gt;|appendcols [search sourcetype=abc index=123&lt;BR /&gt;| spath _url&lt;BR /&gt;| search _url=US OR ASIA&lt;BR /&gt;|spath "_ASIA_ version"&lt;BR /&gt;| stats dc(hostname) by&amp;nbsp; ASIA_ version&lt;BR /&gt;|rename ASIA_ version as version&lt;BR /&gt;]&lt;BR /&gt;| stats sum(dc(hostname)) by&amp;nbsp; version&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Here i want the results of both US_version and ASIA_version. All the results int both the searches.&lt;BR /&gt;But now the problem is ,its displaying only the common version numbers.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 11:25:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571796#M199255</guid>
      <dc:creator>email2vamsi</dc:creator>
      <dc:date>2021-10-21T11:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571802#M199258</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/163101"&gt;@email2vamsi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;it's also possible to optimize this search without using append command (not the appendcols command):&amp;nbsp; remeber that there's the limit of 50,000 results in subsearches.&lt;/P&gt;&lt;P&gt;But anyway, please try something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sourcetype=abc index=123
| spath _url
| search _url=US OR _url=ASIA
| spath "_US_version"
| stats dc(hostname) AS US_count by  US_version
| rename US_version as version
| eval type="US"
| appendcols [ search 
     sourcetype=abc index=123
     | spath _url
     | search _url=US OR _url=ASIA
     | spath "_ASIA_version"
     | stats dc(hostname) AS ASIA_count by ASIA_version
     | rename ASIA_version as version
     | eval type="ASIA"
     ]
| stats values(type) AS Type sum(US_count) AS US_count sum(ASIA_count) AS ASIA_count by version   &lt;/LI-CODE&gt;&lt;P&gt;beware to one thing: I sow a space in the fields you used in spath commands, is this correct or not?&lt;/P&gt;&lt;P&gt;If you have a space in a field you have to use double quotes.&lt;/P&gt;&lt;P&gt;Then there's an error in the search command "search _url=US OR ASIA", you should use&amp;nbsp;"search _url=US OR _url=ASIA"&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 11:49:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571802#M199258</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-10-21T11:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571976#M199312</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your query worked for me after changing it to append.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have one more problem. For drill-down, I can see the following&amp;nbsp;token in the URL.&lt;BR /&gt;selected_value=8.8.0%0D%0A*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here&amp;nbsp;%0D%0A means a space.&lt;BR /&gt;I just want to pass&amp;nbsp;8.8.0*, with out a space.&lt;BR /&gt;The rtrim in source dashboard is unable to trim the space at the end of 8.8.0.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please suggest.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 09:24:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571976#M199312</guid>
      <dc:creator>email2vamsi</dc:creator>
      <dc:date>2021-10-22T09:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571979#M199314</link>
      <description>&lt;P&gt;append is a different command than append cols - works in a different way. So it's up to you to decide which mode of operation is proper for your needs.&lt;/P&gt;&lt;P&gt;And no, %OD%OA does not mean space.&amp;nbsp; It's most probably \r\n&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 10:13:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571979#M199314</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2021-10-22T10:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571983#M199317</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/163101"&gt;@email2vamsi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;this is another question, but anyway, can you share the drilldown row in dashboard source and the complete url?&lt;/P&gt;&lt;P&gt;Probably there's something in the drilldown row.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 11:04:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571983#M199317</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-10-22T11:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571987#M199320</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="image.png" style="width: 434px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/16549i99E7DBA0C5FC249E/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&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;&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;&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;DIV&gt;&lt;BR /&gt;In the target dashboard query comes like this, with * in the new line.&lt;BR /&gt;&lt;STRONG&gt;| search "_version"=10.6.1&lt;BR /&gt;*&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;If i do not use *, no rows is getting displayed.&lt;BR /&gt;If i move the * next to 10.6.1 (10.6.1*) , then the rows related to 10.6.1 are getting displayed, including 10.6.1,&lt;BR /&gt;10.6.12-105.x86_64,10.6.12-120.x86_64,10.6.13-111,10.6.13-111.x86_64&lt;/DIV&gt;</description>
      <pubDate>Fri, 22 Oct 2021 11:36:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571987#M199320</guid>
      <dc:creator>email2vamsi</dc:creator>
      <dc:date>2021-10-22T11:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571990#M199323</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/163101"&gt;@email2vamsi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;at first sight, I hint to insert "*" in the secondary dashboard and pass the token as is.&lt;/P&gt;&lt;P&gt;But, could you share the row of drilldown in the code?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 11:45:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571990#M199323</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-10-22T11:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571995#M199325</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 434px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/16550iD1CC7575F7A06F48/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Version	sum(Count)
1		30
2	8.8.0
3
3	10.2.2-1370.x86_64
2
4	10.5.1-1582.x86_64
1
5	10.5.5-106
28
6	10.5.5-106.x86_64
17
7	10.6.1
18
8	10.6.12-105.x86_64
19
9	10.6.12-120.x86_64
756
10	10.6.13-111
5
11	10.6.13-111.x86_64
1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 12:01:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571995#M199325</guid>
      <dc:creator>email2vamsi</dc:creator>
      <dc:date>2021-10-22T12:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571996#M199326</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/163101"&gt;@email2vamsi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;sorry for the misunderstanding: id' like to see the code of the drilldown section:&lt;/P&gt;&lt;P&gt;open the source of your dashboard&amp;nbsp;&lt;/P&gt;&lt;P&gt;share the drilldown sect6ion of the panel you're analyzing, you can recognize this part because is vetween the &amp;lt;drilldown&amp;gt; tags and similar to the following:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;drilldown&amp;gt;
    &amp;lt;link target="_blank"&amp;gt;/app/my_app/my_secondary_dashboard?earliest=$Time.earliest$&amp;amp;amp;latest=$Time.latest$&amp;amp;amp;my_token=$click.row$&amp;lt;/link&amp;gt;
&amp;lt;/drilldown&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 12:08:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571996#M199326</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-10-22T12:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571999#M199327</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;drilldown&amp;gt;
 &amp;lt;link target="_blank"&amp;gt;/app/app_name/server_list?selected_value=$click.value$&amp;amp;amp;location_tok2=$location_tok2$&amp;amp;amp;Cust_id=$Cust_id$&amp;lt;/link&amp;gt;
        &amp;lt;/drilldown&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 12:16:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/571999#M199327</guid>
      <dc:creator>email2vamsi</dc:creator>
      <dc:date>2021-10-22T12:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/572006#M199332</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/163101"&gt;@email2vamsi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;using this link you shouldn't have the "&lt;SPAN&gt;%0D%0A*".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As I said, if you need the "*" for the searches, put it in the secondary dashboard.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Ciao.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Giuseppe&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 12:30:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/572006#M199332</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-10-22T12:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/572010#M199335</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have moved the * to secondary dashboard.&lt;/P&gt;&lt;P&gt;The token in the URL of the secondary dashboard is like this :&lt;BR /&gt;&lt;STRONG&gt;?selected_value=10.6.1%0D%0A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In the secondary dashboard query comes like this, with * in the new line.&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;| search "_version"="10.6.1&lt;BR /&gt;*"&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If i do not use *, no rows are getting displayed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have to move the * next to 10.6.1 (&lt;STRONG&gt;| search "_version"="10.6.1*"&lt;/STRONG&gt;) , then the rows related to 10.6.1 are getting displayed, including 10.6.1,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;10.6.12-105.x86_64,10.6.12-120.x86_64,10.6.13-111,10.6.13-111.x86_64&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The carriage return in secondary dashboard query is causing the query to fail.&lt;BR /&gt;I could not figure out from where the carriage return is coming from.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 12:43:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/572010#M199335</guid>
      <dc:creator>email2vamsi</dc:creator>
      <dc:date>2021-10-22T12:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Display all the results of two searches.</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/572011#M199336</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/163101"&gt;@email2vamsi&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;extract the relevant part of your field using a regex in the main dashboard:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex field=selected_value "^(?&amp;lt;selected_value&amp;gt;\d+\.\d+\.\d+)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;In this way, you're sure that the field "selected_value" contains only the first three numbers of the IP.&lt;/P&gt;&lt;P&gt;If there's the possibility that the field could contain three or four numbers of the IP you could try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rex field=selected_value "^(?&amp;lt;selected_value&amp;gt;(\d+\.\d+\.\d+)(\d+\.\d+\.\d+\.\d+))&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 12:52:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Display-all-the-results-of-two-searches/m-p/572011#M199336</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2021-10-22T12:52:53Z</dc:date>
    </item>
  </channel>
</rss>

