Matter various fixes (#18377)

This commit is contained in:
s-hadinger 2023-04-10 12:59:23 +02:00 committed by GitHub
parent f06104b0b7
commit 506248be99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 1880 additions and 1523 deletions

View File

@ -259,7 +259,6 @@
* are not required.
* The default is to use the functions in the standard library.
**/
#ifdef USE_BERRY_PSRAM
#ifdef __cplusplus
extern "C" {
#endif
@ -270,6 +269,7 @@ extern "C" {
#ifdef __cplusplus
}
#endif
#ifdef USE_BERRY_PSRAM
#define BE_EXPLICIT_MALLOC berry_malloc
#define BE_EXPLICIT_FREE berry_free
#define BE_EXPLICIT_REALLOC berry_realloc
@ -306,6 +306,10 @@ extern "C" {
#undef BE_STACK_START
#define BE_STACK_START 200
#endif // USE_LVGL
#ifdef USE_MATTER_DEVICE
#undef BE_STACK_START
#define BE_STACK_START 256
#endif // USE_MATTER_DEVICE
#endif // USE_BERRY_DEBUG
#endif

View File

@ -164,6 +164,7 @@ class Matter_Commisioning_Context
var raw = resp.encode_frame(pbkdfparamresp_raw)
self.responder.send_response(raw, msg.remote_ip, msg.remote_port, resp.message_counter, msg.session.local_session_id)
return true
end
def parse_Pake1(msg)
@ -244,6 +245,7 @@ class Matter_Commisioning_Context
var raw = resp.encode_frame(pake2_raw)
self.responder.send_response(raw, msg.remote_ip, msg.remote_port, resp.message_counter, msg.session.local_session_id)
return true
end
def parse_Pake3(msg)
@ -286,6 +288,7 @@ class Matter_Commisioning_Context
var raw = self.send_status_report(msg, 0x00, 0x0000, 0x0000, false)
self.add_session(self.future_local_session_id, self.future_initiator_session_id, self.I2RKey, self.R2IKey, self.AttestationChallenge, self.created)
return true
end
def find_fabric_by_destination_id(destinationId, initiatorRandom)
@ -329,42 +332,28 @@ class Matter_Commisioning_Context
# find session
var is_resumption = (sigma1.resumptionID != nil && sigma1.initiatorResumeMIC != nil)
tasmota.log(string.format("MTR: is_resumption=%i", is_resumption ? 1 : 0), 4)
is_resumption = false # quick fix TODO
# TODO disable resumption until fixed
is_resumption = false
# Check that it's a resumption
var session = msg.session
var session_resumption
if is_resumption
session = self.device.sessions.find_session_by_resumption_id(sigma1.resumptionID)
else
# new CASE session, assign to existing fabric
var fabric = self.find_fabric_by_destination_id(sigma1.destinationId, sigma1.initiatorRandom)
session._fabric = fabric
session_resumption = self.device.sessions.find_session_by_resumption_id(sigma1.resumptionID)
tasmota.log(string.format("MTR: session_resumption found session=%s session_resumption=%s", matter.inspect(session), matter.inspect(session_resumption)), 4)
if session_resumption == nil || session_resumption._fabric == nil
is_resumption = false
end
if session == nil || session._fabric == nil
tasmota.log("MTR: StatusReport(GeneralCode: FAILURE, ProtocolId: SECURE_CHANNEL, ProtocolCode: NO_SHARED_TRUST_ROOTS)", 2)
var raw = self.send_status_report(msg, 0x01, 0x0000, 0x0001, false)
return false
end
session._source_node_id = msg.source_node_id
session.set_mode_CASE()
if msg.session != session
self.device.sessions.remove_session(msg.session) # drop the temporary session that was created
end
msg.session = session
session.__future_initiator_session_id = sigma1.initiator_session_id # update initiator_session_id
session.__future_local_session_id = self.device.sessions.gen_local_session_id()
self.future_local_session_id = session.__future_local_session_id
tasmota.log(string.format("MTR: +Session (%6i) from '[%s]:%i'", self.future_local_session_id, msg.remote_ip, msg.remote_port), 2)
# Check that it's a resumption
if is_resumption
# Resumption p.169
var s1rk_salt = sigma1.initiatorRandom + sigma1.resumptionID
var s1rk_info = bytes().fromstring("Sigma1_Resume")
var s1rk = crypto.HKDF_SHA256().derive(session.shared_secret, s1rk_salt, s1rk_info, 16)
var s1rk = crypto.HKDF_SHA256().derive(session_resumption.shared_secret, s1rk_salt, s1rk_info, 16)
var Resume1MIC_Nonce = bytes().fromstring("NCASE_SigmaR1")
var Resume1MIC_Nonce = bytes().fromstring("NCASE_SigmaS1")
var encrypted = sigma1.initiatorResumeMIC[0..-17]
var tag = sigma1.initiatorResumeMIC[-16..]
var ec = crypto.AES_CCM(s1rk, Resume1MIC_Nonce, bytes(), size(encrypted), 16)
@ -378,16 +367,26 @@ class Matter_Commisioning_Context
tasmota.log("MTR: * decrypted_tag = " + decrypted_tag.tohex(), 4)
tasmota.log("****************************************", 4)
if tag == decrypted_tag
session._fabric = session_resumption._fabric
session._source_node_id = msg.source_node_id
session.set_mode_CASE()
session.__future_initiator_session_id = sigma1.initiator_session_id # update initiator_session_id
session.__future_local_session_id = self.device.sessions.gen_local_session_id()
# self.future_local_session_id = session.__future_local_session_id
tasmota.log(string.format("MTR: +Session (%6i) from '[%s]:%i'", session.__future_local_session_id, msg.remote_ip, msg.remote_port), 2)
# Generate and Send Sigma2_Resume
session.shared_secret = session_resumption.shared_secret
session.resumption_id = crypto.random(16) # generate a new resumption id
# compute S2RK
var s2rk_info = bytes().fromstring("Sigma2_Resume") + session.resumption_id
var s2rk_salt = sigma1.initiatorRandom + sigma1.resumptionID
var s2rk_info = bytes().fromstring("Sigma2_Resume")
var s2rk_salt = sigma1.initiatorRandom + session.resumption_id
var s2rk = crypto.HKDF_SHA256().derive(session.shared_secret, s2rk_salt, s2rk_info, 16)
# compute Resume2MIC
var aes = crypto.AES_CCM(s2rk, bytes().fromstring("NCASE_SigmaR2"), bytes(), 0, 16)
var aes = crypto.AES_CCM(s2rk, bytes().fromstring("NCASE_SigmaS2"), bytes(), 0, 16)
var Resume2MIC = aes.tag()
var sigma2resume = matter.Sigma2Resume()
@ -395,9 +394,16 @@ class Matter_Commisioning_Context
sigma2resume.responderSessionID = session.__future_local_session_id
sigma2resume.sigma2ResumeMIC = Resume2MIC
tasmota.log("****************************************", 4)
tasmota.log("MTR: * s2rk = " + s2rk.tohex(), 4)
tasmota.log("MTR: * s2rk_salt = " + s2rk_salt.tohex(), 4)
tasmota.log("MTR: * new_resumption_id = " + session.resumption_id.tohex(), 4)
tasmota.log("MTR: * responderSessionID= " + str(session.__future_local_session_id), 4)
tasmota.log("MTR: * sigma2ResumeMIC = " + Resume2MIC.tohex(), 4)
tasmota.log("****************************************", 4)
# # compute session key, p.178
var session_keys = crypto.HKDF_SHA256().derive(session.shared_secret #- input key -#,
sigma1.initiatorRandom + sigma1.resumptionID #- salt -#,
sigma1.initiatorRandom + session.resumption_id #- salt -#,
bytes().fromstring("SessionResumptionKeys") #- info -#,
48)
var i2r = session_keys[0..15]
@ -413,6 +419,7 @@ class Matter_Commisioning_Context
var sigma2resume_raw = sigma2resume.tlv2raw()
session.__Msg1 = nil
tasmota.log("MTR: sigma2resume: " + matter.inspect(sigma2resume), 4)
tasmota.log("MTR: sigma2resume_raw: " + sigma2resume_raw.tohex(), 4)
# now package the response message
@ -421,9 +428,17 @@ class Matter_Commisioning_Context
self.responder.send_response(raw, msg.remote_ip, msg.remote_port, resp.message_counter, msg.session.local_session_id)
# session.close()
session.close()
session.set_keys(i2r, r2i, ac, created)
# CASE Session completed, persist it
session._breadcrumb = 0 # clear breadcrumb
session.counter_snd_next() # force a first counter. It's important it's used before set_persist(true) to not have a double save
session.set_persist(true) # keep session on flash
session.set_no_expiration() # never expire
session.persist_to_fabric()
session.save()
return true
else
is_resumption = false
@ -432,6 +447,22 @@ class Matter_Commisioning_Context
end
if !is_resumption
# new CASE session, assign to existing fabric
var fabric = self.find_fabric_by_destination_id(sigma1.destinationId, sigma1.initiatorRandom)
session._fabric = fabric
if session == nil || session._fabric == nil
tasmota.log("MTR: StatusReport(GeneralCode: FAILURE, ProtocolId: SECURE_CHANNEL, ProtocolCode: NO_SHARED_TRUST_ROOTS)", 2)
var raw = self.send_status_report(msg, 0x01, 0x0000, 0x0001, false)
return false
end
session._source_node_id = msg.source_node_id
session.set_mode_CASE()
session.__future_initiator_session_id = sigma1.initiator_session_id # update initiator_session_id
session.__future_local_session_id = self.device.sessions.gen_local_session_id()
self.future_local_session_id = session.__future_local_session_id
tasmota.log(string.format("MTR: +Session (%6i) from '[%s]:%i'", self.future_local_session_id, msg.remote_ip, msg.remote_port), 2)
tasmota.log("MTR: fabric="+matter.inspect(session._fabric), 4)
tasmota.log("MTR: no_private_key="+session._fabric.no_private_key.tohex(), 4)
@ -651,7 +682,7 @@ class Matter_Commisioning_Context
def parse_StatusReport(msg)
var session = msg.session
tasmota.log("MTR: StatusReport = "+msg.raw[msg.app_payload_idx..].tohex(), 2)
return true
return false # we don't explicitly ack the message
end
#############################################################

View File

@ -218,7 +218,7 @@ class Matter_Sigma2Resume
# initiatorRandom
s.add_TLV(1, matter.TLV.B1, self.resumptionID)
s.add_TLV(2, matter.TLV.B1, self.sigma2ResumeMIC)
s.add_TLV(3, matter.TLV.B1, self.responderSessionID)
s.add_TLV(3, matter.TLV.U2, self.responderSessionID)
if self.SLEEPY_IDLE_INTERVAL != nil || self.SLEEPY_ACTIVE_INTERVAL != nil
var s2 = s.add_struct(4)
s2.add_TLV(1, matter.TLV.U4, self.SLEEPY_IDLE_INTERVAL)

View File

@ -358,6 +358,7 @@ class Matter_Frame
# check privacy flag, p.127
if self.sec_p
# compute privacy key, p.71
tasmota.log("MTR: >>>>>>>>>>>>>>>>>>>> Compute Privacy TODO", 2)
var k = session.get_i2r_privacy()
var n = bytes().add(self.local_session_id, -2) + mic[5..15] # session in Big Endian
var m = self.raw[4 .. self.payload_idx-1]
@ -382,25 +383,25 @@ class Matter_Frame
n.resize(13) # add zeros
end
# tasmota.log("MTR: ******************************", 4)
# tasmota.log("MTR: i2r =" + i2r.tohex(), 4)
# tasmota.log("MTR: p =" + p.tohex(), 4)
# tasmota.log("MTR: a =" + a.tohex(), 4)
# tasmota.log("MTR: n =" + n.tohex(), 4)
# tasmota.log("MTR: mic =" + mic.tohex(), 4)
tasmota.log("MTR: ******************************", 4)
tasmota.log("MTR: i2r =" + i2r.tohex(), 4)
tasmota.log("MTR: p =" + p.tohex(), 4)
tasmota.log("MTR: a =" + a.tohex(), 4)
tasmota.log("MTR: n =" + n.tohex(), 4)
tasmota.log("MTR: mic =" + mic.tohex(), 4)
# decrypt
var aes = crypto.AES_CCM(i2r, n, a, size(p), 16)
var cleartext = aes.decrypt(p)
var tag = aes.tag()
# tasmota.log("MTR: ******************************", 4)
# tasmota.log("MTR: cleartext =" + cleartext.tohex(), 4)
# tasmota.log("MTR: tag =" + tag.tohex(), 4)
# tasmota.log("MTR: ******************************", 4)
tasmota.log("MTR: ******************************", 4)
tasmota.log("MTR: cleartext =" + cleartext.tohex(), 4)
tasmota.log("MTR: tag =" + tag.tohex(), 4)
tasmota.log("MTR: ******************************", 4)
if tag != mic
tasmota.log("MTR: rejected packet due to invalid MIC", 3)
tasmota.log("MTR: rejected packet due to invalid MIC", 2)
return nil
end

View File

@ -66,7 +66,13 @@ class Matter_MessageHandler
# check if it's a duplicate
if !session._counter_insecure_rcv.validate(frame.message_counter, false)
tasmota.log(string.format("MTR: . Rejected duplicate unencrypted message = %i ref = %i", frame.message_counter, session._counter_insecure_rcv.val()), 3)
tasmota.log(string.format("MTR: . Duplicate unencrypted message = %i ref = %i", frame.message_counter, session._counter_insecure_rcv.val()), 3)
if frame.x_flag_r # nothing to respond, check if we need a standalone ack
var resp = frame.build_standalone_ack(false)
resp.encode_frame()
tasmota.log(string.format("MTR: <Ack (%6i) ack=%i id=%i {reliable}", resp.session.local_session_id, resp.ack_message_counter, resp.message_counter), 4)
self.send_response(resp.raw, resp.remote_ip, resp.remote_port, nil, resp.session.local_session_id)
end
return false
end
@ -79,7 +85,14 @@ class Matter_MessageHandler
else
tasmota.log(string.format("MTR: >rcv Ack (%6i) rid=%i exch=%i ack=%s %sfrom [%s]:%i", session.local_session_id, frame.message_counter, frame.x_flag_r ? "{reliable} " : "", frame.exchange_id, str(frame.ack_message_counter), addr, port), 3)
end
self.commissioning.process_incoming(frame)
ret = self.commissioning.process_incoming(frame)
# if ret is false, the implicit Ack was not sent
if !ret && frame.x_flag_r # nothing to respond, check if we need a standalone ack
var resp = frame.build_standalone_ack(false #-not reliable-#)
resp.encode_frame()
tasmota.log(string.format("MTR: <Ack (%6i) ack=%i id=%i", resp.session.local_session_id, resp.ack_message_counter, resp.message_counter), 3)
self.send_response(resp.raw, resp.remote_ip, resp.remote_port, nil, resp.session.local_session_id)
end
return true
else
#############################################################
@ -99,7 +112,14 @@ class Matter_MessageHandler
# check if it's a duplicate
if !session.counter_rcv_validate(frame.message_counter, true)
tasmota.log("MTR: . Rejected duplicate encrypted message = " + str(frame.message_counter) + " counter=" + str(session.counter_rcv), 3)
tasmota.log("MTR: . Duplicate encrypted message = " + str(frame.message_counter) + " counter=" + str(session.counter_rcv), 3)
if frame.x_flag_r # nothing to respond, check if we need a standalone ack
var resp = frame.build_standalone_ack(false)
resp.encode_frame()
resp.encrypt()
tasmota.log(string.format("MTR: <Ack (%6i) ack=%i id=%i {reliable}", resp.session.local_session_id, resp.ack_message_counter, resp.message_counter), 4)
self.send_response(resp.raw, resp.remote_ip, resp.remote_port, nil, resp.session.local_session_id)
end
return false
end

View File

@ -228,7 +228,10 @@ class Matter_Plugin_Root : Matter_Plugin
elif attribute == 0x0009 # ---------- SoftwareVersion / u32 ----------
return TLV.create_TLV(TLV.U2, 1)
elif attribute == 0x000A # ---------- SoftwareVersionString / string ----------
return TLV.create_TLV(TLV.UTF1, tasmota.cmd("Status 2", true)['StatusFWR']['Version'])
var version_full = tasmota.cmd("Status 2", true)['StatusFWR']['Version']
var version_end = string.find(version_full, '(')
if version_end > 0 version_full = version_full[0..version_end - 1] end
return TLV.create_TLV(TLV.UTF1, version_full)
elif attribute == 0x000F # ---------- SerialNumber / string ----------
return TLV.create_TLV(TLV.UTF1, tasmota.wifi().find("mac", ""))
elif attribute == 0x0012 # ---------- UniqueID / string 32 max ----------

View File

@ -780,7 +780,7 @@ be_local_closure(Matter_Sigma2Resume_tlv2raw, /* name */
0, /* has sup protos */
NULL, /* no sub protos */
1, /* has constants */
( &(const bvalue[16]) { /* constants */
( &(const bvalue[17]) { /* constants */
/* K0 */ be_nested_str_weak(matter),
/* K1 */ be_nested_str_weak(TLV),
/* K2 */ be_nested_str_weak(Matter_TLV_struct),
@ -791,12 +791,13 @@ be_local_closure(Matter_Sigma2Resume_tlv2raw, /* name */
/* K7 */ be_const_int(2),
/* K8 */ be_nested_str_weak(sigma2ResumeMIC),
/* K9 */ be_const_int(3),
/* K10 */ be_nested_str_weak(responderSessionID),
/* K11 */ be_nested_str_weak(SLEEPY_IDLE_INTERVAL),
/* K12 */ be_nested_str_weak(SLEEPY_ACTIVE_INTERVAL),
/* K13 */ be_nested_str_weak(add_struct),
/* K14 */ be_nested_str_weak(U4),
/* K15 */ be_nested_str_weak(tlv2raw),
/* K10 */ be_nested_str_weak(U2),
/* K11 */ be_nested_str_weak(responderSessionID),
/* K12 */ be_nested_str_weak(SLEEPY_IDLE_INTERVAL),
/* K13 */ be_nested_str_weak(SLEEPY_ACTIVE_INTERVAL),
/* K14 */ be_nested_str_weak(add_struct),
/* K15 */ be_nested_str_weak(U4),
/* K16 */ be_nested_str_weak(tlv2raw),
}),
be_str_weak(tlv2raw),
&be_const_str_solidified,
@ -823,35 +824,35 @@ be_local_closure(Matter_Sigma2Resume_tlv2raw, /* name */
0x58140009, // 0013 LDCONST R5 K9
0xB81A0000, // 0014 GETNGBL R6 K0
0x88180D01, // 0015 GETMBR R6 R6 K1
0x88180D05, // 0016 GETMBR R6 R6 K5
0x881C010A, // 0017 GETMBR R7 R0 K10
0x88180D0A, // 0016 GETMBR R6 R6 K10
0x881C010B, // 0017 GETMBR R7 R0 K11
0x7C0C0800, // 0018 CALL R3 4
0x880C010B, // 0019 GETMBR R3 R0 K11
0x880C010C, // 0019 GETMBR R3 R0 K12
0x4C100000, // 001A LDNIL R4
0x200C0604, // 001B NE R3 R3 R4
0x740E0003, // 001C JMPT R3 #0021
0x880C010C, // 001D GETMBR R3 R0 K12
0x880C010D, // 001D GETMBR R3 R0 K13
0x4C100000, // 001E LDNIL R4
0x200C0604, // 001F NE R3 R3 R4
0x780E0010, // 0020 JMPF R3 #0032
0x8C0C050D, // 0021 GETMET R3 R2 K13
0x8C0C050E, // 0021 GETMET R3 R2 K14
0x54160003, // 0022 LDINT R5 4
0x7C0C0400, // 0023 CALL R3 2
0x8C100703, // 0024 GETMET R4 R3 K3
0x58180004, // 0025 LDCONST R6 K4
0xB81E0000, // 0026 GETNGBL R7 K0
0x881C0F01, // 0027 GETMBR R7 R7 K1
0x881C0F0E, // 0028 GETMBR R7 R7 K14
0x8820010B, // 0029 GETMBR R8 R0 K11
0x881C0F0F, // 0028 GETMBR R7 R7 K15
0x8820010C, // 0029 GETMBR R8 R0 K12
0x7C100800, // 002A CALL R4 4
0x8C100703, // 002B GETMET R4 R3 K3
0x58180007, // 002C LDCONST R6 K7
0xB81E0000, // 002D GETNGBL R7 K0
0x881C0F01, // 002E GETMBR R7 R7 K1
0x881C0F0E, // 002F GETMBR R7 R7 K14
0x8820010C, // 0030 GETMBR R8 R0 K12
0x881C0F0F, // 002F GETMBR R7 R7 K15
0x8820010D, // 0030 GETMBR R8 R0 K13
0x7C100800, // 0031 CALL R4 4
0x8C0C050F, // 0032 GETMET R3 R2 K15
0x8C0C0510, // 0032 GETMET R3 R2 K16
0x5C140200, // 0033 MOVE R5 R1
0x7C0C0400, // 0034 CALL R3 2
0x80040600, // 0035 RET 1 R3

View File

@ -1039,38 +1039,48 @@ be_local_closure(Matter_Frame_decrypt, /* name */
0, /* has sup protos */
NULL, /* no sub protos */
1, /* has constants */
( &(const bvalue[27]) { /* constants */
( &(const bvalue[37]) { /* constants */
/* K0 */ be_nested_str_weak(crypto),
/* K1 */ be_nested_str_weak(session),
/* K2 */ be_nested_str_weak(raw),
/* K3 */ be_const_int(2147483647),
/* K4 */ be_nested_str_weak(get_i2r),
/* K5 */ be_nested_str_weak(sec_p),
/* K6 */ be_nested_str_weak(get_i2r_privacy),
/* K7 */ be_nested_str_weak(add),
/* K8 */ be_nested_str_weak(local_session_id),
/* K9 */ be_nested_str_weak(payload_idx),
/* K10 */ be_const_int(1),
/* K11 */ be_nested_str_weak(AES_CTR),
/* K12 */ be_nested_str_weak(decrypt),
/* K13 */ be_const_int(2),
/* K14 */ be_const_int(0),
/* K15 */ be_const_int(3),
/* K16 */ be_nested_str_weak(self),
/* K17 */ be_nested_str_weak(flags),
/* K18 */ be_nested_str_weak(message_counter),
/* K19 */ be_nested_str_weak(source_node_id),
/* K20 */ be_nested_str_weak(peer_node_id),
/* K21 */ be_nested_str_weak(resize),
/* K22 */ be_nested_str_weak(AES_CCM),
/* K23 */ be_nested_str_weak(tag),
/* K24 */ be_nested_str_weak(tasmota),
/* K25 */ be_nested_str_weak(log),
/* K26 */ be_nested_str_weak(MTR_X3A_X20rejected_X20packet_X20due_X20to_X20invalid_X20MIC),
/* K6 */ be_nested_str_weak(tasmota),
/* K7 */ be_nested_str_weak(log),
/* K8 */ be_nested_str_weak(MTR_X3A_X20_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X3E_X20Compute_X20Privacy_X20TODO),
/* K9 */ be_const_int(2),
/* K10 */ be_nested_str_weak(get_i2r_privacy),
/* K11 */ be_nested_str_weak(add),
/* K12 */ be_nested_str_weak(local_session_id),
/* K13 */ be_nested_str_weak(payload_idx),
/* K14 */ be_const_int(1),
/* K15 */ be_nested_str_weak(AES_CTR),
/* K16 */ be_nested_str_weak(decrypt),
/* K17 */ be_const_int(0),
/* K18 */ be_const_int(3),
/* K19 */ be_nested_str_weak(self),
/* K20 */ be_nested_str_weak(flags),
/* K21 */ be_nested_str_weak(message_counter),
/* K22 */ be_nested_str_weak(source_node_id),
/* K23 */ be_nested_str_weak(peer_node_id),
/* K24 */ be_nested_str_weak(resize),
/* K25 */ be_nested_str_weak(MTR_X3A_X20_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A_X2A),
/* K26 */ be_nested_str_weak(MTR_X3A_X20i2r_X20_X20_X20_X20_X20_X20_X20_X20_X20_X3D),
/* K27 */ be_nested_str_weak(tohex),
/* K28 */ be_nested_str_weak(MTR_X3A_X20p_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20_X3D),
/* K29 */ be_nested_str_weak(MTR_X3A_X20a_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20_X3D),
/* K30 */ be_nested_str_weak(MTR_X3A_X20n_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20_X3D),
/* K31 */ be_nested_str_weak(MTR_X3A_X20mic_X20_X20_X20_X20_X20_X20_X20_X20_X20_X3D),
/* K32 */ be_nested_str_weak(AES_CCM),
/* K33 */ be_nested_str_weak(tag),
/* K34 */ be_nested_str_weak(MTR_X3A_X20cleartext_X20_X20_X20_X3D),
/* K35 */ be_nested_str_weak(MTR_X3A_X20tag_X20_X20_X20_X20_X20_X20_X20_X20_X20_X3D),
/* K36 */ be_nested_str_weak(MTR_X3A_X20rejected_X20packet_X20due_X20to_X20invalid_X20MIC),
}),
be_str_weak(decrypt),
&be_const_str_solidified,
( &(const binstruction[101]) { /* code */
( &(const binstruction[170]) { /* code */
0xA4060000, // 0000 IMPORT R1 K0
0x88080101, // 0001 GETMBR R2 R0 K1
0x880C0102, // 0002 GETMBR R3 R0 K2
@ -1080,98 +1090,167 @@ be_local_closure(Matter_Frame_decrypt, /* name */
0x8C140504, // 0006 GETMET R5 R2 K4
0x7C140200, // 0007 CALL R5 1
0x88180105, // 0008 GETMBR R6 R0 K5
0x781A0025, // 0009 JMPF R6 #0030
0x8C180506, // 000A GETMET R6 R2 K6
0x7C180200, // 000B CALL R6 1
0x601C0015, // 000C GETGBL R7 G21
0x7C1C0000, // 000D CALL R7 0
0x8C1C0F07, // 000E GETMET R7 R7 K7
0x88240108, // 000F GETMBR R9 R0 K8
0x5429FFFD, // 0010 LDINT R10 -2
0x7C1C0600, // 0011 CALL R7 3
0x54220004, // 0012 LDINT R8 5
0x5426000E, // 0013 LDINT R9 15
0x40201009, // 0014 CONNECT R8 R8 R9
0x94200808, // 0015 GETIDX R8 R4 R8
0x001C0E08, // 0016 ADD R7 R7 R8
0x54220003, // 0017 LDINT R8 4
0x88240109, // 0018 GETMBR R9 R0 K9
0x0424130A, // 0019 SUB R9 R9 K10
0x40201009, // 001A CONNECT R8 R8 R9
0x88240102, // 001B GETMBR R9 R0 K2
0x94201208, // 001C GETIDX R8 R9 R8
0x8C28030B, // 001D GETMET R10 R1 K11
0x5C300C00, // 001E MOVE R12 R6
0x7C280400, // 001F CALL R10 2
0x8C28150C, // 0020 GETMET R10 R10 K12
0x5C301000, // 0021 MOVE R12 R8
0x5C340E00, // 0022 MOVE R13 R7
0x5838000D, // 0023 LDCONST R14 K13
0x7C280800, // 0024 CALL R10 4
0x5C241400, // 0025 MOVE R9 R10
0x402A1D0F, // 0026 CONNECT R10 K14 K15
0x882C0102, // 0027 GETMBR R11 R0 K2
0x9428160A, // 0028 GETIDX R10 R11 R10
0x00281409, // 0029 ADD R10 R10 R9
0x882C0110, // 002A GETMBR R11 R0 K16
0x882C1709, // 002B GETMBR R11 R11 K9
0x402C1703, // 002C CONNECT R11 R11 K3
0x942C100B, // 002D GETIDX R11 R8 R11
0x0028140B, // 002E ADD R10 R10 R11
0x9002040A, // 002F SETMBR R0 K2 R10
0x88180109, // 0030 GETMBR R6 R0 K9
0x04180D0A, // 0031 SUB R6 R6 K10
0x401A1C06, // 0032 CONNECT R6 K14 R6
0x94180606, // 0033 GETIDX R6 R3 R6
0x881C0109, // 0034 GETMBR R7 R0 K9
0x5421FFEE, // 0035 LDINT R8 -17
0x401C0E08, // 0036 CONNECT R7 R7 R8
0x941C0607, // 0037 GETIDX R7 R3 R7
0x60200015, // 0038 GETGBL R8 G21
0x7C200000, // 0039 CALL R8 0
0x8C241107, // 003A GETMET R9 R8 K7
0x882C0111, // 003B GETMBR R11 R0 K17
0x5830000A, // 003C LDCONST R12 K10
0x7C240600, // 003D CALL R9 3
0x8C241107, // 003E GETMET R9 R8 K7
0x882C0112, // 003F GETMBR R11 R0 K18
0x54320003, // 0040 LDINT R12 4
0x7C240600, // 0041 CALL R9 3
0x88240113, // 0042 GETMBR R9 R0 K19
0x78260001, // 0043 JMPF R9 #0046
0x40241103, // 0044 CONNECT R9 R8 K3
0x70020006, // 0045 JMP #004D
0x88240514, // 0046 GETMBR R9 R2 K20
0x78260001, // 0047 JMPF R9 #004A
0x88240514, // 0048 GETMBR R9 R2 K20
0x40241009, // 0049 CONNECT R9 R8 R9
0x8C241115, // 004A GETMET R9 R8 K21
0x542E000C, // 004B LDINT R11 13
0x7C240400, // 004C CALL R9 2
0x8C240316, // 004D GETMET R9 R1 K22
0x5C2C0A00, // 004E MOVE R11 R5
0x5C301000, // 004F MOVE R12 R8
0x5C340C00, // 0050 MOVE R13 R6
0x6038000C, // 0051 GETGBL R14 G12
0x5C3C0E00, // 0052 MOVE R15 R7
0x7C380200, // 0053 CALL R14 1
0x543E000F, // 0054 LDINT R15 16
0x7C240C00, // 0055 CALL R9 6
0x8C28130C, // 0056 GETMET R10 R9 K12
0x5C300E00, // 0057 MOVE R12 R7
0x7C280400, // 0058 CALL R10 2
0x8C2C1317, // 0059 GETMET R11 R9 K23
0x781A002A, // 0009 JMPF R6 #0035
0xB81A0C00, // 000A GETNGBL R6 K6
0x8C180D07, // 000B GETMET R6 R6 K7
0x58200008, // 000C LDCONST R8 K8
0x58240009, // 000D LDCONST R9 K9
0x7C180600, // 000E CALL R6 3
0x8C18050A, // 000F GETMET R6 R2 K10
0x7C180200, // 0010 CALL R6 1
0x601C0015, // 0011 GETGBL R7 G21
0x7C1C0000, // 0012 CALL R7 0
0x8C1C0F0B, // 0013 GETMET R7 R7 K11
0x8824010C, // 0014 GETMBR R9 R0 K12
0x5429FFFD, // 0015 LDINT R10 -2
0x7C1C0600, // 0016 CALL R7 3
0x54220004, // 0017 LDINT R8 5
0x5426000E, // 0018 LDINT R9 15
0x40201009, // 0019 CONNECT R8 R8 R9
0x94200808, // 001A GETIDX R8 R4 R8
0x001C0E08, // 001B ADD R7 R7 R8
0x54220003, // 001C LDINT R8 4
0x8824010D, // 001D GETMBR R9 R0 K13
0x0424130E, // 001E SUB R9 R9 K14
0x40201009, // 001F CONNECT R8 R8 R9
0x88240102, // 0020 GETMBR R9 R0 K2
0x94201208, // 0021 GETIDX R8 R9 R8
0x8C28030F, // 0022 GETMET R10 R1 K15
0x5C300C00, // 0023 MOVE R12 R6
0x7C280400, // 0024 CALL R10 2
0x8C281510, // 0025 GETMET R10 R10 K16
0x5C301000, // 0026 MOVE R12 R8
0x5C340E00, // 0027 MOVE R13 R7
0x58380009, // 0028 LDCONST R14 K9
0x7C280800, // 0029 CALL R10 4
0x5C241400, // 002A MOVE R9 R10
0x402A2312, // 002B CONNECT R10 K17 K18
0x882C0102, // 002C GETMBR R11 R0 K2
0x9428160A, // 002D GETIDX R10 R11 R10
0x00281409, // 002E ADD R10 R10 R9
0x882C0113, // 002F GETMBR R11 R0 K19
0x882C170D, // 0030 GETMBR R11 R11 K13
0x402C1703, // 0031 CONNECT R11 R11 K3
0x942C100B, // 0032 GETIDX R11 R8 R11
0x0028140B, // 0033 ADD R10 R10 R11
0x9002040A, // 0034 SETMBR R0 K2 R10
0x8818010D, // 0035 GETMBR R6 R0 K13
0x04180D0E, // 0036 SUB R6 R6 K14
0x401A2206, // 0037 CONNECT R6 K17 R6
0x94180606, // 0038 GETIDX R6 R3 R6
0x881C010D, // 0039 GETMBR R7 R0 K13
0x5421FFEE, // 003A LDINT R8 -17
0x401C0E08, // 003B CONNECT R7 R7 R8
0x941C0607, // 003C GETIDX R7 R3 R7
0x60200015, // 003D GETGBL R8 G21
0x7C200000, // 003E CALL R8 0
0x8C24110B, // 003F GETMET R9 R8 K11
0x882C0114, // 0040 GETMBR R11 R0 K20
0x5830000E, // 0041 LDCONST R12 K14
0x7C240600, // 0042 CALL R9 3
0x8C24110B, // 0043 GETMET R9 R8 K11
0x882C0115, // 0044 GETMBR R11 R0 K21
0x54320003, // 0045 LDINT R12 4
0x7C240600, // 0046 CALL R9 3
0x88240116, // 0047 GETMBR R9 R0 K22
0x78260001, // 0048 JMPF R9 #004B
0x40241103, // 0049 CONNECT R9 R8 K3
0x70020006, // 004A JMP #0052
0x88240517, // 004B GETMBR R9 R2 K23
0x78260001, // 004C JMPF R9 #004F
0x88240517, // 004D GETMBR R9 R2 K23
0x40241009, // 004E CONNECT R9 R8 R9
0x8C241118, // 004F GETMET R9 R8 K24
0x542E000C, // 0050 LDINT R11 13
0x7C240400, // 0051 CALL R9 2
0xB8260C00, // 0052 GETNGBL R9 K6
0x8C241307, // 0053 GETMET R9 R9 K7
0x582C0019, // 0054 LDCONST R11 K25
0x54320003, // 0055 LDINT R12 4
0x7C240600, // 0056 CALL R9 3
0xB8260C00, // 0057 GETNGBL R9 K6
0x8C241307, // 0058 GETMET R9 R9 K7
0x8C2C0B1B, // 0059 GETMET R11 R5 K27
0x7C2C0200, // 005A CALL R11 1
0x20301604, // 005B NE R12 R11 R4
0x78320006, // 005C JMPF R12 #0064
0xB8323000, // 005D GETNGBL R12 K24
0x8C301919, // 005E GETMET R12 R12 K25
0x5838001A, // 005F LDCONST R14 K26
0x583C000F, // 0060 LDCONST R15 K15
0x7C300600, // 0061 CALL R12 3
0x4C300000, // 0062 LDNIL R12
0x80041800, // 0063 RET 1 R12
0x80041400, // 0064 RET 1 R10
0x002E340B, // 005B ADD R11 K26 R11
0x54320003, // 005C LDINT R12 4
0x7C240600, // 005D CALL R9 3
0xB8260C00, // 005E GETNGBL R9 K6
0x8C241307, // 005F GETMET R9 R9 K7
0x8C2C0F1B, // 0060 GETMET R11 R7 K27
0x7C2C0200, // 0061 CALL R11 1
0x002E380B, // 0062 ADD R11 K28 R11
0x54320003, // 0063 LDINT R12 4
0x7C240600, // 0064 CALL R9 3
0xB8260C00, // 0065 GETNGBL R9 K6
0x8C241307, // 0066 GETMET R9 R9 K7
0x8C2C0D1B, // 0067 GETMET R11 R6 K27
0x7C2C0200, // 0068 CALL R11 1
0x002E3A0B, // 0069 ADD R11 K29 R11
0x54320003, // 006A LDINT R12 4
0x7C240600, // 006B CALL R9 3
0xB8260C00, // 006C GETNGBL R9 K6
0x8C241307, // 006D GETMET R9 R9 K7
0x8C2C111B, // 006E GETMET R11 R8 K27
0x7C2C0200, // 006F CALL R11 1
0x002E3C0B, // 0070 ADD R11 K30 R11
0x54320003, // 0071 LDINT R12 4
0x7C240600, // 0072 CALL R9 3
0xB8260C00, // 0073 GETNGBL R9 K6
0x8C241307, // 0074 GETMET R9 R9 K7
0x8C2C091B, // 0075 GETMET R11 R4 K27
0x7C2C0200, // 0076 CALL R11 1
0x002E3E0B, // 0077 ADD R11 K31 R11
0x54320003, // 0078 LDINT R12 4
0x7C240600, // 0079 CALL R9 3
0x8C240320, // 007A GETMET R9 R1 K32
0x5C2C0A00, // 007B MOVE R11 R5
0x5C301000, // 007C MOVE R12 R8
0x5C340C00, // 007D MOVE R13 R6
0x6038000C, // 007E GETGBL R14 G12
0x5C3C0E00, // 007F MOVE R15 R7
0x7C380200, // 0080 CALL R14 1
0x543E000F, // 0081 LDINT R15 16
0x7C240C00, // 0082 CALL R9 6
0x8C281310, // 0083 GETMET R10 R9 K16
0x5C300E00, // 0084 MOVE R12 R7
0x7C280400, // 0085 CALL R10 2
0x8C2C1321, // 0086 GETMET R11 R9 K33
0x7C2C0200, // 0087 CALL R11 1
0xB8320C00, // 0088 GETNGBL R12 K6
0x8C301907, // 0089 GETMET R12 R12 K7
0x58380019, // 008A LDCONST R14 K25
0x543E0003, // 008B LDINT R15 4
0x7C300600, // 008C CALL R12 3
0xB8320C00, // 008D GETNGBL R12 K6
0x8C301907, // 008E GETMET R12 R12 K7
0x8C38151B, // 008F GETMET R14 R10 K27
0x7C380200, // 0090 CALL R14 1
0x003A440E, // 0091 ADD R14 K34 R14
0x543E0003, // 0092 LDINT R15 4
0x7C300600, // 0093 CALL R12 3
0xB8320C00, // 0094 GETNGBL R12 K6
0x8C301907, // 0095 GETMET R12 R12 K7
0x8C38171B, // 0096 GETMET R14 R11 K27
0x7C380200, // 0097 CALL R14 1
0x003A460E, // 0098 ADD R14 K35 R14
0x543E0003, // 0099 LDINT R15 4
0x7C300600, // 009A CALL R12 3
0xB8320C00, // 009B GETNGBL R12 K6
0x8C301907, // 009C GETMET R12 R12 K7
0x58380019, // 009D LDCONST R14 K25
0x543E0003, // 009E LDINT R15 4
0x7C300600, // 009F CALL R12 3
0x20301604, // 00A0 NE R12 R11 R4
0x78320006, // 00A1 JMPF R12 #00A9
0xB8320C00, // 00A2 GETNGBL R12 K6
0x8C301907, // 00A3 GETMET R12 R12 K7
0x58380024, // 00A4 LDCONST R14 K36
0x583C0009, // 00A5 LDCONST R15 K9
0x7C300600, // 00A6 CALL R12 3
0x4C300000, // 00A7 LDNIL R12
0x80041800, // 00A8 RET 1 R12
0x80041400, // 00A9 RET 1 R10
})
)
);

View File

@ -125,7 +125,7 @@ be_local_closure(Matter_MessageHandler_msg_received, /* name */
0, /* has sup protos */
NULL, /* no sub protos */
1, /* has constants */
( &(const bvalue[77]) { /* constants */
( &(const bvalue[78]) { /* constants */
/* K0 */ be_nested_str_weak(string),
/* K1 */ be_nested_str_weak(tasmota),
/* K2 */ be_nested_str_weak(log),
@ -152,64 +152,65 @@ be_local_closure(Matter_MessageHandler_msg_received, /* name */
/* K23 */ be_nested_str_weak(validate),
/* K24 */ be_nested_str_weak(message_counter),
/* K25 */ be_nested_str_weak(format),
/* K26 */ be_nested_str_weak(MTR_X3A_X20_X2E_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20Rejected_X20duplicate_X20unencrypted_X20message_X20_X3D_X20_X25i_X20ref_X20_X3D_X20_X25i),
/* K26 */ be_nested_str_weak(MTR_X3A_X20_X2E_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20Duplicate_X20unencrypted_X20message_X20_X3D_X20_X25i_X20ref_X20_X3D_X20_X25i),
/* K27 */ be_nested_str_weak(val),
/* K28 */ be_nested_str_weak(decode_payload),
/* K29 */ be_nested_str_weak(received_ack),
/* K30 */ be_nested_str_weak(ack_message_counter),
/* K31 */ be_nested_str_weak(opcode),
/* K32 */ be_nested_str_weak(get_opcode_name),
/* K33 */ be_nested_str_weak(0x_X2502X),
/* K34 */ be_nested_str_weak(MTR_X3A_X20_X3EReceived_X20_X20_X28_X256i_X29_X20_X25s_X20rid_X3D_X25i_X20exch_X3D_X25i_X20from_X20_X5B_X25s_X5D_X3A_X25i),
/* K35 */ be_nested_str_weak(exchange_id),
/* K36 */ be_const_int(2),
/* K37 */ be_nested_str_weak(MTR_X3A_X20_X3Ercv_X20Ack_X20_X20_X20_X28_X256i_X29_X20rid_X3D_X25i_X20exch_X3D_X25i_X20ack_X3D_X25s_X20_X25sfrom_X20_X5B_X25s_X5D_X3A_X25i),
/* K38 */ be_nested_str_weak(x_flag_r),
/* K39 */ be_nested_str_weak(_X7Breliable_X7D_X20),
/* K40 */ be_nested_str_weak(),
/* K41 */ be_nested_str_weak(commissioning),
/* K42 */ be_nested_str_weak(process_incoming),
/* K43 */ be_nested_str_weak(MTR_X3A_X20decode_X20header_X3A_X20local_session_id_X3D_X25i_X20message_counter_X3D_X25i),
/* K44 */ be_nested_str_weak(get_session_by_local_session_id),
/* K45 */ be_nested_str_weak(MTR_X3A_X20unknown_X20local_session_id_X3D),
/* K46 */ be_nested_str_weak(counter_rcv_validate),
/* K47 */ be_nested_str_weak(MTR_X3A_X20_X2E_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20Rejected_X20duplicate_X20encrypted_X20message_X20_X3D_X20),
/* K48 */ be_nested_str_weak(_X20counter_X3D),
/* K49 */ be_nested_str_weak(counter_rcv),
/* K50 */ be_nested_str_weak(decrypt),
/* K51 */ be_nested_str_weak(raw),
/* K52 */ be_nested_str_weak(payload_idx),
/* K53 */ be_const_int(1),
/* K54 */ be_nested_str_weak(MTR_X3A_X20idx_X3D_X25i_X20clear_X3D_X25s),
/* K55 */ be_nested_str_weak(MTR_X3A_X20_X3E_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20Decrypted_X20message_X3A_X20protocol_id_X3A),
/* K56 */ be_nested_str_weak(protocol_id),
/* K57 */ be_nested_str_weak(_X20opcode_X3D),
/* K58 */ be_nested_str_weak(_X20exchange_id_X3D),
/* K59 */ be_nested_str_weak(MTR_X3A_X20_X3Ercv_X20_X20_X20_X20_X20_X20_X20_X28_X256i_X29_X20_X5B_X2502X_X2F_X2502X_X5D_X20rid_X3D_X25i_X20exch_X3D_X25i_X20ack_X3D_X25s_X20_X25sfrom_X20_X5B_X25s_X5D_X3A_X25i),
/* K60 */ be_nested_str_weak(MTR_X3A_X20PROTOCOL_ID_SECURE_CHANNEL_X20),
/* K61 */ be_nested_str_weak(inspect),
/* K62 */ be_nested_str_weak(im),
/* K63 */ be_nested_str_weak(process_incoming_ack),
/* K64 */ be_nested_str_weak(send_enqueued),
/* K65 */ be_nested_str_weak(build_standalone_ack),
/* K66 */ be_nested_str_weak(encode_frame),
/* K67 */ be_nested_str_weak(encrypt),
/* K68 */ be_nested_str_weak(MTR_X3A_X20_X3CAck_X20_X20_X20_X20_X20_X20_X20_X28_X256i_X29_X20ack_X3D_X25i_X20id_X3D_X25i_X20_X7Breliable_X7D),
/* K69 */ be_nested_str_weak(send_response),
/* K70 */ be_nested_str_weak(remote_ip),
/* K71 */ be_nested_str_weak(remote_port),
/* K72 */ be_nested_str_weak(MTR_X3A_X20ignoring_X20unhandled_X20protocol_id_X3A),
/* K73 */ be_nested_str_weak(MTR_X3A_X20MessageHandler_X3A_X3Amsg_received_X20exception_X3A_X20),
/* K74 */ be_nested_str_weak(_X3B),
/* K75 */ be_nested_str_weak(debug),
/* K76 */ be_nested_str_weak(traceback),
/* K28 */ be_nested_str_weak(x_flag_r),
/* K29 */ be_nested_str_weak(build_standalone_ack),
/* K30 */ be_nested_str_weak(encode_frame),
/* K31 */ be_nested_str_weak(MTR_X3A_X20_X3CAck_X20_X20_X20_X20_X20_X20_X20_X28_X256i_X29_X20ack_X3D_X25i_X20id_X3D_X25i_X20_X7Breliable_X7D),
/* K32 */ be_nested_str_weak(ack_message_counter),
/* K33 */ be_nested_str_weak(send_response),
/* K34 */ be_nested_str_weak(raw),
/* K35 */ be_nested_str_weak(remote_ip),
/* K36 */ be_nested_str_weak(remote_port),
/* K37 */ be_nested_str_weak(decode_payload),
/* K38 */ be_nested_str_weak(received_ack),
/* K39 */ be_nested_str_weak(opcode),
/* K40 */ be_nested_str_weak(get_opcode_name),
/* K41 */ be_nested_str_weak(0x_X2502X),
/* K42 */ be_nested_str_weak(MTR_X3A_X20_X3EReceived_X20_X20_X28_X256i_X29_X20_X25s_X20rid_X3D_X25i_X20exch_X3D_X25i_X20from_X20_X5B_X25s_X5D_X3A_X25i),
/* K43 */ be_nested_str_weak(exchange_id),
/* K44 */ be_const_int(2),
/* K45 */ be_nested_str_weak(MTR_X3A_X20_X3Ercv_X20Ack_X20_X20_X20_X28_X256i_X29_X20rid_X3D_X25i_X20exch_X3D_X25i_X20ack_X3D_X25s_X20_X25sfrom_X20_X5B_X25s_X5D_X3A_X25i),
/* K46 */ be_nested_str_weak(_X7Breliable_X7D_X20),
/* K47 */ be_nested_str_weak(),
/* K48 */ be_nested_str_weak(commissioning),
/* K49 */ be_nested_str_weak(process_incoming),
/* K50 */ be_nested_str_weak(MTR_X3A_X20_X3CAck_X20_X20_X20_X20_X20_X20_X20_X28_X256i_X29_X20ack_X3D_X25i_X20id_X3D_X25i),
/* K51 */ be_nested_str_weak(MTR_X3A_X20decode_X20header_X3A_X20local_session_id_X3D_X25i_X20message_counter_X3D_X25i),
/* K52 */ be_nested_str_weak(get_session_by_local_session_id),
/* K53 */ be_nested_str_weak(MTR_X3A_X20unknown_X20local_session_id_X3D),
/* K54 */ be_nested_str_weak(counter_rcv_validate),
/* K55 */ be_nested_str_weak(MTR_X3A_X20_X2E_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20Duplicate_X20encrypted_X20message_X20_X3D_X20),
/* K56 */ be_nested_str_weak(_X20counter_X3D),
/* K57 */ be_nested_str_weak(counter_rcv),
/* K58 */ be_nested_str_weak(encrypt),
/* K59 */ be_nested_str_weak(decrypt),
/* K60 */ be_nested_str_weak(payload_idx),
/* K61 */ be_const_int(1),
/* K62 */ be_nested_str_weak(MTR_X3A_X20idx_X3D_X25i_X20clear_X3D_X25s),
/* K63 */ be_nested_str_weak(MTR_X3A_X20_X3E_X20_X20_X20_X20_X20_X20_X20_X20_X20_X20Decrypted_X20message_X3A_X20protocol_id_X3A),
/* K64 */ be_nested_str_weak(protocol_id),
/* K65 */ be_nested_str_weak(_X20opcode_X3D),
/* K66 */ be_nested_str_weak(_X20exchange_id_X3D),
/* K67 */ be_nested_str_weak(MTR_X3A_X20_X3Ercv_X20_X20_X20_X20_X20_X20_X20_X28_X256i_X29_X20_X5B_X2502X_X2F_X2502X_X5D_X20rid_X3D_X25i_X20exch_X3D_X25i_X20ack_X3D_X25s_X20_X25sfrom_X20_X5B_X25s_X5D_X3A_X25i),
/* K68 */ be_nested_str_weak(MTR_X3A_X20PROTOCOL_ID_SECURE_CHANNEL_X20),
/* K69 */ be_nested_str_weak(inspect),
/* K70 */ be_nested_str_weak(im),
/* K71 */ be_nested_str_weak(process_incoming_ack),
/* K72 */ be_nested_str_weak(send_enqueued),
/* K73 */ be_nested_str_weak(MTR_X3A_X20ignoring_X20unhandled_X20protocol_id_X3A),
/* K74 */ be_nested_str_weak(MTR_X3A_X20MessageHandler_X3A_X3Amsg_received_X20exception_X3A_X20),
/* K75 */ be_nested_str_weak(_X3B),
/* K76 */ be_nested_str_weak(debug),
/* K77 */ be_nested_str_weak(traceback),
}),
be_str_weak(msg_received),
&be_const_str_solidified,
( &(const binstruction[376]) { /* code */
( &(const binstruction[459]) { /* code */
0xA4120000, // 0000 IMPORT R4 K0
0x50140000, // 0001 LDBOOL R5 0 0
0xA802015E, // 0002 EXBLK 0 #0162
0xA80201B1, // 0002 EXBLK 0 #01B5
0xB81A0200, // 0003 GETNGBL R6 K1
0x8C180D02, // 0004 GETMET R6 R6 K2
0x8C200304, // 0005 GETMET R8 R1 K4
@ -233,10 +234,10 @@ be_local_closure(Matter_MessageHandler_msg_received, /* name */
0x80041000, // 0017 RET 1 R8
0x88200D08, // 0018 GETMBR R8 R6 K8
0x1C201109, // 0019 EQ R8 R8 K9
0x78220072, // 001A JMPF R8 #008E
0x782200A9, // 001A JMPF R8 #00C5
0x88200D0A, // 001B GETMBR R8 R6 K10
0x1C201109, // 001C EQ R8 R8 K9
0x7822006F, // 001D JMPF R8 #008E
0x782200A6, // 001D JMPF R8 #00C5
0x8820010B, // 001E GETMBR R8 R0 K11
0x8820110C, // 001F GETMBR R8 R8 K12
0x8C20110D, // 0020 GETMET R8 R8 K13
@ -267,7 +268,7 @@ be_local_closure(Matter_MessageHandler_msg_received, /* name */
0x882C0D18, // 0039 GETMBR R11 R6 K24
0x50300000, // 003A LDBOOL R12 0 0
0x7C240600, // 003B CALL R9 3
0x7426000D, // 003C JMPT R9 #004B
0x74260027, // 003C JMPT R9 #0065
0xB8260200, // 003D GETNGBL R9 K1
0x8C241302, // 003E GETMET R9 R9 K2
0x8C2C0919, // 003F GETMET R11 R4 K25
@ -279,310 +280,393 @@ be_local_closure(Matter_MessageHandler_msg_received, /* name */
0x7C2C0800, // 0045 CALL R11 4
0x58300011, // 0046 LDCONST R12 K17
0x7C240600, // 0047 CALL R9 3
0x50240000, // 0048 LDBOOL R9 0 0
0xA8040001, // 0049 EXBLK 1 1
0x80041200, // 004A RET 1 R9
0x8C240D1C, // 004B GETMET R9 R6 K28
0x7C240200, // 004C CALL R9 1
0x74260002, // 004D JMPT R9 #0051
0x50240000, // 004E LDBOOL R9 0 0
0xA8040001, // 004F EXBLK 1 1
0x80041200, // 0050 RET 1 R9
0x8824010B, // 0051 GETMBR R9 R0 K11
0x8C24131D, // 0052 GETMET R9 R9 K29
0x882C0D1E, // 0053 GETMBR R11 R6 K30
0x7C240400, // 0054 CALL R9 2
0x88240D1F, // 0055 GETMBR R9 R6 K31
0x542A000F, // 0056 LDINT R10 16
0x2024120A, // 0057 NE R9 R9 R10
0x78260018, // 0058 JMPF R9 #0072
0xB8260A00, // 0059 GETNGBL R9 K5
0x8C241320, // 005A GETMET R9 R9 K32
0x882C0D1F, // 005B GETMBR R11 R6 K31
0x7C240400, // 005C CALL R9 2
0x5C281200, // 005D MOVE R10 R9
0x742A0004, // 005E JMPT R10 #0064
0x8C280919, // 005F GETMET R10 R4 K25
0x58300021, // 0060 LDCONST R12 K33
0x88340D1F, // 0061 GETMBR R13 R6 K31
0x7C280600, // 0062 CALL R10 3
0x5C241400, // 0063 MOVE R9 R10
0xB82A0200, // 0064 GETNGBL R10 K1
0x8C281502, // 0065 GETMET R10 R10 K2
0x8C300919, // 0066 GETMET R12 R4 K25
0x58380022, // 0067 LDCONST R14 K34
0x883C1108, // 0068 GETMBR R15 R8 K8
0x5C401200, // 0069 MOVE R16 R9
0x88440D18, // 006A GETMBR R17 R6 K24
0x88480D23, // 006B GETMBR R18 R6 K35
0x5C4C0400, // 006C MOVE R19 R2
0x5C500600, // 006D MOVE R20 R3
0x7C301000, // 006E CALL R12 8
0x58340024, // 006F LDCONST R13 K36
0x7C280600, // 0070 CALL R10 3
0x70020013, // 0071 JMP #0086
0xB8260200, // 0072 GETNGBL R9 K1
0x8C241302, // 0073 GETMET R9 R9 K2
0x8C2C0919, // 0074 GETMET R11 R4 K25
0x58340025, // 0075 LDCONST R13 K37
0x88381108, // 0076 GETMBR R14 R8 K8
0x883C0D18, // 0077 GETMBR R15 R6 K24
0x88400D26, // 0078 GETMBR R16 R6 K38
0x78420001, // 0079 JMPF R16 #007C
0x58400027, // 007A LDCONST R16 K39
0x70020000, // 007B JMP #007D
0x58400028, // 007C LDCONST R16 K40
0x88440D23, // 007D GETMBR R17 R6 K35
0x60480008, // 007E GETGBL R18 G8
0x884C0D1E, // 007F GETMBR R19 R6 K30
0x7C480200, // 0080 CALL R18 1
0x5C4C0400, // 0081 MOVE R19 R2
0x5C500600, // 0082 MOVE R20 R3
0x7C2C1200, // 0083 CALL R11 9
0x58300011, // 0084 LDCONST R12 K17
0x7C240600, // 0085 CALL R9 3
0x88240129, // 0086 GETMBR R9 R0 K41
0x8C24132A, // 0087 GETMET R9 R9 K42
0x5C2C0C00, // 0088 MOVE R11 R6
0x7C240400, // 0089 CALL R9 2
0x50240200, // 008A LDBOOL R9 1 0
0xA8040001, // 008B EXBLK 1 1
0x80041200, // 008C RET 1 R9
0x700200CF, // 008D JMP #015E
0xB8220200, // 008E GETNGBL R8 K1
0x8C201102, // 008F GETMET R8 R8 K2
0x8C280919, // 0090 GETMET R10 R4 K25
0x5830002B, // 0091 LDCONST R12 K43
0x88340D08, // 0092 GETMBR R13 R6 K8
0x88380D18, // 0093 GETMBR R14 R6 K24
0x7C280800, // 0094 CALL R10 4
0x582C0011, // 0095 LDCONST R11 K17
0x7C200600, // 0096 CALL R8 3
0x8820010B, // 0097 GETMBR R8 R0 K11
0x8820110C, // 0098 GETMBR R8 R8 K12
0x8C20112C, // 0099 GETMET R8 R8 K44
0x88280D08, // 009A GETMBR R10 R6 K8
0x7C200400, // 009B CALL R8 2
0x4C240000, // 009C LDNIL R9
0x1C241009, // 009D EQ R9 R8 R9
0x7826000A, // 009E JMPF R9 #00AA
0xB8260200, // 009F GETNGBL R9 K1
0x8C241302, // 00A0 GETMET R9 R9 K2
0x602C0008, // 00A1 GETGBL R11 G8
0x88300D08, // 00A2 GETMBR R12 R6 K8
0x7C2C0200, // 00A3 CALL R11 1
0x002E5A0B, // 00A4 ADD R11 K45 R11
0x58300024, // 00A5 LDCONST R12 K36
0x7C240600, // 00A6 CALL R9 3
0x50240000, // 00A7 LDBOOL R9 0 0
0xA8040001, // 00A8 EXBLK 1 1
0x80041200, // 00A9 RET 1 R9
0x780A0000, // 00AA JMPF R2 #00AC
0x90222402, // 00AB SETMBR R8 K18 R2
0x780E0000, // 00AC JMPF R3 #00AE
0x90222603, // 00AD SETMBR R8 K19 R3
0x90222800, // 00AE SETMBR R8 K20 R0
0x901A2A08, // 00AF SETMBR R6 K21 R8
0x8C24112E, // 00B0 GETMET R9 R8 K46
0x882C0D18, // 00B1 GETMBR R11 R6 K24
0x50300200, // 00B2 LDBOOL R12 1 0
0x7C240600, // 00B3 CALL R9 3
0x7426000F, // 00B4 JMPT R9 #00C5
0xB8260200, // 00B5 GETNGBL R9 K1
0x8C241302, // 00B6 GETMET R9 R9 K2
0x602C0008, // 00B7 GETGBL R11 G8
0x88300D18, // 00B8 GETMBR R12 R6 K24
0x7C2C0200, // 00B9 CALL R11 1
0x002E5E0B, // 00BA ADD R11 K47 R11
0x002C1730, // 00BB ADD R11 R11 K48
0x60300008, // 00BC GETGBL R12 G8
0x88341131, // 00BD GETMBR R13 R8 K49
0x7C300200, // 00BE CALL R12 1
0x002C160C, // 00BF ADD R11 R11 R12
0x58300011, // 00C0 LDCONST R12 K17
0x7C240600, // 00C1 CALL R9 3
0x50240000, // 00C2 LDBOOL R9 0 0
0xA8040001, // 00C3 EXBLK 1 1
0x80041200, // 00C4 RET 1 R9
0x8C240D32, // 00C5 GETMET R9 R6 K50
0x7C240200, // 00C6 CALL R9 1
0x5C281200, // 00C7 MOVE R10 R9
0x742A0002, // 00C8 JMPT R10 #00CC
0x50280000, // 00C9 LDBOOL R10 0 0
0xA8040001, // 00CA EXBLK 1 1
0x80041400, // 00CB RET 1 R10
0x88280D34, // 00CC GETMBR R10 R6 K52
0x04281535, // 00CD SUB R10 R10 K53
0x402A120A, // 00CE CONNECT R10 K9 R10
0x882C0D33, // 00CF GETMBR R11 R6 K51
0x9428160A, // 00D0 GETIDX R10 R11 R10
0x901A660A, // 00D1 SETMBR R6 K51 R10
0x88280D33, // 00D2 GETMBR R10 R6 K51
0x40281409, // 00D3 CONNECT R10 R10 R9
0xB82A0200, // 00D4 GETNGBL R10 K1
0x8C281502, // 00D5 GETMET R10 R10 K2
0x8C300919, // 00D6 GETMET R12 R4 K25
0x58380036, // 00D7 LDCONST R14 K54
0x883C0D34, // 00D8 GETMBR R15 R6 K52
0x88400D33, // 00D9 GETMBR R16 R6 K51
0x8C402104, // 00DA GETMET R16 R16 K4
0x7C400200, // 00DB CALL R16 1
0x7C300800, // 00DC CALL R12 4
0x54360003, // 00DD LDINT R13 4
0x7C280600, // 00DE CALL R10 3
0x8C280D1C, // 00DF GETMET R10 R6 K28
0x7C280200, // 00E0 CALL R10 1
0xB82A0200, // 00E1 GETNGBL R10 K1
0x8C281502, // 00E2 GETMET R10 R10 K2
0x60300008, // 00E3 GETGBL R12 G8
0x88340D38, // 00E4 GETMBR R13 R6 K56
0x7C300200, // 00E5 CALL R12 1
0x00326E0C, // 00E6 ADD R12 K55 R12
0x00301939, // 00E7 ADD R12 R12 K57
0x60340008, // 00E8 GETGBL R13 G8
0x88380D1F, // 00E9 GETMBR R14 R6 K31
0x7C340200, // 00EA CALL R13 1
0x0030180D, // 00EB ADD R12 R12 R13
0x0030193A, // 00EC ADD R12 R12 K58
0x60340008, // 00ED GETGBL R13 G8
0x88380D23, // 00EE GETMBR R14 R6 K35
0x543EFFFE, // 00EF LDINT R15 65535
0x2C381C0F, // 00F0 AND R14 R14 R15
0x7C340200, // 00F1 CALL R13 1
0x0030180D, // 00F2 ADD R12 R12 R13
0x58340011, // 00F3 LDCONST R13 K17
0x7C280600, // 00F4 CALL R10 3
0xB82A0200, // 00F5 GETNGBL R10 K1
0x8C281502, // 00F6 GETMET R10 R10 K2
0x8C300919, // 00F7 GETMET R12 R4 K25
0x5838003B, // 00F8 LDCONST R14 K59
0x883C1108, // 00F9 GETMBR R15 R8 K8
0x88400D38, // 00FA GETMBR R16 R6 K56
0x88440D1F, // 00FB GETMBR R17 R6 K31
0x88480D18, // 00FC GETMBR R18 R6 K24
0x884C0D23, // 00FD GETMBR R19 R6 K35
0x60500008, // 00FE GETGBL R20 G8
0x88540D1E, // 00FF GETMBR R21 R6 K30
0x7C500200, // 0100 CALL R20 1
0x88540D26, // 0101 GETMBR R21 R6 K38
0x78560001, // 0102 JMPF R21 #0105
0x58540027, // 0103 LDCONST R21 K39
0x70020000, // 0104 JMP #0106
0x58540028, // 0105 LDCONST R21 K40
0x5C580400, // 0106 MOVE R22 R2
0x5C5C0600, // 0107 MOVE R23 R3
0x7C301600, // 0108 CALL R12 11
0x58340011, // 0109 LDCONST R13 K17
0x7C280600, // 010A CALL R10 3
0x8828010B, // 010B GETMBR R10 R0 K11
0x8C28151D, // 010C GETMET R10 R10 K29
0x88300D1E, // 010D GETMBR R12 R6 K30
0x7C280400, // 010E CALL R10 2
0x88280D38, // 010F GETMBR R10 R6 K56
0x1C2C1509, // 0110 EQ R11 R10 K9
0x782E0018, // 0111 JMPF R11 #012B
0xB82E0200, // 0112 GETNGBL R11 K1
0x8C2C1702, // 0113 GETMET R11 R11 K2
0xB8360A00, // 0114 GETNGBL R13 K5
0x8C341B3D, // 0115 GETMET R13 R13 K61
0x5C3C0C00, // 0116 MOVE R15 R6
0x7C340400, // 0117 CALL R13 2
0x0036780D, // 0118 ADD R13 K60 R13
0x58380011, // 0119 LDCONST R14 K17
0x7C2C0600, // 011A CALL R11 3
0x882C0D1F, // 011B GETMBR R11 R6 K31
0x5432000F, // 011C LDINT R12 16
0x1C2C160C, // 011D EQ R11 R11 R12
0x782E0009, // 011E JMPF R11 #0129
0x882C013E, // 011F GETMBR R11 R0 K62
0x8C2C173F, // 0120 GETMET R11 R11 K63
0x5C340C00, // 0121 MOVE R13 R6
0x7C2C0400, // 0122 CALL R11 2
0x5C141600, // 0123 MOVE R5 R11
0x78160003, // 0124 JMPF R5 #0129
0x882C013E, // 0125 GETMBR R11 R0 K62
0x8C2C1740, // 0126 GETMET R11 R11 K64
0x5C340000, // 0127 MOVE R13 R0
0x7C2C0400, // 0128 CALL R11 2
0x50140200, // 0129 LDBOOL R5 1 0
0x70020032, // 012A JMP #015E
0x1C2C1535, // 012B EQ R11 R10 K53
0x782E0028, // 012C JMPF R11 #0156
0x882C013E, // 012D GETMBR R11 R0 K62
0x8C2C172A, // 012E GETMET R11 R11 K42
0x5C340C00, // 012F MOVE R13 R6
0x7C2C0400, // 0130 CALL R11 2
0x5C141600, // 0131 MOVE R5 R11
0x78160004, // 0132 JMPF R5 #0138
0x882C013E, // 0133 GETMBR R11 R0 K62
0x8C2C1740, // 0134 GETMET R11 R11 K64
0x5C340000, // 0135 MOVE R13 R0
0x7C2C0400, // 0136 CALL R11 2
0x7002001B, // 0137 JMP #0154
0x882C0D26, // 0138 GETMBR R11 R6 K38
0x782E0019, // 0139 JMPF R11 #0154
0x8C2C0D41, // 013A GETMET R11 R6 K65
0x50340200, // 013B LDBOOL R13 1 0
0x7C2C0400, // 013C CALL R11 2
0x8C301742, // 013D GETMET R12 R11 K66
0x7C300200, // 013E CALL R12 1
0x8C301743, // 013F GETMET R12 R11 K67
0x7C300200, // 0140 CALL R12 1
0xB8320200, // 0141 GETNGBL R12 K1
0x8C301902, // 0142 GETMET R12 R12 K2
0x8C380919, // 0143 GETMET R14 R4 K25
0x58400044, // 0144 LDCONST R16 K68
0x88441715, // 0145 GETMBR R17 R11 K21
0x88442308, // 0146 GETMBR R17 R17 K8
0x8848171E, // 0147 GETMBR R18 R11 K30
0x884C1718, // 0148 GETMBR R19 R11 K24
0x7C380A00, // 0149 CALL R14 5
0x583C0011, // 014A LDCONST R15 K17
0x7C300600, // 014B CALL R12 3
0x8C300145, // 014C GETMET R12 R0 K69
0x88381733, // 014D GETMBR R14 R11 K51
0x883C1746, // 014E GETMBR R15 R11 K70
0x88401747, // 014F GETMBR R16 R11 K71
0x88441718, // 0150 GETMBR R17 R11 K24
0x88481715, // 0151 GETMBR R18 R11 K21
0x88482508, // 0152 GETMBR R18 R18 K8
0x7C300C00, // 0153 CALL R12 6
0x50140200, // 0154 LDBOOL R5 1 0
0x70020007, // 0155 JMP #015E
0xB82E0200, // 0156 GETNGBL R11 K1
0x8C2C1702, // 0157 GETMET R11 R11 K2
0x60340008, // 0158 GETGBL R13 G8
0x5C381400, // 0159 MOVE R14 R10
0x7C340200, // 015A CALL R13 1
0x0036900D, // 015B ADD R13 K72 R13
0x58380011, // 015C LDCONST R14 K17
0x7C2C0600, // 015D CALL R11 3
0xA8040001, // 015E EXBLK 1 1
0x80040A00, // 015F RET 1 R5
0xA8040001, // 0160 EXBLK 1 1
0x70020014, // 0161 JMP #0177
0xAC180002, // 0162 CATCH R6 0 2
0x70020011, // 0163 JMP #0176
0xB8220200, // 0164 GETNGBL R8 K1
0x8C201102, // 0165 GETMET R8 R8 K2
0x60280008, // 0166 GETGBL R10 G8
0x5C2C0C00, // 0167 MOVE R11 R6
0x7C280200, // 0168 CALL R10 1
0x002A920A, // 0169 ADD R10 K73 R10
0x0028154A, // 016A ADD R10 R10 K74
0x602C0008, // 016B GETGBL R11 G8
0x5C300E00, // 016C MOVE R12 R7
0x7C2C0200, // 016D CALL R11 1
0x0028140B, // 016E ADD R10 R10 R11
0x7C200400, // 016F CALL R8 2
0xA4229600, // 0170 IMPORT R8 K75
0x8C24114C, // 0171 GETMET R9 R8 K76
0x7C240200, // 0172 CALL R9 1
0x50240000, // 0173 LDBOOL R9 0 0
0x80041200, // 0174 RET 1 R9
0x70020000, // 0175 JMP #0177
0xB0080000, // 0176 RAISE 2 R0 R0
0x80000000, // 0177 RET 0
0x88240D1C, // 0048 GETMBR R9 R6 K28
0x78260017, // 0049 JMPF R9 #0062
0x8C240D1D, // 004A GETMET R9 R6 K29
0x502C0000, // 004B LDBOOL R11 0 0
0x7C240400, // 004C CALL R9 2
0x8C28131E, // 004D GETMET R10 R9 K30
0x7C280200, // 004E CALL R10 1
0xB82A0200, // 004F GETNGBL R10 K1
0x8C281502, // 0050 GETMET R10 R10 K2
0x8C300919, // 0051 GETMET R12 R4 K25
0x5838001F, // 0052 LDCONST R14 K31
0x883C1315, // 0053 GETMBR R15 R9 K21
0x883C1F08, // 0054 GETMBR R15 R15 K8
0x88401320, // 0055 GETMBR R16 R9 K32
0x88441318, // 0056 GETMBR R17 R9 K24
0x7C300A00, // 0057 CALL R12 5
0x54360003, // 0058 LDINT R13 4
0x7C280600, // 0059 CALL R10 3
0x8C280121, // 005A GETMET R10 R0 K33
0x88301322, // 005B GETMBR R12 R9 K34
0x88341323, // 005C GETMBR R13 R9 K35
0x88381324, // 005D GETMBR R14 R9 K36
0x4C3C0000, // 005E LDNIL R15
0x88401315, // 005F GETMBR R16 R9 K21
0x88402108, // 0060 GETMBR R16 R16 K8
0x7C280C00, // 0061 CALL R10 6
0x50240000, // 0062 LDBOOL R9 0 0
0xA8040001, // 0063 EXBLK 1 1
0x80041200, // 0064 RET 1 R9
0x8C240D25, // 0065 GETMET R9 R6 K37
0x7C240200, // 0066 CALL R9 1
0x74260002, // 0067 JMPT R9 #006B
0x50240000, // 0068 LDBOOL R9 0 0
0xA8040001, // 0069 EXBLK 1 1
0x80041200, // 006A RET 1 R9
0x8824010B, // 006B GETMBR R9 R0 K11
0x8C241326, // 006C GETMET R9 R9 K38
0x882C0D20, // 006D GETMBR R11 R6 K32
0x7C240400, // 006E CALL R9 2
0x88240D27, // 006F GETMBR R9 R6 K39
0x542A000F, // 0070 LDINT R10 16
0x2024120A, // 0071 NE R9 R9 R10
0x78260018, // 0072 JMPF R9 #008C
0xB8260A00, // 0073 GETNGBL R9 K5
0x8C241328, // 0074 GETMET R9 R9 K40
0x882C0D27, // 0075 GETMBR R11 R6 K39
0x7C240400, // 0076 CALL R9 2
0x5C281200, // 0077 MOVE R10 R9
0x742A0004, // 0078 JMPT R10 #007E
0x8C280919, // 0079 GETMET R10 R4 K25
0x58300029, // 007A LDCONST R12 K41
0x88340D27, // 007B GETMBR R13 R6 K39
0x7C280600, // 007C CALL R10 3
0x5C241400, // 007D MOVE R9 R10
0xB82A0200, // 007E GETNGBL R10 K1
0x8C281502, // 007F GETMET R10 R10 K2
0x8C300919, // 0080 GETMET R12 R4 K25
0x5838002A, // 0081 LDCONST R14 K42
0x883C1108, // 0082 GETMBR R15 R8 K8
0x5C401200, // 0083 MOVE R16 R9
0x88440D18, // 0084 GETMBR R17 R6 K24
0x88480D2B, // 0085 GETMBR R18 R6 K43
0x5C4C0400, // 0086 MOVE R19 R2
0x5C500600, // 0087 MOVE R20 R3
0x7C301000, // 0088 CALL R12 8
0x5834002C, // 0089 LDCONST R13 K44
0x7C280600, // 008A CALL R10 3
0x70020013, // 008B JMP #00A0
0xB8260200, // 008C GETNGBL R9 K1
0x8C241302, // 008D GETMET R9 R9 K2
0x8C2C0919, // 008E GETMET R11 R4 K25
0x5834002D, // 008F LDCONST R13 K45
0x88381108, // 0090 GETMBR R14 R8 K8
0x883C0D18, // 0091 GETMBR R15 R6 K24
0x88400D1C, // 0092 GETMBR R16 R6 K28
0x78420001, // 0093 JMPF R16 #0096
0x5840002E, // 0094 LDCONST R16 K46
0x70020000, // 0095 JMP #0097
0x5840002F, // 0096 LDCONST R16 K47
0x88440D2B, // 0097 GETMBR R17 R6 K43
0x60480008, // 0098 GETGBL R18 G8
0x884C0D20, // 0099 GETMBR R19 R6 K32
0x7C480200, // 009A CALL R18 1
0x5C4C0400, // 009B MOVE R19 R2
0x5C500600, // 009C MOVE R20 R3
0x7C2C1200, // 009D CALL R11 9
0x58300011, // 009E LDCONST R12 K17
0x7C240600, // 009F CALL R9 3
0x88240130, // 00A0 GETMBR R9 R0 K48
0x8C241331, // 00A1 GETMET R9 R9 K49
0x5C2C0C00, // 00A2 MOVE R11 R6
0x7C240400, // 00A3 CALL R9 2
0x5C141200, // 00A4 MOVE R5 R9
0x5C240A00, // 00A5 MOVE R9 R5
0x74260019, // 00A6 JMPT R9 #00C1
0x88240D1C, // 00A7 GETMBR R9 R6 K28
0x78260017, // 00A8 JMPF R9 #00C1
0x8C240D1D, // 00A9 GETMET R9 R6 K29
0x502C0000, // 00AA LDBOOL R11 0 0
0x7C240400, // 00AB CALL R9 2
0x8C28131E, // 00AC GETMET R10 R9 K30
0x7C280200, // 00AD CALL R10 1
0xB82A0200, // 00AE GETNGBL R10 K1
0x8C281502, // 00AF GETMET R10 R10 K2
0x8C300919, // 00B0 GETMET R12 R4 K25
0x58380032, // 00B1 LDCONST R14 K50
0x883C1315, // 00B2 GETMBR R15 R9 K21
0x883C1F08, // 00B3 GETMBR R15 R15 K8
0x88401320, // 00B4 GETMBR R16 R9 K32
0x88441318, // 00B5 GETMBR R17 R9 K24
0x7C300A00, // 00B6 CALL R12 5
0x58340011, // 00B7 LDCONST R13 K17
0x7C280600, // 00B8 CALL R10 3
0x8C280121, // 00B9 GETMET R10 R0 K33
0x88301322, // 00BA GETMBR R12 R9 K34
0x88341323, // 00BB GETMBR R13 R9 K35
0x88381324, // 00BC GETMBR R14 R9 K36
0x4C3C0000, // 00BD LDNIL R15
0x88401315, // 00BE GETMBR R16 R9 K21
0x88402108, // 00BF GETMBR R16 R16 K8
0x7C280C00, // 00C0 CALL R10 6
0x50240200, // 00C1 LDBOOL R9 1 0
0xA8040001, // 00C2 EXBLK 1 1
0x80041200, // 00C3 RET 1 R9
0x700200EB, // 00C4 JMP #01B1
0xB8220200, // 00C5 GETNGBL R8 K1
0x8C201102, // 00C6 GETMET R8 R8 K2
0x8C280919, // 00C7 GETMET R10 R4 K25
0x58300033, // 00C8 LDCONST R12 K51
0x88340D08, // 00C9 GETMBR R13 R6 K8
0x88380D18, // 00CA GETMBR R14 R6 K24
0x7C280800, // 00CB CALL R10 4
0x582C0011, // 00CC LDCONST R11 K17
0x7C200600, // 00CD CALL R8 3
0x8820010B, // 00CE GETMBR R8 R0 K11
0x8820110C, // 00CF GETMBR R8 R8 K12
0x8C201134, // 00D0 GETMET R8 R8 K52
0x88280D08, // 00D1 GETMBR R10 R6 K8
0x7C200400, // 00D2 CALL R8 2
0x4C240000, // 00D3 LDNIL R9
0x1C241009, // 00D4 EQ R9 R8 R9
0x7826000A, // 00D5 JMPF R9 #00E1
0xB8260200, // 00D6 GETNGBL R9 K1
0x8C241302, // 00D7 GETMET R9 R9 K2
0x602C0008, // 00D8 GETGBL R11 G8
0x88300D08, // 00D9 GETMBR R12 R6 K8
0x7C2C0200, // 00DA CALL R11 1
0x002E6A0B, // 00DB ADD R11 K53 R11
0x5830002C, // 00DC LDCONST R12 K44
0x7C240600, // 00DD CALL R9 3
0x50240000, // 00DE LDBOOL R9 0 0
0xA8040001, // 00DF EXBLK 1 1
0x80041200, // 00E0 RET 1 R9
0x780A0000, // 00E1 JMPF R2 #00E3
0x90222402, // 00E2 SETMBR R8 K18 R2
0x780E0000, // 00E3 JMPF R3 #00E5
0x90222603, // 00E4 SETMBR R8 K19 R3
0x90222800, // 00E5 SETMBR R8 K20 R0
0x901A2A08, // 00E6 SETMBR R6 K21 R8
0x8C241136, // 00E7 GETMET R9 R8 K54
0x882C0D18, // 00E8 GETMBR R11 R6 K24
0x50300200, // 00E9 LDBOOL R12 1 0
0x7C240600, // 00EA CALL R9 3
0x7426002B, // 00EB JMPT R9 #0118
0xB8260200, // 00EC GETNGBL R9 K1
0x8C241302, // 00ED GETMET R9 R9 K2
0x602C0008, // 00EE GETGBL R11 G8
0x88300D18, // 00EF GETMBR R12 R6 K24
0x7C2C0200, // 00F0 CALL R11 1
0x002E6E0B, // 00F1 ADD R11 K55 R11
0x002C1738, // 00F2 ADD R11 R11 K56
0x60300008, // 00F3 GETGBL R12 G8
0x88341139, // 00F4 GETMBR R13 R8 K57
0x7C300200, // 00F5 CALL R12 1
0x002C160C, // 00F6 ADD R11 R11 R12
0x58300011, // 00F7 LDCONST R12 K17
0x7C240600, // 00F8 CALL R9 3
0x88240D1C, // 00F9 GETMBR R9 R6 K28
0x78260019, // 00FA JMPF R9 #0115
0x8C240D1D, // 00FB GETMET R9 R6 K29
0x502C0000, // 00FC LDBOOL R11 0 0
0x7C240400, // 00FD CALL R9 2
0x8C28131E, // 00FE GETMET R10 R9 K30
0x7C280200, // 00FF CALL R10 1
0x8C28133A, // 0100 GETMET R10 R9 K58
0x7C280200, // 0101 CALL R10 1
0xB82A0200, // 0102 GETNGBL R10 K1
0x8C281502, // 0103 GETMET R10 R10 K2
0x8C300919, // 0104 GETMET R12 R4 K25
0x5838001F, // 0105 LDCONST R14 K31
0x883C1315, // 0106 GETMBR R15 R9 K21
0x883C1F08, // 0107 GETMBR R15 R15 K8
0x88401320, // 0108 GETMBR R16 R9 K32
0x88441318, // 0109 GETMBR R17 R9 K24
0x7C300A00, // 010A CALL R12 5
0x54360003, // 010B LDINT R13 4
0x7C280600, // 010C CALL R10 3
0x8C280121, // 010D GETMET R10 R0 K33
0x88301322, // 010E GETMBR R12 R9 K34
0x88341323, // 010F GETMBR R13 R9 K35
0x88381324, // 0110 GETMBR R14 R9 K36
0x4C3C0000, // 0111 LDNIL R15
0x88401315, // 0112 GETMBR R16 R9 K21
0x88402108, // 0113 GETMBR R16 R16 K8
0x7C280C00, // 0114 CALL R10 6
0x50240000, // 0115 LDBOOL R9 0 0
0xA8040001, // 0116 EXBLK 1 1
0x80041200, // 0117 RET 1 R9
0x8C240D3B, // 0118 GETMET R9 R6 K59
0x7C240200, // 0119 CALL R9 1
0x5C281200, // 011A MOVE R10 R9
0x742A0002, // 011B JMPT R10 #011F
0x50280000, // 011C LDBOOL R10 0 0
0xA8040001, // 011D EXBLK 1 1
0x80041400, // 011E RET 1 R10
0x88280D3C, // 011F GETMBR R10 R6 K60
0x0428153D, // 0120 SUB R10 R10 K61
0x402A120A, // 0121 CONNECT R10 K9 R10
0x882C0D22, // 0122 GETMBR R11 R6 K34
0x9428160A, // 0123 GETIDX R10 R11 R10
0x901A440A, // 0124 SETMBR R6 K34 R10
0x88280D22, // 0125 GETMBR R10 R6 K34
0x40281409, // 0126 CONNECT R10 R10 R9
0xB82A0200, // 0127 GETNGBL R10 K1
0x8C281502, // 0128 GETMET R10 R10 K2
0x8C300919, // 0129 GETMET R12 R4 K25
0x5838003E, // 012A LDCONST R14 K62
0x883C0D3C, // 012B GETMBR R15 R6 K60
0x88400D22, // 012C GETMBR R16 R6 K34
0x8C402104, // 012D GETMET R16 R16 K4
0x7C400200, // 012E CALL R16 1
0x7C300800, // 012F CALL R12 4
0x54360003, // 0130 LDINT R13 4
0x7C280600, // 0131 CALL R10 3
0x8C280D25, // 0132 GETMET R10 R6 K37
0x7C280200, // 0133 CALL R10 1
0xB82A0200, // 0134 GETNGBL R10 K1
0x8C281502, // 0135 GETMET R10 R10 K2
0x60300008, // 0136 GETGBL R12 G8
0x88340D40, // 0137 GETMBR R13 R6 K64
0x7C300200, // 0138 CALL R12 1
0x00327E0C, // 0139 ADD R12 K63 R12
0x00301941, // 013A ADD R12 R12 K65
0x60340008, // 013B GETGBL R13 G8
0x88380D27, // 013C GETMBR R14 R6 K39
0x7C340200, // 013D CALL R13 1
0x0030180D, // 013E ADD R12 R12 R13
0x00301942, // 013F ADD R12 R12 K66
0x60340008, // 0140 GETGBL R13 G8
0x88380D2B, // 0141 GETMBR R14 R6 K43
0x543EFFFE, // 0142 LDINT R15 65535
0x2C381C0F, // 0143 AND R14 R14 R15
0x7C340200, // 0144 CALL R13 1
0x0030180D, // 0145 ADD R12 R12 R13
0x58340011, // 0146 LDCONST R13 K17
0x7C280600, // 0147 CALL R10 3
0xB82A0200, // 0148 GETNGBL R10 K1
0x8C281502, // 0149 GETMET R10 R10 K2
0x8C300919, // 014A GETMET R12 R4 K25
0x58380043, // 014B LDCONST R14 K67
0x883C1108, // 014C GETMBR R15 R8 K8
0x88400D40, // 014D GETMBR R16 R6 K64
0x88440D27, // 014E GETMBR R17 R6 K39
0x88480D18, // 014F GETMBR R18 R6 K24
0x884C0D2B, // 0150 GETMBR R19 R6 K43
0x60500008, // 0151 GETGBL R20 G8
0x88540D20, // 0152 GETMBR R21 R6 K32
0x7C500200, // 0153 CALL R20 1
0x88540D1C, // 0154 GETMBR R21 R6 K28
0x78560001, // 0155 JMPF R21 #0158
0x5854002E, // 0156 LDCONST R21 K46
0x70020000, // 0157 JMP #0159
0x5854002F, // 0158 LDCONST R21 K47
0x5C580400, // 0159 MOVE R22 R2
0x5C5C0600, // 015A MOVE R23 R3
0x7C301600, // 015B CALL R12 11
0x58340011, // 015C LDCONST R13 K17
0x7C280600, // 015D CALL R10 3
0x8828010B, // 015E GETMBR R10 R0 K11
0x8C281526, // 015F GETMET R10 R10 K38
0x88300D20, // 0160 GETMBR R12 R6 K32
0x7C280400, // 0161 CALL R10 2
0x88280D40, // 0162 GETMBR R10 R6 K64
0x1C2C1509, // 0163 EQ R11 R10 K9
0x782E0018, // 0164 JMPF R11 #017E
0xB82E0200, // 0165 GETNGBL R11 K1
0x8C2C1702, // 0166 GETMET R11 R11 K2
0xB8360A00, // 0167 GETNGBL R13 K5
0x8C341B45, // 0168 GETMET R13 R13 K69
0x5C3C0C00, // 0169 MOVE R15 R6
0x7C340400, // 016A CALL R13 2
0x0036880D, // 016B ADD R13 K68 R13
0x58380011, // 016C LDCONST R14 K17
0x7C2C0600, // 016D CALL R11 3
0x882C0D27, // 016E GETMBR R11 R6 K39
0x5432000F, // 016F LDINT R12 16
0x1C2C160C, // 0170 EQ R11 R11 R12
0x782E0009, // 0171 JMPF R11 #017C
0x882C0146, // 0172 GETMBR R11 R0 K70
0x8C2C1747, // 0173 GETMET R11 R11 K71
0x5C340C00, // 0174 MOVE R13 R6
0x7C2C0400, // 0175 CALL R11 2
0x5C141600, // 0176 MOVE R5 R11
0x78160003, // 0177 JMPF R5 #017C
0x882C0146, // 0178 GETMBR R11 R0 K70
0x8C2C1748, // 0179 GETMET R11 R11 K72
0x5C340000, // 017A MOVE R13 R0
0x7C2C0400, // 017B CALL R11 2
0x50140200, // 017C LDBOOL R5 1 0
0x70020032, // 017D JMP #01B1
0x1C2C153D, // 017E EQ R11 R10 K61
0x782E0028, // 017F JMPF R11 #01A9
0x882C0146, // 0180 GETMBR R11 R0 K70
0x8C2C1731, // 0181 GETMET R11 R11 K49
0x5C340C00, // 0182 MOVE R13 R6
0x7C2C0400, // 0183 CALL R11 2
0x5C141600, // 0184 MOVE R5 R11
0x78160004, // 0185 JMPF R5 #018B
0x882C0146, // 0186 GETMBR R11 R0 K70
0x8C2C1748, // 0187 GETMET R11 R11 K72
0x5C340000, // 0188 MOVE R13 R0
0x7C2C0400, // 0189 CALL R11 2
0x7002001B, // 018A JMP #01A7
0x882C0D1C, // 018B GETMBR R11 R6 K28
0x782E0019, // 018C JMPF R11 #01A7
0x8C2C0D1D, // 018D GETMET R11 R6 K29
0x50340200, // 018E LDBOOL R13 1 0
0x7C2C0400, // 018F CALL R11 2
0x8C30171E, // 0190 GETMET R12 R11 K30
0x7C300200, // 0191 CALL R12 1
0x8C30173A, // 0192 GETMET R12 R11 K58
0x7C300200, // 0193 CALL R12 1
0xB8320200, // 0194 GETNGBL R12 K1
0x8C301902, // 0195 GETMET R12 R12 K2
0x8C380919, // 0196 GETMET R14 R4 K25
0x5840001F, // 0197 LDCONST R16 K31
0x88441715, // 0198 GETMBR R17 R11 K21
0x88442308, // 0199 GETMBR R17 R17 K8
0x88481720, // 019A GETMBR R18 R11 K32
0x884C1718, // 019B GETMBR R19 R11 K24
0x7C380A00, // 019C CALL R14 5
0x583C0011, // 019D LDCONST R15 K17
0x7C300600, // 019E CALL R12 3
0x8C300121, // 019F GETMET R12 R0 K33
0x88381722, // 01A0 GETMBR R14 R11 K34
0x883C1723, // 01A1 GETMBR R15 R11 K35
0x88401724, // 01A2 GETMBR R16 R11 K36
0x88441718, // 01A3 GETMBR R17 R11 K24
0x88481715, // 01A4 GETMBR R18 R11 K21
0x88482508, // 01A5 GETMBR R18 R18 K8
0x7C300C00, // 01A6 CALL R12 6
0x50140200, // 01A7 LDBOOL R5 1 0
0x70020007, // 01A8 JMP #01B1
0xB82E0200, // 01A9 GETNGBL R11 K1
0x8C2C1702, // 01AA GETMET R11 R11 K2
0x60340008, // 01AB GETGBL R13 G8
0x5C381400, // 01AC MOVE R14 R10
0x7C340200, // 01AD CALL R13 1
0x0036920D, // 01AE ADD R13 K73 R13
0x58380011, // 01AF LDCONST R14 K17
0x7C2C0600, // 01B0 CALL R11 3
0xA8040001, // 01B1 EXBLK 1 1
0x80040A00, // 01B2 RET 1 R5
0xA8040001, // 01B3 EXBLK 1 1
0x70020014, // 01B4 JMP #01CA
0xAC180002, // 01B5 CATCH R6 0 2
0x70020011, // 01B6 JMP #01C9
0xB8220200, // 01B7 GETNGBL R8 K1
0x8C201102, // 01B8 GETMET R8 R8 K2
0x60280008, // 01B9 GETGBL R10 G8
0x5C2C0C00, // 01BA MOVE R11 R6
0x7C280200, // 01BB CALL R10 1
0x002A940A, // 01BC ADD R10 K74 R10
0x0028154B, // 01BD ADD R10 R10 K75
0x602C0008, // 01BE GETGBL R11 G8
0x5C300E00, // 01BF MOVE R12 R7
0x7C2C0200, // 01C0 CALL R11 1
0x0028140B, // 01C1 ADD R10 R10 R11
0x7C200400, // 01C2 CALL R8 2
0xA4229800, // 01C3 IMPORT R8 K76
0x8C24114D, // 01C4 GETMET R9 R8 K77
0x7C240200, // 01C5 CALL R9 1
0x50240000, // 01C6 LDBOOL R9 0 0
0x80041200, // 01C7 RET 1 R9
0x70020000, // 01C8 JMP #01CA
0xB0080000, // 01C9 RAISE 2 R0 R0
0x80000000, // 01CA RET 0
})
)
);

View File

@ -19,7 +19,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0, /* has sup protos */
NULL, /* no sub protos */
1, /* has constants */
( &(const bvalue[86]) { /* constants */
( &(const bvalue[87]) { /* constants */
/* K0 */ be_nested_str_weak(string),
/* K1 */ be_nested_str_weak(matter),
/* K2 */ be_nested_str_weak(TLV),
@ -103,13 +103,14 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
/* K80 */ be_nested_str_weak(StatusFWR),
/* K81 */ be_nested_str_weak(Hardware),
/* K82 */ be_nested_str_weak(Version),
/* K83 */ be_nested_str_weak(locale),
/* K84 */ be_nested_str_weak(get_active_endpoints),
/* K85 */ be_nested_str_weak(read_attribute),
/* K83 */ be_nested_str_weak(_X28),
/* K84 */ be_nested_str_weak(locale),
/* K85 */ be_nested_str_weak(get_active_endpoints),
/* K86 */ be_nested_str_weak(read_attribute),
}),
be_str_weak(read_attribute),
&be_const_str_solidified,
( &(const binstruction[873]) { /* code */
( &(const binstruction[883]) { /* code */
0xA40E0000, // 0000 IMPORT R3 K0
0xB8120200, // 0001 GETNGBL R4 K1
0x88100902, // 0002 GETMBR R4 R4 K2
@ -166,11 +167,11 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x50280000, // 0035 LDBOOL R10 0 0
0x7C1C0600, // 0036 CALL R7 3
0x80040E00, // 0037 RET 1 R7
0x7002032E, // 0038 JMP #0368
0x70020338, // 0038 JMP #0372
0x541E0031, // 0039 LDINT R7 50
0x1C1C0A07, // 003A EQ R7 R5 R7
0x781E0000, // 003B JMPF R7 #003D
0x7002032A, // 003C JMP #0368
0x70020334, // 003C JMP #0372
0x541E0032, // 003D LDINT R7 51
0x1C1C0A07, // 003E EQ R7 R5 R7
0x781E00DC, // 003F JMPF R7 #011D
@ -394,11 +395,11 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x50280000, // 0119 LDBOOL R10 0 0
0x7C1C0600, // 011A CALL R7 3
0x80040E00, // 011B RET 1 R7
0x7002024A, // 011C JMP #0368
0x70020254, // 011C JMP #0372
0x541E0033, // 011D LDINT R7 52
0x1C1C0A07, // 011E EQ R7 R5 R7
0x781E0000, // 011F JMPF R7 #0121
0x70020246, // 0120 JMP #0368
0x70020250, // 0120 JMP #0372
0x541E0037, // 0121 LDINT R7 56
0x1C1C0A07, // 0122 EQ R7 R5 R7
0x781E002C, // 0123 JMPF R7 #0151
@ -446,7 +447,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x5C2C0E00, // 014D MOVE R11 R7
0x7C200600, // 014E CALL R8 3
0x80041000, // 014F RET 1 R8
0x70020216, // 0150 JMP #0368
0x70020220, // 0150 JMP #0372
0x541E003D, // 0151 LDINT R7 62
0x1C1C0A07, // 0152 EQ R7 R5 R7
0x781E008B, // 0153 JMPF R7 #01E0
@ -589,7 +590,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x7C280200, // 01DC CALL R10 1
0x7C1C0600, // 01DD CALL R7 3
0x80040E00, // 01DE RET 1 R7
0x70020187, // 01DF JMP #0368
0x70020191, // 01DF JMP #0372
0x541E003B, // 01E0 LDINT R7 60
0x1C1C0A07, // 01E1 EQ R7 R5 R7
0x781E003C, // 01E2 JMPF R7 #0220
@ -653,10 +654,10 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x4C2C0000, // 021C LDNIL R11
0x7C200600, // 021D CALL R8 3
0x80041000, // 021E RET 1 R8
0x70020147, // 021F JMP #0368
0x70020151, // 021F JMP #0372
0x541E0027, // 0220 LDINT R7 40
0x1C1C0A07, // 0221 EQ R7 R5 R7
0x781E00A4, // 0222 JMPF R7 #02C8
0x781E00AE, // 0222 JMPF R7 #02D2
0x1C1C0D05, // 0223 EQ R7 R6 K5
0x781E0005, // 0224 JMPF R7 #022B
0x8C1C0906, // 0225 GETMET R7 R4 K6
@ -664,7 +665,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x58280009, // 0227 LDCONST R10 K9
0x7C1C0600, // 0228 CALL R7 3
0x80040E00, // 0229 RET 1 R7
0x7002009B, // 022A JMP #02C7
0x700200A5, // 022A JMP #02D1
0x1C1C0D09, // 022B EQ R7 R6 K9
0x781E0005, // 022C JMPF R7 #0233
0x8C1C0906, // 022D GETMET R7 R4 K6
@ -672,7 +673,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x58280049, // 022F LDCONST R10 K73
0x7C1C0600, // 0230 CALL R7 3
0x80040E00, // 0231 RET 1 R7
0x70020093, // 0232 JMP #02C7
0x7002009D, // 0232 JMP #02D1
0x1C1C0D0D, // 0233 EQ R7 R6 K13
0x781E0006, // 0234 JMPF R7 #023C
0x8C1C0906, // 0235 GETMET R7 R4 K6
@ -681,7 +682,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x8828154A, // 0238 GETMBR R10 R10 K74
0x7C1C0600, // 0239 CALL R7 3
0x80040E00, // 023A RET 1 R7
0x7002008A, // 023B JMP #02C7
0x70020094, // 023B JMP #02D1
0x1C1C0D0F, // 023C EQ R7 R6 K15
0x781E000A, // 023D JMPF R7 #0249
0x8C1C0906, // 023E GETMET R7 R4 K6
@ -694,7 +695,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x9428154B, // 0245 GETIDX R10 R10 K75
0x7C1C0600, // 0246 CALL R7 3
0x80040E00, // 0247 RET 1 R7
0x7002007D, // 0248 JMP #02C7
0x70020087, // 0248 JMP #02D1
0x541E0003, // 0249 LDINT R7 4
0x1C1C0C07, // 024A EQ R7 R6 R7
0x781E0005, // 024B JMPF R7 #0252
@ -703,7 +704,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x542A7FFF, // 024E LDINT R10 32768
0x7C1C0600, // 024F CALL R7 3
0x80040E00, // 0250 RET 1 R7
0x70020074, // 0251 JMP #02C7
0x7002007E, // 0251 JMP #02D1
0x541E0004, // 0252 LDINT R7 5
0x1C1C0C07, // 0253 EQ R7 R6 R7
0x781E000A, // 0254 JMPF R7 #0260
@ -717,7 +718,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x9428154D, // 025C GETIDX R10 R10 K77
0x7C1C0600, // 025D CALL R7 3
0x80040E00, // 025E RET 1 R7
0x70020066, // 025F JMP #02C7
0x70020070, // 025F JMP #02D1
0x541E0005, // 0260 LDINT R7 6
0x1C1C0C07, // 0261 EQ R7 R6 R7
0x781E0005, // 0262 JMPF R7 #0269
@ -726,7 +727,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x5828004E, // 0265 LDCONST R10 K78
0x7C1C0600, // 0266 CALL R7 3
0x80040E00, // 0267 RET 1 R7
0x7002005D, // 0268 JMP #02C7
0x70020067, // 0268 JMP #02D1
0x541E0006, // 0269 LDINT R7 7
0x1C1C0C07, // 026A EQ R7 R6 R7
0x781E0005, // 026B JMPF R7 #0272
@ -735,7 +736,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x58280005, // 026E LDCONST R10 K5
0x7C1C0600, // 026F CALL R7 3
0x80040E00, // 0270 RET 1 R7
0x70020054, // 0271 JMP #02C7
0x7002005E, // 0271 JMP #02D1
0x541E0007, // 0272 LDINT R7 8
0x1C1C0C07, // 0273 EQ R7 R6 R7
0x781E000B, // 0274 JMPF R7 #0281
@ -750,7 +751,7 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x94281551, // 027D GETIDX R10 R10 K81
0x7C1C0600, // 027E CALL R7 3
0x80040E00, // 027F RET 1 R7
0x70020045, // 0280 JMP #02C7
0x7002004F, // 0280 JMP #02D1
0x541E0008, // 0281 LDINT R7 9
0x1C1C0C07, // 0282 EQ R7 R6 R7
0x781E0005, // 0283 JMPF R7 #028A
@ -759,230 +760,240 @@ be_local_closure(Matter_Plugin_Root_read_attribute, /* name */
0x58280009, // 0286 LDCONST R10 K9
0x7C1C0600, // 0287 CALL R7 3
0x80040E00, // 0288 RET 1 R7
0x7002003C, // 0289 JMP #02C7
0x70020046, // 0289 JMP #02D1
0x541E0009, // 028A LDINT R7 10
0x1C1C0C07, // 028B EQ R7 R6 R7
0x781E000B, // 028C JMPF R7 #0299
0x8C1C0906, // 028D GETMET R7 R4 K6
0x88240916, // 028E GETMBR R9 R4 K22
0xB82A2400, // 028F GETNGBL R10 K18
0x8C281526, // 0290 GETMET R10 R10 K38
0x5830004F, // 0291 LDCONST R12 K79
0x50340200, // 0292 LDBOOL R13 1 0
0x7C280600, // 0293 CALL R10 3
0x94281550, // 0294 GETIDX R10 R10 K80
0x94281552, // 0295 GETIDX R10 R10 K82
0x7C1C0600, // 0296 CALL R7 3
0x80040E00, // 0297 RET 1 R7
0x7002002D, // 0298 JMP #02C7
0x541E000E, // 0299 LDINT R7 15
0x1C1C0C07, // 029A EQ R7 R6 R7
0x781E000B, // 029B JMPF R7 #02A8
0x8C1C0906, // 029C GETMET R7 R4 K6
0x88240916, // 029D GETMBR R9 R4 K22
0xB82A2400, // 029E GETNGBL R10 K18
0x8C281525, // 029F GETMET R10 R10 K37
0x7C280200, // 02A0 CALL R10 1
0x8C28151B, // 02A1 GETMET R10 R10 K27
0x5830001C, // 02A2 LDCONST R12 K28
0x5834001D, // 02A3 LDCONST R13 K29
0x7C280600, // 02A4 CALL R10 3
0x7C1C0600, // 02A5 CALL R7 3
0x80040E00, // 02A6 RET 1 R7
0x7002001E, // 02A7 JMP #02C7
0x541E0011, // 02A8 LDINT R7 18
0x1C1C0C07, // 02A9 EQ R7 R6 R7
0x781E000B, // 02AA JMPF R7 #02B7
0x8C1C0906, // 02AB GETMET R7 R4 K6
0x88240916, // 02AC GETMBR R9 R4 K22
0xB82A2400, // 02AD GETNGBL R10 K18
0x8C281525, // 02AE GETMET R10 R10 K37
0x7C280200, // 02AF CALL R10 1
0x8C28151B, // 02B0 GETMET R10 R10 K27
0x5830001C, // 02B1 LDCONST R12 K28
0x5834001D, // 02B2 LDCONST R13 K29
0x7C280600, // 02B3 CALL R10 3
0x7C1C0600, // 02B4 CALL R7 3
0x80040E00, // 02B5 RET 1 R7
0x7002000F, // 02B6 JMP #02C7
0x541E0012, // 02B7 LDINT R7 19
0x1C1C0C07, // 02B8 EQ R7 R6 R7
0x781E000C, // 02B9 JMPF R7 #02C7
0x8C1C090A, // 02BA GETMET R7 R4 K10
0x7C1C0200, // 02BB CALL R7 1
0x8C200F0B, // 02BC GETMET R8 R7 K11
0x58280005, // 02BD LDCONST R10 K5
0x882C090C, // 02BE GETMBR R11 R4 K12
0x5830000F, // 02BF LDCONST R12 K15
0x7C200800, // 02C0 CALL R8 4
0x8C200F0B, // 02C1 GETMET R8 R7 K11
0x58280009, // 02C2 LDCONST R10 K9
0x882C090C, // 02C3 GETMBR R11 R4 K12
0x5830000F, // 02C4 LDCONST R12 K15
0x7C200800, // 02C5 CALL R8 4
0x80040E00, // 02C6 RET 1 R7
0x7002009F, // 02C7 JMP #0368
0x541E003E, // 02C8 LDINT R7 63
0x1C1C0A07, // 02C9 EQ R7 R5 R7
0x781E0000, // 02CA JMPF R7 #02CC
0x7002009B, // 02CB JMP #0368
0x541E0029, // 02CC LDINT R7 42
0x1C1C0A07, // 02CD EQ R7 R5 R7
0x781E001D, // 02CE JMPF R7 #02ED
0x1C1C0D05, // 02CF EQ R7 R6 K5
0x781E0003, // 02D0 JMPF R7 #02D5
0x8C1C0911, // 02D1 GETMET R7 R4 K17
0x7C1C0200, // 02D2 CALL R7 1
0x80040E00, // 02D3 RET 1 R7
0x70020016, // 02D4 JMP #02EC
0x1C1C0D09, // 02D5 EQ R7 R6 K9
0x781E0005, // 02D6 JMPF R7 #02DD
0x8C1C0906, // 02D7 GETMET R7 R4 K6
0x88240910, // 02D8 GETMBR R9 R4 K16
0x58280005, // 02D9 LDCONST R10 K5
0x7C1C0600, // 02DA CALL R7 3
0x80040E00, // 02DB RET 1 R7
0x7002000E, // 02DC JMP #02EC
0x1C1C0D0D, // 02DD EQ R7 R6 K13
0x781E0005, // 02DE JMPF R7 #02E5
0x8C1C0906, // 02DF GETMET R7 R4 K6
0x8824090E, // 02E0 GETMBR R9 R4 K14
0x58280009, // 02E1 LDCONST R10 K9
0x7C1C0600, // 02E2 CALL R7 3
0x80040E00, // 02E3 RET 1 R7
0x70020006, // 02E4 JMP #02EC
0x1C1C0D0F, // 02E5 EQ R7 R6 K15
0x781E0004, // 02E6 JMPF R7 #02EC
0x8C1C0906, // 02E7 GETMET R7 R4 K6
0x88240918, // 02E8 GETMBR R9 R4 K24
0x4C280000, // 02E9 LDNIL R10
0x7C1C0600, // 02EA CALL R7 3
0x80040E00, // 02EB RET 1 R7
0x7002007A, // 02EC JMP #0368
0x541E002A, // 02ED LDINT R7 43
0x1C1C0A07, // 02EE EQ R7 R5 R7
0x781E0016, // 02EF JMPF R7 #0307
0x1C1C0D05, // 02F0 EQ R7 R6 K5
0x781E0007, // 02F1 JMPF R7 #02FA
0x8C1C0906, // 02F2 GETMET R7 R4 K6
0x88240916, // 02F3 GETMBR R9 R4 K22
0xB82A2400, // 02F4 GETNGBL R10 K18
0x8C281553, // 02F5 GETMET R10 R10 K83
0x7C280200, // 02F6 CALL R10 1
0x7C1C0600, // 02F7 CALL R7 3
0x80040E00, // 02F8 RET 1 R7
0x7002000B, // 02F9 JMP #0306
0x1C1C0D09, // 02FA EQ R7 R6 K9
0x781E0009, // 02FB JMPF R7 #0306
0x8C1C0911, // 02FC GETMET R7 R4 K17
0x7C1C0200, // 02FD CALL R7 1
0x8C200F0B, // 02FE GETMET R8 R7 K11
0x4C280000, // 02FF LDNIL R10
0x882C0916, // 0300 GETMBR R11 R4 K22
0xB8322400, // 0301 GETNGBL R12 K18
0x8C301953, // 0302 GETMET R12 R12 K83
0x7C300200, // 0303 CALL R12 1
0x7C200800, // 0304 CALL R8 4
0x80040E00, // 0305 RET 1 R7
0x70020060, // 0306 JMP #0368
0x541E002B, // 0307 LDINT R7 44
0x1C1C0A07, // 0308 EQ R7 R5 R7
0x781E001C, // 0309 JMPF R7 #0327
0x1C1C0D05, // 030A EQ R7 R6 K5
0x781E0005, // 030B JMPF R7 #0312
0x8C1C0906, // 030C GETMET R7 R4 K6
0x8824090E, // 030D GETMBR R9 R4 K14
0x58280009, // 030E LDCONST R10 K9
0x7C1C0600, // 030F CALL R7 3
0x80040E00, // 0310 RET 1 R7
0x70020013, // 0311 JMP #0326
0x1C1C0D09, // 0312 EQ R7 R6 K9
0x781E0005, // 0313 JMPF R7 #031A
0x8C1C0906, // 0314 GETMET R7 R4 K6
0x8824090E, // 0315 GETMBR R9 R4 K14
0x542A0003, // 0316 LDINT R10 4
0x7C1C0600, // 0317 CALL R7 3
0x80040E00, // 0318 RET 1 R7
0x7002000B, // 0319 JMP #0326
0x1C1C0D0D, // 031A EQ R7 R6 K13
0x781E0009, // 031B JMPF R7 #0326
0x8C1C0911, // 031C GETMET R7 R4 K17
0x7C1C0200, // 031D CALL R7 1
0x8C200F0B, // 031E GETMET R8 R7 K11
0x4C280000, // 031F LDNIL R10
0x8C2C0906, // 0320 GETMET R11 R4 K6
0x8834090E, // 0321 GETMBR R13 R4 K14
0x543A0003, // 0322 LDINT R14 4
0x7C2C0600, // 0323 CALL R11 3
0x7C200600, // 0324 CALL R8 3
0x80040E00, // 0325 RET 1 R7
0x70020040, // 0326 JMP #0368
0x541E0030, // 0327 LDINT R7 49
0x1C1C0A07, // 0328 EQ R7 R5 R7
0x781E0010, // 0329 JMPF R7 #033B
0x1C1C0D0F, // 032A EQ R7 R6 K15
0x781E0005, // 032B JMPF R7 #0332
0x8C1C0906, // 032C GETMET R7 R4 K6
0x8824090E, // 032D GETMBR R9 R4 K14
0x542A001D, // 032E LDINT R10 30
0x7C1C0600, // 032F CALL R7 3
0x80040E00, // 0330 RET 1 R7
0x70020007, // 0331 JMP #033A
0x541EFFFB, // 0332 LDINT R7 65532
0x1C1C0C07, // 0333 EQ R7 R6 R7
0x781E0004, // 0334 JMPF R7 #033A
0x8C1C0906, // 0335 GETMET R7 R4 K6
0x8824092A, // 0336 GETMBR R9 R4 K42
0x542A0003, // 0337 LDINT R10 4
0x7C1C0600, // 0338 CALL R7 3
0x80040E00, // 0339 RET 1 R7
0x7002002C, // 033A JMP #0368
0x541E001C, // 033B LDINT R7 29
0x1C1C0A07, // 033C EQ R7 R5 R7
0x781E0021, // 033D JMPF R7 #0360
0x1C1C0D0F, // 033E EQ R7 R6 K15
0x781E0016, // 033F JMPF R7 #0357
0x8C1C0911, // 0340 GETMET R7 R4 K17
0x7C1C0200, // 0341 CALL R7 1
0x88200133, // 0342 GETMBR R8 R0 K51
0x8C201154, // 0343 GETMET R8 R8 K84
0x50280200, // 0344 LDBOOL R10 1 0
0x7C200400, // 0345 CALL R8 2
0x60240010, // 0346 GETGBL R9 G16
0x5C281000, // 0347 MOVE R10 R8
0x7C240200, // 0348 CALL R9 1
0xA8020007, // 0349 EXBLK 0 #0352
0x5C281200, // 034A MOVE R10 R9
0x7C280000, // 034B CALL R10 0
0x8C2C0F0B, // 034C GETMET R11 R7 K11
0x4C340000, // 034D LDNIL R13
0x8838090C, // 034E GETMBR R14 R4 K12
0x5C3C1400, // 034F MOVE R15 R10
0x7C2C0800, // 0350 CALL R11 4
0x7001FFF7, // 0351 JMP #034A
0x5824003A, // 0352 LDCONST R9 K58
0xAC240200, // 0353 CATCH R9 1 0
0xB0080000, // 0354 RAISE 2 R0 R0
0x80040E00, // 0355 RET 1 R7
0x70020007, // 0356 JMP #035F
0x601C0003, // 0357 GETGBL R7 G3
0x5C200000, // 0358 MOVE R8 R0
0x7C1C0200, // 0359 CALL R7 1
0x8C1C0F55, // 035A GETMET R7 R7 K85
0x5C240200, // 035B MOVE R9 R1
0x5C280400, // 035C MOVE R10 R2
0x7C1C0600, // 035D CALL R7 3
0x80040E00, // 035E RET 1 R7
0x70020007, // 035F JMP #0368
0x601C0003, // 0360 GETGBL R7 G3
0x5C200000, // 0361 MOVE R8 R0
0x7C1C0200, // 0362 CALL R7 1
0x8C1C0F55, // 0363 GETMET R7 R7 K85
0x5C240200, // 0364 MOVE R9 R1
0x5C280400, // 0365 MOVE R10 R2
0x7C1C0600, // 0366 CALL R7 3
0x80040E00, // 0367 RET 1 R7
0x80000000, // 0368 RET 0
0x781E0015, // 028C JMPF R7 #02A3
0xB81E2400, // 028D GETNGBL R7 K18
0x8C1C0F26, // 028E GETMET R7 R7 K38
0x5824004F, // 028F LDCONST R9 K79
0x50280200, // 0290 LDBOOL R10 1 0
0x7C1C0600, // 0291 CALL R7 3
0x941C0F50, // 0292 GETIDX R7 R7 K80
0x941C0F52, // 0293 GETIDX R7 R7 K82
0x8C20071B, // 0294 GETMET R8 R3 K27
0x5C280E00, // 0295 MOVE R10 R7
0x582C0053, // 0296 LDCONST R11 K83
0x7C200600, // 0297 CALL R8 3
0x24241105, // 0298 GT R9 R8 K5
0x78260002, // 0299 JMPF R9 #029D
0x04241109, // 029A SUB R9 R8 K9
0x40260A09, // 029B CONNECT R9 K5 R9
0x941C0E09, // 029C GETIDX R7 R7 R9
0x8C240906, // 029D GETMET R9 R4 K6
0x882C0916, // 029E GETMBR R11 R4 K22
0x5C300E00, // 029F MOVE R12 R7
0x7C240600, // 02A0 CALL R9 3
0x80041200, // 02A1 RET 1 R9
0x7002002D, // 02A2 JMP #02D1
0x541E000E, // 02A3 LDINT R7 15
0x1C1C0C07, // 02A4 EQ R7 R6 R7
0x781E000B, // 02A5 JMPF R7 #02B2
0x8C1C0906, // 02A6 GETMET R7 R4 K6
0x88240916, // 02A7 GETMBR R9 R4 K22
0xB82A2400, // 02A8 GETNGBL R10 K18
0x8C281525, // 02A9 GETMET R10 R10 K37
0x7C280200, // 02AA CALL R10 1
0x8C28151B, // 02AB GETMET R10 R10 K27
0x5830001C, // 02AC LDCONST R12 K28
0x5834001D, // 02AD LDCONST R13 K29
0x7C280600, // 02AE CALL R10 3
0x7C1C0600, // 02AF CALL R7 3
0x80040E00, // 02B0 RET 1 R7
0x7002001E, // 02B1 JMP #02D1
0x541E0011, // 02B2 LDINT R7 18
0x1C1C0C07, // 02B3 EQ R7 R6 R7
0x781E000B, // 02B4 JMPF R7 #02C1
0x8C1C0906, // 02B5 GETMET R7 R4 K6
0x88240916, // 02B6 GETMBR R9 R4 K22
0xB82A2400, // 02B7 GETNGBL R10 K18
0x8C281525, // 02B8 GETMET R10 R10 K37
0x7C280200, // 02B9 CALL R10 1
0x8C28151B, // 02BA GETMET R10 R10 K27
0x5830001C, // 02BB LDCONST R12 K28
0x5834001D, // 02BC LDCONST R13 K29
0x7C280600, // 02BD CALL R10 3
0x7C1C0600, // 02BE CALL R7 3
0x80040E00, // 02BF RET 1 R7
0x7002000F, // 02C0 JMP #02D1
0x541E0012, // 02C1 LDINT R7 19
0x1C1C0C07, // 02C2 EQ R7 R6 R7
0x781E000C, // 02C3 JMPF R7 #02D1
0x8C1C090A, // 02C4 GETMET R7 R4 K10
0x7C1C0200, // 02C5 CALL R7 1
0x8C200F0B, // 02C6 GETMET R8 R7 K11
0x58280005, // 02C7 LDCONST R10 K5
0x882C090C, // 02C8 GETMBR R11 R4 K12
0x5830000F, // 02C9 LDCONST R12 K15
0x7C200800, // 02CA CALL R8 4
0x8C200F0B, // 02CB GETMET R8 R7 K11
0x58280009, // 02CC LDCONST R10 K9
0x882C090C, // 02CD GETMBR R11 R4 K12
0x5830000F, // 02CE LDCONST R12 K15
0x7C200800, // 02CF CALL R8 4
0x80040E00, // 02D0 RET 1 R7
0x7002009F, // 02D1 JMP #0372
0x541E003E, // 02D2 LDINT R7 63
0x1C1C0A07, // 02D3 EQ R7 R5 R7
0x781E0000, // 02D4 JMPF R7 #02D6
0x7002009B, // 02D5 JMP #0372
0x541E0029, // 02D6 LDINT R7 42
0x1C1C0A07, // 02D7 EQ R7 R5 R7
0x781E001D, // 02D8 JMPF R7 #02F7
0x1C1C0D05, // 02D9 EQ R7 R6 K5
0x781E0003, // 02DA JMPF R7 #02DF
0x8C1C0911, // 02DB GETMET R7 R4 K17
0x7C1C0200, // 02DC CALL R7 1
0x80040E00, // 02DD RET 1 R7
0x70020016, // 02DE JMP #02F6
0x1C1C0D09, // 02DF EQ R7 R6 K9
0x781E0005, // 02E0 JMPF R7 #02E7
0x8C1C0906, // 02E1 GETMET R7 R4 K6
0x88240910, // 02E2 GETMBR R9 R4 K16
0x58280005, // 02E3 LDCONST R10 K5
0x7C1C0600, // 02E4 CALL R7 3
0x80040E00, // 02E5 RET 1 R7
0x7002000E, // 02E6 JMP #02F6
0x1C1C0D0D, // 02E7 EQ R7 R6 K13
0x781E0005, // 02E8 JMPF R7 #02EF
0x8C1C0906, // 02E9 GETMET R7 R4 K6
0x8824090E, // 02EA GETMBR R9 R4 K14
0x58280009, // 02EB LDCONST R10 K9
0x7C1C0600, // 02EC CALL R7 3
0x80040E00, // 02ED RET 1 R7
0x70020006, // 02EE JMP #02F6
0x1C1C0D0F, // 02EF EQ R7 R6 K15
0x781E0004, // 02F0 JMPF R7 #02F6
0x8C1C0906, // 02F1 GETMET R7 R4 K6
0x88240918, // 02F2 GETMBR R9 R4 K24
0x4C280000, // 02F3 LDNIL R10
0x7C1C0600, // 02F4 CALL R7 3
0x80040E00, // 02F5 RET 1 R7
0x7002007A, // 02F6 JMP #0372
0x541E002A, // 02F7 LDINT R7 43
0x1C1C0A07, // 02F8 EQ R7 R5 R7
0x781E0016, // 02F9 JMPF R7 #0311
0x1C1C0D05, // 02FA EQ R7 R6 K5
0x781E0007, // 02FB JMPF R7 #0304
0x8C1C0906, // 02FC GETMET R7 R4 K6
0x88240916, // 02FD GETMBR R9 R4 K22
0xB82A2400, // 02FE GETNGBL R10 K18
0x8C281554, // 02FF GETMET R10 R10 K84
0x7C280200, // 0300 CALL R10 1
0x7C1C0600, // 0301 CALL R7 3
0x80040E00, // 0302 RET 1 R7
0x7002000B, // 0303 JMP #0310
0x1C1C0D09, // 0304 EQ R7 R6 K9
0x781E0009, // 0305 JMPF R7 #0310
0x8C1C0911, // 0306 GETMET R7 R4 K17
0x7C1C0200, // 0307 CALL R7 1
0x8C200F0B, // 0308 GETMET R8 R7 K11
0x4C280000, // 0309 LDNIL R10
0x882C0916, // 030A GETMBR R11 R4 K22
0xB8322400, // 030B GETNGBL R12 K18
0x8C301954, // 030C GETMET R12 R12 K84
0x7C300200, // 030D CALL R12 1
0x7C200800, // 030E CALL R8 4
0x80040E00, // 030F RET 1 R7
0x70020060, // 0310 JMP #0372
0x541E002B, // 0311 LDINT R7 44
0x1C1C0A07, // 0312 EQ R7 R5 R7
0x781E001C, // 0313 JMPF R7 #0331
0x1C1C0D05, // 0314 EQ R7 R6 K5
0x781E0005, // 0315 JMPF R7 #031C
0x8C1C0906, // 0316 GETMET R7 R4 K6
0x8824090E, // 0317 GETMBR R9 R4 K14
0x58280009, // 0318 LDCONST R10 K9
0x7C1C0600, // 0319 CALL R7 3
0x80040E00, // 031A RET 1 R7
0x70020013, // 031B JMP #0330
0x1C1C0D09, // 031C EQ R7 R6 K9
0x781E0005, // 031D JMPF R7 #0324
0x8C1C0906, // 031E GETMET R7 R4 K6
0x8824090E, // 031F GETMBR R9 R4 K14
0x542A0003, // 0320 LDINT R10 4
0x7C1C0600, // 0321 CALL R7 3
0x80040E00, // 0322 RET 1 R7
0x7002000B, // 0323 JMP #0330
0x1C1C0D0D, // 0324 EQ R7 R6 K13
0x781E0009, // 0325 JMPF R7 #0330
0x8C1C0911, // 0326 GETMET R7 R4 K17
0x7C1C0200, // 0327 CALL R7 1
0x8C200F0B, // 0328 GETMET R8 R7 K11
0x4C280000, // 0329 LDNIL R10
0x8C2C0906, // 032A GETMET R11 R4 K6
0x8834090E, // 032B GETMBR R13 R4 K14
0x543A0003, // 032C LDINT R14 4
0x7C2C0600, // 032D CALL R11 3
0x7C200600, // 032E CALL R8 3
0x80040E00, // 032F RET 1 R7
0x70020040, // 0330 JMP #0372
0x541E0030, // 0331 LDINT R7 49
0x1C1C0A07, // 0332 EQ R7 R5 R7
0x781E0010, // 0333 JMPF R7 #0345
0x1C1C0D0F, // 0334 EQ R7 R6 K15
0x781E0005, // 0335 JMPF R7 #033C
0x8C1C0906, // 0336 GETMET R7 R4 K6
0x8824090E, // 0337 GETMBR R9 R4 K14
0x542A001D, // 0338 LDINT R10 30
0x7C1C0600, // 0339 CALL R7 3
0x80040E00, // 033A RET 1 R7
0x70020007, // 033B JMP #0344
0x541EFFFB, // 033C LDINT R7 65532
0x1C1C0C07, // 033D EQ R7 R6 R7
0x781E0004, // 033E JMPF R7 #0344
0x8C1C0906, // 033F GETMET R7 R4 K6
0x8824092A, // 0340 GETMBR R9 R4 K42
0x542A0003, // 0341 LDINT R10 4
0x7C1C0600, // 0342 CALL R7 3
0x80040E00, // 0343 RET 1 R7
0x7002002C, // 0344 JMP #0372
0x541E001C, // 0345 LDINT R7 29
0x1C1C0A07, // 0346 EQ R7 R5 R7
0x781E0021, // 0347 JMPF R7 #036A
0x1C1C0D0F, // 0348 EQ R7 R6 K15
0x781E0016, // 0349 JMPF R7 #0361
0x8C1C0911, // 034A GETMET R7 R4 K17
0x7C1C0200, // 034B CALL R7 1
0x88200133, // 034C GETMBR R8 R0 K51
0x8C201155, // 034D GETMET R8 R8 K85
0x50280200, // 034E LDBOOL R10 1 0
0x7C200400, // 034F CALL R8 2
0x60240010, // 0350 GETGBL R9 G16
0x5C281000, // 0351 MOVE R10 R8
0x7C240200, // 0352 CALL R9 1
0xA8020007, // 0353 EXBLK 0 #035C
0x5C281200, // 0354 MOVE R10 R9
0x7C280000, // 0355 CALL R10 0
0x8C2C0F0B, // 0356 GETMET R11 R7 K11
0x4C340000, // 0357 LDNIL R13
0x8838090C, // 0358 GETMBR R14 R4 K12
0x5C3C1400, // 0359 MOVE R15 R10
0x7C2C0800, // 035A CALL R11 4
0x7001FFF7, // 035B JMP #0354
0x5824003A, // 035C LDCONST R9 K58
0xAC240200, // 035D CATCH R9 1 0
0xB0080000, // 035E RAISE 2 R0 R0
0x80040E00, // 035F RET 1 R7
0x70020007, // 0360 JMP #0369
0x601C0003, // 0361 GETGBL R7 G3
0x5C200000, // 0362 MOVE R8 R0
0x7C1C0200, // 0363 CALL R7 1
0x8C1C0F56, // 0364 GETMET R7 R7 K86
0x5C240200, // 0365 MOVE R9 R1
0x5C280400, // 0366 MOVE R10 R2
0x7C1C0600, // 0367 CALL R7 3
0x80040E00, // 0368 RET 1 R7
0x70020007, // 0369 JMP #0372
0x601C0003, // 036A GETGBL R7 G3
0x5C200000, // 036B MOVE R8 R0
0x7C1C0200, // 036C CALL R7 1
0x8C1C0F56, // 036D GETMET R7 R7 K86
0x5C240200, // 036E MOVE R9 R1
0x5C280400, // 036F MOVE R10 R2
0x7C1C0600, // 0370 CALL R7 3
0x80040E00, // 0371 RET 1 R7
0x80000000, // 0372 RET 0
})
)
);