<?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 I sort of understand.  But in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028442#M109895</link>
    <description>&lt;P&gt;I sort of understand.&amp;nbsp; But argument calling conventions, modules and interfaces are&amp;nbsp;topics I have yet to master.&lt;/P&gt;

&lt;P&gt;This IVF solution was put together from several CVF projects (one DLL and several LIB's).&amp;nbsp;&amp;nbsp;The&amp;nbsp;DLL&amp;nbsp;was "converted" and&amp;nbsp;the LIB's&amp;nbsp;I made from scratch in IVF.&amp;nbsp; To get things working, I had to&amp;nbsp;change /iface:cvf to default for the DLL project.&amp;nbsp; So as it is now, everything is /iface default.&lt;/P&gt;

&lt;P&gt;At the moment the code&amp;nbsp;runs without&amp;nbsp;crashing.&amp;nbsp; Excel VBA calls fortran, and fortran&amp;nbsp;does it's part correctly,&amp;nbsp;but there are some other weird things happening on the VBA side that haven't happened before.&amp;nbsp; That's what I'm working on now.&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jul 2015 17:56:32 GMT</pubDate>
    <dc:creator>Brian_Murphy</dc:creator>
    <dc:date>2015-07-27T17:56:32Z</dc:date>
    <item>
      <title>DLLEXPORT and unresolved external reference</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028432#M109885</link>
      <description>I'm compiling a fortran DLL project.  I have two subroutines in the same .f file.  The first one shown below calls the second one, but I'm getting unresolved external symbol.  The problem must be how I'm exporting them so they can be called from Excel VBA.

I have iface set to Default for this project.
The unresolved error goes away if I remove the !DEC statement from SUBB, but I need it.
All the argument variables are numeric except for the one called rtn.

What the heck am I doing wrong?!@#$

	subroutine SUBA(nx, alfa_r, alfa_i, z_r, z_i, nev, irvec, 
     &amp;amp;			Lindex_k, Lvalue_k, index_k, value_k, ne_k, 
     &amp;amp;			Lindex_m, Lvalue_m, index_m, value_m, ne_m, 
     &amp;amp;			W, ierr, rtn)
!DEC$ ATTRIBUTES DLLEXPORT, STDCALL, REFERENCE, ALIAS:"SUBA" :: SUBA
      character(10) :: rtn
!DEC$ ATTRIBUTES REFERENCE :: rtn


	subroutine SUBB(nx, Lindex, Lvalue, index, value, ne_, ierr)
!DEC$ ATTRIBUTES DLLEXPORT, STDCALL, REFERENCE, ALIAS:"SUBB" :: SUBB</description>
      <pubDate>Mon, 27 Jul 2015 15:49:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028432#M109885</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-07-27T15:49:49Z</dc:date>
    </item>
    <item>
      <title>Put both procedures in the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028433#M109886</link>
      <description>&lt;P&gt;Put both procedures in the same module.&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; module M
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; contains
! All your stuff goes here
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end module M
&lt;/PRE&gt;

&lt;P&gt;That way the interface to SUBB will be explicit in SUBA so it can be invoked correctly. This will work because of the !DEC$ ATTRIBUTES ALIAS directives so the VBA code will be able to see the procedures even though they are in a Fortran module.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 16:02:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028433#M109886</guid>
      <dc:creator>JVanB</dc:creator>
      <dc:date>2015-07-27T16:02:54Z</dc:date>
    </item>
    <item>
      <title>RO may have guessed correctly</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028434#M109887</link>
      <description>&lt;P&gt;RO may have guessed correctly that SUBA calls SUBB, but that isn't shown in your post. If so, the issue is that you've changed the global name for SUBB so SUBA can't find it. You could add:&lt;/P&gt;

&lt;P&gt;!DEC$ ATTRIBUTES ALIAS:"SUBB" :: SUBB&lt;/P&gt;

&lt;P&gt;in SUBA and that should take care of it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 16:11:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028434#M109887</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-07-27T16:11:51Z</dc:date>
    </item>
    <item>
      <title>Thanks again, Steve.  Adding</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028435#M109888</link>
      <description>&lt;P&gt;Thanks again, Steve.&amp;nbsp; Adding&amp;nbsp;ALIAS statements did indeed clear up those errors, and I'm back in business.&lt;/P&gt;

&lt;P&gt;This code essentially ran&amp;nbsp;the way it was&amp;nbsp;when built with CVF.&amp;nbsp; Is there an easy explanation for why these are needed now?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Brian&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 16:41:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028435#M109888</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-07-27T16:41:27Z</dc:date>
    </item>
    <item>
      <title>If SUBA and SUBB were in the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028436#M109889</link>
      <description>&lt;P&gt;If SUBA and SUBB were in the same source file, I suppose it's possible that CVF noticed the name change. Sometimes this isn't what you want, though! I no longer have CVF available to try for myself.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 16:48:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028436#M109889</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-07-27T16:48:18Z</dc:date>
    </item>
    <item>
      <title>I must be dense.  I don't see</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028437#M109890</link>
      <description>&lt;P&gt;I must be dense.&amp;nbsp;&amp;nbsp;I don't see why&amp;nbsp;you say the name has changed?&amp;nbsp;&amp;nbsp;You're talking about SUBB, right?&lt;/P&gt;

&lt;P&gt;In this case SUBA and SUBB are in the same file.&amp;nbsp; But I have others that are not, and adding ALIAS statements cleared up those unresolved errors, too.&amp;nbsp; CVF didn't have any trouble with those, either.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 16:54:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028437#M109890</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-07-27T16:54:54Z</dc:date>
    </item>
    <item>
      <title>I'll bet it's the addition of</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028438#M109891</link>
      <description>&lt;P&gt;I'll bet it's the addition of the DLLEXPORT ALIAS statement in SUBB makes the rest of program think the name has been changed, even though it really hasn't.&amp;nbsp; Is that it?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 16:58:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028438#M109891</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-07-27T16:58:32Z</dc:date>
    </item>
    <item>
      <title>I'm kind of curious as to how</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028439#M109892</link>
      <description>&lt;P&gt;I'm kind of curious as to how the ALIAS statement fixes things. Reading the ifort docs, /iface:default seems to set the calling convention to C, but SUBA is not given any information about SUBB's required calling convention, which is STDCALL. How does the compiler figure out that it should set up a STDCALL invocation?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 17:21:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028439#M109892</guid>
      <dc:creator>JVanB</dc:creator>
      <dc:date>2015-07-27T17:21:06Z</dc:date>
    </item>
    <item>
      <title>Since you are using STDCALL,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028440#M109893</link>
      <description>&lt;P&gt;Since you are using STDCALL, which was the CVF default, CVF would try to call SUBB from SUBA as _SUBB@28. Since you used ALIAS to change the name of SUBB to "SUBB" I would not expect CVF to match these. I do know that CVF also would have emitted an alias of _SUBB (with the underscore) but that should not have matched what other callers wanted.&lt;/P&gt;

&lt;P&gt;I don't know if you did the "Extract CVF project items" to convert the project - if you did, then /iface:cvf would be applied and it should behave the same way. If not, then Intel Fortran would try to call _SUBB and it still wouldn't match.&lt;/P&gt;

&lt;P&gt;I can't explain the behavior you claim for CVF and am no longer able to verify it on my own. But what I told you to do is what should have been needed regardless, and back in my CVF days I often had to give this advice to users.&lt;/P&gt;

&lt;P&gt;RO had good general advice about putting procedures in modules. If that was done, then the compiler sees the declaration of the routine including its alias and calling convention. But it's slightly more work than just adding the alias to the callers.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 17:27:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028440#M109893</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-07-27T17:27:45Z</dc:date>
    </item>
    <item>
      <title>Quote:Repeat Offender wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028441#M109894</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Repeat Offender wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I'm kind of curious as to how the ALIAS statement fixes things. Reading the ifort docs, /iface:default seems to set the calling convention to C, but SUBA is not given any information about SUBB's required calling convention, which is STDCALL. How does the compiler figure out that it should set up a STDCALL invocation?&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I don't think that it does, and therefore it is likely that the DLL will crash when it is run. There are three compatibility requirements (at least): order of passing arguments, stack cleanup responsibility and name decoration. The ALIAS attribute fixes things up so that the linker does not issue any error messages. In other words, name decoration works correctly. The other two issues, even if not addressed, will not be detected at build time.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 17:40:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028441#M109894</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-07-27T17:40:00Z</dc:date>
    </item>
    <item>
      <title>I sort of understand.  But</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028442#M109895</link>
      <description>&lt;P&gt;I sort of understand.&amp;nbsp; But argument calling conventions, modules and interfaces are&amp;nbsp;topics I have yet to master.&lt;/P&gt;

&lt;P&gt;This IVF solution was put together from several CVF projects (one DLL and several LIB's).&amp;nbsp;&amp;nbsp;The&amp;nbsp;DLL&amp;nbsp;was "converted" and&amp;nbsp;the LIB's&amp;nbsp;I made from scratch in IVF.&amp;nbsp; To get things working, I had to&amp;nbsp;change /iface:cvf to default for the DLL project.&amp;nbsp; So as it is now, everything is /iface default.&lt;/P&gt;

&lt;P&gt;At the moment the code&amp;nbsp;runs without&amp;nbsp;crashing.&amp;nbsp; Excel VBA calls fortran, and fortran&amp;nbsp;does it's part correctly,&amp;nbsp;but there are some other weird things happening on the VBA side that haven't happened before.&amp;nbsp; That's what I'm working on now.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 17:56:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028442#M109895</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-07-27T17:56:32Z</dc:date>
    </item>
    <item>
      <title>Yes, if /iface:default is</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028443#M109896</link>
      <description>&lt;P&gt;Yes, if /iface:default is used, then SUBA needs to also add STDCALL, REFERENCE to the ATTRIBUTES directive for SUBB.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 18:24:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028443#M109896</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-07-27T18:24:14Z</dc:date>
    </item>
    <item>
      <title>I am using /iface:default</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028444#M109897</link>
      <description>&lt;P&gt;I am using /iface:default (although the linker&amp;nbsp;command line doesn't contain iface anywhere).&amp;nbsp; Right now the extra DEC's only contain ALIAS, without STDCALL and REFERENCE.&amp;nbsp; I thought the code was running this way, but part is and other parts throw exceptions in fortran.&amp;nbsp; So I'll be adding these other keywords and crossing my fingers.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 18:37:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028444#M109897</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-07-27T18:37:34Z</dc:date>
    </item>
    <item>
      <title>Success!  After adding the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028445#M109898</link>
      <description>&lt;P&gt;Success!&amp;nbsp; After adding the keywords, the crashing stopped, and also the weirdness on the VBA side is gone.&amp;nbsp; This turning out to be a good day for me!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 18:45:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028445#M109898</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-07-27T18:45:11Z</dc:date>
    </item>
    <item>
      <title>Quote:Brian Murphy wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028446#M109899</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Brian Murphy wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I am using /iface:default (although the linker&amp;nbsp;command line doesn't contain iface anywhere).&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;At the time the compiler driver gives control to the linker, the code generation is already completed and the compiled code is in .OBJ files, so it is too late to do anything to affect the linkage conventions used.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 18:45:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028446#M109899</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-07-27T18:45:58Z</dc:date>
    </item>
    <item>
      <title>oops!  I should have said</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028447#M109900</link>
      <description>&lt;P&gt;oops!&amp;nbsp; I should have said compiler command line, not linker.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 19:34:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028447#M109900</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-07-27T19:34:46Z</dc:date>
    </item>
    <item>
      <title>Since /iface:default is the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028448#M109901</link>
      <description>&lt;P&gt;Since /iface:default is the default, it isn't put on the command line.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 19:42:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028448#M109901</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-07-27T19:42:25Z</dc:date>
    </item>
    <item>
      <title>I kind of disagree that</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028449#M109902</link>
      <description>&lt;P&gt;I kind of disagree that putting everything in modules is more work. Looking back at Quote #14 it can be seen that the O.P. had no way of directly knowing that the interfaces matched and still doesn't. Does /warn:interfaces work for a multi-project solution such as this? If so, it doesn't seem to have been applied because the mismatched interfaces weren't caught by ifort. There's more than just STDCALL and REFERENCE because individual arguments can be given attributes as well, see SUBA above. If the interfaces aren't made explicit by putting everything in modules, it seems to me to be almost a necessity to bring /warn:interfaces to bear on the problem to have any hope that all the mismatches have indeed been found.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 20:38:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028449#M109902</guid>
      <dc:creator>JVanB</dc:creator>
      <dc:date>2015-07-27T20:38:28Z</dc:date>
    </item>
    <item>
      <title>I have /warn:interfaces</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028450#M109903</link>
      <description>&lt;P&gt;I have /warn:interfaces turned off because of scalers being passed to array dummy arguments.&amp;nbsp; I realize this is asking for trouble, but this code I'm porting from CVF to IVF has been in heavy use for over 10 years.&amp;nbsp; I'm&amp;nbsp;trying to get it working with the minimum of&amp;nbsp;edits to the source.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2015 01:42:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028450#M109903</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-07-28T01:42:07Z</dc:date>
    </item>
    <item>
      <title>Actually. /warn:interface</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028451#M109904</link>
      <description>&lt;P&gt;Actually. /warn:interface does work for a multi-project application. But I am wholly in favor of use of modules.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2015 01:45:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLLEXPORT-and-unresolved-external-reference/m-p/1028451#M109904</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-07-28T01:45:18Z</dc:date>
    </item>
  </channel>
</rss>

