<?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: Create IFC Property and save as .ifc file in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/682837#M10685</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/38170"&gt;@YONGWOO KIM&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just a rough guess: Is it possible that you have set the the export IFC translator to a different one than your IFC Preview Translator?&lt;BR /&gt;I think it would be possible that your IFC property is somehow excluded by the actual IFC translator settings, but you see it in the Tool Box if you have set up a different IFC Preview translator.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that's not the case, then I'll give it a try to run your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Bernd&lt;/P&gt;</description>
    <pubDate>Thu, 06 Nov 2025 14:54:54 GMT</pubDate>
    <dc:creator>BerndSchwarzenbacher</dc:creator>
    <dc:date>2025-11-06T14:54:54Z</dc:date>
    <item>
      <title>Create IFC Property and save as .ifc file</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/671843#M10517</link>
      <description>&lt;P&gt;First of all, when viewed in ArchiCAD 28, the IFC property values are generated correctly.&lt;/P&gt;&lt;P&gt;The property set name is 'BIMLOGI', which is the property I created in the add-in.&lt;/P&gt;&lt;P&gt;This property is created correctly in both debug and release modes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="아키캐드 IFC 속성창.png" style="width: 715px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/90348i4E293BB82D425BA4/image-size/large?v=v2&amp;amp;px=999" role="button" title="아키캐드 IFC 속성창.png" alt="아키캐드 IFC 속성창.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, there is a problem when saving this as an IFC file.&lt;/P&gt;&lt;P&gt;If I create an IFC property in Debug mode and save it, the value exists when I open the IFC.&lt;BR /&gt;If I create an IFC property in Release mode and save it, the value doesn't exist when I open the IFC.&lt;/P&gt;&lt;P&gt;I can't even find the property set name 'BIMLOGI'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This image shows the property values when I open an IFC file saved in Debug mode.&lt;/P&gt;&lt;P&gt;The values may be different from the picture above, but these are the correct Property values for the object selected for capture.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="디버그_속성창.png" style="width: 540px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/90351i40605BC5482A0CA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="디버그_속성창.png" alt="디버그_속성창.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This image shows the property values when I open an IFC file saved in Release mode.&lt;/P&gt;&lt;P&gt;The original .pln file contains property values, but I can't even find the property set name 'BIMLOGI'.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="릴리즈_속성창.png" style="width: 721px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/90352i7726B30CBC1E84BC/image-size/large?v=v2&amp;amp;px=999" role="button" title="릴리즈_속성창.png" alt="릴리즈_속성창.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I manually edit the values in "Manage IFC Properties...", there will be no issues when saving as an IFC file, even in Release mode.&lt;/P&gt;&lt;P&gt;I thought there was a problem with generating IFC properties in Release mode.&lt;/P&gt;&lt;P&gt;But even after debugging, the ErrCode of 'ACAPI_Element_SetIFCProperty' is NoError.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my code for create ifc property.&lt;/P&gt;&lt;P&gt;There were no problems with AC24 and AC26.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;bool CUtility::CreateIFCProperty(API_Guid elemGuid, UniString ifcSetName, UniString ifcName, UniString ifcContent) {
	API_IFCProperty ifcProp;
	ifcProp.head.propertySetName = ifcSetName;
	ifcProp.head.propertyName = ifcName;
	ifcProp.head.propertyType = API_IFCPropertySingleValueType;
	ifcProp.head.readOnly = false;
	ifcProp.singleValue.nominalValue.valueType = L"IfcText";
	ifcProp.singleValue.nominalValue.value.primitiveType = API_IFCPropertyAnyValueStringType;
	ifcProp.singleValue.nominalValue.value.stringValue = ifcContent;
	GSErrCode err = ACAPI_Element_SetIFCProperty(elemGuid, ifcProp);

	if (err == NoError)
		return true;
	else
		return false;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any solution?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Aug 2025 00:14:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/671843#M10517</guid>
      <dc:creator>YONGWOO KIM</dc:creator>
      <dc:date>2025-08-04T00:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Create IFC Property and save as .ifc file</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/673045#M10524</link>
      <description>&lt;P&gt;The documentation for &lt;EM&gt;API_IFCPropertyAnyValue&lt;/EM&gt;&amp;nbsp;states:&lt;/P&gt;
&lt;P&gt;"&lt;I&gt;The &lt;/I&gt;&lt;SPAN&gt;`&lt;/SPAN&gt;&lt;I&gt;primitiveType&lt;/I&gt;&lt;SPAN&gt;`&lt;/SPAN&gt;&lt;I&gt; field is an output parameter only, shall not be set when setting up a new @ref API_IFCPropertyValue structure."&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I recommend removing this line for a start:&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;ifcProp.singleValue.nominalValue.value.primitiveType = API_IFCPropertyAnyValueStringType;&lt;/LI-CODE&gt;
&lt;P&gt;Also note that &lt;EM&gt;ACAPI_Element_SetIFCProperty&lt;/EM&gt; is marked as deprecated - I recommend moving to the new IFC API as soon as you are able.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Aug 2025 16:05:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/673045#M10524</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2025-08-12T16:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create IFC Property and save as .ifc file</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/673688#M10526</link>
      <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to confirm that the property exists when saving as IFC by removing the line that sets the primitiveType using the method you suggested.&lt;/P&gt;&lt;P&gt;However, only the IFC property exists, and the value isn't exported.&lt;BR /&gt;Could you also confirm the part where the value is modified?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;bool CUtility::ChangeIFCProperty(API_Guid elemGuid, UniString ifcSetName, UniString ifcName, UniString ifcContent) {
	GS::Array&amp;lt;API_IFCProperty&amp;gt; properties;
	ACAPI_Element_GetIFCProperties(elemGuid, false, &amp;amp;properties);

	GSErrCode errCode = Error;
	for (int i = 0; i &amp;lt; properties.GetSize(); i++) {
		if (properties[i].head.propertySetName.Compare(ifcSetName) == UniString::CompareResult::Equal
			&amp;amp;&amp;amp; properties[i].head.propertyName.Compare(ifcName) == UniString::CompareResult::Equal) {
			properties[i].singleValue.nominalValue.value.stringValue = ifcContent;
			errCode = ACAPI_Element_SetIFCProperty(elemGuid, properties[i]);
		}
	}

	if (errCode == NoError)
		return true;
	else
		return false;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is property window before save as .ifc file.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="저장전_속성창.png" style="width: 728px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/90979i60CAD4BEDE9C0C71/image-size/large?v=v2&amp;amp;px=999" role="button" title="저장전_속성창.png" alt="저장전_속성창.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is ifc property in ifc viewer.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="저장후_ifc뷰어.png" style="width: 361px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/90980iECEB83A83867BF3D/image-size/large?v=v2&amp;amp;px=999" role="button" title="저장후_ifc뷰어.png" alt="저장후_ifc뷰어.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I can't find the new IFC API. Where should I find it?&lt;BR /&gt;The API documentation says, "Deprecated function, will be deleted in the upcoming version!" but doesn't tell me where to refer to it.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Aug 2025 06:37:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/673688#M10526</guid>
      <dc:creator>YONGWOO KIM</dc:creator>
      <dc:date>2025-08-18T06:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create IFC Property and save as .ifc file</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/673948#M10529</link>
      <description>&lt;P&gt;If the properties are appearing in element settings dialogs, I can't think of anything related to the API that would prevent that from exporting with an IFC file - perhaps someone else can suggest a cause?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The documentation for &lt;EM&gt;ACAPI_Element_SetIFCProperty&lt;/EM&gt;&amp;nbsp;says:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"See IFCAPI::v1::RegisterPropertyHook for dynamic property manipulation with hooks."&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find the new IFC API in the dev-kit path: &lt;EM&gt;Support/Modules/IFCInOutAPI/ACAPI&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;There are also example IFC projects in the dev-kit.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Aug 2025 19:30:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/673948#M10529</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2025-08-19T19:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create IFC Property and save as .ifc file</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/677834#M10580</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Initializing the new property before setting its fields may help with the release/debug difference.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;	API_IFCProperty ifcProp = {};&lt;/LI-CODE&gt;
&lt;P&gt;Also, could you please test the example code that adds an IFC property?&lt;/P&gt;
&lt;P&gt;Examples/IFCHook_Test/Src/IFCHook_Test.cpp is a good starting point.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best, Ákos&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 08:29:51 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/677834#M10580</guid>
      <dc:creator>Akos Somorjai</dc:creator>
      <dc:date>2025-09-25T08:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Create IFC Property and save as .ifc file</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/681567#M10668</link>
      <description>&lt;P&gt;Hello. Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I checked the Examples/IFCHook_Test/Src/IFCHook_Test.cpp you suggested, but for my current situation, I need to continue using ACAPI_Element_SetIFCProperty. If ACAPI_Element_SetIFCProperty is technically unavailable in AC28 or removed in the future, I'll have to replace it, but until then, I'm going to use it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I initialized the new property, but I'm still having the same issue.&lt;/P&gt;&lt;P&gt;Here's the file I modified and used. Could you please check it?&lt;BR /&gt;Is there a solution?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;bool CUtility::ChangeIFCProperty(API_Guid elemGuid, UniString ifcSetName, UniString ifcName, UniString ifcContent) {
	GS::Array&amp;lt;API_IFCProperty&amp;gt; properties;
	API_IFCProperty ifcProperty = {};
	ACAPI_Element_GetIFCProperties(elemGuid, false, &amp;amp;properties);

	GSErrCode errCode = Error;
	for (int i = 0; i &amp;lt; properties.GetSize(); i++) {
		if (properties[i].head.propertySetName.Compare(ifcSetName) == UniString::CompareResult::Equal
			&amp;amp;&amp;amp; properties[i].head.propertyName.Compare(ifcName) == UniString::CompareResult::Equal) {
			ifcProperty = properties[i];
			ifcProperty.singleValue.nominalValue.value.stringValue = ifcContent;
			errCode = ACAPI_Element_SetIFCProperty(elemGuid, ifcProperty);
		}
	}

	// Previous
	/*GS::Array&amp;lt;API_IFCProperty&amp;gt; properties;
	ACAPI_Element_GetIFCProperties(elemGuid, false, &amp;amp;properties);

	GSErrCode errCode = Error;
	for (int i = 0; i &amp;lt; properties.GetSize(); i++) {
		if (properties[i].head.propertySetName.Compare(ifcSetName) == UniString::CompareResult::Equal
			&amp;amp;&amp;amp; properties[i].head.propertyName.Compare(ifcName) == UniString::CompareResult::Equal) {
			properties[i].singleValue.nominalValue.value.stringValue = ifcContent;
			errCode = ACAPI_Element_SetIFCProperty(elemGuid, properties[i]);
		}
	}*/

	if (errCode == NoError)
		return true;
	else
		return false;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2025 07:10:58 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/681567#M10668</guid>
      <dc:creator>YONGWOO KIM</dc:creator>
      <dc:date>2025-10-27T07:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Create IFC Property and save as .ifc file</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/682837#M10685</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/38170"&gt;@YONGWOO KIM&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just a rough guess: Is it possible that you have set the the export IFC translator to a different one than your IFC Preview Translator?&lt;BR /&gt;I think it would be possible that your IFC property is somehow excluded by the actual IFC translator settings, but you see it in the Tool Box if you have set up a different IFC Preview translator.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that's not the case, then I'll give it a try to run your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Bernd&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 14:54:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/682837#M10685</guid>
      <dc:creator>BerndSchwarzenbacher</dc:creator>
      <dc:date>2025-11-06T14:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create IFC Property and save as .ifc file</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/683346#M10694</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried changing the IFC Translator, but the same issue persists.&lt;/P&gt;&lt;P&gt;There's a feature called Property Mapping, so I tried that, but it didn't resolve the issue.&lt;/P&gt;&lt;P&gt;I've attached a photo.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IFCTranslator_Mapping.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/94297i35F891D81C87DEF3/image-size/large?v=v2&amp;amp;px=999" role="button" title="IFCTranslator_Mapping.png" alt="IFCTranslator_Mapping.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created the ifc property using CreateIFCProperty and then modified it using ChangeIFCProperty.&lt;/P&gt;&lt;P&gt;Could you please test it?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 09:14:47 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/683346#M10694</guid>
      <dc:creator>YONGWOO KIM</dc:creator>
      <dc:date>2025-11-11T09:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create IFC Property and save as .ifc file</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/684203#M10700</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/38170"&gt;@YONGWOO KIM&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've slightly adapted and tested your CreateIFCProperty code (in Debug mode only) and came to almost the same conclusion as you:&lt;BR /&gt;The IFCProperty was created but no value was actually in it once saved to an .ifc file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried a few things. It seems to work after setting "ifcProp.singleValue.nominalValue.value.hasValue = true".&lt;BR /&gt;Here's my very similar code that works for me. Please try it:&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;GSErrCode CreateIFCProperty (API_Guid elemGuid, GS::UniString ifcSetName, GS::UniString ifcName, GS::UniString ifcContent)
{
	API_IFCProperty ifcProp{};
	ifcProp.head.propertySetName = ifcSetName;
	ifcProp.head.propertyName = ifcName;
	ifcProp.head.propertyType = API_IFCPropertySingleValueType;
	ifcProp.head.readOnly = false;
	ifcProp.singleValue.nominalValue.valueType = L"IfcText";
	ifcProp.singleValue.nominalValue.value.stringValue = ifcContent;
	ifcProp.singleValue.nominalValue.value.hasValue = true;
	return ACAPI_CallUndoableCommand ("IFCTest", [&amp;amp;]() {
		return ACAPI_Element_SetIFCProperty (elemGuid, ifcProp);
		});
}
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This might also explain the difference in Debug &amp;amp; Release build before. 'hasValue' might have been set to 'true' in one of the cases, if you don't specifically 0-initialize the structure (as suggested by Akos). But that's just a wild guess from me.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please report back if this solved your issue.&lt;BR /&gt;&lt;BR /&gt;Bernd&lt;BR /&gt;Bernd&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2025 11:17:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Create-IFC-Property-and-save-as-ifc-file/m-p/684203#M10700</guid>
      <dc:creator>BerndSchwarzenbacher</dc:creator>
      <dc:date>2025-11-19T11:17:31Z</dc:date>
    </item>
  </channel>
</rss>

