<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Devacademy L4_e2.  mqtt_connect error -12 when connecting to HiveMq serverless cluster.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/122494/devacademy-l4_e2-mqtt_connect-error--12-when-connecting-to-hivemq-serverless-cluster</link><description>Hi, 
 I&amp;#39;m half way through the Cellular course on the dev academy and although I am able to connect to the Nordic and Hivemq publich brokers, when I attempt to connect to my serverless Hivemq cluster, I receive the mqtt_connect error 12. 
 My client_init</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 27 Jun 2025 20:04:41 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/122494/devacademy-l4_e2-mqtt_connect-error--12-when-connecting-to-hivemq-serverless-cluster" /><item><title>RE: Devacademy L4_e2.  mqtt_connect error -12 when connecting to HiveMq serverless cluster.</title><link>https://devzone.nordicsemi.com/thread/540776?ContentTypeID=1</link><pubDate>Fri, 27 Jun 2025 20:04:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e53d2f11-e262-4292-a4a3-3a490ffaf4c0</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;And finally, I have the answer.&amp;nbsp; I eventually found this link :&amp;nbsp;&lt;a id="" href="https://github.com/zephyrproject-rtos/zephyr/issues/73089"&gt;https://github.com/zephyrproject-rtos/zephyr/issues/73089&lt;/a&gt;&amp;nbsp;with this comment revealing the cause of the problem.&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1751053974420v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;There are multiple ways to assign the username and password and most will compile, but fail at runtime.&amp;nbsp; The final solution for me was to declare the mqtt_utf structs as static in main.c and then pass them as pointers to client_init.&amp;nbsp; It then took several attempts to find a working solution to assigning the values to the structs.&amp;nbsp; The final version looks like this:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;int&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;client_init&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;struct&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;mqtt_client&lt;/span&gt;&lt;span&gt;*&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;client&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;struct&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;mqtt_utf8&lt;/span&gt;&lt;span&gt;*&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;uname&lt;/span&gt;&lt;span&gt;, &lt;/span&gt;&lt;span&gt;struct&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;mqtt_utf8&lt;/span&gt;&lt;span&gt;*&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;pass&lt;/span&gt;&lt;span&gt;)&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;{&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;int&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;err&lt;/span&gt;&lt;span&gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; /* Initializes the client instance. */&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;mqtt_client_init&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;client&lt;/span&gt;&lt;span&gt;);&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt; /* Resolves the configured hostname and initializes the MQTT broker structure */&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;err&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;broker_init&lt;/span&gt;&lt;span&gt;();&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;if&lt;/span&gt;&lt;span&gt; (&lt;/span&gt;&lt;span&gt;err&lt;/span&gt;&lt;span&gt;) {&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;LOG_ERR&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;&amp;quot;Failed to initialise broker connection&amp;quot;&lt;/span&gt;&lt;span&gt;);&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;return&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;err&lt;/span&gt;&lt;span&gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; }&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;uname&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;utf8&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; (&lt;/span&gt;&lt;span&gt;uint8_t&lt;/span&gt;&lt;span&gt;*&lt;/span&gt;&lt;span&gt;)&lt;/span&gt;&lt;span&gt;&amp;quot;xxxxxxxxxx&amp;quot;&lt;/span&gt;&lt;span&gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;uname&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;size&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; (&lt;/span&gt;&lt;span&gt;uint32_t&lt;/span&gt;&lt;span&gt;)&lt;/span&gt;&lt;span&gt;strlen&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;uname&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;utf8&lt;/span&gt;&lt;span&gt;);&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;pass&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;utf8&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; (&lt;/span&gt;&lt;span&gt;uint8_t&lt;/span&gt;&lt;span&gt;*&lt;/span&gt;&lt;span&gt;)&lt;/span&gt;&lt;span&gt;&amp;quot;xxxxxxxxxx&amp;quot;&lt;/span&gt;&lt;span&gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;pass&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;size&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; (&lt;/span&gt;&lt;span&gt;uint32_t&lt;/span&gt;&lt;span&gt;)&lt;/span&gt;&lt;span&gt;strlen&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;pass&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;utf8&lt;/span&gt;&lt;span&gt;);&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt; /* MQTT client configuration */&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;client&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;broker&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;&amp;amp;&lt;/span&gt;&lt;span&gt;broker&lt;/span&gt;&lt;span&gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;client&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;evt_cb&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;mqtt_evt_handler&lt;/span&gt;&lt;span&gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;client&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;client_id&lt;/span&gt;&lt;span&gt;.&lt;/span&gt;&lt;span&gt;utf8&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;client_id_get&lt;/span&gt;&lt;span&gt;();&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;client&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;client_id&lt;/span&gt;&lt;span&gt;.&lt;/span&gt;&lt;span&gt;size&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;strlen&lt;/span&gt;&lt;span&gt;(&lt;/span&gt;&lt;span&gt;client&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;client_id&lt;/span&gt;&lt;span&gt;.&lt;/span&gt;&lt;span&gt;utf8&lt;/span&gt;&lt;span&gt;);&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;client&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;password&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;pass&lt;/span&gt;&lt;span&gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;client&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;user_name&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;uname&lt;/span&gt;&lt;span&gt;;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;client&lt;/span&gt;&lt;span&gt;-&amp;gt;&lt;/span&gt;&lt;span&gt;protocol_version&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt; MQTT_VERSION_3_1_1;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;This issue has cost me three production days and the fix is is incredibly flakey.&amp;nbsp; I would be grateful if a more elegant and robust method of implementing the username and password fields could be found in a future release.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;In the meantime, I hope this post helps someone struggling with the same problem.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Devacademy L4_e2.  mqtt_connect error -12 when connecting to HiveMq serverless cluster.</title><link>https://devzone.nordicsemi.com/thread/540683?ContentTypeID=1</link><pubDate>Fri, 27 Jun 2025 09:27:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:525cfbd3-9f44-4fcd-80a7-67c79793d0a7</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;I just took another look this morning and see now that the password first and then the username appear to be becoming corrupted with the first line of the mqtt_mutex_lock call at line 268 of mqtt.c.&amp;nbsp; I ran the debugger several times and got consistent results.&amp;nbsp; If this is correct, the mqtt_client struct is corrupted prior to entering client_connect.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Please could someone confirm if this is in fact the case?&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1751016457875v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Devacademy L4_e2.  mqtt_connect error -12 when connecting to HiveMq serverless cluster.</title><link>https://devzone.nordicsemi.com/thread/540552?ContentTypeID=1</link><pubDate>Thu, 26 Jun 2025 08:43:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:941c2308-5144-46cc-a90c-90af1fc07172</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;I started to debug mqtt_connect this morning and have found that the -12 seems to be coming from connect_request_encode line 832 which is pack_utf8_str(client-&amp;gt;username, buf).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The few other posts I have read seem also to be related to problems with the username / password structures.&lt;/p&gt;
