<?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: how to find  any two features whether Cover in One featureclass? in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-nbsp-any-two-features-whether-cover-in/m-p/424669#M11460</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;There are a few optimizations I can think of.&lt;BR /&gt;First off, in your GetFeature method, you create a new cursor every time.&amp;nbsp; Cursor take a lot of processing.&amp;nbsp; Re-using the cursor might give you a performance boost.&amp;nbsp; That would also avoid having to release it every time.&lt;BR /&gt;I also notice you keep all the fields.&amp;nbsp; You can stream line your cursors by defining the subfield of a query filter to be only the objectid and the shape field, the where clause can be empty.&amp;nbsp; &lt;BR /&gt;In GetFeatures, you search all the features and do a relational operation, you could do a spatialfilter query instead and get only features that overlap returned.&lt;BR /&gt;If it is possible memory-wise, you could build a dictionary or two dimensional array with the objectId and shape for the IcheckLayer by cursoring through them once to build the dictionary, then you could loop through the dictionary instead.&amp;nbsp;&amp;nbsp; &lt;BR /&gt;Finally, you can look at the Overlay toolbox in the analysis tools.&amp;nbsp; Intersect, for example, will keep all the overlaping sections of both featureclasses with the attributes from both.&amp;nbsp; You could get the output features and get the objectid of both original featrures.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you&amp;nbsp; !! I also have some quesions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1.how&amp;nbsp; to&amp;nbsp; Re-using the cursor ? can you give me a example.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. spatialfilter query&amp;nbsp; is more Efficiency�?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Oct 2013 06:33:33 GMT</pubDate>
    <dc:creator>yanli</dc:creator>
    <dc:date>2013-10-24T06:33:33Z</dc:date>
    <item>
      <title>how to find  any two features whether Cover in One featureclass?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-nbsp-any-two-features-whether-cover-in/m-p/424667#M11458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;i want to find&amp;nbsp; any two features whether Cover in One featureclass. the code as following,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;it works ok,but if&amp;nbsp; the featureclass have&amp;nbsp; 100000 features ,it work so slowly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;how&amp;nbsp; to make it fast by modify the code? thank&amp;nbsp; you&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public void CheckInOneLayer(IFeatureClass IChecklayer)
&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; string Layername = IChecklayer.AliasName;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int nn = 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int count=IChecklayer.FeatureCount(null);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IFeatureCursor IfeaCur = IChecklayer.Search(null, false);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IFeature Ifea;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; while ((Ifea = IfeaCur.NextFeature()) != null)
&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; nn++;
&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; GetFeature(Ifea, IChecklayer);
&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;&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; MessageBox.Show("finish!");

&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; public void GetFeature(IFeature Mfeature, IFeatureClass IChecklayer)
&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; try
&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; string layername = IChecklayer.AliasName;
&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; IRelationalOperator pRelOperator;
&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; pRelOperator = Mfeature.Shape as IRelationalOperator;

&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; IFeatureCursor pFeatureCursor = IChecklayer.Search(null, false);
&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; IFeature pComFeature;
&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; while ((pComFeature = pFeatureCursor.NextFeature()) != null)
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (pRelOperator.Overlaps(pComFeature.Shape))
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //here get the feature!!!!!

&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; //addToGrid(Mfeature, pComFeature, layername);

&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;&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; if (pFeatureCursor != null)
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Marshal.ReleaseComObject(pFeatureCursor);
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (Exception e)
&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; MessageBox.Show("Error:"+e.Message.ToString());
&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;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 06:17:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-nbsp-any-two-features-whether-cover-in/m-p/424667#M11458</guid>
      <dc:creator>yanli</dc:creator>
      <dc:date>2013-10-23T06:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to find  any two features whether Cover in One featureclass?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-nbsp-any-two-features-whether-cover-in/m-p/424668#M11459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There are a few optimizations I can think of.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;First off, in your GetFeature method, you create a new cursor every time.&amp;nbsp; Cursor take a lot of processing.&amp;nbsp; Re-using the cursor might give you a performance boost.&amp;nbsp; That would also avoid having to release it every time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I also notice you keep all the fields.&amp;nbsp; You can stream line your cursors by defining the subfield of a query filter to be only the objectid and the shape field, the where clause can be empty.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In GetFeatures, you search all the features and do a relational operation, you could do a spatialfilter query instead and get only features that overlap returned.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If it is possible memory-wise, you could build a dictionary or two dimensional array with the objectId and shape for the IcheckLayer by cursoring through them once to build the dictionary, then you could loop through the dictionary instead.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Finally, you can look at the Overlay toolbox in the analysis tools.&amp;nbsp; Intersect, for example, will keep all the overlaping sections of both featureclasses with the attributes from both.&amp;nbsp; You could get the output features and get the objectid of both original featrures.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 12:04:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-nbsp-any-two-features-whether-cover-in/m-p/424668#M11459</guid>
      <dc:creator>AlexanderGray</dc:creator>
      <dc:date>2013-10-23T12:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to find  any two features whether Cover in One featureclass?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-nbsp-any-two-features-whether-cover-in/m-p/424669#M11460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;There are a few optimizations I can think of.&lt;BR /&gt;First off, in your GetFeature method, you create a new cursor every time.&amp;nbsp; Cursor take a lot of processing.&amp;nbsp; Re-using the cursor might give you a performance boost.&amp;nbsp; That would also avoid having to release it every time.&lt;BR /&gt;I also notice you keep all the fields.&amp;nbsp; You can stream line your cursors by defining the subfield of a query filter to be only the objectid and the shape field, the where clause can be empty.&amp;nbsp; &lt;BR /&gt;In GetFeatures, you search all the features and do a relational operation, you could do a spatialfilter query instead and get only features that overlap returned.&lt;BR /&gt;If it is possible memory-wise, you could build a dictionary or two dimensional array with the objectId and shape for the IcheckLayer by cursoring through them once to build the dictionary, then you could loop through the dictionary instead.&amp;nbsp;&amp;nbsp; &lt;BR /&gt;Finally, you can look at the Overlay toolbox in the analysis tools.&amp;nbsp; Intersect, for example, will keep all the overlaping sections of both featureclasses with the attributes from both.&amp;nbsp; You could get the output features and get the objectid of both original featrures.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thank you&amp;nbsp; !! I also have some quesions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1.how&amp;nbsp; to&amp;nbsp; Re-using the cursor ? can you give me a example.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. spatialfilter query&amp;nbsp; is more Efficiency�?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 06:33:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-nbsp-any-two-features-whether-cover-in/m-p/424669#M11460</guid>
      <dc:creator>yanli</dc:creator>
      <dc:date>2013-10-24T06:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to find  any two features whether Cover in One featureclass?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-nbsp-any-two-features-whether-cover-in/m-p/424670#M11461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;1. IFeatureCursor pFeatureCursor = IChecklayer.Search(null, false);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pFeatureCursor = IChecklayer.Search(null, false);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Spatial query will return fewer features than all of them and these features will be known to overlap so no need to test them all individually.&amp;nbsp; As far as perfomance, putting metrics in and trying it both ways is the only way to know for sure which is best.&amp;nbsp; all my suggestiongs are the obvious things I would try to get a faster process.&amp;nbsp; Bbefore you do anything else, I suggest you get the time at the start and end and report the difference, that way you can evaluate any change against a baseline.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Oct 2013 13:19:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-nbsp-any-two-features-whether-cover-in/m-p/424670#M11461</guid>
      <dc:creator>AlexanderGray</dc:creator>
      <dc:date>2013-10-25T13:19:26Z</dc:date>
    </item>
  </channel>
</rss>

