<?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: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253507#M148667</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you are doing good.&lt;/P&gt;&lt;P&gt;Is the error: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata observed when the job is run locally from the studio?&lt;/P&gt;&lt;P&gt;Please try to build the job and check the routines that get packaged to the .zip file.&lt;/P&gt;&lt;P&gt;The zip should have the Dynamic Metadata in the routines/system path.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
    <pubDate>Wed, 01 Jun 2022 04:58:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-06-01T04:58:30Z</dc:date>
    <item>
      <title>Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253506#M148666</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a simple input component which subscribes to an event bus, and produces Records based on the input. &lt;/P&gt;&lt;P&gt;The component works well in IntelliJ, passes the tests. &lt;/P&gt;&lt;P&gt;When deployed to TOS the "Guess Schema" action also works, and returns a valid schema.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However when I run the job and the first message arrives java.lang.NoClassDefFoundError: routines/system/DynamicMetadata is thrown. It happens when the runtime tries to cast the Record returned by the input component to the type created from the schema.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have any idea, how to fix it? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that the DynamicMetadata is an enterprise only feature, and I don't need it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you In Advance,&lt;/P&gt;&lt;P&gt; Gabor&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 14:45:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253506#M148666</guid>
      <dc:creator>gnemethartemis</dc:creator>
      <dc:date>2026-01-02T14:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253507#M148667</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope you are doing good.&lt;/P&gt;&lt;P&gt;Is the error: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata observed when the job is run locally from the studio?&lt;/P&gt;&lt;P&gt;Please try to build the job and check the routines that get packaged to the .zip file.&lt;/P&gt;&lt;P&gt;The zip should have the Dynamic Metadata in the routines/system path.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 04:58:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253507#M148667</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-06-01T04:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253508#M148668</link>
      <description>&lt;P&gt;Hi asaxena,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately the error is thrown both in TOS and when running as a standalone job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I went ahead and built a schema from the studio supplied information and provide that for the RecordBuilder, but it didn't help either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gabor&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is how the record is built :&lt;/P&gt;&lt;P&gt;------------&lt;/P&gt;&lt;P&gt;private Record buildRecord(Map&amp;lt;String, Object&amp;gt; source){&lt;/P&gt;&lt;P&gt;    if (source == null) return null;&lt;/P&gt;&lt;P&gt;    System.out.println("Building record");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;    buildSchema();&lt;/P&gt;&lt;P&gt;    if (this.schema == null) System.out.println("There is NO schema defined");&lt;/P&gt;&lt;P&gt;    else System.out.println("Schema is defined");&lt;/P&gt;&lt;P&gt;    Record.Builder rb = this.schema == null ?  builderFactory.newRecordBuilder() : builderFactory.newRecordBuilder(schema);&lt;/P&gt;&lt;P&gt;    for (String s : source.keySet()){&lt;/P&gt;&lt;P&gt;        Object value  = source.get(s);&lt;/P&gt;&lt;P&gt;        if (value == null) continue;&lt;/P&gt;&lt;P&gt;        if (value instanceof String) rb.withString(s, (String)value);&lt;/P&gt;&lt;P&gt;        else if (value instanceof Boolean) rb.withBoolean(s, (boolean)value);&lt;/P&gt;&lt;P&gt;        else if (value instanceof Date) rb.withDateTime(s, (Date)value);&lt;/P&gt;&lt;P&gt;        else if (value instanceof Long) rb.withLong(s, (long) value);&lt;/P&gt;&lt;P&gt;        else if (value instanceof Float) rb.withFloat(s, (long) value);&lt;/P&gt;&lt;P&gt;    }&lt;/P&gt;&lt;P&gt;    return rb.build();&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;--------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the whole output for the job:&lt;/P&gt;&lt;P&gt;&amp;nbsp;.\connectorTest_run.ps1&lt;/P&gt;&lt;P&gt;outgoing schema is defined&lt;/P&gt;&lt;P&gt;SchemaInfo(label=__replayid__, key=true, talendType=id_Long, nullable=false, pattern=)&lt;/P&gt;&lt;P&gt;SchemaInfo(label=CreatedById, key=false, talendType=id_String, nullable=true, pattern=)&lt;/P&gt;&lt;P&gt;SchemaInfo(label=CreatedDate, key=false, talendType=id_String, nullable=true, pattern=)&lt;/P&gt;&lt;P&gt;SchemaInfo(label=Location__c, key=false, talendType=id_String, nullable=true, pattern=)&lt;/P&gt;&lt;P&gt;SchemaInfo(label=Urgent__c, key=false, talendType=id_Boolean, nullable=false, pattern=)&lt;/P&gt;&lt;P&gt;Handshake message&lt;/P&gt;&lt;P&gt;{ext={replay=true, payload.format=true}, minimumVersion=1.0, clientId=9ie1tc6txy2vktgullgebxs4j4zs, supportedConnectionTypes=[Ljava.lang.Object;@7cdb56b5, channel=/meta/handshake, id=1, version=1.0, successful=true}&lt;/P&gt;&lt;P&gt;Building record&lt;/P&gt;&lt;P&gt;Schema is defined&lt;/P&gt;&lt;P&gt;[statistics] disconnected&lt;/P&gt;&lt;P&gt;Exception in thread "main" java.lang.NoClassDefFoundError: routines/system/DynamicMetadata&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at java.base/java.lang.Class.getDeclaredMethods0(Native Method)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3402)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at java.base/java.lang.Class.getDeclaredMethod(Class.java:2673)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at org.talend.sdk.component.runtime.record.RecordConverters$MappingMeta.newInstance(RecordConverters.java:479)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at org.talend.sdk.component.runtime.record.RecordConverters.toType(RecordConverters.java:268)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at platformevent.connectortest_0_1.connectorTest.SfPlatformEventPlatformEventInput_1Process(connectorTest.java:838)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at platformevent.connectortest_0_1.connectorTest.runJobInTOS(connectorTest.java:1496)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at platformevent.connectortest_0_1.connectorTest.main(connectorTest.java:1327)&lt;/P&gt;&lt;P&gt;Caused by: java.lang.ClassNotFoundException: routines.system.DynamicMetadata&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;... 8 more&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 07:53:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253508#M148668</guid>
      <dc:creator>gnemethartemis</dc:creator>
      <dc:date>2022-06-01T07:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253509#M148669</link>
      <description>&lt;P&gt;Hi  &lt;/P&gt;&lt;P&gt;Please provide the following information for us to be more better evaluate the issue:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Product version (such as Talend Cloud Real-Time Big Data Platform (7.3.120200219_1130)&lt;/P&gt;&lt;P&gt;- Operating System (such as Windows 10, 64 bit)&lt;/P&gt;&lt;P&gt;- Java version (such as Oracle JDK build 11.0.8+10-LTS)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 08:16:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253509#M148669</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-06-01T08:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253510#M148670</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Product version: TOS_DI-20211109_1610-V8.0.1&lt;/LI&gt;&lt;LI&gt;Operating System:  Windows 10 pro 64 bit,&lt;/LI&gt;&lt;LI&gt;Java version: openjdk 11.0.14.1 2022-02-08 LTS&lt;UL&gt;&lt;LI&gt;OpenJDK Runtime Environment Zulu11.54+25-CA (build 11.0.14.1+1-LTS)&lt;/LI&gt;&lt;LI&gt;OpenJDK 64-Bit Server VM Zulu11.54+25-CA (build 11.0.14.1+1-LTS, mixed mode)&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt; Gabor&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 08:29:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253510#M148670</guid>
      <dc:creator>gnemethartemis</dc:creator>
      <dc:date>2022-06-01T08:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253511#M148671</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can reproduce this bug with the component kit version 1.38.6 and also the newest version 1.51.2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Product version: TOS_DI-20211109_1610-V8.0.1&lt;/LI&gt;&lt;LI&gt;Operating System: Linux &lt;/LI&gt;&lt;LI&gt;Java version: openjdk 11.0.17 2022-10-18&lt;/LI&gt;&lt;LI&gt;Talend Component Kit 1.38.6 and 1.51.2&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently Talend 8.x does not seem to have a compatible Talend Component Kit version. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Uli&lt;/P&gt;</description>
      <pubDate>Wed, 21 Dec 2022 08:48:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253511#M148671</guid>
      <dc:creator>Ulrich_Wohlfeil</dc:creator>
      <dc:date>2022-12-21T08:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253512#M148672</link>
      <description>&lt;P&gt;Update:&lt;/P&gt;&lt;P&gt;as expected, same problem under Windows 10.&lt;/P&gt;&lt;P&gt;Problem does not exists in TOS 7.3.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Dec 2022 09:16:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253512#M148672</guid>
      <dc:creator>Ulrich_Wohlfeil</dc:creator>
      <dc:date>2022-12-21T09:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253513#M148673</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't have a final fixVersion but component-runtime soon will include a fix for this. So in theory once that is released you can use the latest runtime and it will be compatible with TOS as well. https://jira.talendforge.org/browse/TCOMP-2165&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry about the inconvenience caused!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Balázs&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 13:12:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253513#M148673</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-16T13:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253514#M148674</link>
      <description>&lt;P&gt;Hi, how can I update latest runtime to my TOS?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 09:55:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253514#M148674</guid>
      <dc:creator>Hieu_Trung</dc:creator>
      <dc:date>2023-09-13T09:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253515#M148675</link>
      <description>&lt;P&gt;basically you have to build your component with the latest version of component kit runtime, as of now 1.60&lt;/P&gt;&lt;P&gt;https://talend.github.io/component-runtime/main/latest/index.html&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That version should work with TOS 8.0 too, but some features might require Talend 8.0 with monthly release of R2023-09  as the framework itself constantly evolving.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 11:51:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253515#M148675</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-13T11:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253516#M148676</link>
      <description>&lt;P&gt;Thanks for your response, I am new to TOS and under learning phase. My TOS is 8.0, how do I update the patch to R2023-09?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 12:04:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253516#M148676</guid>
      <dc:creator>Hieu_Trung</dc:creator>
      <dc:date>2023-09-13T12:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253517#M148677</link>
      <description>&lt;P&gt;Talend Open Studio doesn't have patches. Talend Cloud Data Integration a.k.a the enterprise version receives security fixes, new features on a monthly basis. &lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 13:05:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253517#M148677</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-13T13:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Input component: java.lang.NoClassDefFoundError: routines/system/DynamicMetadata</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253518#M148678</link>
      <description>&lt;P&gt;I understand, do you have any idea on how to change the component-runtime on TOS 8.0? As I can see, my TOS is using component-runtime version 1.37.0, which is not the latest as I am using to develop my custom component (ver 1.60.0)&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 13:45:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Custom-Input-component-java-lang-NoClassDefFoundError-routines/m-p/2253518#M148678</guid>
      <dc:creator>Hieu_Trung</dc:creator>
      <dc:date>2023-09-13T13:45:18Z</dc:date>
    </item>
  </channel>
</rss>