&lt;p&gt;Any thoughts?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Devacademy L4_e2.  mqtt_connect error -12 when connecting to HiveMq serverless cluster.</title><link>https://devzone.nordicsemi.com/thread/540519?ContentTypeID=1</link><pubDate>Wed, 25 Jun 2025 18:13:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e98958c2-b7dc-426b-aae7-fdf1d8f442d2</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;Hi Susheel,&lt;/p&gt;
&lt;p&gt;Thanks for the quick response.&lt;/p&gt;
&lt;p&gt;This is the output with the settings as above.&amp;nbsp; &amp;nbsp;&lt;/p&gt;
&lt;p&gt;*** Using Zephyr OS v4.0.99-77f865b8f8d0 ***&lt;br /&gt;[00:00:00.365,753] &amp;lt;inf&amp;gt; Lesson4_Exercise2: Initializing modem library&lt;br /&gt;[00:00:00.710,418] &amp;lt;inf&amp;gt; Lesson4_Exercise2: match&lt;/p&gt;
&lt;p&gt;[00:00:00.710,449] &amp;lt;inf&amp;gt; Lesson4_Exercise2: Connecting to LTE network&lt;br /&gt;[00:00:01.919,677] &amp;lt;inf&amp;gt; Lesson4_Exercise2: RRC mode: Connected&lt;br /&gt;[00:00:06.263,183] &amp;lt;inf&amp;gt; Lesson4_Exercise2: Network registration status: Connected - roaming&lt;br /&gt;[00:00:06.263,275] &amp;lt;inf&amp;gt; Lesson4_Exercise2: Connected to LTE network&lt;br /&gt;[00:00:06.486,022] &amp;lt;inf&amp;gt; Lesson4_Exercise2: IPv4 Address found 46.137.47.218&lt;br /&gt;[00:00:06.486,541] &amp;lt;inf&amp;gt; Lesson4_Exercise2: client_id = nrf-359404230139975&lt;br /&gt;[00:00:06.486,572] &amp;lt;inf&amp;gt; Lesson4_Exercise2: TLS enabled&lt;br /&gt;[00:00:08.184,326] &amp;lt;err&amp;gt; Lesson4_Exercise2: Error in mqtt_connect: -12&lt;br /&gt;[00:00:08.184,356] &amp;lt;inf&amp;gt; Lesson4_Exercise2: Reconnecting in 60 seconds...&lt;br /&gt;[00:00:13.665,435] &amp;lt;inf&amp;gt; Lesson4_Exercise2: RRC mode: Idle&lt;br /&gt;[00:01:08.292,297] &amp;lt;inf&amp;gt; Lesson4_Exercise2: RRC mode: Connected&lt;br /&gt;[00:01:10.078,338] &amp;lt;err&amp;gt; Lesson4_Exercise2: Error in mqtt_connect: -12&lt;br /&gt;[00:01:10.078,369] &amp;lt;inf&amp;gt; Lesson4_Exercise2: Reconnecting in 60 seconds...&lt;br /&gt;[00:01:15.674,865] &amp;lt;inf&amp;gt; Lesson4_Exercise2: RRC mode: Idle&lt;/p&gt;
&lt;p&gt;The two lines regarding the MBEDTLS_HEAP caused build errors due to dependencies.&amp;nbsp; I haven&amp;#39;t come across these settings before, can you give me a link to the relevant documentation.&lt;/p&gt;
&lt;p&gt;As I&amp;#39;m new to working with cellular (hence why I&amp;#39;m doing the course), can you give me some tips on how best to debug the TLS handshake.&amp;nbsp; Presumably, this is the source of the problem(?)&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Devacademy L4_e2.  mqtt_connect error -12 when connecting to HiveMq serverless cluster.</title><link>https://devzone.nordicsemi.com/thread/540465?ContentTypeID=1</link><pubDate>Wed, 25 Jun 2025 11:25:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:df8973d8-9d1f-4f3b-a117-b648f621757b</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;-12 error is due to insufficient memory and not any access with username or password.&lt;/p&gt;
&lt;p&gt;Make sure you have given enough memory for all the contexts that need heap memory in your prj.conf something like below. Use this as template and start to reconfigure things up and down in mem size. You might have to do some trial and error if you do not indend to do proper debugging to see where you get this error. If would be helpful to give us full serial log here so that I can attempt to get a hint of the context of the error.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;
CONFIG_MAIN_STACK_SIZE=8192 
CONFIG_HEAP_MEM_POOL_SIZE=16384 
CONFIG_MBEDTLS_HEAP=y
CONFIG_MBEDTLS_HEAP_SIZE=16384

