<?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: use ShapefileWorkspaceFactory loop dbf file, how can get corresponding value with the max value of a field in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367518#M9675</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Duncan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have successfully got the max OBJECTID by using &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;IDataStatistics. But when I tried to retrieved the related values of the max OBJECTID, I got the following error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System.Runtime.InteropServices.COMException (0x80040207): The owner SID on a per-user subscription doesn't exist (Exception from HRESULT: 0x80040207)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; at ESRI.ArcGIS.Geodatabase.ITable.Search(IQueryFilter QueryFilter, Boolean Recycling)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pWSF As ShapefileWorkspaceFactory = New ESRI.ArcGIS.DataSourcesFile.ShapefileWorkspaceFactory()&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pWS As ESRI.ArcGIS.Geodatabase.IWorkspace = pWSF.OpenFromFile("D:/dev", 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pFws As ESRI.ArcGIS.Geodatabase.IFeatureWorkspace = CType(pWS, ESRI.ArcGIS.Geodatabase.IFeatureWorkspace)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pTable As ESRI.ArcGIS.Geodatabase.ITable = pFws.OpenTable("Segment_line_intersect")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pCur As ESRI.ArcGIS.Geodatabase.ICursor = pTable.Search(Nothing, False) ' open the cursor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim queryFilter As IQueryFilter = New QueryFilterClass()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryFilter.SubFields = "Segment_ID,LineName"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryFilter.WhereClause = "FID_Segmen = '" + MaxOBJECTID.ToString + "'"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pCur = pTable.Search(queryFilter, True)&amp;nbsp;&amp;nbsp;&amp;nbsp; ' error this line&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cannot figure out what's wrong with the code. Is this the bug you mentioned? Thank you very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Oct 2014 03:03:59 GMT</pubDate>
    <dc:creator>WuYang</dc:creator>
    <dc:date>2014-10-08T03:03:59Z</dc:date>
    <item>
      <title>use ShapefileWorkspaceFactory loop dbf file, how can get corresponding value with the max value of a field</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367515#M9672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using ShapefileWorkspaceFactory to retrieve data from a dbf file. Now I can read data of some specified field (by field name), I have no idea how to get corresponding value with the maximum value of a field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, in the dbf file I retrieve 3 fields of data: RegisterID, ItemName, Category&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am asking how to get the ItemName and Category with the maximum RegisterID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using vb.net arcobjects. Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 08:32:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367515#M9672</guid>
      <dc:creator>WuYang</dc:creator>
      <dc:date>2014-10-03T08:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: use ShapefileWorkspaceFactory loop dbf file, how can get corresponding value with the max value of a field</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367516#M9673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you know the maximum RegisterID value that could become the where clause of a QueryFilter object which you feed into the Table.Search() method to get the cursor which would return a single row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do not know the maximum value of RegisterID then you could use the IDataStatistics interface and return the maximum value.&amp;nbsp; You do not say which version of ArcMap you are using, I ask this as ESRI introduced a bug in this interface with a service pack release for 10.1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2014 19:52:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367516#M9673</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2014-10-04T19:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: use ShapefileWorkspaceFactory loop dbf file, how can get corresponding value with the max value of a field</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367517#M9674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Duncan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for the reply. I am using 10.2.2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 01:19:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367517#M9674</guid>
      <dc:creator>WuYang</dc:creator>
      <dc:date>2014-10-08T01:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: use ShapefileWorkspaceFactory loop dbf file, how can get corresponding value with the max value of a field</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367518#M9675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Duncan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have successfully got the max OBJECTID by using &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;IDataStatistics. But when I tried to retrieved the related values of the max OBJECTID, I got the following error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System.Runtime.InteropServices.COMException (0x80040207): The owner SID on a per-user subscription doesn't exist (Exception from HRESULT: 0x80040207)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; at ESRI.ArcGIS.Geodatabase.ITable.Search(IQueryFilter QueryFilter, Boolean Recycling)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pWSF As ShapefileWorkspaceFactory = New ESRI.ArcGIS.DataSourcesFile.ShapefileWorkspaceFactory()&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pWS As ESRI.ArcGIS.Geodatabase.IWorkspace = pWSF.OpenFromFile("D:/dev", 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pFws As ESRI.ArcGIS.Geodatabase.IFeatureWorkspace = CType(pWS, ESRI.ArcGIS.Geodatabase.IFeatureWorkspace)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pTable As ESRI.ArcGIS.Geodatabase.ITable = pFws.OpenTable("Segment_line_intersect")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pCur As ESRI.ArcGIS.Geodatabase.ICursor = pTable.Search(Nothing, False) ' open the cursor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim queryFilter As IQueryFilter = New QueryFilterClass()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryFilter.SubFields = "Segment_ID,LineName"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryFilter.WhereClause = "FID_Segmen = '" + MaxOBJECTID.ToString + "'"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pCur = pTable.Search(queryFilter, True)&amp;nbsp;&amp;nbsp;&amp;nbsp; ' error this line&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cannot figure out what's wrong with the code. Is this the bug you mentioned? Thank you very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 03:03:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367518#M9675</guid>
      <dc:creator>WuYang</dc:creator>
      <dc:date>2014-10-08T03:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: use ShapefileWorkspaceFactory loop dbf file, how can get corresponding value with the max value of a field</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367519#M9676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This line:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM&gt;Dim pCur As ESRI.ArcGIS.Geodatabase.ICursor = pTable.Search(Nothing, False) ' open the cursor&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;should be simply:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Dim pCur As ESRI.ArcGIS.Geodatabase.ICursor&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;I'm guessing this line:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt; &lt;EM&gt;queryFilter.WhereClause = "FID_Segmen = '" + MaxOBJECTID.ToString + "'"&lt;/EM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;should be:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt; &lt;EM&gt;queryFilter.WhereClause = "FID_Segmen = " &amp;amp; MaxOBJECTID.ToString &lt;/EM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;I'm assuming your field FID_Segmen is a field of type long.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 11:02:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367519#M9676</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2014-10-08T11:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: use ShapefileWorkspaceFactory loop dbf file, how can get corresponding value with the max value of a field</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367520#M9677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you speak about objectid and shapefile: do you mean fid in shapefile? I advise you see the differences in the behavior of the OBJECTID, FID, and OID fields because FID in shapefile hasn't same behavior of objectid: it's a offset from origin of first row so I advise you don't use for reference your data ("... If a record from a shapefile is deleted, the FIDs are renumbered so that they start from 0 and increase sequentially...") while OBJECTID in gdb is a autonumber. &lt;A href="http://support.esri.com/en/knowledgebase/techarticles/detail/37480" title="http://support.esri.com/en/knowledgebase/techarticles/detail/37480"&gt;37480 - What are the differences in the behavior of the OBJECTID, FID, and OID fields?&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 11:28:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367520#M9677</guid>
      <dc:creator>nicogis</dc:creator>
      <dc:date>2014-10-08T11:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: use ShapefileWorkspaceFactory loop dbf file, how can get corresponding value with the max value of a field</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367521#M9678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Duncan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you are right, I have modified the code and it works properly. Thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 01:06:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367521#M9678</guid>
      <dc:creator>WuYang</dc:creator>
      <dc:date>2014-10-09T01:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: use ShapefileWorkspaceFactory loop dbf file, how can get corresponding value with the max value of a field</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367522#M9679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Domenico,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reminder, I will be careful on it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 01:08:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/use-shapefileworkspacefactory-loop-dbf-file-how/m-p/367522#M9679</guid>
      <dc:creator>WuYang</dc:creator>
      <dc:date>2014-10-09T01:08:33Z</dc:date>
    </item>
  </channel>
</rss>