#slim down Zephyr net-buffers if still hitting RAM limits
CONFIG_NET_BUF_RX_COUNT=5
CONFIG_NET_BUF_TX_COUNT=5&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Devacademy L4_e2.  mqtt_connect error -12 when connecting to HiveMq serverless cluster.</title><link>https://devzone.nordicsemi.com/thread/540428?ContentTypeID=1</link><pubDate>Wed, 25 Jun 2025 07:54:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a95f09f5-71be-401b-a39b-91c600d50e14</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;I forgot to mention that I am using the isrgrootx1.pem and the certificate.h is:&lt;/p&gt;
&lt;p&gt;#define CA_CERTIFICATE \&lt;br /&gt;&amp;quot;-----BEGIN CERTIFICATE-----\n&amp;quot;\&lt;br /&gt;&amp;quot;MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw\n&amp;quot;\&lt;br /&gt;&amp;quot;TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh\n&amp;quot;\&lt;br /&gt;&amp;quot;cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4\n&amp;quot;\&lt;br /&gt;&amp;quot;WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu\n&amp;quot;\&lt;br /&gt;&amp;quot;ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY\n&amp;quot;\&lt;br /&gt;&amp;quot;MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc\n&amp;quot;\&lt;br /&gt;&amp;quot;h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+\n&amp;quot;\&lt;br /&gt;&amp;quot;0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U\n&amp;quot;\&lt;br /&gt;&amp;quot;A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW\n&amp;quot;\&lt;br /&gt;&amp;quot;T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH\n&amp;quot;\&lt;br /&gt;&amp;quot;B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC\n&amp;quot;\&lt;br /&gt;&amp;quot;B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv\n&amp;quot;\&lt;br /&gt;&amp;quot;KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn\n&amp;quot;\&lt;br /&gt;&amp;quot;OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn\n&amp;quot;\&lt;br /&gt;&amp;quot;jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw\n&amp;quot;\&lt;br /&gt;&amp;quot;qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI\n&amp;quot;\&lt;br /&gt;&amp;quot;rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV\n&amp;quot;\&lt;br /&gt;&amp;quot;HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq\n&amp;quot;\&lt;br /&gt;&amp;quot;hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL\n&amp;quot;\&lt;br /&gt;&amp;quot;ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ\n&amp;quot;\&lt;br /&gt;&amp;quot;3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK\n&amp;quot;\&lt;br /&gt;&amp;quot;NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5\n&amp;quot;\&lt;br /&gt;&amp;quot;ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur\n&amp;quot;\&lt;br /&gt;&amp;quot;TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC\n&amp;quot;\&lt;br /&gt;&amp;quot;jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc\n&amp;quot;\&lt;br /&gt;&amp;quot;oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq\n&amp;quot;\&lt;br /&gt;&amp;quot;4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA\n&amp;quot;\&lt;br /&gt;&amp;quot;mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d\n&amp;quot;\&lt;br /&gt;&amp;quot;emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc=\n&amp;quot;\&lt;br /&gt;&amp;quot;-----END CERTIFICATE-----&amp;quot;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>