All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
@ 2020-10-03 13:54 Greg Kroah-Hartman
  2020-10-03 15:51 ` Marcel Holtmann
  0 siblings, 1 reply; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-03 13:54 UTC (permalink / raw)
  To: Marcel Holtmann, Johan Hedberg, Sathish Narsimman
  Cc: David S. Miller, Jakub Kicinski, linux-bluetooth, netdev, linux-kernel

This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
breaks all bluetooth connections on my machine.

Cc: Marcel Holtmann <marcel@holtmann.org>
Cc: Sathish Narsimman <sathish.narasimman@intel.com>
Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 net/bluetooth/hci_request.c | 41 ++-----------------------------------
 1 file changed, 2 insertions(+), 39 deletions(-)

This has been bugging me for since 5.9-rc1, when all bluetooth devices
stopped working on my desktop system.  I finally got the time to do
bisection today, and it came down to this patch.  Reverting it on top of
5.9-rc7 restored bluetooth devices and now my input devices properly
work.

As it's almost 5.9-final, any chance this can be merged now to fix the
issue?


diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
index e0269192f2e5..75b0a4776f10 100644
--- a/net/bluetooth/hci_request.c
+++ b/net/bluetooth/hci_request.c
@@ -697,21 +697,6 @@ static void del_from_white_list(struct hci_request *req, bdaddr_t *bdaddr,
 	bt_dev_dbg(req->hdev, "Remove %pMR (0x%x) from whitelist", &cp.bdaddr,
 		   cp.bdaddr_type);
 	hci_req_add(req, HCI_OP_LE_DEL_FROM_WHITE_LIST, sizeof(cp), &cp);
-
-	if (use_ll_privacy(req->hdev)) {
-		struct smp_irk *irk;
-
-		irk = hci_find_irk_by_addr(req->hdev, bdaddr, bdaddr_type);
-		if (irk) {
-			struct hci_cp_le_del_from_resolv_list cp;
-
-			cp.bdaddr_type = bdaddr_type;
-			bacpy(&cp.bdaddr, bdaddr);
-
-			hci_req_add(req, HCI_OP_LE_DEL_FROM_RESOLV_LIST,
-				    sizeof(cp), &cp);
-		}
-	}
 }
 
 /* Adds connection to white list if needed. On error, returns -1. */
@@ -732,7 +717,7 @@ static int add_to_white_list(struct hci_request *req,
 		return -1;
 
 	/* White list can not be used with RPAs */
-	if (!allow_rpa && !use_ll_privacy(hdev) &&
+	if (!allow_rpa &&
 	    hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
 		return -1;
 	}
@@ -750,28 +735,6 @@ static int add_to_white_list(struct hci_request *req,
 		   cp.bdaddr_type);
 	hci_req_add(req, HCI_OP_LE_ADD_TO_WHITE_LIST, sizeof(cp), &cp);
 
-	if (use_ll_privacy(hdev)) {
-		struct smp_irk *irk;
-
-		irk = hci_find_irk_by_addr(hdev, &params->addr,
-					   params->addr_type);
-		if (irk) {
-			struct hci_cp_le_add_to_resolv_list cp;
-
-			cp.bdaddr_type = params->addr_type;
-			bacpy(&cp.bdaddr, &params->addr);
-			memcpy(cp.peer_irk, irk->val, 16);
-
-			if (hci_dev_test_flag(hdev, HCI_PRIVACY))
-				memcpy(cp.local_irk, hdev->irk, 16);
-			else
-				memset(cp.local_irk, 0, 16);
-
-			hci_req_add(req, HCI_OP_LE_ADD_TO_RESOLV_LIST,
-				    sizeof(cp), &cp);
-		}
-	}
-
 	return 0;
 }
 
@@ -812,7 +775,7 @@ static u8 update_white_list(struct hci_request *req)
 		}
 
 		/* White list can not be used with RPAs */
-		if (!allow_rpa && !use_ll_privacy(hdev) &&
+		if (!allow_rpa &&
 		    hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
 			return 0x00;
 		}
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-03 13:54 [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist" Greg Kroah-Hartman
@ 2020-10-03 15:51 ` Marcel Holtmann
  2020-10-03 16:07   ` Greg Kroah-Hartman
  0 siblings, 1 reply; 23+ messages in thread
From: Marcel Holtmann @ 2020-10-03 15:51 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

Hi Greg,

> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> breaks all bluetooth connections on my machine.
> 
> Cc: Marcel Holtmann <marcel@holtmann.org>
> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> 1 file changed, 2 insertions(+), 39 deletions(-)
> 
> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> stopped working on my desktop system.  I finally got the time to do
> bisection today, and it came down to this patch.  Reverting it on top of
> 5.9-rc7 restored bluetooth devices and now my input devices properly
> work.
> 
> As it's almost 5.9-final, any chance this can be merged now to fix the
> issue?

can you be specific what breaks since our guys and I also think the ChromeOS guys have been testing these series of patches heavily.

When you run btmon does it indicate any errors?

Do you have a chance to test net-next and see the LL Privacy there might have addressed this?

Regards

Marcel


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-03 15:51 ` Marcel Holtmann
@ 2020-10-03 16:07   ` Greg Kroah-Hartman
  2020-10-03 18:33     ` Marcel Holtmann
  0 siblings, 1 reply; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-03 16:07 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

On Sat, Oct 03, 2020 at 05:51:03PM +0200, Marcel Holtmann wrote:
> Hi Greg,
> 
> > This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> > breaks all bluetooth connections on my machine.
> > 
> > Cc: Marcel Holtmann <marcel@holtmann.org>
> > Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> > Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> > Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > ---
> > net/bluetooth/hci_request.c | 41 ++-----------------------------------
> > 1 file changed, 2 insertions(+), 39 deletions(-)
> > 
> > This has been bugging me for since 5.9-rc1, when all bluetooth devices
> > stopped working on my desktop system.  I finally got the time to do
> > bisection today, and it came down to this patch.  Reverting it on top of
> > 5.9-rc7 restored bluetooth devices and now my input devices properly
> > work.
> > 
> > As it's almost 5.9-final, any chance this can be merged now to fix the
> > issue?
> 
> can you be specific what breaks since our guys and I also think the
> ChromeOS guys have been testing these series of patches heavily.

My bluetooth trackball does not connect at all.  With this reverted, it
all "just works".

Same I think for a Bluetooth headset, can check that again if you really
need me to, but the trackball is reliable here.

> When you run btmon does it indicate any errors?

How do I run it and where are the errors displayed?

> Do you have a chance to test net-next and see the LL Privacy there might have addressed this?

Have a specific set of patches I can test?  It wouldn't be good to have
5.9-final go out with this not working at all.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-03 16:07   ` Greg Kroah-Hartman
@ 2020-10-03 18:33     ` Marcel Holtmann
  2020-10-04 10:51       ` Greg Kroah-Hartman
  0 siblings, 1 reply; 23+ messages in thread
From: Marcel Holtmann @ 2020-10-03 18:33 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

Hi Greg,

>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
>>> breaks all bluetooth connections on my machine.
>>> 
>>> Cc: Marcel Holtmann <marcel@holtmann.org>
>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>>> ---
>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
>>> 1 file changed, 2 insertions(+), 39 deletions(-)
>>> 
>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
>>> stopped working on my desktop system.  I finally got the time to do
>>> bisection today, and it came down to this patch.  Reverting it on top of
>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
>>> work.
>>> 
>>> As it's almost 5.9-final, any chance this can be merged now to fix the
>>> issue?
>> 
>> can you be specific what breaks since our guys and I also think the
>> ChromeOS guys have been testing these series of patches heavily.
> 
> My bluetooth trackball does not connect at all.  With this reverted, it
> all "just works".
> 
> Same I think for a Bluetooth headset, can check that again if you really
> need me to, but the trackball is reliable here.
> 
>> When you run btmon does it indicate any errors?
> 
> How do I run it and where are the errors displayed?

you can do btmon -w trace.log and just let it run like tcdpump.

>> Do you have a chance to test net-next and see the LL Privacy there might have addressed this?
> 
> Have a specific set of patches I can test?  It wouldn't be good to have
> 5.9-final go out with this not working at all.

Of course not, but so far you are the only one reported a problem. Maybe you have some funky hardware in your machine that needs a quirk.

Regards

Marcel


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-03 18:33     ` Marcel Holtmann
@ 2020-10-04 10:51       ` Greg Kroah-Hartman
  2020-10-04 10:53         ` Greg Kroah-Hartman
                           ` (2 more replies)
  0 siblings, 3 replies; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-04 10:51 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1823 bytes --]

On Sat, Oct 03, 2020 at 08:33:18PM +0200, Marcel Holtmann wrote:
> Hi Greg,
> 
> >>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> >>> breaks all bluetooth connections on my machine.
> >>> 
> >>> Cc: Marcel Holtmann <marcel@holtmann.org>
> >>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> >>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> >>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >>> ---
> >>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> >>> 1 file changed, 2 insertions(+), 39 deletions(-)
> >>> 
> >>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> >>> stopped working on my desktop system.  I finally got the time to do
> >>> bisection today, and it came down to this patch.  Reverting it on top of
> >>> 5.9-rc7 restored bluetooth devices and now my input devices properly
> >>> work.
> >>> 
> >>> As it's almost 5.9-final, any chance this can be merged now to fix the
> >>> issue?
> >> 
> >> can you be specific what breaks since our guys and I also think the
> >> ChromeOS guys have been testing these series of patches heavily.
> > 
> > My bluetooth trackball does not connect at all.  With this reverted, it
> > all "just works".
> > 
> > Same I think for a Bluetooth headset, can check that again if you really
> > need me to, but the trackball is reliable here.
> > 
> >> When you run btmon does it indicate any errors?
> > 
> > How do I run it and where are the errors displayed?
> 
> you can do btmon -w trace.log and just let it run like tcdpump.

Ok, attached.

The device is not connecting, and then I open the gnome bluetooth dialog
and it scans for devices in the area, but does not connect to my
existing devices at all.

Any ideas?

thanks,

greg k-h

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: trace.log --]
[-- Type: text/plain; charset=utf-8, Size: 48094 bytes --]

btsnoop\0\0\0\0\x01\0\0\aÑ\0\0\05\0\0\05ÿÿ\0\f\0\0\0\0\0⎉,~æœLinux version 5.9.0-rc7-00004-g0216685bdd99 (x86_64)\0\0\0\0!\0\0\0!ÿÿ\0\f\0\0\0\0\0⎉,~æžBluetooth subsystem version 2.22\0\0\0\0\x10\0\0\0\x10\0\0\0\0\0\0\0\0\0⎉,~æŸ\0\x01peö…àPhci0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\0\0⎉,~æ \0\0\0\b\0\0\0\b\0\0\0
\0\0\0\0\0⎉,~æ peö…àP\x02\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0⎉,~æ¡\x01\0\0\0\x02\0\x01\x12\0\x01\0\0\0\x10bluetoothd\0\0\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0⎉-:¬L\x01\0\0\0	\0\x01\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0⎉-:¬Y\x01\0\0\0\x01\0	\0\0Û
\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0⎉-:¬p\x01\0\0\0\x18\0\x01\0\0\0	\0\0\0	\0\0\0\x11\0\0\0\0\0⎉-:¬q\x01\0\0\0\x01\0\x18\0\0\0\0\0
\0\0\0
\0\0\0\x10\0\0\0\0\0⎉-:±Ÿ\x01\0\0\0:\0\a\x7f\0\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-:±ÞB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-<’_\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-<’n\x05 \x06
²³.&\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-<ž\x15\x0e\x04\x01\x05 \0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎉-<ž$A \b\x01\0\x01\x01$\0\x12\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-<©Ì\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-<©ÔB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-<¹l\x0e\x04\x02B \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0⎉-<¹t\x01\x04\x053‹ž\b\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-<Å'\x0f\x04\0\x02\x01\x04\0\0\0
\0\0\0
\0\0\0\x11\0\0\0\0\0⎉-<ÅT\x01\0\0\0\x01\0:\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0⎉-<Å^\x01\0\0\0\x13\0\a\x01\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0⎉-<Å–\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\03\x11\0\0\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0⎉-<Å»R\fñ\0\a	thread\x02
\f	\x10\x02\0k\x1dF\x027\x05\x11\x03\0\x18\x01\x18
\x18\x0e\x11\f\x11
\x11\v\x113\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-<ÐÜ\x0e\x04\x01R\f\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0⎉-<Ñ\x01\x01\0\0\0\x01\0\x10\0\0\x04\x01\f\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0⎉-<Ñ0\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\02\x11\0\0\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0⎉-<Ñ<R\fñ\0\a	thread\x02
\f	\x10\x02\0k\x1dF\x027\x05\x13\x03\0\x18\x01\x18
\x18\x0e\x11\f\x11
\x11\v\x113\x112\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-<Ü“\x0e\x04\x01R\f\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0⎉-<ܵ\x01\0\0\0\x01\0\x10\0\0\x04\x01\f\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0⎉-<ÜÚ\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0/\x11\0\0\x10\0\0\0\x06\0\0\0\x06\0\0\0\x02\0\0\0\0\0⎉-<Üæ$\f\x03\x04\x01\x1c\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-<èM\x0e\x04\x01$\f\0\0\0\0	\0\0\0	\0\0\0\x11\0\0\0\0\0⎉-<èo\x01\0\0\0\a\0\x04\x01\x1c\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0⎉-<èxR\fñ\0\a	thread\x02
\f	\x10\x02\0k\x1dF\x027\x05\x15\x03\0\x18\x01\x18
\x18\x0e\x11\f\x11
\x11\v\x113\x112\x11/\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-<ô\b\x0e\x04\x01R\f\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0⎉-<ô*\x01\0\0\0\x01\0\x10\0\0\x04\x01\x1c\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0⎉-<ôa\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\x04\x11\0\0\x10\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0⎉-<ômR\fñ\0\a	thread\x02
\f	\x10\x02\0k\x1dF\x027\x05\x17\x03\0\x18\x01\x18
\x18\x0e\x11\f\x11
\x11\v\x113\x112\x11/\x11\x04\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-<ÿ»\x0e\x04\x01R\f\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0⎉-<ÿÞ\x01\0\0\0\x01\0\x10\0\0\x04\x01\x1c\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0⎉-=\0\x15\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\x06\x11\0\0\x10\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0⎉-=\0#R\fñ\0\a	thread\x02
\f	\x10\x02\0k\x1dF\x027\x05\x19\x03\0\x18\x01\x18
\x18\x0e\x11\f\x11
\x11\v\x113\x112\x11/\x11\x04\x11\x06\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-=\vs\x0e\x04\x01R\f\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0⎉-=\v–\x01\0\0\0\x01\0\x10\0\0\x04\x01\x1c\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0⎉-=\vÎ\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\x05\x11\0\0\x10\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0⎉-=\vÚR\fñ\0\a	thread\x02
\f	\x10\x02\0k\x1dF\x027\x05^[\x03\0\x18\x01\x18
\x18\x0e\x11\f\x11
\x11\v\x113\x112\x11/\x11\x04\x11\x06\x11\x05\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-=\x17+\x0e\x04\x01R\f\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0⎉-=\x17M\x01\0\0\0\x01\0\x10\0\0\x04\x01\x1c\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0⎉-=\x17…\x01\0\0\0\x10\0\x01\0\0î\x02\0\0€\0\x10\0\0\x05P\0\0\0\0\0\0ô\0\0\0ô\0\0\0\x02\0\0\0\0\0⎉-=\x17‘R\fñ\0\a	thread\x02
\f	\x10\x02\0k\x1dF\x027\x05^[\x03\0\x18\x01\x18
\x18\x0e\x11\f\x11
\x11\v\x113\x112\x11/\x11\x04\x11\x06\x11\x05\x11\x11\a\x01\0\0î\x02\0\0€\0\x10\0\0\x05P\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-="ã\x0e\x04\x01R\f\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0⎉-=#\x05\x01\0\0\0\x01\0\x10\0\0\x04\x01\x1c\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉->k%>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉->rå>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉->s\x06\x01\0\0\0\x12\0Á¢!\x0elT\x01¤\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-?§‹>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-?¯V>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-?¯a\x01\0\0\0\x12\0\x04§ÏÚcà\x01¹\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-A…¿B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-A“¢\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-A“¯B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-AŸY\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-B$K>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-B,\f>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-B,+\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎉-B?¥>9\r\x01\x10\0\x01ärñѲ\x12\x01\0ÿ\x7f£\0\0\0\0\0\0\0\0\0\x1f\x02\x01\x1a\x03\x03oý\x17\x16oýÔü
„Ÿ7£rs€\väJjn×T®)‚\0\0\03\0\0\03\0\0\0\x11\0\0\0\0\0⎉-B?Å\x01\0\0\0\x12\0ärñѲ\x12\x02£\x04\0\0\0\x1f\0\x02\x01\x1a\x03\x03oý\x17\x16oýÔü
„Ÿ7£rs€\väJjn×T®)‚\0\0\x01\x01\0\0\x01\x01\0\0\0\x03\0\0\0\0\0⎉-D‘7/ÿ\x016\x1d¡ZV(\x01\0<\x04\bÒ[¿\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x19\0\0\0\x19\0\0\0\x11\0\0\0\0\0⎉-D‘W\x01\0\0\0\x12\06\x1d¡ZV(\0¿\x01\0\0\0\x05\0\x04\r<\x04\b\0\0\0\x0e\0\0\0\x0e\0\0\0\x10\0\0\0\0\0⎉-D‘®\x01\0\0\0%\06\x1d¡ZV(\0\0\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0⎉-D‘¯\x01\0\0\0\x01\0%\0\06\x1d¡ZV(\0\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-DÓÅ>2\r\x01\x13\0\x01oC«\x7f{\x01\0ÿ\x7fŸ\0\0\0\0\0\0\0\0\0\x18\x02\x01\x02\x03\x03 þ\x10\x16 þ\x03úÊr¦&v   \x1fÿ\0\0\0&\0\0\0&\0\0\0\x03\0\0\0\0\0⎉-DÛˆ>$\r\x01^[\0\x01oC«\x7f{\x01\0ÿ\x7fŸ\0\0\0\0\0\0\0\0\0
		Eetkamer\0\0\06\0\0\06\0\0\0\x11\0\0\0\0\0⎉-DÛâ\x01\0\0\0\x12\0oC«\x7f{\x02Ÿ\0\0\0\0"\0\x02\x01\x02\x03\x03 þ\x10\x16 þ\x03úÊr¦&v   \x1fÿ		Eetkamer\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎉-Döî>9\r\x01\x10\0\x01„\b !5%\x01\0ÿ\x7fž\0\0\0\0\0\0\0\0\0\x1f\x02\x01\x1a\x03\x03oý\x17\x16oý\b¶\x14wkü‡;QF*tš´\x03”\a²4ü\0\0\03\0\0\03\0\0\0\x11\0\0\0\0\0⎉-D÷=\x01\0\0\0\x12\0„\b !5%\x02ž\x04\0\0\0\x1f\0\x02\x01\x1a\x03\x03oý\x17\x16oý\b¶\x14wkü‡;QF*tš´\x03”\a²4ü\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-E=pB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-EHÒ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-EHæB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ET‰\x0e\x04\x02B \0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-HöY>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-Hþ!>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-Hþ@\x01\0\0\0\x12\0*ò!°o€\x01°\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-I\x05ò>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-I\r·>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-I\rÚ\x01\0\0\0\x12\0Á¢!\x0elT\x01¤\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-L\fÜB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-L\x1aÜ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-L\x1aðB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-L&”\x0e\x04\x02B \0\0\0\x01\x01\0\0\x01\x01\0\0\0\x03\0\0\0\0\0⎉-L\a/ÿ\x016\x1d¡ZV(\x01\0<\x04\bÑ[Ä\f	KD-43XD8305	\x03
\x11\f\x11\x0e\x11\0\x12\x01\x05\x01\a\x03=\ad\x06ÿ\x0f\0\0\x01d\x02
\a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0B\0\0\0B\0\0\0\x11\0\0\0\0\0⎉-L'\x01\0\0\0\x12\06\x1d¡ZV(\0Ä\0\0\0\0.\0\f	KD-43XD8305	\x03
\x11\f\x11\x0e\x11\0\x12\x01\x05\x01\a\x03=\ad\x06ÿ\x0f\0\0\x01d\x02
\a\x04\r<\x04\b\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-M8%>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-M?å>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-M@\x04\x01\0\0\0\x12\0Á¢!\x0elT\x01¦\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-O©SB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-O´´\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-O´ÎB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-OÄV\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-P\x06à>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-P
·>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-P
Ö\x01\0\0\0\x12\0Á¢!\x0elT\x01¦\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-S$]B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-S38\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-S3]B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-S@Û\x0e\x04\x02B \0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-TBÚ>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-THª>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-THÊ\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-WZuB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-WiÉ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-Wj\x03B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-Wy]\x0e\x04\x02B \0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-X	ª>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-X\x13W>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-X\x13‘\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\01\0\0\01\0\0\0\x03\0\0\0\0\0⎉-[\aI>/\r\x01\x13\0\06\x1d¡ZV(\x01\0ÿ\x7f¬\0\0\0\0\0\0\0\0\0\x15\x02\x01\x02\x11\aüÐ³Ë„à„\x06Bó÷áà¿Ë\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉-[\x0eì>\x1a\r\x01^[\0\06\x1d¡ZV(\x01\0ÿ\x7f«\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0)\0\0\0\x11\0\0\0\0\0⎉-[\x0f\f\x01\0\0\0\x12\06\x1d¡ZV(\x01«\0\0\0\0\x15\0\x02\x01\x02\x11\aüÐ³Ë„à„\x06Bó÷áà¿Ë\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-[+\x05B \x06\0\0\0\0\0\0\0\0\0.\0\0\0.\0\0\0\x03\0\0\0\0\0⎉-[0:>,\r\x01\x13\0\x01®Jü!æs\x01\0ÿ\x7f¢\0\0\0\0\0\0\0\0\0\x12\x02\x01\x1a\x02
\f\vÿL\0\x10\x06\x1c\x1e—‰‘	\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉-[2\x15>\x1a\r\x01^[\0\x01®Jü!æs\x01\0ÿ\x7f¡\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0&\0\0\0\x11\0\0\0\0\0⎉-[2.\x01\0\0\0\x12\0®Jü!æs\x02¡\0\0\0\0\x12\0\x02\x01\x1a\x02
\f\vÿL\0\x10\x06\x1c\x1e—‰‘	\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-[B:>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-[Iø>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-[J\x16\x01\0\0\0\x12\0Á¢!\x0elT\x01¤\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-[QE\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-[QlB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-[`è\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-\OO>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-\n>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\0-\0\0\0-\0\0\0\x11\0\0\0\0\0⎉-\n¬\x01\0\0\0\x12\0Á¢!\x0elT\x01¦\0\0\0\0\x19\0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-\vN>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f¸\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-\vk\x01\0\0\0\x12\0\x04§ÏÚcà\x01¸\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-^BOB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-^Jö\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-^K\x10B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-^Z–\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-b®'>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-b³é>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-b´
\x01\0\0\0\x12\0Á¢!\x0elT\x01¥\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-cæ±>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-cîi>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-cî¡\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-eÉ}B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-eÕ	\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-eÕ+B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-eä¨\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-f¥³>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-iKz>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\0-\0\0\0-\0\0\0\x11\0\0\0\0\0⎉-iK¦\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0\x19\0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-iS7>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-iSV\x01\0\0\0\x12\0\x04§ÏÚcà\x01¹\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-j®×>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\0^[\0\0\0^[\0\0\0\x11\0\0\0\0\0⎉-j®ø\x01\0\0\0\x12\0Á¢!\x0elT\x01§\x04\0\0\0\a\0\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-jÙØ>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-já§>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-jáÇ\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-lY\x17B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ld9\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ldTB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-lsÙ\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-mR¤>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-mZb>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-mZ‚\x01\0\0\0\x12\0Á¢!\x0elT\x01¨\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-pGã>2\r\x01\x13\0\x01oC«\x7f{\x01\0ÿ\x7fŸ\0\0\0\0\0\0\0\0\0\x18\x02\x01\x02\x03\x03 þ\x10\x16 þ\x03úÊr¦&v   \x1fÿ\0\0\0&\0\0\0&\0\0\0\x03\0\0\0\0\0⎉-pN:>$\r\x01^[\0\x01oC«\x7f{\x01\0ÿ\x7f \0\0\0\0\0\0\0\0\0
		Eetkamer\0\0\06\0\0\06\0\0\0\x11\0\0\0\0\0⎉-pNz\x01\0\0\0\x12\0oC«\x7f{\x02 \0\0\0\0"\0\x02\x01\x02\x03\x03 þ\x10\x16 þ\x03úÊr¦&v   \x1fÿ		Eetkamer\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-pk7B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-pwž\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-pw¹B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-pƒR\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-p*>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-p–í>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-p—\x10\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-s:g>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-sD	>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f³\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-sDF\x01\0\0\0\x12\0*ò!°o€\x01³\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-s®>B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-s·*\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-s·CB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-sÇô\x0e\x04\x02B \0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-uíÁ>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-uõ|>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-uõœ\x01\0\0\0\x12\0*ò!°o€\x01²\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-w\ã>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-wd­>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-wdÐ\x01\0\0\0\x12\0\x04§ÏÚcà\x01º\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-w€\x04>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-w‡Æ>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-w‡å\x01\0\0\0\x12\0Á¢!\x0elT\x01¥\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-y\x03IB \x06\0\0\0\0\0\0\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎉-y\x06¦>9\r\x01\x10\0\x01ärñѲ\x12\x01\0ÿ\x7f¯\0\0\0\0\0\0\0\0\0\x1f\x02\x01\x1a\x03\x03oý\x17\x16oýÔü
„Ÿ7£rs€\väJjn×T®)‚\0\0\03\0\0\03\0\0\0\x11\0\0\0\0\0⎉-y\x06½\x01\0\0\0\x12\0ärñѲ\x12\x02¯\x04\0\0\0\x1f\0\x02\x01\x1a\x03\x03oý\x17\x16oýÔü
„Ÿ7£rs€\väJjn×T®)‚\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-y\x16\x1f\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-y\x16DB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-y!Ù\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-{ôŸ>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-|\x049>2\r\x01\x13\0\x01oC«\x7f{\x01\0ÿ\x7fž\0\0\0\0\0\0\0\0\0\x18\x02\x01\x02\x03\x03 þ\x10\x16 þ\x03úÊr¦&v   \x1fÿ\0\0\0-\0\0\0-\0\0\0\x11\0\0\0\0\0⎉-|\x04[\x01\0\0\0\x12\0Á¢!\x0elT\x01¥\0\0\0\0\x19\0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-|\x1d‰B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-|+)\x0e\x04\x02B \0\0\0\0,\0\0\0,\0\0\0\x11\0\0\0\0\0⎉-|+B\x01\0\0\0\x12\0oC«\x7f{\x02ž\0\0\0\0\x18\0\x02\x01\x02\x03\x03 þ\x10\x16 þ\x03úÊr¦&v   \x1fÿ\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-|+GB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-|6à\x0e\x04\x02B \0\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎉-}Hw>9\r\x01\x10\0\x01ärñѲ\x12\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x1f\x02\x01\x1a\x03\x03oý\x17\x16oýÔü
„Ÿ7£rs€\väJjn×T®)‚\0\0\03\0\0\03\0\0\0\x11\0\0\0\0\0⎉-}H–\x01\0\0\0\x12\0ärñѲ\x12\x02°\x04\0\0\0\x1f\0\x02\x01\x1a\x03\x03oý\x17\x16oýÔü
„Ÿ7£rs€\väJjn×T®)‚\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-}_Þ>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-}g¡>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-}gÀ\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-~Òû>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f³\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-~ÚÂ>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-~Úà\x01\0\0\0\x12\0*ò!°o€\x01²\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-\x7fDèB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-\x7fOÒ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-\x7fOæB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-\x7f_r\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-€&Ì>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-€.‹>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-€.«\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ƒ<dB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ƒGZ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ƒG}B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ƒW
\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-…•f>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f»\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-…/>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-…S\x01\0\0\0\x12\0\x04§ÏÚcà\x01º\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-…¥\x01>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ˆ­·B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ˆµþ\x0e\x04\x02B \0\0\0\02\0\0\02\0\0\0\x11\0\0\0\0\0⎉-ˆ¶\x16\x01\0\0\0\x12\0*ò!°o€\x01°\0\0\0\0\x1e\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ˆ¶\x1dB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ˆÅŸ\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-‰×1>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-‰Þð>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-‰ß\a\x01\0\0\0\x12\0Á¢!\x0elT\x01¨\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-‹ÇðB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-‹ÒØ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-‹ÒëB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-‹âx\x0e\x04\x02B \0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-ŒÐå>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f©\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-ŒØ­>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f©\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-ŒØÍ\x01\0\0\0\x12\0*ò!°o€\x01©\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-Œäf>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-ŒèB>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-Œè`\x01\0\0\0\x12\0Á¢!\x0elT\x01¥\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-æ§B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-õh\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-õ‚B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-\x05\b\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-’\bÉ>6\r\x01\x12\0\x01(\x19œÊÅZ\x01\0ÿ\x7f\0\0\0\0\0\0\0\0\0\x1c\x03\x03Ÿþ\x17\x16Ÿþ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-—F›>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f£\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\00\0\0\00\0\0\0\x11\0\0\0\0\0⎉-—Få\x01\0\0\0\x12\0(\x19œÊÅZ\x02\x04\0\0\0\x1c\0\x03\x03Ÿþ\x17\x16Ÿþ\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-—LU>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¡\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-—Lv\x01\0\0\0\x12\0Á¢!\x0elT\x01¡\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-˜­ï>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-˜¶c>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-˜¶ \x01\0\0\0\x12\0\x04§ÏÚcà\x01º\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ša\bB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-šm\x03\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-šm\x1aB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-šxº\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-›_V>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¢\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-›c+>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f£\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-›cK\x01\0\0\0\x12\0Á¢!\x0elT\x01£\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-\x01M>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f«\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-	\x13>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f«\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-	3\x01\0\0\0\x12\0*ò!°o€\x01«\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-žr›B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ž\x7fò\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ž€\rB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ž‹©\x0e\x04\x02B \0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-Ÿ¸—>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f«\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\x01\x01\0\0\x01\x01\0\0\0\x03\0\0\0\0\0⎉-¡^[à/ÿ\x01\x18¹\x1a­k¨\x01\0<\x04\b
Q£\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x19\0\0\0\x19\0\0\0\x11\0\0\0\0\0⎉-¡\x1c\x03\x01\0\0\0\x12\0\x18¹\x1a­k¨\0£\x01\0\0\0\x05\0\x04\r<\x04\b\0\0\0\x0e\0\0\0\x0e\0\0\0\x10\0\0\0\0\0⎉-¡ 9\x01\0\0\0%\0\x18¹\x1a­k¨\0\x01\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0⎉-¡ ?\x01\0\0\0\x01\0%\0\0\x18¹\x1a­k¨\0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-¢–ì>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\02\0\0\02\0\0\0\x11\0\0\0\0\0⎉-¢—\r\x01\0\0\0\x12\0*ò!°o€\x01«\0\0\0\0\x1e\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-¤1úB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-¤<¦\x0e\x04\x02B \0\0\0\0-\0\0\0-\0\0\0\x11\0\0\0\0\0⎉-¤<·\x01\0\0\0\x12\0Á¢!\x0elT\x01¥\0\0\0\0\x19\0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-¤<ÀB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-¤LF\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-§\x1f\v>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-§&Ë>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-§&ë\x01\0\0\0\x12\0Á¢!\x0elT\x01¤\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-§L_B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-§Ys\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-§Y–B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-§i"\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-§€µ>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-§ˆt>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-§ˆ—\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\01\0\0\01\0\0\0\x03\0\0\0\0\0⎉-¨ä%>/\r\x01\x13\0\06\x1d¡ZV(\x01\0ÿ\x7f»\0\0\0\0\0\0\0\0\0\x15\x02\x01\x02\x11\aüÐ³Ë„à„\x06Bó÷áà¿Ë\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉-¨ëã>\x1a\r\x01^[\0\06\x1d¡ZV(\x01\0ÿ\x7f»\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0)\0\0\0\x11\0\0\0\0\0⎉-¨ì\x02\x01\0\0\0\x12\06\x1d¡ZV(\x01»\0\0\0\0\x15\0\x02\x01\x02\x11\aüÐ³Ë„à„\x06Bó÷áà¿Ë\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ªš—B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ª¥¨\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ª¥ÀB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ªµH\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-­$\x15>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f»\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-­,n>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-­,«\x01\0\0\0\x12\0\x04§ÏÚcà\x01º\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎉-®^>9\r\x01\x10\0\x01lO\v\x1e¥n\x01\0ÿ\x7fž\0\0\0\0\0\0\0\0\0\x1f\x1eÿ\x06\0\x01	 \x02éÉ
ÁþþuºŽm¯Ü\x06ÚR+p\>\x18Ge›\0\0\03\0\0\03\0\0\0\x11\0\0\0\0\0⎉-®©\x01\0\0\0\x12\0lO\v\x1e¥n\x02ž\x04\0\0\0\x1f\0\x1eÿ\x06\0\x01	 \x02éÉ
ÁþþuºŽm¯Ü\x06ÚR+p\>\x18Ge›\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-°AîB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-°NÁ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-°NõB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-°\\x0f\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-´<o>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¢\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-´D\x1e>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¡\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-´D[\x01\0\0\0\x12\0Á¢!\x0elT\x01¡\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-·T\x02B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-·a/\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-·agB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-·ný\x0e\x04\x02B \0\0\0\01\0\0\01\0\0\0\x03\0\0\0\0\0⎉-¸‚½>/\r\x01\x13\0\06\x1d¡ZV(\x01\0ÿ\x7f½\0\0\0\0\0\0\0\0\0\x15\x02\x01\x02\x11\aüÐ³Ë„à„\x06Bó÷áà¿Ë\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉-¸ˆK>\x1a\r\x01^[\0\06\x1d¡ZV(\x01\0ÿ\x7f¼\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0)\0\0\0\x11\0\0\0\0\0⎉-¸ˆl\x01\0\0\0\x12\06\x1d¡ZV(\x01¼\0\0\0\0\x15\0\x02\x01\x02\x11\aüÐ³Ë„à„\x06Bó÷áà¿Ë\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-¸›ã>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-¸ŸO>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-¸Ÿo\x01\0\0\0\x12\0Á¢!\x0elT\x01¨\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-»#é>6\r\x01\x12\0\x01`.§Áop\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x1c\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉-»+>\x1a\r\x01\x1a\0\x01`.§Áop\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\00\0\0\0\x11\0\0\0\0\0⎉-»+¾\x01\0\0\0\x12\0`.§Áop\x02¥\x04\0\0\0\x1c\0\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-»Jñ>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-»R½>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-»RÜ\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-»—–B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-»¤™\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-»¤¾B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-»´E\x0e\x04\x02B \0\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎉-¼sÓ>9\r\x01\x10\0\x01\x19„\x17Îi\x19\x01\0ÿ\x7f¢\0\0\0\0\0\0\0\0\0\x1f\x02\x01\x1a\x03\x03oý\x17\x16oýš*^\0Tr™\x18ïƒ\vuÁ¤Íbpu:æ\0\0\03\0\0\03\0\0\0\x11\0\0\0\0\0⎉-¼sõ\x01\0\0\0\x12\0\x19„\x17Îi\x19\x02¢\x04\0\0\0\x1f\0\x02\x01\x1a\x03\x03oý\x17\x16oýš*^\0Tr™\x18ïƒ\vuÁ¤Íbpu:æ\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-¿:¼>6\r\x01\x12\0\x01`.§Áop\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x1c\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉-¿Bu>\x1a\r\x01\x1a\0\x01`.§Áop\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\00\0\0\0\x11\0\0\0\0\0⎉-¿B•\x01\0\0\0\x12\0`.§Áop\x02¥\x04\0\0\0\x1c\0\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-¿‚-B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-¿Œ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-¿Œ°B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-¿œ>\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-ÃYb>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-Ãa->3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-ÃaM\x01\0\0\0\x12\0\x04§ÏÚcà\x01º\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-é-\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-ÆCx>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f«\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-ÆK?>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f«\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-ÆK_\x01\0\0\0\x12\0*ò!°o€\x01«\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ÆyþB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-Ɖ \x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-Ɖ¹B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-Æ•W\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-Ï&é>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-Ï>=>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-Ï>Œ\x01\0\0\0\x12\0Á¢!\x0elT\x01¥\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ÒUâB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-Òb¹\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ÒbíB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ÒpÖ\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-Óp`>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-Óx">!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-Óxa\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-Óz\x1a>6\r\x01\x12\0\x01`.§Áop\x01\0ÿ\x7f®\0\0\0\0\0\0\0\0\0\x1c\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉-Ӂä>\x1a\r\x01\x1a\0\x01`.§Áop\x01\0ÿ\x7f®\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\00\0\0\0\x11\0\0\0\0\0⎉-Ӂô\x01\0\0\0\x12\0`.§Áop\x02®\x04\0\0\0\x1c\0\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎉-Öj\x1c>9\r\x01\x10\0\x01lO\v\x1e¥n\x01\0ÿ\x7fž\0\0\0\0\0\0\0\0\0\x1f\x1eÿ\x06\0\x01	 \x02éÉ
ÁþþuºŽm¯Ü\x06ÚR+p\>\x18Ge›\0\0\03\0\0\03\0\0\0\x11\0\0\0\0\0⎉-ÖjY\x01\0\0\0\x12\0lO\v\x1e¥n\x02ž\x04\0\0\0\x1f\0\x1eÿ\x06\0\x01	 \x02éÉ
ÁþþuºŽm¯Ü\x06ÚR+p\>\x18Ge›\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ÖŽ­B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-֝R\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-֝‹B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-Ö¦\x7f\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-ÖÔ;>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f©\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-ÖÙÈ>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f©\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-ÖÙè\x01\0\0\0\x12\0Á¢!\x0elT\x01©\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-Øqœ>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f»\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-Øyd>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-Øy£\x01\0\0\0\x12\0\x04§ÏÚcà\x01º\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0*\0\0\0*\0\0\0\x03\0\0\0\0\0⎉-ØÛ*>(\r\x01\x13\0\x01PyEÉ\x18\\x01\0ÿ\x7f\0\0\0\0\0\0\0\0\0\x0e\x02\x01\x06
ÿL\0\x10\x05\x01\x18|«:\0\0\0\x03\0\0\0\x03\0\0\0\x03\0\0\0\0\0⎉-Ù\x06h\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-Ù
«B \x06\0\0\0\0\0\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-Ù\x19t>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f­\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\0"\0\0\0"\0\0\0\x11\0\0\0\0\0⎉-Ù\x19ž\x01\0\0\0\x12\0PyEÉ\x18\\x02\0\0\0\0\x0e\0\x02\x01\x06
ÿL\0\x10\x05\x01\x18|«:\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-Ù^[\x7f>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f­\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-Ù^[‹\x01\0\0\0\x12\0*ò!°o€\x01­\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-Ù#&\x0e\x04\x02B \0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0⎉-Ù#f\x01\0\0\0\x13\0\a\0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎉-Ù#vA \b\0\x01\x01\0`\00\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-Ù.é\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-Ù/\x0fB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-Ù>w\x0e\x04\x02B \0\0\0\0
\0\0\0
\0\0\0\x10\0\0\0\0\0⎉-ߺ2\x01\0\0\0:\0\a\x7f\0\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ߺ‹B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-à\x18s\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-à\x18´\x05 \x06\x17–\x1c^[p=\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-à&ò\x0e\x04\x01\x05 \0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎉-à'7A \b\x01\0\x01\x01$\0\x12\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-à/Ñ\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-à/õB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-à?á\x0e\x04\x02B \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0⎉-à@\x05\x01\x04\x053‹ž\b\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-àK-\x0f\x04\0\x02\x01\x04\0\0\0
\0\0\0
\0\0\0\x11\0\0\0\0\0⎉-àKj\x01\0\0\0\x01\0:\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0⎉-àKs\x01\0\0\0\x13\0\a\x01\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-àló>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-àrY>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-àry\x01\0\0\0\x12\0\x04§ÏÚcà\x01¹\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-à™ˆ>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-àO>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-ào\x01\0\0\0\x12\0*ò!°o€\x01°\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\x01\x01\0\0\x01\x01\0\0\0\x03\0\0\0\0\0⎉-á\x7f»/ÿ\x016\x1d¡ZV(\x01\0<\x04\bÒ[Â\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x19\0\0\0\x19\0\0\0\x11\0\0\0\0\0⎉-á\x7fÜ\x01\0\0\0\x12\06\x1d¡ZV(\0Â\x01\0\0\0\x05\0\x04\r<\x04\b\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ã‡\bB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-㕪\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ã•ñB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ãž²\x0e\x04\x02B \0\0\0\x01\x01\0\0\x01\x01\0\0\0\x03\0\0\0\0\0⎉-æ’ƒ/ÿ\x016\x1d¡ZV(\x01\0<\x04\bÑ[Ä\f	KD-43XD8305	\x03
\x11\f\x11\x0e\x11\0\x12\x01\x05\x01\a\x03=\ad\x06ÿ\x0f\0\0\x01d\x02
\a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0B\0\0\0B\0\0\0\x11\0\0\0\0\0⎉-æ’Ä\x01\0\0\0\x12\06\x1d¡ZV(\0Ä\0\0\0\0.\0\f	KD-43XD8305	\x03
\x11\f\x11\x0e\x11\0\x12\x01\x05\x01\a\x03=\ad\x06ÿ\x0f\0\0\x01d\x02
\a\x04\r<\x04\b\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-è÷ø>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-èÿÚ>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-é\0™\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-é®’B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-é¹,\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-é¹vB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-éÈÈ\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-î߯>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-îçg>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉-îç¦\x01\0\0\0\x12\0\x04§ÏÚcà\x01¹\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-ð'Ò>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-ð/’>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-ð0N\x01\0\0\0\x12\0*ò!°o€\x01²\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ñøæB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ò\b\r\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ò\bSB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ò\x13Ç\x0e\x04\x02B \0\0\0\0-\0\0\0-\0\0\0\x03\0\0\0\0\0⎉-ö2‡>+\r\x01\x13\0\x01écN0Q@\x01\0ÿ\x7f¡\0\0\0\0\0\0\0\0\0\x11\x02\x01\x1a\x02
\f
ÿL\0\x10\x05W\x18¿7S\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉-ö4l>\x1a\r\x01^[\0\x01écN0Q@\x01\0ÿ\x7f¡\0\0\0\0\0\0\0\0\0\0\0\0\0%\0\0\0%\0\0\0\x11\0\0\0\0\0⎉-ö4\x01\0\0\0\x12\0écN0Q@\x02¡\0\0\0\0\x11\0\x02\x01\x1a\x02
\f
ÿL\0\x10\x05W\x18¿7S\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-÷’(>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-÷™Ö>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-÷š\x12\x01\0\0\0\x12\0Á¢!\x0elT\x01¨\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-÷ÜV>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-÷ä\x1e>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-÷ä[\x01\0\0\0\x12\0*ò!°o€\x01²\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉-ù\x14à>6\r\x01\x12\0\x01\x04¸4Uým\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\x1c\x03\x03Ÿþ\x17\x16Ÿþ\x02IGkVs73kojA\0\0\x01tó;…\0\0\0&\0\0\0&\0\0\0\x03\0\0\0\0\0⎉-ù\x1c>$\r\x01\x1a\0\x01\x04¸4Uým\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0
	ÿà\0\x01BÊy\x15ª\0\0\0:\0\0\0:\0\0\0\x11\0\0\0\0\0⎉-ù\x1cÐ\x01\0\0\0\x12\0\x04¸4Uým\x02¦\x04\0\0\0&\0\x03\x03Ÿþ\x17\x16Ÿþ\x02IGkVs73kojA\0\0\x01tó;…	ÿà\0\x01BÊy\x15ª\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ùIðB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ùYv\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-ùYŸB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-ùe.\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-úí…>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-úõ/>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-úõj\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉-ü“]>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉-ü•>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉-ü• \x01\0\0\0\x12\0*ò!°o€\x01²\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0.\0\0\0.\0\0\0\x03\0\0\0\0\0⎉-üÐ\>,\r\x01\x13\0\x01®Jü!æs\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x12\x02\x01\x1a\x02
\f\vÿL\0\x10\x06\x1c\x1e—‰‘	\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉-üØ\x05>\x1a\r\x01^[\0\x01®Jü!æs\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0&\0\0\0\x11\0\0\0\0\0⎉-üØ'\x01\0\0\0\x12\0®Jü!æs\x02¤\0\0\0\0\x12\0\x02\x01\x1a\x02
\f\vÿL\0\x10\x06\x1c\x1e—‰‘	\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-þ\x05ZB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-þ\x14^\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉-þ\x14†B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉-þ\x1f¤\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉-þHÖ>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉-þN—>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉-þN¶\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.\x01`0B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.\x01oH\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.\x01opB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.\x01zþ\x0e\x04\x02B \0\0\0\0.\0\0\0.\0\0\0\x03\0\0\0\0\0⎉.\x05Òy>,\r\x01\x13\0\x01\x181Æ°>Z\x01\0ÿ\x7fœ\0\0\0\0\0\0\0\0\0\x12\x02\x01\x1a\x02
\b\vÿL\0\x10\x06v\x1eßÛCÁ\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.	ñ$>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\0&\0\0\0&\0\0\0\x11\0\0\0\0\0⎉.	ño\x01\0\0\0\x12\0\x181Æ°>Z\x02œ\0\0\0\0\x12\0\x02\x01\x1a\x02
\b\vÿL\0\x10\x06v\x1eßÛCÁ\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.	öÜ>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉.	öû\x01\0\0\0\x12\0\x04§ÏÚcà\x01º\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.\vHþ>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.\vX}>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\0-\0\0\0-\0\0\0\x11\0\0\0\0\0⎉.\vXÊ\x01\0\0\0\x12\0Á¢!\x0elT\x01¦\0\0\0\0\x19\0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.\v^;>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.\v^Y\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.\r\x06\x04B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.\r\x0f¾\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.\r\x0fæB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.\r\x1f]\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.\x12c”>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.\x12jÞ>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.\x12jþ\x01\0\0\0\x12\0Á¢!\x0elT\x01¦\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\x01\x01\0\0\x01\x01\0\0\0\x03\0\0\0\0\0⎉.\x13*§/ÿ\x01\x18¹\x1a­k¨\x01\0<\x04\b
Q¤\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x19\0\0\0\x19\0\0\0\x11\0\0\0\0\0⎉.\x13*é\x01\0\0\0\x12\0\x18¹\x1a­k¨\0¤\x01\0\0\0\x05\0\x04\r<\x04\b\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.\x15K>>6\r\x01\x12\0\x01a¤5°{\x01\0ÿ\x7fž\0\0\0\0\0\0\0\0\0\x1c\x03\x03Ÿþ\x17\x16Ÿþ\x02Tw0B151k44U\0\0\x01tó;i\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.\x15„æB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.\x15“Î\x0e\x04\x02B \0\0\0\00\0\0\00\0\0\0\x11\0\0\0\0\0⎉.\x15“ñ\x01\0\0\0\x12\0a¤5°{\x02ž\x04\0\0\0\x1c\0\x03\x03Ÿþ\x17\x16Ÿþ\x02Tw0B151k44U\0\0\x01tó;i\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.\x15“ÿB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.\x15Ÿ\x14\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.\x16¾_>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.\x16Ä)>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉.\x16ÄI\x01\0\0\0\x12\0\x04§ÏÚcà\x01¹\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.\x18«¿B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.\x18¸\x06\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.\x18¸/B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.\x18Ç¥\x0e\x04\x02B \0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.\x1aüM>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f­\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.\x1e»T>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.\x1e¼2\x01\0\0\0\x12\0*ò!°o€\x01°\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.\x1eÂû>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f»\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.\x1eË>>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f»\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉.\x1eËa\x01\0\0\0\x12\0\x04§ÏÚcà\x01»\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎉.\x1fØd>9\r\x01\x10\0\x01\x19„\x17Îi\x19\x01\0ÿ\x7f¶\0\0\0\0\0\0\0\0\0\x1f\x02\x01\x1a\x03\x03oý\x17\x16oýš*^\0Tr™\x18ïƒ\vuÁ¤Íbpu:æ\0\0\03\0\0\03\0\0\0\x11\0\0\0\0\0⎉.\x1f؇\x01\0\0\0\x12\0\x19„\x17Îi\x19\x02¶\x04\0\0\0\x1f\0\x02\x01\x1a\x03\x03oý\x17\x16oýš*^\0Tr™\x18ïƒ\vuÁ¤Íbpu:æ\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.!ÓyB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.!ß²\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.!ß×B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.!ïT\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.%~\x15>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.%…V>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f£\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.%…g\x01\0\0\0\x12\0Á¢!\x0elT\x01£\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.&æé>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.&î´>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉.&îã\x01\0\0\0\x12\0\x04§ÏÚcà\x01¹\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.(—BB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.(¦\x05\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.(¦-B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.(±½\x0e\x04\x02B \0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.)ÃQ>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f³\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.)Ë\x18>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f³\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.)Ë*\x01\0\0\0\x12\0*ò!°o€\x01³\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.)Òé>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.)Ú­>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.)Ú¾\x01\0\0\0\x12\0Á¢!\x0elT\x01¦\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.,ÞúB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.-ï}\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.-ï¾B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.-ý†\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.2)¯>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.21]>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.21‹\x01\0\0\0\x12\0Á¢!\x0elT\x01¦\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.5CtB \x06\0\0\0\0\0\0\0\0\0-\0\0\0-\0\0\0\x03\0\0\0\0\0⎉.5Yý>+\r\x01\x13\0\x01µ>ï\x17\x14p\x01\0ÿ\x7f\0\0\0\0\0\0\0\0\0\x11\x02\x01\x1a\x02
\f
ÿL\0\x10\x05\x03\x1c‡:\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.5a¦\x0e\x04\x02B \0\0\0\0%\0\0\0%\0\0\0\x11\0\0\0\0\0⎉.5aå\x01\0\0\0\x12\0µ>ï\x17\x14p\x02\0\0\0\0\x11\0\x02\x01\x1a\x02
\f
ÿL\0\x10\x05\x03\x1c‡:\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.5a÷B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.5kq\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.5‚.>6\r\x01\x12\0\x01`.§Áop\x01\0ÿ\x7f®\0\0\0\0\0\0\0\0\0\x1c\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.5†Ø>\x1a\r\x01\x1a\0\x01`.§Áop\x01\0ÿ\x7f®\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\00\0\0\0\x11\0\0\0\0\0⎉.5†ë\x01\0\0\0\x12\0`.§Áop\x02®\x04\0\0\0\x1c\0\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.8w¿B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.8†j\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.8†¯B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.8‘\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.9ŒC>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.9Ž\x15>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.9Ž\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.9™Ú>6\r\x01\x12\0\x01`.§Áop\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\x1c\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.9¡‹>\x1a\r\x01\x1a\0\x01`.§Áop\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\00\0\0\0\x11\0\0\0\0\0⎉.9¡š\x01\0\0\0\x12\0`.§Áop\x02¨\x04\0\0\0\x1c\0\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.<£¯B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.<°/\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.<°pB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.<¾Ó\x0e\x04\x02B \0\0\0\0-\0\0\0-\0\0\0\x03\0\0\0\0\0⎉.@º\x0f>+\r\x01\x13\0\x01Ú\x1e\x06ð8C\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x11\x02\x01\x1a\x02
\f
ÿL\0\x10\x05\x03\x18Y¨Ë\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.@Â\x19>\x1a\r\x01^[\0\x01Ú\x1e\x06ð8C\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\0\0\0\0%\0\0\0%\0\0\0\x11\0\0\0\0\0⎉.@ÂM\x01\0\0\0\x12\0Ú\x1e\x06ð8C\x02¤\0\0\0\0\x11\0\x02\x01\x1a\x02
\f
ÿL\0\x10\x05\x03\x18Y¨Ë\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.@É¡>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f£\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.@ÓV>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¢\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.@Ó…\x01\0\0\0\x12\0Á¢!\x0elT\x01¢\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.@ÙE>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.@á\x04>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.@á\x11\x01\0\0\0\x12\0*ò!°o€\x01§\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0-\0\0\0-\0\0\0\x03\0\0\0\0\0⎉.@èß>+\r\x01\x13\0\x01écN0Q@\x01\0ÿ\x7f¡\0\0\0\0\0\0\0\0\0\x11\x02\x01\x1a\x02
\f
ÿL\0\x10\x05W\x18¿7S\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.@ì¬>\x1a\r\x01^[\0\x01écN0Q@\x01\0ÿ\x7f¡\0\0\0\0\0\0\0\0\0\0\0\0\0%\0\0\0%\0\0\0\x11\0\0\0\0\0⎉.@ì»\x01\0\0\0\x12\0écN0Q@\x02¡\0\0\0\0\x11\0\x02\x01\x1a\x02
\f
ÿL\0\x10\x05W\x18¿7S\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.CÜwB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.CèK\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.CèwB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.Cök\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.Dî:>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¸\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.Dõò>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f¸\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉.Dö"\x01\0\0\0\x12\0\x04§ÏÚcà\x01¸\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.H\b!B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.H\x18Ž\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.H\x18ÊB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.H(š\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.I\ú>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.If—>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.IfÆ\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.L<\x11>2\r\x01\x13\0\x01oC«\x7f{\x01\0ÿ\x7fž\0\0\0\0\0\0\0\0\0\x18\x02\x01\x02\x03\x03 þ\x10\x16 þ\x03úÊr¦&v   \x1fÿ\0\0\0&\0\0\0&\0\0\0\x03\0\0\0\0\0⎉.LDô>$\r\x01^[\0\x01oC«\x7f{\x01\0ÿ\x7f \0\0\0\0\0\0\0\0\0
		Eetkamer\0\0\06\0\0\06\0\0\0\x11\0\0\0\0\0⎉.LE'\x01\0\0\0\x12\0oC«\x7f{\x02 \0\0\0\0"\0\x02\x01\x02\x03\x03 þ\x10\x16 þ\x03úÊr¦&v   \x1fÿ		Eetkamer\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.L‚¥B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.LŽ•\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.LŽÔB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.L™H\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.Mþl>6\r\x01\x12\0\x01`.§Áop\x01\0ÿ\x7f©\0\0\0\0\0\0\0\0\0\x1c\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.N\x06\x1e>\x1a\r\x01\x1a\0\x01`.§Áop\x01\0ÿ\x7f©\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\00\0\0\0\x11\0\0\0\0\0⎉.N\x06M\x01\0\0\0\x12\0`.§Áop\x02©\x04\0\0\0\x1c\0\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.ONg>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.OV\x1f>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f²\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.OVL\x01\0\0\0\x12\0*ò!°o€\x01²\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.Q\x16zB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.Q,Ï\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.Q-œB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.Q>A\x0e\x04\x02B \0\0\0\0-\0\0\0-\0\0\0\x03\0\0\0\0\0⎉.R:Ë>+\r\x01\x13\0\x01‘T'á*_\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x11\x02\x01\x1a\x02
\f
ÿL\0\x10\x05V\x1c…\x14^\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.RB\x15>\x1a\r\x01^[\0\x01‘T'á*_\x01\0ÿ\x7f£\0\0\0\0\0\0\0\0\0\0\0\0\0%\0\0\0%\0\0\0\x11\0\0\0\0\0⎉.RB(\x01\0\0\0\x12\0‘T'á*_\x02£\0\0\0\0\x11\0\x02\x01\x1a\x02
\f
ÿL\0\x10\x05V\x1c…\x14^\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.Tâ\x12>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.TéÄ>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¢\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.TéÕ\x01\0\0\0\x12\0Á¢!\x0elT\x01¢\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.UYB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.UbÇ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.UbêB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.Urg\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.Zс>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.ZÙ@>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.ZÙQ\x01\0\0\0\x12\0Á¢!\x0elT\x01¦\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.]ò\fB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.]ýÄ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.]ýçB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.^\ru\x0e\x04\x02B \0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.^ÔÓ>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.^Ü›>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.^Ü«\x01\0\0\0\x12\0*ò!°o€\x01°\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.aÚ7>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.aáù>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.aâ\v\x01\0\0\0\x12\0Á¢!\x0elT\x01¥\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0-\0\0\0-\0\0\0\x03\0\0\0\0\0⎉.aí¸>+\r\x01\x13\0\x01écN0Q@\x01\0ÿ\x7f¡\0\0\0\0\0\0\0\0\0\x11\x02\x01\x1a\x02
\f
ÿL\0\x10\x05W\x18¿7S\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.aö·B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.b\bø\x0e\x04\x02B \0\0\0\0%\0\0\0%\0\0\0\x11\0\0\0\0\0⎉.b	\x18\x01\0\0\0\x12\0écN0Q@\x02¡\0\0\0\0\x11\0\x02\x01\x1a\x02
\f
ÿL\0\x10\x05W\x18¿7S\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.b	"B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.b\x18•\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.e\x1f@B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.e)¶\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.e)ÙB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.e9W\x0e\x04\x02B \0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.f?5>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.fFû>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.fG\f\x01\0\0\0\x12\0*ò!°o€\x01°\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.g{š>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.gƒb>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉.gƒs\x01\0\0\0\x12\0\x04§ÏÚcà\x01º\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.iV¼B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.i_Ï\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.i_òB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.iod\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.j„é>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.jŒ§>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¨\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.jŒ¸\x01\0\0\0\x12\0Á¢!\x0elT\x01¨\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.j«õ>6\r\x01\x12\0\x01`.§Áop\x01\0ÿ\x7fª\0\0\0\0\0\0\0\0\0\x1c\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.j³²>\x1a\r\x01\x1a\0\x01`.§Áop\x01\0ÿ\x7fª\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\00\0\0\0\x11\0\0\0\0\0⎉.j³Ã\x01\0\0\0\x12\0`.§Áop\x02ª\x04\0\0\0\x1c\0\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.j¿ƒ>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.jÇK>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.jÇ[\x01\0\0\0\x12\0*ò!°o€\x01°\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.mœwB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.m¥…\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.m¥§B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.mµ%\x0e\x04\x02B \0\0\0\01\0\0\01\0\0\0\x03\0\0\0\0\0⎉.sV¸>/\r\x01\x13\0\06\x1d¡ZV(\x01\0ÿ\x7f¼\0\0\0\0\0\0\0\0\0\x15\x02\x01\x02\x11\aüÐ³Ë„à„\x06Bó÷áà¿Ë\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.sa•>\x1a\r\x01^[\0\06\x1d¡ZV(\x01\0ÿ\x7f¼\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0)\0\0\0\x11\0\0\0\0\0⎉.saÄ\x01\0\0\0\x12\06\x1d¡ZV(\x01¼\0\0\0\0\x15\0\x02\x01\x02\x11\aüÐ³Ë„à„\x06Bó÷áà¿Ë\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.vJ†>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.vRh>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.vR•\x01\0\0\0\x12\0*ò!°o€\x01°\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.vx…B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.v…l\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.v…±B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.v!\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.y\x10#>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.y\x15:>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉.y\x15i\x01\0\0\0\x12\0\x04§ÏÚcà\x01º\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.|*ˆB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.|3ú\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.|4/B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.|D\b\x0e\x04\x02B \0\0\0\0\x03\0\0\0\x03\0\0\0\x03\0\0\0\0\0⎉.|ŽH\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.|”B \x06\0\0\0\0\0\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.|¯ø>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.|´ý>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.|µ\x1d\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.|¼¯\x0e\x04\x02B \0\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0⎉.|½“\x01\0\0\0\x13\0\a\0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎉.|½¨A \b\0\x01\x01\0`\00\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.|Èf\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.|ÈŠB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.|Ø\x06\x0e\x04\x02B \0\0\0\0
\0\0\0
\0\0\0\x10\0\0\0\0\0⎉.‡•Ó\x01\0\0\0:\0\a\x7f\0\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.‡–-B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.‡¡«\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.‡¡Ñ\x05 \x06V]4ðô5\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.‡­b\x0e\x04\x01\x05 \0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎉.‡­žA \b\x01\0\x01\x01$\0\x12\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.‡»\x0e\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.‡»PB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.‡É'\x0e\x04\x02B \0\0\0\0\b\0\0\0\b\0\0\0\x02\0\0\0\0\0⎉.‡ÉK\x01\x04\x053‹ž\b\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.‡Ôä\x0f\x04\0\x02\x01\x04\0\0\0
\0\0\0
\0\0\0\x11\0\0\0\0\0⎉.‡Õ\x15\x01\0\0\0\x01\0:\0\0\a\0\0\0\b\0\0\0\b\0\0\0\x11\0\0\0\0\0⎉.‡Õ\x1f\x01\0\0\0\x13\0\a\x01\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.‡â2>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.‡è\v>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.‡è,\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.ˆ$g>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.ˆ*}>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.ˆ*\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.‹\x02¢B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.‹\x10Š\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.‹\x10 B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.‹\x1c@\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.‹G[>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.‹O\x1c>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.‹O<\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.Œ²¦>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\0.\0\0\0.\0\0\0\x03\0\0\0\0\0⎉.Ž)›>,\r\x01\x13\0\x01®Jü!æs\x01\0ÿ\x7f©\0\0\0\0\0\0\0\0\0\x12\x02\x01\x1a\x02
\f\vÿL\0\x10\x06\x1c\x1e—‰‘	\0\0\02\0\0\02\0\0\0\x11\0\0\0\0\0⎉.Ž)À\x01\0\0\0\x12\0*ò!°o€\x01°\0\0\0\0\x1e\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.Ž-q>\x1a\r\x01^[\0\x01®Jü!æs\x01\0ÿ\x7f©\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0&\0\0\0\x11\0\0\0\0\0⎉.Ž-\x01\0\0\0\x12\0®Jü!æs\x02©\0\0\0\0\x12\0\x02\x01\x1a\x02
\f\vÿL\0\x10\x06\x1c\x1e—‰‘	\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.Ž]ßB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.Žkä\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.Žl
B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.Žw›\x0e\x04\x02B \0\0\0\x01\x01\0\0\x01\x01\0\0\0\x03\0\0\0\0\0⎉.Žª]/ÿ\x016\x1d¡ZV(\x01\0<\x04\bÐ[Â\f	KD-43XD8305	\x03
\x11\f\x11\x0e\x11\0\x12\x01\x05\x01\a\x03=\ad\x06ÿ\x0f\0\0\x01d\x02
\a\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0B\0\0\0B\0\0\0\x11\0\0\0\0\0⎉.Žª~\x01\0\0\0\x12\06\x1d¡ZV(\0Â\0\0\0\0.\0\f	KD-43XD8305	\x03
\x11\f\x11\x0e\x11\0\x12\x01\x05\x01\a\x03=\ad\x06ÿ\x0f\0\0\x01d\x02
\a\x04\r<\x04\b\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.^>6\r\x01\x12\0\x01`.§Áop\x01\0ÿ\x7f¯\0\0\0\0\0\0\0\0\0\x1c\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.‰\x16>\x1a\r\x01\x1a\0\x01`.§Áop\x01\0ÿ\x7f®\0\0\0\0\0\0\0\0\0\0\0\0\00\0\0\00\0\0\0\x11\0\0\0\0\0⎉.‰>\x01\0\0\0\x12\0`.§Áop\x02®\x04\0\0\0\x1c\0\x03\x03oý\x17\x16oý™Û*­Uâê4Cu˜X\af\x05ÊC=u$\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.‘¹5B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.‘Ç;\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.‘Ç]B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.‘Òò\x0e\x04\x02B \0\0\0\0.\0\0\0.\0\0\0\x03\0\0\0\0\0⎉.’HB>,\r\x01\x13\0\x01®Jü!æs\x01\0ÿ\x7fª\0\0\0\0\0\0\0\0\0\x12\x02\x01\x1a\x02
\f\vÿL\0\x10\x06\x1c\x1e—‰‘	\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.’P\x01>\x1a\r\x01^[\0\x01®Jü!æs\x01\0ÿ\x7fª\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0&\0\0\0\x11\0\0\0\0\0⎉.’P!\x01\0\0\0\x12\0®Jü!æs\x02ª\0\0\0\0\x12\0\x02\x01\x1a\x02
\f\vÿL\0\x10\x06\x1c\x1e—‰‘	\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.“Ã*>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f£\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.“Êê>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.“Ë	\x01\0\0\0\x12\0Á¢!\x0elT\x01¤\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.”OÍ>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.”W”>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.”Wµ\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.•b¶B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.•p´\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.•pÖB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.•|k\x0e\x04\x02B \0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.•³@>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.•»
>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉.•»)\x01\0\0\0\x12\0\x04§ÏÚcà\x01¹\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.˜vC>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f£\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.˜~\x01>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f£\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.˜~ \x01\0\0\0\x12\0Á¢!\x0elT\x01£\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.˜•\x7f>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.˜K>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.˜k\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.˜Ë\x1fB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.˜ÓÜ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.˜ÓþB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.˜ß”\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.œã\b>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f£\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.œêÇ>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.œêç\x01\0\0\0\x12\0Á¢!\x0elT\x01¤\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉. \x04\fB \x06\0\0\0\0\0\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉. #	>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉. *Ô>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉. *ó\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉. 2z\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉. 2›B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉. B%\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉. Mý>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉. UÀ>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉. Uà\x01\0\0\0\x12\0Á¢!\x0elT\x01¦\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.£,]>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f±\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.£8ZB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.¤Æ`\x0e\x04\x02B \0\0\0\02\0\0\02\0\0\0\x11\0\0\0\0\0⎉.¤Æ\x01\0\0\0\x12\0*ò!°o€\x01±\0\0\0\0\x1e\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.¤Æ‰B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.¤Õû\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.§r\x11>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.§yÑ>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.§yÚ\x01\0\0\0\x12\0Á¢!\x0elT\x01¤\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\0:\0\0\0:\0\0\0\x03\0\0\0\0\0⎉.§•8>8\r\x01\x13\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x1e\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\0\0\04\0\0\04\0\0\0\x03\0\0\0\0\0⎉.§\x04>2\r\x01^[\0\0*ò!°o€\x01\0ÿ\x7f°\0\0\0\0\0\0\0\0\0\x18\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0J\0\0\0J\0\0\0\x11\0\0\0\0\0⎉.§#\x01\0\0\0\x12\0*ò!°o€\x01°\0\0\0\06\0\x02\x01\x06\x1aÿL\0\x02\x15t'‹Ú¶DE \fr\x0e¯\x05™5\0\0IPÅ\x03\x02"\x11\x13	S19743271de39a3d6C\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.§ÙJB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.§ç\x1d\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.§ç@B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.§ö½\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.¨º0>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.¨Áî>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f§\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.¨Â\x0f\x01\0\0\0\x12\0Á¢!\x0elT\x01§\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎉.¨ÉÁ>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.¨Í¤>3\r\x01^[\0\0\x04§ÏÚcà\x01\0ÿ\x7f¹\0\0\0\0\0\0\0\0\0\x19\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0I\0\0\0I\0\0\0\x11\0\0\0\0\0⎉.¨ÍÁ\x01\0\0\0\x12\0\x04§ÏÚcà\x01¹\0\0\0\05\0\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\a\x16\x18 \x7f\0\0\x01\b\bUDM-PRO\a\x16\x19!\0-éi\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.«ÐèB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.«æ…\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.«æ¨B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.«ò<\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎉.°#!>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\0#\0\0\0#\0\0\0\x03\0\0\0\0\0⎉.°(×>!\r\x01^[\0\0Á¢!\x0elT\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\a\x06\x16&\x18\x01\x01\0\0\0\04\0\0\04\0\0\0\x11\0\0\0\0\0⎉.°(ø\x01\0\0\0\x12\0Á¢!\x0elT\x01¤\0\0\0\0 \0\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\x06\x16&\x18\x01\x01\0\0\0\01\0\0\01\0\0\0\x03\0\0\0\0\0⎉.±ºË>/\r\x01\x13\0\06\x1d¡ZV(\x01\0ÿ\x7f¼\0\0\0\0\0\0\0\0\0\x15\x02\x01\x02\x11\aüÐ³Ë„à„\x06Bó÷áà¿Ë\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎉.±Â‡>\x1a\r\x01^[\0\06\x1d¡ZV(\x01\0ÿ\x7f¼\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0)\0\0\0\x11\0\0\0\0\0⎉.±Â§\x01\0\0\0\x12\06\x1d¡ZV(\x01¼\0\0\0\0\x15\0\x02\x01\x02\x11\aüÐ³Ë„à„\x06Bó÷áà¿Ë\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.³=ôB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.³I\x16\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎉.³I:B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎉.³X¶\x0e\x04\x02B \0

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-04 10:51       ` Greg Kroah-Hartman
@ 2020-10-04 10:53         ` Greg Kroah-Hartman
  2020-10-04 12:17         ` Bastien Nocera
  2020-10-04 16:59         ` Marcel Holtmann
  2 siblings, 0 replies; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-04 10:53 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

On Sun, Oct 04, 2020 at 12:51:24PM +0200, Greg Kroah-Hartman wrote:
> On Sat, Oct 03, 2020 at 08:33:18PM +0200, Marcel Holtmann wrote:
> > Hi Greg,
> > 
> > >>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> > >>> breaks all bluetooth connections on my machine.
> > >>> 
> > >>> Cc: Marcel Holtmann <marcel@holtmann.org>
> > >>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> > >>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> > >>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > >>> ---
> > >>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> > >>> 1 file changed, 2 insertions(+), 39 deletions(-)
> > >>> 
> > >>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> > >>> stopped working on my desktop system.  I finally got the time to do
> > >>> bisection today, and it came down to this patch.  Reverting it on top of
> > >>> 5.9-rc7 restored bluetooth devices and now my input devices properly
> > >>> work.
> > >>> 
> > >>> As it's almost 5.9-final, any chance this can be merged now to fix the
> > >>> issue?
> > >> 
> > >> can you be specific what breaks since our guys and I also think the
> > >> ChromeOS guys have been testing these series of patches heavily.
> > > 
> > > My bluetooth trackball does not connect at all.  With this reverted, it
> > > all "just works".
> > > 
> > > Same I think for a Bluetooth headset, can check that again if you really
> > > need me to, but the trackball is reliable here.
> > > 
> > >> When you run btmon does it indicate any errors?
> > > 
> > > How do I run it and where are the errors displayed?
> > 
> > you can do btmon -w trace.log and just let it run like tcdpump.
> 
> Ok, attached.
> 
> The device is not connecting, and then I open the gnome bluetooth dialog
> and it scans for devices in the area, but does not connect to my
> existing devices at all.
> 

And any hints on how to read this file?  'btsnoop' has no man page, and
the --help options are pretty sparse :(

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-04 10:51       ` Greg Kroah-Hartman
  2020-10-04 10:53         ` Greg Kroah-Hartman
@ 2020-10-04 12:17         ` Bastien Nocera
  2020-10-04 13:18           ` Greg Kroah-Hartman
  2020-10-04 16:59         ` Marcel Holtmann
  2 siblings, 1 reply; 23+ messages in thread
From: Bastien Nocera @ 2020-10-04 12:17 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

On Sun, 2020-10-04 at 12:51 +0200, Greg Kroah-Hartman wrote:
> On Sat, Oct 03, 2020 at 08:33:18PM +0200, Marcel Holtmann wrote:
> > Hi Greg,
> > 
> > > > > This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2
> > > > > as it
> > > > > breaks all bluetooth connections on my machine.
> > > > > 
> > > > > Cc: Marcel Holtmann <marcel@holtmann.org>
> > > > > Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> > > > > Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when
> > > > > updating whitelist")
> > > > > Signed-off-by: Greg Kroah-Hartman
> > > > > <gregkh@linuxfoundation.org>
> > > > > ---
> > > > > net/bluetooth/hci_request.c | 41 ++--------------------------
> > > > > ---------
> > > > > 1 file changed, 2 insertions(+), 39 deletions(-)
> > > > > 
> > > > > This has been bugging me for since 5.9-rc1, when all
> > > > > bluetooth devices
> > > > > stopped working on my desktop system.  I finally got the time
> > > > > to do
> > > > > bisection today, and it came down to this patch.  Reverting
> > > > > it on top of
> > > > > 5.9-rc7 restored bluetooth devices and now my input devices
> > > > > properly
> > > > > work.
> > > > > 
> > > > > As it's almost 5.9-final, any chance this can be merged now
> > > > > to fix the
> > > > > issue?
> > > > 
> > > > can you be specific what breaks since our guys and I also think
> > > > the
> > > > ChromeOS guys have been testing these series of patches
> > > > heavily.
> > > 
> > > My bluetooth trackball does not connect at all.  With this
> > > reverted, it
> > > all "just works".
> > > 
> > > Same I think for a Bluetooth headset, can check that again if you
> > > really
> > > need me to, but the trackball is reliable here.
> > > 
> > > > When you run btmon does it indicate any errors?
> > > 
> > > How do I run it and where are the errors displayed?
> > 
> > you can do btmon -w trace.log and just let it run like tcdpump.
> 
> Ok, attached.
> 
> The device is not connecting, and then I open the gnome bluetooth
> dialog
> and it scans for devices in the area, but does not connect to my
> existing devices at all.
> 
> Any ideas?

Use bluetoothctl instead, the Bluetooth Settings from GNOME also run a
discovery the whole time the panel is opened, and this breaks a fair
number of poor quality adapters. This is worked-around in the most
recent version, but using bluetoothctl is a better debugging option in
all cases.

Cheers


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-04 12:17         ` Bastien Nocera
@ 2020-10-04 13:18           ` Greg Kroah-Hartman
  2020-10-04 13:23             ` Bastien Nocera
  0 siblings, 1 reply; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-04 13:18 UTC (permalink / raw)
  To: Bastien Nocera
  Cc: Marcel Holtmann, Johan Hedberg, Sathish Narsimman,
	David S. Miller, Jakub Kicinski, linux-bluetooth,
	open list:NETWORKING [GENERAL],
	linux-kernel

On Sun, Oct 04, 2020 at 02:17:06PM +0200, Bastien Nocera wrote:
> On Sun, 2020-10-04 at 12:51 +0200, Greg Kroah-Hartman wrote:
> > On Sat, Oct 03, 2020 at 08:33:18PM +0200, Marcel Holtmann wrote:
> > > Hi Greg,
> > > 
> > > > > > This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2
> > > > > > as it
> > > > > > breaks all bluetooth connections on my machine.
> > > > > > 
> > > > > > Cc: Marcel Holtmann <marcel@holtmann.org>
> > > > > > Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> > > > > > Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when
> > > > > > updating whitelist")
> > > > > > Signed-off-by: Greg Kroah-Hartman
> > > > > > <gregkh@linuxfoundation.org>
> > > > > > ---
> > > > > > net/bluetooth/hci_request.c | 41 ++--------------------------
> > > > > > ---------
> > > > > > 1 file changed, 2 insertions(+), 39 deletions(-)
> > > > > > 
> > > > > > This has been bugging me for since 5.9-rc1, when all
> > > > > > bluetooth devices
> > > > > > stopped working on my desktop system.  I finally got the time
> > > > > > to do
> > > > > > bisection today, and it came down to this patch.  Reverting
> > > > > > it on top of
> > > > > > 5.9-rc7 restored bluetooth devices and now my input devices
> > > > > > properly
> > > > > > work.
> > > > > > 
> > > > > > As it's almost 5.9-final, any chance this can be merged now
> > > > > > to fix the
> > > > > > issue?
> > > > > 
> > > > > can you be specific what breaks since our guys and I also think
> > > > > the
> > > > > ChromeOS guys have been testing these series of patches
> > > > > heavily.
> > > > 
> > > > My bluetooth trackball does not connect at all.  With this
> > > > reverted, it
> > > > all "just works".
> > > > 
> > > > Same I think for a Bluetooth headset, can check that again if you
> > > > really
> > > > need me to, but the trackball is reliable here.
> > > > 
> > > > > When you run btmon does it indicate any errors?
> > > > 
> > > > How do I run it and where are the errors displayed?
> > > 
> > > you can do btmon -w trace.log and just let it run like tcdpump.
> > 
> > Ok, attached.
> > 
> > The device is not connecting, and then I open the gnome bluetooth
> > dialog
> > and it scans for devices in the area, but does not connect to my
> > existing devices at all.
> > 
> > Any ideas?
> 
> Use bluetoothctl instead, the Bluetooth Settings from GNOME also run a
> discovery the whole time the panel is opened, and this breaks a fair
> number of poor quality adapters. This is worked-around in the most
> recent version, but using bluetoothctl is a better debugging option in
> all cases.

Ok, but how do I use that tool?  How do I shut down the gnome bluetooth
stuff?

I need newbie steps here please for what to run and what to show you.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-04 13:18           ` Greg Kroah-Hartman
@ 2020-10-04 13:23             ` Bastien Nocera
  2020-10-05  8:29               ` Greg Kroah-Hartman
  0 siblings, 1 reply; 23+ messages in thread
From: Bastien Nocera @ 2020-10-04 13:23 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Marcel Holtmann, Johan Hedberg, Sathish Narsimman,
	David S. Miller, Jakub Kicinski, linux-bluetooth,
	open list:NETWORKING [GENERAL],
	linux-kernel

On Sun, 2020-10-04 at 15:18 +0200, Greg Kroah-Hartman wrote:
> On Sun, Oct 04, 2020 at 02:17:06PM +0200, Bastien Nocera wrote:
> > On Sun, 2020-10-04 at 12:51 +0200, Greg Kroah-Hartman wrote:
> > > On Sat, Oct 03, 2020 at 08:33:18PM +0200, Marcel Holtmann wrote:
> > > > Hi Greg,
> > > > 
> > > > > > > This reverts commit
> > > > > > > 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2
> > > > > > > as it
> > > > > > > breaks all bluetooth connections on my machine.
> > > > > > > 
> > > > > > > Cc: Marcel Holtmann <marcel@holtmann.org>
> > > > > > > Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> > > > > > > Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list
> > > > > > > when
> > > > > > > updating whitelist")
> > > > > > > Signed-off-by: Greg Kroah-Hartman
> > > > > > > <gregkh@linuxfoundation.org>
> > > > > > > ---
> > > > > > > net/bluetooth/hci_request.c | 41 ++----------------------
> > > > > > > ----
> > > > > > > ---------
> > > > > > > 1 file changed, 2 insertions(+), 39 deletions(-)
> > > > > > > 
> > > > > > > This has been bugging me for since 5.9-rc1, when all
> > > > > > > bluetooth devices
> > > > > > > stopped working on my desktop system.  I finally got the
> > > > > > > time
> > > > > > > to do
> > > > > > > bisection today, and it came down to this patch. 
> > > > > > > Reverting
> > > > > > > it on top of
> > > > > > > 5.9-rc7 restored bluetooth devices and now my input
> > > > > > > devices
> > > > > > > properly
> > > > > > > work.
> > > > > > > 
> > > > > > > As it's almost 5.9-final, any chance this can be merged
> > > > > > > now
> > > > > > > to fix the
> > > > > > > issue?
> > > > > > 
> > > > > > can you be specific what breaks since our guys and I also
> > > > > > think
> > > > > > the
> > > > > > ChromeOS guys have been testing these series of patches
> > > > > > heavily.
> > > > > 
> > > > > My bluetooth trackball does not connect at all.  With this
> > > > > reverted, it
> > > > > all "just works".
> > > > > 
> > > > > Same I think for a Bluetooth headset, can check that again if
> > > > > you
> > > > > really
> > > > > need me to, but the trackball is reliable here.
> > > > > 
> > > > > > When you run btmon does it indicate any errors?
> > > > > 
> > > > > How do I run it and where are the errors displayed?
> > > > 
> > > > you can do btmon -w trace.log and just let it run like tcdpump.
> > > 
> > > Ok, attached.
> > > 
> > > The device is not connecting, and then I open the gnome bluetooth
> > > dialog
> > > and it scans for devices in the area, but does not connect to my
> > > existing devices at all.
> > > 
> > > Any ideas?
> > 
> > Use bluetoothctl instead, the Bluetooth Settings from GNOME also
> > run a
> > discovery the whole time the panel is opened, and this breaks a
> > fair
> > number of poor quality adapters. This is worked-around in the most
> > recent version, but using bluetoothctl is a better debugging option
> > in
> > all cases.
> 
> Ok, but how do I use that tool?  How do I shut down the gnome
> bluetooth
> stuff?

You close the settings window...

> I need newbie steps here please for what to run and what to show you.

bluetoothctl connect "bluetooth address"
eg.
bluetoothctl connect "12:34:56:78:90"


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-04 10:51       ` Greg Kroah-Hartman
  2020-10-04 10:53         ` Greg Kroah-Hartman
  2020-10-04 12:17         ` Bastien Nocera
@ 2020-10-04 16:59         ` Marcel Holtmann
  2020-10-05  8:36           ` Greg Kroah-Hartman
  2 siblings, 1 reply; 23+ messages in thread
From: Marcel Holtmann @ 2020-10-04 16:59 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

Hi Greg,

>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
>>>>> breaks all bluetooth connections on my machine.
>>>>> 
>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>>>>> ---
>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
>>>>> 
>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
>>>>> stopped working on my desktop system.  I finally got the time to do
>>>>> bisection today, and it came down to this patch.  Reverting it on top of
>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
>>>>> work.
>>>>> 
>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
>>>>> issue?
>>>> 
>>>> can you be specific what breaks since our guys and I also think the
>>>> ChromeOS guys have been testing these series of patches heavily.
>>> 
>>> My bluetooth trackball does not connect at all.  With this reverted, it
>>> all "just works".
>>> 
>>> Same I think for a Bluetooth headset, can check that again if you really
>>> need me to, but the trackball is reliable here.
>>> 
>>>> When you run btmon does it indicate any errors?
>>> 
>>> How do I run it and where are the errors displayed?
>> 
>> you can do btmon -w trace.log and just let it run like tcdpump.
> 
> Ok, attached.
> 
> The device is not connecting, and then I open the gnome bluetooth dialog
> and it scans for devices in the area, but does not connect to my
> existing devices at all.
> 
> Any ideas?

the trace file is from -rc7 or from -rc7 with this patch reverted?

I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.

diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
index e0269192f2e5..94c0daa9f28d 100644
--- a/net/bluetooth/hci_request.c
+++ b/net/bluetooth/hci_request.c
@@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
                return -1;
 
        /* White list can not be used with RPAs */
-       if (!allow_rpa && !use_ll_privacy(hdev) &&
+       if (!allow_rpa &&
            hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
                return -1;
        }
@@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
                }
 
                /* White list can not be used with RPAs */
-               if (!allow_rpa && !use_ll_privacy(hdev) &&
+               if (!allow_rpa &&
                    hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
                        return 0x00;
                }


If you just do the above, does thing work for you again?

My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.

Regards

Marcel


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-04 13:23             ` Bastien Nocera
@ 2020-10-05  8:29               ` Greg Kroah-Hartman
  0 siblings, 0 replies; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-05  8:29 UTC (permalink / raw)
  To: Bastien Nocera
  Cc: Marcel Holtmann, Johan Hedberg, Sathish Narsimman,
	David S. Miller, Jakub Kicinski, linux-bluetooth,
	open list:NETWORKING [GENERAL],
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 3750 bytes --]

On Sun, Oct 04, 2020 at 03:23:18PM +0200, Bastien Nocera wrote:
> On Sun, 2020-10-04 at 15:18 +0200, Greg Kroah-Hartman wrote:
> > On Sun, Oct 04, 2020 at 02:17:06PM +0200, Bastien Nocera wrote:
> > > On Sun, 2020-10-04 at 12:51 +0200, Greg Kroah-Hartman wrote:
> > > > On Sat, Oct 03, 2020 at 08:33:18PM +0200, Marcel Holtmann wrote:
> > > > > Hi Greg,
> > > > > 
> > > > > > > > This reverts commit
> > > > > > > > 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2
> > > > > > > > as it
> > > > > > > > breaks all bluetooth connections on my machine.
> > > > > > > > 
> > > > > > > > Cc: Marcel Holtmann <marcel@holtmann.org>
> > > > > > > > Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> > > > > > > > Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list
> > > > > > > > when
> > > > > > > > updating whitelist")
> > > > > > > > Signed-off-by: Greg Kroah-Hartman
> > > > > > > > <gregkh@linuxfoundation.org>
> > > > > > > > ---
> > > > > > > > net/bluetooth/hci_request.c | 41 ++----------------------
> > > > > > > > ----
> > > > > > > > ---------
> > > > > > > > 1 file changed, 2 insertions(+), 39 deletions(-)
> > > > > > > > 
> > > > > > > > This has been bugging me for since 5.9-rc1, when all
> > > > > > > > bluetooth devices
> > > > > > > > stopped working on my desktop system.  I finally got the
> > > > > > > > time
> > > > > > > > to do
> > > > > > > > bisection today, and it came down to this patch. 
> > > > > > > > Reverting
> > > > > > > > it on top of
> > > > > > > > 5.9-rc7 restored bluetooth devices and now my input
> > > > > > > > devices
> > > > > > > > properly
> > > > > > > > work.
> > > > > > > > 
> > > > > > > > As it's almost 5.9-final, any chance this can be merged
> > > > > > > > now
> > > > > > > > to fix the
> > > > > > > > issue?
> > > > > > > 
> > > > > > > can you be specific what breaks since our guys and I also
> > > > > > > think
> > > > > > > the
> > > > > > > ChromeOS guys have been testing these series of patches
> > > > > > > heavily.
> > > > > > 
> > > > > > My bluetooth trackball does not connect at all.  With this
> > > > > > reverted, it
> > > > > > all "just works".
> > > > > > 
> > > > > > Same I think for a Bluetooth headset, can check that again if
> > > > > > you
> > > > > > really
> > > > > > need me to, but the trackball is reliable here.
> > > > > > 
> > > > > > > When you run btmon does it indicate any errors?
> > > > > > 
> > > > > > How do I run it and where are the errors displayed?
> > > > > 
> > > > > you can do btmon -w trace.log and just let it run like tcdpump.
> > > > 
> > > > Ok, attached.
> > > > 
> > > > The device is not connecting, and then I open the gnome bluetooth
> > > > dialog
> > > > and it scans for devices in the area, but does not connect to my
> > > > existing devices at all.
> > > > 
> > > > Any ideas?
> > > 
> > > Use bluetoothctl instead, the Bluetooth Settings from GNOME also
> > > run a
> > > discovery the whole time the panel is opened, and this breaks a
> > > fair
> > > number of poor quality adapters. This is worked-around in the most
> > > recent version, but using bluetoothctl is a better debugging option
> > > in
> > > all cases.
> > 
> > Ok, but how do I use that tool?  How do I shut down the gnome
> > bluetooth
> > stuff?
> 
> You close the settings window...
> 
> > I need newbie steps here please for what to run and what to show you.
> 
> bluetoothctl connect "bluetooth address"
> eg.
> bluetoothctl connect "12:34:56:78:90"

Ok, here that is on a clean 5.9-rc8 release:

$ bluetoothctl connect F1:85:91:79:73:70
Attempting to connect to F1:85:91:79:73:70
Failed to connect: org.bluez.Error.Failed

I've attached the trace log from that effort.

I'll go try Marcel's proposed patch now as well...

thanks,

greg k-h

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: trace.log --]
[-- Type: text/plain; charset=utf-8, Size: 663 bytes --]

btsnoop\0\0\0\0\x01\0\0\aÑ\0\0\0!\0\0\0!ÿÿ\0\f\0\0\0\0\0⎛M#=ÊLinux version 5.9.0-rc8 (x86_64)\0\0\0\0!\0\0\0!ÿÿ\0\f\0\0\0\0\0⎛M#=ÌBluetooth subsystem version 2.22\0\0\0\0\x10\0\0\0\x10\0\0\0\0\0\0\0\0\0⎛M#=Í\0\x01peö…àPhci0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\0\0⎛M#=Í\0\0\0\b\0\0\0\b\0\0\0
\0\0\0\0\0⎛M#=Îpeö…àP\x02\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0⎛M#=Î\x01\0\0\0\x02\0\x01\x12\0\x01\0\0\0\x10bluetoothd\0\0\0\0\0\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎛N\x12\x13üB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎛N\x13Ýg\x0e\x04\x02B \0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎛N\x13ÝŒA \b\0\x01\x01\0`\0`\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎛N\x13ít\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎛N\x13í¡B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎛N\x13ý\x19\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎛P….)B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎛P‡ °\x0e\x04\x02B \0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎛P‡ ÿA \b\0\x01\x01\0`\00\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎛P‡,N\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎛P‡,B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎛P‡:`\x0e\x04\x02B \0

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-04 16:59         ` Marcel Holtmann
@ 2020-10-05  8:36           ` Greg Kroah-Hartman
  2020-10-05 12:19             ` Marcel Holtmann
  0 siblings, 1 reply; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-05  8:36 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

On Sun, Oct 04, 2020 at 06:59:24PM +0200, Marcel Holtmann wrote:
> Hi Greg,
> 
> >>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> >>>>> breaks all bluetooth connections on my machine.
> >>>>> 
> >>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
> >>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> >>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> >>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >>>>> ---
> >>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> >>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
> >>>>> 
> >>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> >>>>> stopped working on my desktop system.  I finally got the time to do
> >>>>> bisection today, and it came down to this patch.  Reverting it on top of
> >>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
> >>>>> work.
> >>>>> 
> >>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
> >>>>> issue?
> >>>> 
> >>>> can you be specific what breaks since our guys and I also think the
> >>>> ChromeOS guys have been testing these series of patches heavily.
> >>> 
> >>> My bluetooth trackball does not connect at all.  With this reverted, it
> >>> all "just works".
> >>> 
> >>> Same I think for a Bluetooth headset, can check that again if you really
> >>> need me to, but the trackball is reliable here.
> >>> 
> >>>> When you run btmon does it indicate any errors?
> >>> 
> >>> How do I run it and where are the errors displayed?
> >> 
> >> you can do btmon -w trace.log and just let it run like tcdpump.
> > 
> > Ok, attached.
> > 
> > The device is not connecting, and then I open the gnome bluetooth dialog
> > and it scans for devices in the area, but does not connect to my
> > existing devices at all.
> > 
> > Any ideas?
> 
> the trace file is from -rc7 or from -rc7 with this patch reverted?
> 
> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
> 
> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
> index e0269192f2e5..94c0daa9f28d 100644
> --- a/net/bluetooth/hci_request.c
> +++ b/net/bluetooth/hci_request.c
> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
>                 return -1;
>  
>         /* White list can not be used with RPAs */
> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
> +       if (!allow_rpa &&
>             hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
>                 return -1;
>         }
> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
>                 }
>  
>                 /* White list can not be used with RPAs */
> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
> +               if (!allow_rpa &&
>                     hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
>                         return 0x00;
>                 }
> 
> 
> If you just do the above, does thing work for you again?

Corrupted white-space issues aside, yes, it works!

I am running 5.9-rc8 with just this change on it and my tracball works
just fine.

> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.

How would one go about enabling such a hardware feature if they wanted
to?  :)

Anyway, feel free to put:

Tested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

on the above patch and hopefully get it to Linus for 5.9-final.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-05  8:36           ` Greg Kroah-Hartman
@ 2020-10-05 12:19             ` Marcel Holtmann
  2020-10-05 12:40               ` Greg Kroah-Hartman
  0 siblings, 1 reply; 23+ messages in thread
From: Marcel Holtmann @ 2020-10-05 12:19 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

Hi Greg,

>>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
>>>>>>> breaks all bluetooth connections on my machine.
>>>>>>> 
>>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
>>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
>>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
>>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>>>>>>> ---
>>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
>>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
>>>>>>> 
>>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
>>>>>>> stopped working on my desktop system.  I finally got the time to do
>>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
>>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
>>>>>>> work.
>>>>>>> 
>>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
>>>>>>> issue?
>>>>>> 
>>>>>> can you be specific what breaks since our guys and I also think the
>>>>>> ChromeOS guys have been testing these series of patches heavily.
>>>>> 
>>>>> My bluetooth trackball does not connect at all.  With this reverted, it
>>>>> all "just works".
>>>>> 
>>>>> Same I think for a Bluetooth headset, can check that again if you really
>>>>> need me to, but the trackball is reliable here.
>>>>> 
>>>>>> When you run btmon does it indicate any errors?
>>>>> 
>>>>> How do I run it and where are the errors displayed?
>>>> 
>>>> you can do btmon -w trace.log and just let it run like tcdpump.
>>> 
>>> Ok, attached.
>>> 
>>> The device is not connecting, and then I open the gnome bluetooth dialog
>>> and it scans for devices in the area, but does not connect to my
>>> existing devices at all.
>>> 
>>> Any ideas?
>> 
>> the trace file is from -rc7 or from -rc7 with this patch reverted?
>> 
>> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
>> 
>> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
>> index e0269192f2e5..94c0daa9f28d 100644
>> --- a/net/bluetooth/hci_request.c
>> +++ b/net/bluetooth/hci_request.c
>> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
>>                return -1;
>> 
>>        /* White list can not be used with RPAs */
>> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
>> +       if (!allow_rpa &&
>>            hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
>>                return -1;
>>        }
>> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
>>                }
>> 
>>                /* White list can not be used with RPAs */
>> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
>> +               if (!allow_rpa &&
>>                    hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
>>                        return 0x00;
>>                }
>> 
>> 
>> If you just do the above, does thing work for you again?
> 
> Corrupted white-space issues aside, yes, it works!

I just pasted it from a different terminal ;)

> I am running 5.9-rc8 with just this change on it and my tracball works
> just fine.
> 
>> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
> 
> How would one go about enabling such a hardware feature if they wanted
> to?  :)

I need to understand what is going wrong for you. I have a suspicion, but first I need to understand what kind of device you have. I hope the trace file is enough.

> Anyway, feel free to put:
> 
> Tested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> 
> on the above patch and hopefully get it to Linus for 5.9-final.

Sadly, it is a poor hot-needle fix.

Regards

Marcel


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-05 12:19             ` Marcel Holtmann
@ 2020-10-05 12:40               ` Greg Kroah-Hartman
  2020-10-05 15:44                 ` Marcel Holtmann
  0 siblings, 1 reply; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-05 12:40 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

On Mon, Oct 05, 2020 at 02:19:32PM +0200, Marcel Holtmann wrote:
> Hi Greg,
> 
> >>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> >>>>>>> breaks all bluetooth connections on my machine.
> >>>>>>> 
> >>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
> >>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> >>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> >>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >>>>>>> ---
> >>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> >>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
> >>>>>>> 
> >>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> >>>>>>> stopped working on my desktop system.  I finally got the time to do
> >>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
> >>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
> >>>>>>> work.
> >>>>>>> 
> >>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
> >>>>>>> issue?
> >>>>>> 
> >>>>>> can you be specific what breaks since our guys and I also think the
> >>>>>> ChromeOS guys have been testing these series of patches heavily.
> >>>>> 
> >>>>> My bluetooth trackball does not connect at all.  With this reverted, it
> >>>>> all "just works".
> >>>>> 
> >>>>> Same I think for a Bluetooth headset, can check that again if you really
> >>>>> need me to, but the trackball is reliable here.
> >>>>> 
> >>>>>> When you run btmon does it indicate any errors?
> >>>>> 
> >>>>> How do I run it and where are the errors displayed?
> >>>> 
> >>>> you can do btmon -w trace.log and just let it run like tcdpump.
> >>> 
> >>> Ok, attached.
> >>> 
> >>> The device is not connecting, and then I open the gnome bluetooth dialog
> >>> and it scans for devices in the area, but does not connect to my
> >>> existing devices at all.
> >>> 
> >>> Any ideas?
> >> 
> >> the trace file is from -rc7 or from -rc7 with this patch reverted?
> >> 
> >> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
> >> 
> >> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
> >> index e0269192f2e5..94c0daa9f28d 100644
> >> --- a/net/bluetooth/hci_request.c
> >> +++ b/net/bluetooth/hci_request.c
> >> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
> >>                return -1;
> >> 
> >>        /* White list can not be used with RPAs */
> >> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
> >> +       if (!allow_rpa &&
> >>            hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
> >>                return -1;
> >>        }
> >> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
> >>                }
> >> 
> >>                /* White list can not be used with RPAs */
> >> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
> >> +               if (!allow_rpa &&
> >>                    hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
> >>                        return 0x00;
> >>                }
> >> 
> >> 
> >> If you just do the above, does thing work for you again?
> > 
> > Corrupted white-space issues aside, yes, it works!
> 
> I just pasted it from a different terminal ;)
> 
> > I am running 5.9-rc8 with just this change on it and my tracball works
> > just fine.
> > 
> >> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
> > 
> > How would one go about enabling such a hardware feature if they wanted
> > to?  :)
> 
> I need to understand what is going wrong for you. I have a suspicion,
> but first I need to understand what kind of device you have. I hope
> the trace file is enough.

If you need any other information, just let me know, this is a USB
Bluetooth controller from Intel:

	$ lsusb | grep Blue
	Bus 009 Device 002: ID 8087:0029 Intel Corp. AX200 Bluetooth

And the output of usb-devices for it:
	T:  Bus=09 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
	D:  Ver= 2.01 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
	P:  Vendor=8087 ProdID=0029 Rev=00.01
	C:  #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA
	I:  If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
	I:  If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-05 12:40               ` Greg Kroah-Hartman
@ 2020-10-05 15:44                 ` Marcel Holtmann
  2020-10-05 16:11                   ` Greg Kroah-Hartman
  0 siblings, 1 reply; 23+ messages in thread
From: Marcel Holtmann @ 2020-10-05 15:44 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

Hi Greg,

>>>>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
>>>>>>>>> breaks all bluetooth connections on my machine.
>>>>>>>>> 
>>>>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
>>>>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
>>>>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
>>>>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>>>>>>>>> ---
>>>>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
>>>>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
>>>>>>>>> 
>>>>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
>>>>>>>>> stopped working on my desktop system.  I finally got the time to do
>>>>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
>>>>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
>>>>>>>>> work.
>>>>>>>>> 
>>>>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
>>>>>>>>> issue?
>>>>>>>> 
>>>>>>>> can you be specific what breaks since our guys and I also think the
>>>>>>>> ChromeOS guys have been testing these series of patches heavily.
>>>>>>> 
>>>>>>> My bluetooth trackball does not connect at all.  With this reverted, it
>>>>>>> all "just works".
>>>>>>> 
>>>>>>> Same I think for a Bluetooth headset, can check that again if you really
>>>>>>> need me to, but the trackball is reliable here.
>>>>>>> 
>>>>>>>> When you run btmon does it indicate any errors?
>>>>>>> 
>>>>>>> How do I run it and where are the errors displayed?
>>>>>> 
>>>>>> you can do btmon -w trace.log and just let it run like tcdpump.
>>>>> 
>>>>> Ok, attached.
>>>>> 
>>>>> The device is not connecting, and then I open the gnome bluetooth dialog
>>>>> and it scans for devices in the area, but does not connect to my
>>>>> existing devices at all.
>>>>> 
>>>>> Any ideas?
>>>> 
>>>> the trace file is from -rc7 or from -rc7 with this patch reverted?
>>>> 
>>>> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
>>>> 
>>>> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
>>>> index e0269192f2e5..94c0daa9f28d 100644
>>>> --- a/net/bluetooth/hci_request.c
>>>> +++ b/net/bluetooth/hci_request.c
>>>> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
>>>>               return -1;
>>>> 
>>>>       /* White list can not be used with RPAs */
>>>> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
>>>> +       if (!allow_rpa &&
>>>>           hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
>>>>               return -1;
>>>>       }
>>>> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
>>>>               }
>>>> 
>>>>               /* White list can not be used with RPAs */
>>>> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
>>>> +               if (!allow_rpa &&
>>>>                   hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
>>>>                       return 0x00;
>>>>               }
>>>> 
>>>> 
>>>> If you just do the above, does thing work for you again?
>>> 
>>> Corrupted white-space issues aside, yes, it works!
>> 
>> I just pasted it from a different terminal ;)
>> 
>>> I am running 5.9-rc8 with just this change on it and my tracball works
>>> just fine.
>>> 
>>>> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
>>> 
>>> How would one go about enabling such a hardware feature if they wanted
>>> to?  :)
>> 
>> I need to understand what is going wrong for you. I have a suspicion,
>> but first I need to understand what kind of device you have. I hope
>> the trace file is enough.
> 
> If you need any other information, just let me know, this is a USB
> Bluetooth controller from Intel:
> 
> 	$ lsusb | grep Blue
> 	Bus 009 Device 002: ID 8087:0029 Intel Corp. AX200 Bluetooth
> 
> And the output of usb-devices for it:
> 	T:  Bus=09 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
> 	D:  Ver= 2.01 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
> 	P:  Vendor=8087 ProdID=0029 Rev=00.01
> 	C:  #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA
> 	I:  If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> 	I:  If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb

I already figured out that it is one of our controllers. The trace file gives it away.

So my suspicion is that the device you want to connect to uses RPA (aka random addresses). And we added support for resolving them in the firmware. Your hardware does support that, but the host side is not fully utilizing it and thus your device is filtered out.

If I am not mistaken, then the use_ll_privacy() check in these two specific places need to be replaced with LL Privacy Enabled check. And then the allow_rpa condition will do its job as expected.

We can confirm this if you send me a trace with the patch applied.

Anyhow, if my suspicion is correct, then I just need to figure out on how we fix this for 5.9-rc8 and also net-next. We might have to have two different patches. Just carrying the revert forward is going to cause some complicated merging and a broken -next.

Regards

Marcel


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-05 15:44                 ` Marcel Holtmann
@ 2020-10-05 16:11                   ` Greg Kroah-Hartman
  2020-10-05 17:14                     ` Marcel Holtmann
  0 siblings, 1 reply; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-05 16:11 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 5903 bytes --]

On Mon, Oct 05, 2020 at 05:44:48PM +0200, Marcel Holtmann wrote:
> Hi Greg,
> 
> >>>>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> >>>>>>>>> breaks all bluetooth connections on my machine.
> >>>>>>>>> 
> >>>>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
> >>>>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> >>>>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> >>>>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >>>>>>>>> ---
> >>>>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> >>>>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
> >>>>>>>>> 
> >>>>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> >>>>>>>>> stopped working on my desktop system.  I finally got the time to do
> >>>>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
> >>>>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
> >>>>>>>>> work.
> >>>>>>>>> 
> >>>>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
> >>>>>>>>> issue?
> >>>>>>>> 
> >>>>>>>> can you be specific what breaks since our guys and I also think the
> >>>>>>>> ChromeOS guys have been testing these series of patches heavily.
> >>>>>>> 
> >>>>>>> My bluetooth trackball does not connect at all.  With this reverted, it
> >>>>>>> all "just works".
> >>>>>>> 
> >>>>>>> Same I think for a Bluetooth headset, can check that again if you really
> >>>>>>> need me to, but the trackball is reliable here.
> >>>>>>> 
> >>>>>>>> When you run btmon does it indicate any errors?
> >>>>>>> 
> >>>>>>> How do I run it and where are the errors displayed?
> >>>>>> 
> >>>>>> you can do btmon -w trace.log and just let it run like tcdpump.
> >>>>> 
> >>>>> Ok, attached.
> >>>>> 
> >>>>> The device is not connecting, and then I open the gnome bluetooth dialog
> >>>>> and it scans for devices in the area, but does not connect to my
> >>>>> existing devices at all.
> >>>>> 
> >>>>> Any ideas?
> >>>> 
> >>>> the trace file is from -rc7 or from -rc7 with this patch reverted?
> >>>> 
> >>>> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
> >>>> 
> >>>> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
> >>>> index e0269192f2e5..94c0daa9f28d 100644
> >>>> --- a/net/bluetooth/hci_request.c
> >>>> +++ b/net/bluetooth/hci_request.c
> >>>> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
> >>>>               return -1;
> >>>> 
> >>>>       /* White list can not be used with RPAs */
> >>>> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
> >>>> +       if (!allow_rpa &&
> >>>>           hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
> >>>>               return -1;
> >>>>       }
> >>>> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
> >>>>               }
> >>>> 
> >>>>               /* White list can not be used with RPAs */
> >>>> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
> >>>> +               if (!allow_rpa &&
> >>>>                   hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
> >>>>                       return 0x00;
> >>>>               }
> >>>> 
> >>>> 
> >>>> If you just do the above, does thing work for you again?
> >>> 
> >>> Corrupted white-space issues aside, yes, it works!
> >> 
> >> I just pasted it from a different terminal ;)
> >> 
> >>> I am running 5.9-rc8 with just this change on it and my tracball works
> >>> just fine.
> >>> 
> >>>> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
> >>> 
> >>> How would one go about enabling such a hardware feature if they wanted
> >>> to?  :)
> >> 
> >> I need to understand what is going wrong for you. I have a suspicion,
> >> but first I need to understand what kind of device you have. I hope
> >> the trace file is enough.
> > 
> > If you need any other information, just let me know, this is a USB
> > Bluetooth controller from Intel:
> > 
> > 	$ lsusb | grep Blue
> > 	Bus 009 Device 002: ID 8087:0029 Intel Corp. AX200 Bluetooth
> > 
> > And the output of usb-devices for it:
> > 	T:  Bus=09 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
> > 	D:  Ver= 2.01 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
> > 	P:  Vendor=8087 ProdID=0029 Rev=00.01
> > 	C:  #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA
> > 	I:  If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> > 	I:  If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> 
> I already figured out that it is one of our controllers. The trace file gives it away.
> 
> So my suspicion is that the device you want to connect to uses RPA (aka random addresses). And we added support for resolving them in the firmware. Your hardware does support that, but the host side is not fully utilizing it and thus your device is filtered out.

Dude, get an email client that line-wraps :)

> If I am not mistaken, then the use_ll_privacy() check in these two specific places need to be replaced with LL Privacy Enabled check. And then the allow_rpa condition will do its job as expected.
> 
> We can confirm this if you send me a trace with the patch applied.

Want me to disconnect the device and then reconnect it using
bluetootctl?  I'll go do that now...

Ok, it's attached, I did:

$ bluetoothctl disconnect F1:85:91:79:73:70
Attempting to disconnect from F1:85:91:79:73:70
[CHG] Device F1:85:91:79:73:70 ServicesResolved: no
Successful disconnected

And then the gnome bluetooth daemon (or whatever it has) reconnected it
automatically, so you can see the connection happen, and some movements
in the log.

If there's anything else you need, just let me know.

thanks,

greg k-h

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: trace-disconnect-connect.log --]
[-- Type: text/plain; charset=utf-8, Size: 5539 bytes --]

btsnoop\0\0\0\0\x01\0\0\aÑ\0\0\0'\0\0\0'ÿÿ\0\f\0\0\0\0\0⎡ÇoåÚLinux version 5.9.0-rc8-dirty (x86_64)\0\0\0\0!\0\0\0!ÿÿ\0\f\0\0\0\0\0⎡ÇoåÝBluetooth subsystem version 2.22\0\0\0\0\x10\0\0\0\x10\0\0\0\0\0\0\0\0\0⎡ÇoåÞ\0\x01peö…àPhci0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\0\0⎡Çoåß\0\0\0\b\0\0\0\b\0\0\0
\0\0\0\0\0⎡Çoåßpeö…àP\x02\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0⎡Çoåà\x01\0\0\0\x02\0\x01\x12\0\x01\0\0\0\x10bluetoothd\0\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x10\0\0\0\0\0⎡DZý\x01\0\0\0\x14\0psy‘…ñ\x02\0\0\0\x06\0\0\0\x06\0\0\0\x02\0\0\0\0\0⎡Dz=\x06\x04\x03\x01\x0e\x13\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎡Çć>\x0f\x04\0\x01\x06\x04\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎡ÇÈ}B\x05\x04\0\x01\x0e\x16\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0⎡ÇÈ}q\x01\0\0\0\x01\0\x14\0\0psy‘…ñ\x02\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎡ÇɳBA \b\0\0\x01\0`\00\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎡Çɾ°\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎡ÇɾÇB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎡ÇÉÎÀ\x0e\x04\x02B \0\0\0\05\0\0\05\0\0\0\x03\0\0\0\0\0⎡ÇÊ@‚>3\r\x01\x13\0\0Á¢!\x0elT\x01\0ÿ\x7f©\0\0\0\0\0\0\0\0\0\x19\x02\x01\x12\x05\x02&\x18\x14\x18\x0f	MyRun 18004074\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎡ÇÊY/>6\r\x01\x12\0\x01\vÒ´èÅX\x01\0ÿ\x7f«\0\0\0\0\0\0\0\0\0\x1c\x03\x03oý\x17\x16oý>âw&ñ¾g¶ïeºPÇõ‘j\v=æ¹\0\0\07\0\0\07\0\0\0\x03\0\0\0\0\0⎡ÇÊtœ>5\r\x01\x12\0\0\x18¹\x1a­k¨\x01\0ÿ\x7f¡\0\0\0\0\0\0\0\0\0^[\x1aÿL\0\x02\x15Pv\·ÙêN!™¤ú‡–\x13¤’{¯CÕÎ\0\0\0.\0\0\0.\0\0\0\x03\0\0\0\0\0⎡ÇÌ\x1ak>,\r\x01\x13\0\x01+SÂnPU\x01\0ÿ\x7f¡\0\0\0\0\0\0\0\0\0\x12\x02\x01\x1a\x02
\f\vÿL\0\x10\x06\x11\x1eÇ‘fâ\0\0\0.\0\0\0.\0\0\0\x03\0\0\0\0\0⎡Ç̺‘>,\r\x01\x13\0\x01¬o3qµf\x01\0ÿ\x7f¯\0\0\0\0\0\0\0\0\0\x12\x02\x01\x1a\x02
\a\vÿL\0\x10\x06<\x1eIc\aõ\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎡ÇÍ\x16b>6\r\x01\x13\0\0\x04§ÏÚcà\x01\0ÿ\x7fº\0\0\0\0\0\0\0\0\0\x1c\x11\x06>Ùõ.·ñ?¼€EK3öl&	\x16*%àcÚϦù\0\0\08\0\0\08\0\0\0\x03\0\0\0\0\0⎡Çͼh>6\r\x01\x12\0\x01h×)nZs\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0\x1c\x03\x03Ÿþ\x17\x16Ÿþ\x02fM4Wt-UVwuA\0\0\x01tù†á|\0\0\0&\0\0\0&\0\0\0\x03\0\0\0\0\0⎡ÇÏÓv>$\r\x01\x10\0\x01\x183—C¨7\x01\0ÿ\x7f¤\0\0\0\0\0\0\0\0\0
\x02\x01\x1a\x06ÿL\0
\x01\0\0\0\0-\0\0\0-\0\0\0\x03\0\0\0\0\0⎡ÇÒJO>+\r\x01\x13\0\x013\a¸…;n\x01\0ÿ\x7f \0\0\0\0\0\0\0\0\0\x11\x02\x01\x1a\x02
\f
ÿL\0\x10\x05\x03\x1cEóÚ\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎡ÇÒR\x10>9\r\x01\x10\0\x01’ˆ\0^[¬\0\x01\0ÿ\x7f¯\0\0\0\0\0\0\0\0\0\x1f\x02\x01\x1a\x03\x03oý\x17\x16oý‹$ÿÌ…™1JM¨a\x1c†90þN}û\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎡ÇÒYà>9\r\x01\x10\0\x01\x06ƃòœF\x01\0ÿ\x7f¢\0\0\0\0\0\0\0\0\0\x1f\x1eÿ\x06\0\x01	 \x02'ó ìwÓe\x0fb“ò%öUDˆ9\0Q4«à\0\0\0;\0\0\0;\0\0\0\x03\0\0\0\0\0⎡ÇÕB\x1a>9\r\x01\x10\0\x01"\x17Nʤ+\x01\0ÿ\x7f¢\0\0\0\0\0\0\0\0\0\x1f\x1eÿ\x06\0\x01	 \x02wþ.¢ÒC[óÄ{‡÷ |ÅZ­r:æ\x18´m\0\0\0-\0\0\0-\0\0\0\x03\0\0\0\0\0⎡ÇÙza>+\r\x01\x13\0\x01Õ\x13ß7çq\x01\0ÿ\x7f \0\0\0\0\0\0\0\0\0\x11\x02\x01\x1a\x02
\f
ÿL\0\x10\x05W\x18·Û	\0\0\0-\0\0\0-\0\0\0\x03\0\0\0\0\0⎡Çà\x19Ç>+\r\x01\x13\0\x01y{"\x1cU\x01\0ÿ\x7f¥\0\0\0\0\0\0\0\0\0\x11\x02\x01\x1a\x02
\f
ÿL\0\x10\x05^[\x1cû;ç\0\0\0%\0\0\0%\0\0\0\x03\0\0\0\0\0⎡ÇòA¤>#\r\x01\x13\0\0\x1eIx\x19™ð\x01\0ÿ\x7f¦\0\0\0\0\0\0\0\0\0	\x02\x01\x06\x05ÿ‡\0\f™\0\0\0\x1c\0\0\0\x1c\0\0\0\x03\0\0\0\0\0⎡Çób—>\x1a\r\x01\x15\0\x01psy‘…ñ\x01\0ÿ\x7f¼\0\0\0peö…àP\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎡ÇóbÅB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎡Çón:\x0e\x04\x02B \0\0\0\0\x1d\0\0\0\x1d\0\0\0\x02\0\0\0\0\0⎡ÇónaC \x1a\0\0\x01psy‘…ñ\x01`\0`\0\x06\0	\0,\0Ø\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎡Çó}Ú\x0f\x04\0\x02C \0\0\0!\0\0\0!\0\0\0\x03\0\0\0\0\0⎡Çó™H>\x1f
\0\x01\x0e\0\x01psy‘…ñ\0\0\0\0\0\0\0\0\0\0\0\0\x06\0,\0Ø\0\0\0\0\0\x13\0\0\0\x13\0\0\0\x11\0\0\0\0\0⎡Çó™h\x01\0\0\0\v\0psy‘…ñ\x02\0\0\0\0\0\0\0\0\0\x05\0\0\0\x05\0\0\0\x02\0\0\0\0\0⎡Çó™´\x16 \x02\x01\x0e\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎡Çó¡\x02>\x04\x14\x01\x0e\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎡Çó¤ê\x0f\x04\0\x01\x16 \0\0\0\x0e\0\0\0\x0e\0\0\0\x03\0\0\0\0\0⎡Çó×»>\f\x04\0\x01\x0e\x01\0\0\0\0\0\0\0\0\0\0\x1f\0\0\0\x1f\0\0\0\x02\0\0\0\0\0⎡ÇóØ0\x19 \x1c\x01\x0eÑýîSΡ˜1¡CíAˆ:¤ù+~,G¸Õ\f]$\\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎡Çóãi\x0f\x04\0\x01\x19 \0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎡Çôü­\b\x04\0\x01\x0e\x01\0\0\0\a\0\0\0\a\0\0\0\x02\0\0\0\0\0⎡ÇôüØ|\f\x04\x01\x0e¸\v\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Çôý\x01\x01\x0e\a\0\x03\0\x04\0\x02\x05\x02\0\0\0\b\0\0\0\b\0\0\0\x03\0\0\0\0\0⎡Çõ\b`\x0e\x06\x01|\f\0\x01\x0e\0\0\0\x1e\0\0\0\x1e\0\0\0\x05\0\0\0\0\0⎡Çõ\x192\x01.\x1a\0\x16\0\x04\0^[+\0ÿ\x04\0\x01\x01\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çõ^[ç\x13\x05\x01\x01\x0e\x01\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡Çõ5¬\x01.\x0e\0
\0\x04\0^['\0\0\0\x04ðÿ\0\0\0\0\0\v\0\0\0\v\0\0\0\x05\0\0\0\0\0⎡Çõ7²\x01.\a\0\x03\0\x04\0\x03\x17\0\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Çõ8Ú\x01\x0e\a\0\x03\0\x04\0
\x1d\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡ÇõSÍ\x01.\x0e\0
\0\x04\0^['\0\0\04ðÿ\0\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡ÇõV\x7f\x13\x05\x01\x01\x0e\x01\0\0\0\0
\0\0\0
\0\0\0\x05\0\0\0\0\0⎡ÇõF\x01.\x06\0\x02\0\x04\0\vd\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Çõ¬\x01\x0e\a\0\x03\0\x04\0
\x1a\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡Çõ”\x01.\x0e\0
\0\x04\0^['\0\0\0\a\x10\0\0\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡Çõ«²\x01.\x0e\0
\0\x04\0^['\0\0\0\x04\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çõ¬n\x13\x05\x01\x01\x0e\x01\0\0\0\0\x10\0\0\0\x10\0\0\0\x05\0\0\0\0\0⎡ÇõÈ\x10\x01.\f\0\b\0\x04\0\v\x02m\x04\x1d°"\0\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡ÇõÈ^\x01\x0e\a\0\x03\0\x04\0
\x03\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡ÇõÊZ\x01.\x0e\0
\0\x04\0^['\0\0\0\a\x10\0\0\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡ÇõæK\x01.\x0e\0
\0\x04\0^['\0\0\0\x02\x10\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çõæö\x13\x05\x01\x01\x0e\x01\0\0\0\0\x10\0\0\0\x10\0\0\0\x05\0\0\0\0\0⎡Çö\x02¨\x01.\f\0\b\0\x04\0\vMX Ergo\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Çö\x02ö\x01\x0e\a\0\x03\0\x04\0
\x05\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡Çö\x04ñ\x01.\x0e\0
\0\x04\0^['\0\0\0\x02\x10\0\0\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡Çö â\x01.\x0e\0
\0\x04\0^['\0\0\0\x01\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çö!\x13\x05\x01\x01\x0e\x01\0\0\0\0\v\0\0\0\v\0\0\0\x05\0\0\0\0\0⎡Çö=\x19\x01.\a\0\x03\0\x04\0\vÂ\x03\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Çö=e\x01\x0e\a\0\x03\0\x04\0
 \0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡Çö?b\x01.\x0e\0
\0\x04\0^['\0\0\0\x01\0\0\0\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çö\6\x13\x05\x01\x01\x0e\x01\0\0\0\0\r\0\0\0\r\0\0\0\x05\0\0\0\0\0⎡Çöw½\x01.	\0\x05\0\x04\0\v\x11\x01\0\x03\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Çöx\v\x01\x0e\a\0\x03\0\x04\0
%\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡Çöz\a\x01.\x0e\0
\0\x04\0^['\0\0\0\0ðÿ\0\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡Çö–\x10\x01.\x0e\0
\0\x04\0^['\0\0\0ÿïÿ\0\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çö–Ì\x13\x05\x01\x01\x0e\x01\0\0\0\0\x1f\0\0\0\x1f\0\0\0\x05\0\0\0\0\0⎡Çö²â\x01.^[\0\x17\0\x04\0\v\x05\x01	\x02¡\x01…\x02	\x01¡\0•\x10u\x01\x15\0%\x01\x05	\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Çö³0\x01\x0e\a\0\x03\0\x04\0
)\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡ÇöЮ\x01.\x0e\0
\0\x04\0^['\0\0\0\0àÿ\0\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡ÇöÑT\x13\x05\x01\x01\x0e\x01\0\0\0\0\v\0\0\0\v\0\0\0\x05\0\0\0\0\0⎡Çöìß\x01.\a\0\x03\0\x04\0\v\x02\x01\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Çöí-\x01\x0e\a\0\x03\0\x04\0
-\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡Çöï*\x01.\x0e\0
\0\x04\0^['\0\0\0\0àÿ\0\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Ç÷\vû\x13\x05\x01\x01\x0e\x01\0\0\0\0\v\0\0\0\v\0\0\0\x05\0\0\0\0\0⎡Ç÷'e\x01.\a\0\x03\0\x04\0\v\x11\x01\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Ç÷'³\x01\x0e\a\0\x03\0\x04\0
0\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Ç÷F“\x13\x05\x01\x01\x0e\x01\0\0\0\0\v\0\0\0\v\0\0\0\x05\0\0\0\0\0⎡Ç÷aý\x01.\a\0\x03\0\x04\0\v\x11\x02\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Ç÷bJ\x01\x0e\a\0\x03\0\x04\0
4\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Ç÷*\x13\x05\x01\x01\x0e\x01\0\0\0\0
\0\0\0
\0\0\0\x05\0\0\0\0\0⎡Ç÷œŽ\x01.\x06\0\x02\0\x04\0\v\x01\0\0\0\x0f\0\0\0\x0f\0\0\0\x04\0\0\0\0\0⎡Ç÷œÛ\x01\x0e\v\0\a\0\x04\0\b\x01\0ÿÿ:+\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Ç÷»Â\x13\x05\x01\x01\x0e\x01\0\0\0\0\r\0\0\0\r\0\0\0\x05\0\0\0\0\0⎡Ç÷×@\x01.	\0\x05\0\x04\0\x01\b\x01\0
\0\0\0\x0f\0\0\0\x0f\0\0\0\x04\0\0\0\0\0⎡Ç÷׏\x01\x0e\v\0\a\0\x04\0\x10\x01\0ÿÿ\0(\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Ç÷öZ\x13\x05\x01\x01\x0e\x01\0\0\0\0\x1c\0\0\0\x1c\0\0\0\x05\0\0\0\0\0⎡Çø\x12U\x01.\x18\0\x14\0\x04\0\x11\x06\x01\0\a\0\0\x18\b\0\v\0\x01\x18\f\0\x1a\0
\x18\0\0\0\r\0\0\0\r\0\0\0\x04\0\0\0\0\0⎡Çø\x12£\x01\x0e	\0\x05\0\x04\0\f%\0\x16\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çø0ñ\x13\x05\x01\x01\x0e\x01\0\0\0\0\x1f\0\0\0\x1f\0\0\0\x05\0\0\0\0\0⎡ÇøM\b\x01.^[\0\x17\0\x04\0\r\x19\x01)\x10\x02\x05\x01\x16\x01ø&ÿ\au\f•\x02	0	1\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡ÇøMW\x01\x0e\a\0\x03\0\x04\0
(\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çøk‰\x13\x05\x01\x01\x0e\x01\0\0\0\0\v\0\0\0\v\0\0\0\x05\0\0\0\0\0⎡Çø†ò\x01.\a\0\x03\0\x04\0\v\x01\0\0\0\0\v\0\0\0\v\0\0\0\x04\0\0\0\0\0⎡Çø‡B\x01\x0e\a\0\x03\0\x04\0
,\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çø¦"\x13\x05\x01\x01\x0e\x01\0\0\0\0\v\0\0\0\v\0\0\0\x05\0\0\0\0\0⎡ÇøÁŠ\x01.\a\0\x03\0\x04\0\v\x01\0\0\0\0\x0f\0\0\0\x0f\0\0\0\x04\0\0\0\0\0⎡ÇøÁ×\x01\x0e\v\0\a\0\x04\0\x10^[\0ÿÿ\0(\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çøà¸\x13\x05\x01\x01\x0e\x01\0\0\0\0\x16\0\0\0\x16\0\0\0\x05\0\0\0\0\0⎡Çøü\x01.\x12\0\x0e\0\x04\0\x11\x06^[\0\x1d\0\x0f\x18\x1e\04\0\x12\x18\0\0\0\r\0\0\0\r\0\0\0\x04\0\0\0\0\0⎡ÇøüÎ\x01\x0e	\0\x05\0\x04\0\f%\0,\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çù^[P\x13\x05\x01\x01\x0e\x01\0\0\0\0\x1f\0\0\0\x1f\0\0\0\x05\0\0\0\0\0⎡Çù7g\x01.^[\0\x17\0\x04\0\r\x06\x15%\x7fu\b•\x01	8\x06•\x01\x05\f
8\x02\0\0\0\r\0\0\0\r\0\0\0\x04\0\0\0\0\0⎡Çù7µ\x01\x0e	\0\x05\0\x04\0\x12(\0\x01\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡ÇùUç\x13\x05\x01\x01\x0e\x01\0\0\0\0	\0\0\0	\0\0\0\x05\0\0\0\0\0⎡ÇùqI\x01.\x05\0\x01\0\x04\0\x13\0\0\0\r\0\0\0\r\0\0\0\x04\0\0\0\0\0⎡Çùq–\x01\x0e	\0\x05\0\x04\0\x12,\0\x01\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çù~\x13\x05\x01\x01\x0e\x01\0\0\0\0	\0\0\0	\0\0\0\x05\0\0\0\0\0⎡Çù«â\x01.\x05\0\x01\0\x04\0\x13\0\0\0\x0f\0\0\0\x0f\0\0\0\x04\0\0\0\0\0⎡Çù¬0\x01\x0e\v\0\a\0\x04\0\x105\0ÿÿ\0(\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡ÇùË\x16\x13\x05\x01\x01\x0e\x01\0\0\0\0\x1e\0\0\0\x1e\0\0\0\x05\0\0\0\0\0⎡Çùç%\x01.\x1a\0\x16\0\x04\0\x11\x145\0ÿÿm\x04\0 \x1f\x01\0€\0\x10\0\0\0\0\x01\0\0\0\0\r\0\0\0\r\0\0\0\x04\0\0\0\0\0⎡Çú\x0f–\x01\x0e	\0\x05\0\x04\0\f%\0B\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çÿ.\b\x13\x05\x01\x01\x0e\x01\0\0\0\0\x1f\0\0\0\x1f\0\0\0\x05\0\0\0\0\0⎡ÇÿH\x1d\x01.^[\0\x17\0\x04\0\r\x06ÀÀ\x06Cÿ
\x02\x02¡\x01…\x11u\b•\x13\x15\0&ÿ\0\0\0\0\r\0\0\0\r\0\0\0\x04\0\0\0\0\0⎡ÇÿHž\x01\x0e	\0\x05\0\x04\0\x12\v\0\x02\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çÿh“\x13\x05\x01\x01\x0e\x01\0\0\0\0	\0\0\0	\0\0\0\x05\0\0\0\0\0⎡Çÿó\x01.\x05\0\x01\0\x04\0\x13\0\0\0\r\0\0\0\r\0\0\0\x04\0\0\0\0\0⎡Çÿ‚E\x01\x0e	\0\x05\0\x04\0\f%\0X\0\0\0\0\a\0\0\0\a\0\0\0\x03\0\0\0\0\0⎡Çÿ£%\x13\x05\x01\x01\x0e\x01\0\0\0\0\x12\0\0\0\x12\0\0\0\x05\0\0\0\0\0⎡Çÿ¼×\x01.\x0e\0
\0\x04\0\r	\x02\0	\x02‘\0À

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-05 16:11                   ` Greg Kroah-Hartman
@ 2020-10-05 17:14                     ` Marcel Holtmann
  2020-10-05 17:38                       ` Greg Kroah-Hartman
  0 siblings, 1 reply; 23+ messages in thread
From: Marcel Holtmann @ 2020-10-05 17:14 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

Hi Greg,

>>>>>>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
>>>>>>>>>>> breaks all bluetooth connections on my machine.
>>>>>>>>>>> 
>>>>>>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
>>>>>>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
>>>>>>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
>>>>>>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>>>>>>>>>>> ---
>>>>>>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
>>>>>>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
>>>>>>>>>>> 
>>>>>>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
>>>>>>>>>>> stopped working on my desktop system.  I finally got the time to do
>>>>>>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
>>>>>>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
>>>>>>>>>>> work.
>>>>>>>>>>> 
>>>>>>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
>>>>>>>>>>> issue?
>>>>>>>>>> 
>>>>>>>>>> can you be specific what breaks since our guys and I also think the
>>>>>>>>>> ChromeOS guys have been testing these series of patches heavily.
>>>>>>>>> 
>>>>>>>>> My bluetooth trackball does not connect at all.  With this reverted, it
>>>>>>>>> all "just works".
>>>>>>>>> 
>>>>>>>>> Same I think for a Bluetooth headset, can check that again if you really
>>>>>>>>> need me to, but the trackball is reliable here.
>>>>>>>>> 
>>>>>>>>>> When you run btmon does it indicate any errors?
>>>>>>>>> 
>>>>>>>>> How do I run it and where are the errors displayed?
>>>>>>>> 
>>>>>>>> you can do btmon -w trace.log and just let it run like tcdpump.
>>>>>>> 
>>>>>>> Ok, attached.
>>>>>>> 
>>>>>>> The device is not connecting, and then I open the gnome bluetooth dialog
>>>>>>> and it scans for devices in the area, but does not connect to my
>>>>>>> existing devices at all.
>>>>>>> 
>>>>>>> Any ideas?
>>>>>> 
>>>>>> the trace file is from -rc7 or from -rc7 with this patch reverted?
>>>>>> 
>>>>>> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
>>>>>> 
>>>>>> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
>>>>>> index e0269192f2e5..94c0daa9f28d 100644
>>>>>> --- a/net/bluetooth/hci_request.c
>>>>>> +++ b/net/bluetooth/hci_request.c
>>>>>> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
>>>>>>              return -1;
>>>>>> 
>>>>>>      /* White list can not be used with RPAs */
>>>>>> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
>>>>>> +       if (!allow_rpa &&
>>>>>>          hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
>>>>>>              return -1;
>>>>>>      }
>>>>>> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
>>>>>>              }
>>>>>> 
>>>>>>              /* White list can not be used with RPAs */
>>>>>> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
>>>>>> +               if (!allow_rpa &&
>>>>>>                  hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
>>>>>>                      return 0x00;
>>>>>>              }
>>>>>> 
>>>>>> 
>>>>>> If you just do the above, does thing work for you again?
>>>>> 
>>>>> Corrupted white-space issues aside, yes, it works!
>>>> 
>>>> I just pasted it from a different terminal ;)
>>>> 
>>>>> I am running 5.9-rc8 with just this change on it and my tracball works
>>>>> just fine.
>>>>> 
>>>>>> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
>>>>> 
>>>>> How would one go about enabling such a hardware feature if they wanted
>>>>> to?  :)
>>>> 
>>>> I need to understand what is going wrong for you. I have a suspicion,
>>>> but first I need to understand what kind of device you have. I hope
>>>> the trace file is enough.
>>> 
>>> If you need any other information, just let me know, this is a USB
>>> Bluetooth controller from Intel:
>>> 
>>> 	$ lsusb | grep Blue
>>> 	Bus 009 Device 002: ID 8087:0029 Intel Corp. AX200 Bluetooth
>>> 
>>> And the output of usb-devices for it:
>>> 	T:  Bus=09 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
>>> 	D:  Ver= 2.01 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
>>> 	P:  Vendor=8087 ProdID=0029 Rev=00.01
>>> 	C:  #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA
>>> 	I:  If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
>>> 	I:  If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
>> 
>> I already figured out that it is one of our controllers. The trace file gives it away.
>> 
>> So my suspicion is that the device you want to connect to uses RPA (aka random addresses). And we added support for resolving them in the firmware. Your hardware does support that, but the host side is not fully utilizing it and thus your device is filtered out.
> 
> Dude, get an email client that line-wraps :)
> 
>> If I am not mistaken, then the use_ll_privacy() check in these two specific places need to be replaced with LL Privacy Enabled check. And then the allow_rpa condition will do its job as expected.
>> 
>> We can confirm this if you send me a trace with the patch applied.
> 
> Want me to disconnect the device and then reconnect it using
> bluetootctl?  I'll go do that now...
> 
> Ok, it's attached, I did:
> 
> $ bluetoothctl disconnect F1:85:91:79:73:70
> Attempting to disconnect from F1:85:91:79:73:70
> [CHG] Device F1:85:91:79:73:70 ServicesResolved: no
> Successful disconnected
> 
> And then the gnome bluetooth daemon (or whatever it has) reconnected it
> automatically, so you can see the connection happen, and some movements
> in the log.
> 
> If there's anything else you need, just let me know.

so the trace file indicates that you are using static addresses and not RPAs. Now I am confused.

What is the content of /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys?

The only way I can explain this if you have an entry in that file, but the device is not using it.

If you have btmgmt (from bluez.git) you can try "./tools/btmgmt irks” to clear that list and try again.

Regards

Marcel


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-05 17:14                     ` Marcel Holtmann
@ 2020-10-05 17:38                       ` Greg Kroah-Hartman
  2020-10-05 18:02                         ` Greg Kroah-Hartman
  0 siblings, 1 reply; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-05 17:38 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

On Mon, Oct 05, 2020 at 07:14:44PM +0200, Marcel Holtmann wrote:
> Hi Greg,
> 
> >>>>>>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> >>>>>>>>>>> breaks all bluetooth connections on my machine.
> >>>>>>>>>>> 
> >>>>>>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
> >>>>>>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> >>>>>>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> >>>>>>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >>>>>>>>>>> ---
> >>>>>>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> >>>>>>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
> >>>>>>>>>>> 
> >>>>>>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> >>>>>>>>>>> stopped working on my desktop system.  I finally got the time to do
> >>>>>>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
> >>>>>>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
> >>>>>>>>>>> work.
> >>>>>>>>>>> 
> >>>>>>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
> >>>>>>>>>>> issue?
> >>>>>>>>>> 
> >>>>>>>>>> can you be specific what breaks since our guys and I also think the
> >>>>>>>>>> ChromeOS guys have been testing these series of patches heavily.
> >>>>>>>>> 
> >>>>>>>>> My bluetooth trackball does not connect at all.  With this reverted, it
> >>>>>>>>> all "just works".
> >>>>>>>>> 
> >>>>>>>>> Same I think for a Bluetooth headset, can check that again if you really
> >>>>>>>>> need me to, but the trackball is reliable here.
> >>>>>>>>> 
> >>>>>>>>>> When you run btmon does it indicate any errors?
> >>>>>>>>> 
> >>>>>>>>> How do I run it and where are the errors displayed?
> >>>>>>>> 
> >>>>>>>> you can do btmon -w trace.log and just let it run like tcdpump.
> >>>>>>> 
> >>>>>>> Ok, attached.
> >>>>>>> 
> >>>>>>> The device is not connecting, and then I open the gnome bluetooth dialog
> >>>>>>> and it scans for devices in the area, but does not connect to my
> >>>>>>> existing devices at all.
> >>>>>>> 
> >>>>>>> Any ideas?
> >>>>>> 
> >>>>>> the trace file is from -rc7 or from -rc7 with this patch reverted?
> >>>>>> 
> >>>>>> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
> >>>>>> 
> >>>>>> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
> >>>>>> index e0269192f2e5..94c0daa9f28d 100644
> >>>>>> --- a/net/bluetooth/hci_request.c
> >>>>>> +++ b/net/bluetooth/hci_request.c
> >>>>>> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
> >>>>>>              return -1;
> >>>>>> 
> >>>>>>      /* White list can not be used with RPAs */
> >>>>>> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
> >>>>>> +       if (!allow_rpa &&
> >>>>>>          hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
> >>>>>>              return -1;
> >>>>>>      }
> >>>>>> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
> >>>>>>              }
> >>>>>> 
> >>>>>>              /* White list can not be used with RPAs */
> >>>>>> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
> >>>>>> +               if (!allow_rpa &&
> >>>>>>                  hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
> >>>>>>                      return 0x00;
> >>>>>>              }
> >>>>>> 
> >>>>>> 
> >>>>>> If you just do the above, does thing work for you again?
> >>>>> 
> >>>>> Corrupted white-space issues aside, yes, it works!
> >>>> 
> >>>> I just pasted it from a different terminal ;)
> >>>> 
> >>>>> I am running 5.9-rc8 with just this change on it and my tracball works
> >>>>> just fine.
> >>>>> 
> >>>>>> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
> >>>>> 
> >>>>> How would one go about enabling such a hardware feature if they wanted
> >>>>> to?  :)
> >>>> 
> >>>> I need to understand what is going wrong for you. I have a suspicion,
> >>>> but first I need to understand what kind of device you have. I hope
> >>>> the trace file is enough.
> >>> 
> >>> If you need any other information, just let me know, this is a USB
> >>> Bluetooth controller from Intel:
> >>> 
> >>> 	$ lsusb | grep Blue
> >>> 	Bus 009 Device 002: ID 8087:0029 Intel Corp. AX200 Bluetooth
> >>> 
> >>> And the output of usb-devices for it:
> >>> 	T:  Bus=09 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
> >>> 	D:  Ver= 2.01 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
> >>> 	P:  Vendor=8087 ProdID=0029 Rev=00.01
> >>> 	C:  #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA
> >>> 	I:  If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> >>> 	I:  If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> >> 
> >> I already figured out that it is one of our controllers. The trace file gives it away.
> >> 
> >> So my suspicion is that the device you want to connect to uses RPA (aka random addresses). And we added support for resolving them in the firmware. Your hardware does support that, but the host side is not fully utilizing it and thus your device is filtered out.
> > 
> > Dude, get an email client that line-wraps :)
> > 
> >> If I am not mistaken, then the use_ll_privacy() check in these two specific places need to be replaced with LL Privacy Enabled check. And then the allow_rpa condition will do its job as expected.
> >> 
> >> We can confirm this if you send me a trace with the patch applied.
> > 
> > Want me to disconnect the device and then reconnect it using
> > bluetootctl?  I'll go do that now...
> > 
> > Ok, it's attached, I did:
> > 
> > $ bluetoothctl disconnect F1:85:91:79:73:70
> > Attempting to disconnect from F1:85:91:79:73:70
> > [CHG] Device F1:85:91:79:73:70 ServicesResolved: no
> > Successful disconnected
> > 
> > And then the gnome bluetooth daemon (or whatever it has) reconnected it
> > automatically, so you can see the connection happen, and some movements
> > in the log.
> > 
> > If there's anything else you need, just let me know.
> 
> so the trace file indicates that you are using static addresses and not RPAs. Now I am confused.
> 
> What is the content of /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys?

f1:85:91:79:73:70 (type 1) f02567096e8537e5dac1cadf548fa750 00:00:00:00:00:00

> The only way I can explain this if you have an entry in that file, but the device is not using it.
> 
> If you have btmgmt (from bluez.git) you can try "./tools/btmgmt irks” to clear that list and try again.

Ok, I did that, and reconnected, this is still with the kernel that has
the patch.  Want me to reboot to a "clean" 5.9-rc8?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-05 17:38                       ` Greg Kroah-Hartman
@ 2020-10-05 18:02                         ` Greg Kroah-Hartman
  2020-10-05 18:58                           ` Marcel Holtmann
  0 siblings, 1 reply; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-05 18:02 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 7619 bytes --]

On Mon, Oct 05, 2020 at 07:38:35PM +0200, Greg Kroah-Hartman wrote:
> On Mon, Oct 05, 2020 at 07:14:44PM +0200, Marcel Holtmann wrote:
> > Hi Greg,
> > 
> > >>>>>>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> > >>>>>>>>>>> breaks all bluetooth connections on my machine.
> > >>>>>>>>>>> 
> > >>>>>>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
> > >>>>>>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> > >>>>>>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> > >>>>>>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > >>>>>>>>>>> ---
> > >>>>>>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> > >>>>>>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
> > >>>>>>>>>>> 
> > >>>>>>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> > >>>>>>>>>>> stopped working on my desktop system.  I finally got the time to do
> > >>>>>>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
> > >>>>>>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
> > >>>>>>>>>>> work.
> > >>>>>>>>>>> 
> > >>>>>>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
> > >>>>>>>>>>> issue?
> > >>>>>>>>>> 
> > >>>>>>>>>> can you be specific what breaks since our guys and I also think the
> > >>>>>>>>>> ChromeOS guys have been testing these series of patches heavily.
> > >>>>>>>>> 
> > >>>>>>>>> My bluetooth trackball does not connect at all.  With this reverted, it
> > >>>>>>>>> all "just works".
> > >>>>>>>>> 
> > >>>>>>>>> Same I think for a Bluetooth headset, can check that again if you really
> > >>>>>>>>> need me to, but the trackball is reliable here.
> > >>>>>>>>> 
> > >>>>>>>>>> When you run btmon does it indicate any errors?
> > >>>>>>>>> 
> > >>>>>>>>> How do I run it and where are the errors displayed?
> > >>>>>>>> 
> > >>>>>>>> you can do btmon -w trace.log and just let it run like tcdpump.
> > >>>>>>> 
> > >>>>>>> Ok, attached.
> > >>>>>>> 
> > >>>>>>> The device is not connecting, and then I open the gnome bluetooth dialog
> > >>>>>>> and it scans for devices in the area, but does not connect to my
> > >>>>>>> existing devices at all.
> > >>>>>>> 
> > >>>>>>> Any ideas?
> > >>>>>> 
> > >>>>>> the trace file is from -rc7 or from -rc7 with this patch reverted?
> > >>>>>> 
> > >>>>>> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
> > >>>>>> 
> > >>>>>> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
> > >>>>>> index e0269192f2e5..94c0daa9f28d 100644
> > >>>>>> --- a/net/bluetooth/hci_request.c
> > >>>>>> +++ b/net/bluetooth/hci_request.c
> > >>>>>> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
> > >>>>>>              return -1;
> > >>>>>> 
> > >>>>>>      /* White list can not be used with RPAs */
> > >>>>>> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
> > >>>>>> +       if (!allow_rpa &&
> > >>>>>>          hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
> > >>>>>>              return -1;
> > >>>>>>      }
> > >>>>>> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
> > >>>>>>              }
> > >>>>>> 
> > >>>>>>              /* White list can not be used with RPAs */
> > >>>>>> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
> > >>>>>> +               if (!allow_rpa &&
> > >>>>>>                  hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
> > >>>>>>                      return 0x00;
> > >>>>>>              }
> > >>>>>> 
> > >>>>>> 
> > >>>>>> If you just do the above, does thing work for you again?
> > >>>>> 
> > >>>>> Corrupted white-space issues aside, yes, it works!
> > >>>> 
> > >>>> I just pasted it from a different terminal ;)
> > >>>> 
> > >>>>> I am running 5.9-rc8 with just this change on it and my tracball works
> > >>>>> just fine.
> > >>>>> 
> > >>>>>> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
> > >>>>> 
> > >>>>> How would one go about enabling such a hardware feature if they wanted
> > >>>>> to?  :)
> > >>>> 
> > >>>> I need to understand what is going wrong for you. I have a suspicion,
> > >>>> but first I need to understand what kind of device you have. I hope
> > >>>> the trace file is enough.
> > >>> 
> > >>> If you need any other information, just let me know, this is a USB
> > >>> Bluetooth controller from Intel:
> > >>> 
> > >>> 	$ lsusb | grep Blue
> > >>> 	Bus 009 Device 002: ID 8087:0029 Intel Corp. AX200 Bluetooth
> > >>> 
> > >>> And the output of usb-devices for it:
> > >>> 	T:  Bus=09 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
> > >>> 	D:  Ver= 2.01 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
> > >>> 	P:  Vendor=8087 ProdID=0029 Rev=00.01
> > >>> 	C:  #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA
> > >>> 	I:  If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> > >>> 	I:  If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> > >> 
> > >> I already figured out that it is one of our controllers. The trace file gives it away.
> > >> 
> > >> So my suspicion is that the device you want to connect to uses RPA (aka random addresses). And we added support for resolving them in the firmware. Your hardware does support that, but the host side is not fully utilizing it and thus your device is filtered out.
> > > 
> > > Dude, get an email client that line-wraps :)
> > > 
> > >> If I am not mistaken, then the use_ll_privacy() check in these two specific places need to be replaced with LL Privacy Enabled check. And then the allow_rpa condition will do its job as expected.
> > >> 
> > >> We can confirm this if you send me a trace with the patch applied.
> > > 
> > > Want me to disconnect the device and then reconnect it using
> > > bluetootctl?  I'll go do that now...
> > > 
> > > Ok, it's attached, I did:
> > > 
> > > $ bluetoothctl disconnect F1:85:91:79:73:70
> > > Attempting to disconnect from F1:85:91:79:73:70
> > > [CHG] Device F1:85:91:79:73:70 ServicesResolved: no
> > > Successful disconnected
> > > 
> > > And then the gnome bluetooth daemon (or whatever it has) reconnected it
> > > automatically, so you can see the connection happen, and some movements
> > > in the log.
> > > 
> > > If there's anything else you need, just let me know.
> > 
> > so the trace file indicates that you are using static addresses and not RPAs. Now I am confused.
> > 
> > What is the content of /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys?
> 
> f1:85:91:79:73:70 (type 1) f02567096e8537e5dac1cadf548fa750 00:00:00:00:00:00

I rebooted, and the same value was there.

> > The only way I can explain this if you have an entry in that file, but the device is not using it.
> > 
> > If you have btmgmt (from bluez.git) you can try "./tools/btmgmt irks” to clear that list and try again.
> 
> Ok, I did that, and reconnected, this is still with the kernel that has
> the patch.  Want me to reboot to a "clean" 5.9-rc8?

I rebooted into a clean 5.9-rc8 and the device does not connect.

So I did the following to trace this:

$ sudo btmgmt irks
Identity Resolving Keys successfully loaded
$ sudo cat /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys
$ bluetoothctl connect F1:85:91:79:73:70
Attempting to connect to F1:85:91:79:73:70
Failed to connect: org.bluez.Error.Failed

and ran another btmon session to see this, it is attached.

thanks,

greg k-h

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: trace.log --]
[-- Type: text/plain; charset=utf-8, Size: 1001 bytes --]

btsnoop\0\0\0\0\x01\0\0\aÑ\0\0\0!\0\0\0!ÿÿ\0\f\0\0\0\0\0⎣L\a¥ïLinux version 5.9.0-rc8 (x86_64)\0\0\0\0!\0\0\0!ÿÿ\0\f\0\0\0\0\0⎣L\a¥òBluetooth subsystem version 2.22\0\0\0\0\x10\0\0\0\x10\0\0\0\0\0\0\0\0\0⎣L\a¥ó\0\x01peö…àPhci0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\0\0⎣L\a¥ô\0\0\0\b\0\0\0\b\0\0\0
\0\0\0\0\0⎣L\a¥ôpeö…àP\x02\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0⎣L\a¥ö\x01\0\0\0\x02\0\x01\x12\0\x01\0\0\0\x10bluetoothd\0\0\0\0\0\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0⎣L@\x0ff\x02\0\0\0\x02\0\x01\x12\0\x01\0\0\0\x10btmgmt\0\0\0\0\0\0\0\0\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0⎣L@\x0fŽ\x02\0\0\00\0\0\0\0\0\0	\0\0\0	\0\0\0\x11\0\0\0\0\0⎣L@\x0f’\x02\0\0\0\x01\00\0\0\0\0\0\x04\0\0\0\x04ÿÿ\0\x0f\0\0\0\0\0⎣L@\x0f¨\x02\0\0\0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎣L{éÝB \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎣L~\x02r\x0e\x04\x02B \0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎣L~\x03'A \b\0\x01\x01\0`\00\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎣L~\rÌ\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎣L~\x0e\x16B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎣L~^[D\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎣M\x16́B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎣M\x18¬U\x0e\x04\x02B \0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎣M\x18¬…A \b\0\x01\x01\0`\0`\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎣M\x18¸\b\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎣M\x18¸,B \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎣M\x18Ǩ\x0e\x04\x02B \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎣O‰’2B \x06\0\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎣O‹’8\x0e\x04\x02B \0\0\0\0\v\0\0\0\v\0\0\0\x02\0\0\0\0\0⎣O‹’çA \b\0\x01\x01\0`\00\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎣O‹›»\x0e\x04\x01A \0\0\0\0	\0\0\0	\0\0\0\x02\0\0\0\0\0⎣O‹›ßB \x06\x01\x01\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x03\0\0\0\0\0⎣O‹«\\x0e\x04\x02B \0

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-05 18:02                         ` Greg Kroah-Hartman
@ 2020-10-05 18:58                           ` Marcel Holtmann
  2020-10-07 13:23                             ` Greg Kroah-Hartman
  0 siblings, 1 reply; 23+ messages in thread
From: Marcel Holtmann @ 2020-10-05 18:58 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

Hi Greg,

>>>>>>>>>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
>>>>>>>>>>>>>> breaks all bluetooth connections on my machine.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
>>>>>>>>>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
>>>>>>>>>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
>>>>>>>>>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>>>>>>>>>>>>>> ---
>>>>>>>>>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
>>>>>>>>>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
>>>>>>>>>>>>>> stopped working on my desktop system.  I finally got the time to do
>>>>>>>>>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
>>>>>>>>>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
>>>>>>>>>>>>>> work.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
>>>>>>>>>>>>>> issue?
>>>>>>>>>>>>> 
>>>>>>>>>>>>> can you be specific what breaks since our guys and I also think the
>>>>>>>>>>>>> ChromeOS guys have been testing these series of patches heavily.
>>>>>>>>>>>> 
>>>>>>>>>>>> My bluetooth trackball does not connect at all.  With this reverted, it
>>>>>>>>>>>> all "just works".
>>>>>>>>>>>> 
>>>>>>>>>>>> Same I think for a Bluetooth headset, can check that again if you really
>>>>>>>>>>>> need me to, but the trackball is reliable here.
>>>>>>>>>>>> 
>>>>>>>>>>>>> When you run btmon does it indicate any errors?
>>>>>>>>>>>> 
>>>>>>>>>>>> How do I run it and where are the errors displayed?
>>>>>>>>>>> 
>>>>>>>>>>> you can do btmon -w trace.log and just let it run like tcdpump.
>>>>>>>>>> 
>>>>>>>>>> Ok, attached.
>>>>>>>>>> 
>>>>>>>>>> The device is not connecting, and then I open the gnome bluetooth dialog
>>>>>>>>>> and it scans for devices in the area, but does not connect to my
>>>>>>>>>> existing devices at all.
>>>>>>>>>> 
>>>>>>>>>> Any ideas?
>>>>>>>>> 
>>>>>>>>> the trace file is from -rc7 or from -rc7 with this patch reverted?
>>>>>>>>> 
>>>>>>>>> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
>>>>>>>>> 
>>>>>>>>> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
>>>>>>>>> index e0269192f2e5..94c0daa9f28d 100644
>>>>>>>>> --- a/net/bluetooth/hci_request.c
>>>>>>>>> +++ b/net/bluetooth/hci_request.c
>>>>>>>>> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
>>>>>>>>>             return -1;
>>>>>>>>> 
>>>>>>>>>     /* White list can not be used with RPAs */
>>>>>>>>> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
>>>>>>>>> +       if (!allow_rpa &&
>>>>>>>>>         hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
>>>>>>>>>             return -1;
>>>>>>>>>     }
>>>>>>>>> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
>>>>>>>>>             }
>>>>>>>>> 
>>>>>>>>>             /* White list can not be used with RPAs */
>>>>>>>>> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
>>>>>>>>> +               if (!allow_rpa &&
>>>>>>>>>                 hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
>>>>>>>>>                     return 0x00;
>>>>>>>>>             }
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> If you just do the above, does thing work for you again?
>>>>>>>> 
>>>>>>>> Corrupted white-space issues aside, yes, it works!
>>>>>>> 
>>>>>>> I just pasted it from a different terminal ;)
>>>>>>> 
>>>>>>>> I am running 5.9-rc8 with just this change on it and my tracball works
>>>>>>>> just fine.
>>>>>>>> 
>>>>>>>>> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
>>>>>>>> 
>>>>>>>> How would one go about enabling such a hardware feature if they wanted
>>>>>>>> to?  :)
>>>>>>> 
>>>>>>> I need to understand what is going wrong for you. I have a suspicion,
>>>>>>> but first I need to understand what kind of device you have. I hope
>>>>>>> the trace file is enough.
>>>>>> 
>>>>>> If you need any other information, just let me know, this is a USB
>>>>>> Bluetooth controller from Intel:
>>>>>> 
>>>>>> 	$ lsusb | grep Blue
>>>>>> 	Bus 009 Device 002: ID 8087:0029 Intel Corp. AX200 Bluetooth
>>>>>> 
>>>>>> And the output of usb-devices for it:
>>>>>> 	T:  Bus=09 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
>>>>>> 	D:  Ver= 2.01 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
>>>>>> 	P:  Vendor=8087 ProdID=0029 Rev=00.01
>>>>>> 	C:  #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA
>>>>>> 	I:  If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
>>>>>> 	I:  If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
>>>>> 
>>>>> I already figured out that it is one of our controllers. The trace file gives it away.
>>>>> 
>>>>> So my suspicion is that the device you want to connect to uses RPA (aka random addresses). And we added support for resolving them in the firmware. Your hardware does support that, but the host side is not fully utilizing it and thus your device is filtered out.
>>>> 
>>>> Dude, get an email client that line-wraps :)
>>>> 
>>>>> If I am not mistaken, then the use_ll_privacy() check in these two specific places need to be replaced with LL Privacy Enabled check. And then the allow_rpa condition will do its job as expected.
>>>>> 
>>>>> We can confirm this if you send me a trace with the patch applied.
>>>> 
>>>> Want me to disconnect the device and then reconnect it using
>>>> bluetootctl?  I'll go do that now...
>>>> 
>>>> Ok, it's attached, I did:
>>>> 
>>>> $ bluetoothctl disconnect F1:85:91:79:73:70
>>>> Attempting to disconnect from F1:85:91:79:73:70
>>>> [CHG] Device F1:85:91:79:73:70 ServicesResolved: no
>>>> Successful disconnected
>>>> 
>>>> And then the gnome bluetooth daemon (or whatever it has) reconnected it
>>>> automatically, so you can see the connection happen, and some movements
>>>> in the log.
>>>> 
>>>> If there's anything else you need, just let me know.
>>> 
>>> so the trace file indicates that you are using static addresses and not RPAs. Now I am confused.
>>> 
>>> What is the content of /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys?
>> 
>> f1:85:91:79:73:70 (type 1) f02567096e8537e5dac1cadf548fa750 00:00:00:00:00:00
> 
> I rebooted, and the same value was there.
> 
>>> The only way I can explain this if you have an entry in that file, but the device is not using it.
>>> 
>>> If you have btmgmt (from bluez.git) you can try "./tools/btmgmt irks” to clear that list and try again.
>> 
>> Ok, I did that, and reconnected, this is still with the kernel that has
>> the patch.  Want me to reboot to a "clean" 5.9-rc8?
> 
> I rebooted into a clean 5.9-rc8 and the device does not connect.
> 
> So I did the following to trace this:
> 
> $ sudo btmgmt irks
> Identity Resolving Keys successfully loaded
> $ sudo cat /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys
> $ bluetoothctl connect F1:85:91:79:73:70
> Attempting to connect to F1:85:91:79:73:70
> Failed to connect: org.bluez.Error.Failed
> 
> and ran another btmon session to see this, it is attached.

this is confusing and makes no sense :(

What is the content of debug/bluetooth/hci0/whitelist and
debug/bluetooth/hci0/device_list?

The only way I can explain this is that somehow the whitelist filter doesn’t
get programmed correctly and thus the scan will not find your device. Why
this points to use_ll_privacy() is totally unclear to me.

Btw. reboots won’t help since bluetoothd will restore from settings. You
need to go into the files in /var/lib/bluetooth/ and look for an entry of
IdentityResolvingKey for your device and remove it and then restart
bluetoothd.

You can run btmon and will even show you what bluetoothd loads during start.

Can you try to do systemctl stop bluetooth, then start btmon and then
systemctl start bluetooth. It should reprogram the controller and I could
see the complete trace on how it sets up your hardware.

If this really breaks for your, it should have been broken for weeks for
everybody. So this is the part that is confusing to me. And my original
suspicion turned out to be wrong.

Regards

Marcel


^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-05 18:58                           ` Marcel Holtmann
@ 2020-10-07 13:23                             ` Greg Kroah-Hartman
  2020-10-07 13:40                               ` Greg Kroah-Hartman
  0 siblings, 1 reply; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-07 13:23 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 9352 bytes --]

On Mon, Oct 05, 2020 at 08:58:33PM +0200, Marcel Holtmann wrote:
> Hi Greg,
> 
> >>>>>>>>>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> >>>>>>>>>>>>>> breaks all bluetooth connections on my machine.
> >>>>>>>>>>>>>> 
> >>>>>>>>>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
> >>>>>>>>>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> >>>>>>>>>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> >>>>>>>>>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >>>>>>>>>>>>>> ---
> >>>>>>>>>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> >>>>>>>>>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
> >>>>>>>>>>>>>> 
> >>>>>>>>>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> >>>>>>>>>>>>>> stopped working on my desktop system.  I finally got the time to do
> >>>>>>>>>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
> >>>>>>>>>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
> >>>>>>>>>>>>>> work.
> >>>>>>>>>>>>>> 
> >>>>>>>>>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
> >>>>>>>>>>>>>> issue?
> >>>>>>>>>>>>> 
> >>>>>>>>>>>>> can you be specific what breaks since our guys and I also think the
> >>>>>>>>>>>>> ChromeOS guys have been testing these series of patches heavily.
> >>>>>>>>>>>> 
> >>>>>>>>>>>> My bluetooth trackball does not connect at all.  With this reverted, it
> >>>>>>>>>>>> all "just works".
> >>>>>>>>>>>> 
> >>>>>>>>>>>> Same I think for a Bluetooth headset, can check that again if you really
> >>>>>>>>>>>> need me to, but the trackball is reliable here.
> >>>>>>>>>>>> 
> >>>>>>>>>>>>> When you run btmon does it indicate any errors?
> >>>>>>>>>>>> 
> >>>>>>>>>>>> How do I run it and where are the errors displayed?
> >>>>>>>>>>> 
> >>>>>>>>>>> you can do btmon -w trace.log and just let it run like tcdpump.
> >>>>>>>>>> 
> >>>>>>>>>> Ok, attached.
> >>>>>>>>>> 
> >>>>>>>>>> The device is not connecting, and then I open the gnome bluetooth dialog
> >>>>>>>>>> and it scans for devices in the area, but does not connect to my
> >>>>>>>>>> existing devices at all.
> >>>>>>>>>> 
> >>>>>>>>>> Any ideas?
> >>>>>>>>> 
> >>>>>>>>> the trace file is from -rc7 or from -rc7 with this patch reverted?
> >>>>>>>>> 
> >>>>>>>>> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
> >>>>>>>>> 
> >>>>>>>>> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
> >>>>>>>>> index e0269192f2e5..94c0daa9f28d 100644
> >>>>>>>>> --- a/net/bluetooth/hci_request.c
> >>>>>>>>> +++ b/net/bluetooth/hci_request.c
> >>>>>>>>> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
> >>>>>>>>>             return -1;
> >>>>>>>>> 
> >>>>>>>>>     /* White list can not be used with RPAs */
> >>>>>>>>> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
> >>>>>>>>> +       if (!allow_rpa &&
> >>>>>>>>>         hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
> >>>>>>>>>             return -1;
> >>>>>>>>>     }
> >>>>>>>>> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
> >>>>>>>>>             }
> >>>>>>>>> 
> >>>>>>>>>             /* White list can not be used with RPAs */
> >>>>>>>>> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
> >>>>>>>>> +               if (!allow_rpa &&
> >>>>>>>>>                 hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
> >>>>>>>>>                     return 0x00;
> >>>>>>>>>             }
> >>>>>>>>> 
> >>>>>>>>> 
> >>>>>>>>> If you just do the above, does thing work for you again?
> >>>>>>>> 
> >>>>>>>> Corrupted white-space issues aside, yes, it works!
> >>>>>>> 
> >>>>>>> I just pasted it from a different terminal ;)
> >>>>>>> 
> >>>>>>>> I am running 5.9-rc8 with just this change on it and my tracball works
> >>>>>>>> just fine.
> >>>>>>>> 
> >>>>>>>>> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
> >>>>>>>> 
> >>>>>>>> How would one go about enabling such a hardware feature if they wanted
> >>>>>>>> to?  :)
> >>>>>>> 
> >>>>>>> I need to understand what is going wrong for you. I have a suspicion,
> >>>>>>> but first I need to understand what kind of device you have. I hope
> >>>>>>> the trace file is enough.
> >>>>>> 
> >>>>>> If you need any other information, just let me know, this is a USB
> >>>>>> Bluetooth controller from Intel:
> >>>>>> 
> >>>>>> 	$ lsusb | grep Blue
> >>>>>> 	Bus 009 Device 002: ID 8087:0029 Intel Corp. AX200 Bluetooth
> >>>>>> 
> >>>>>> And the output of usb-devices for it:
> >>>>>> 	T:  Bus=09 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
> >>>>>> 	D:  Ver= 2.01 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
> >>>>>> 	P:  Vendor=8087 ProdID=0029 Rev=00.01
> >>>>>> 	C:  #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA
> >>>>>> 	I:  If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> >>>>>> 	I:  If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> >>>>> 
> >>>>> I already figured out that it is one of our controllers. The trace file gives it away.
> >>>>> 
> >>>>> So my suspicion is that the device you want to connect to uses RPA (aka random addresses). And we added support for resolving them in the firmware. Your hardware does support that, but the host side is not fully utilizing it and thus your device is filtered out.
> >>>> 
> >>>> Dude, get an email client that line-wraps :)
> >>>> 
> >>>>> If I am not mistaken, then the use_ll_privacy() check in these two specific places need to be replaced with LL Privacy Enabled check. And then the allow_rpa condition will do its job as expected.
> >>>>> 
> >>>>> We can confirm this if you send me a trace with the patch applied.
> >>>> 
> >>>> Want me to disconnect the device and then reconnect it using
> >>>> bluetootctl?  I'll go do that now...
> >>>> 
> >>>> Ok, it's attached, I did:
> >>>> 
> >>>> $ bluetoothctl disconnect F1:85:91:79:73:70
> >>>> Attempting to disconnect from F1:85:91:79:73:70
> >>>> [CHG] Device F1:85:91:79:73:70 ServicesResolved: no
> >>>> Successful disconnected
> >>>> 
> >>>> And then the gnome bluetooth daemon (or whatever it has) reconnected it
> >>>> automatically, so you can see the connection happen, and some movements
> >>>> in the log.
> >>>> 
> >>>> If there's anything else you need, just let me know.
> >>> 
> >>> so the trace file indicates that you are using static addresses and not RPAs. Now I am confused.
> >>> 
> >>> What is the content of /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys?
> >> 
> >> f1:85:91:79:73:70 (type 1) f02567096e8537e5dac1cadf548fa750 00:00:00:00:00:00
> > 
> > I rebooted, and the same value was there.
> > 
> >>> The only way I can explain this if you have an entry in that file, but the device is not using it.
> >>> 
> >>> If you have btmgmt (from bluez.git) you can try "./tools/btmgmt irks” to clear that list and try again.
> >> 
> >> Ok, I did that, and reconnected, this is still with the kernel that has
> >> the patch.  Want me to reboot to a "clean" 5.9-rc8?
> > 
> > I rebooted into a clean 5.9-rc8 and the device does not connect.
> > 
> > So I did the following to trace this:
> > 
> > $ sudo btmgmt irks
> > Identity Resolving Keys successfully loaded
> > $ sudo cat /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys
> > $ bluetoothctl connect F1:85:91:79:73:70
> > Attempting to connect to F1:85:91:79:73:70
> > Failed to connect: org.bluez.Error.Failed
> > 
> > and ran another btmon session to see this, it is attached.
> 
> this is confusing and makes no sense :(
> 
> What is the content of debug/bluetooth/hci0/whitelist and

# cat white_list
f1:85:91:79:73:70 (type 1)

> debug/bluetooth/hci0/device_list?

# cat device_list
2c:41:a1:4d:f2:2c (type 0)
f1:85:91:79:73:70 (type 1) 3

> The only way I can explain this is that somehow the whitelist filter doesn’t
> get programmed correctly and thus the scan will not find your device. Why
> this points to use_ll_privacy() is totally unclear to me.
> 
> Btw. reboots won’t help since bluetoothd will restore from settings. You
> need to go into the files in /var/lib/bluetooth/ and look for an entry of
> IdentityResolvingKey for your device and remove it and then restart
> bluetoothd.

I see that entry in there, let me remove it...

> You can run btmon and will even show you what bluetoothd loads during start.
> 
> Can you try to do systemctl stop bluetooth, then start btmon and then
> systemctl start bluetooth. It should reprogram the controller and I could
> see the complete trace on how it sets up your hardware.

Ok, I remove the entry for IdentityResolvingKey and restarted bluetoothd
and now it works on a clean 5.9-rc8!

I'll stop it again and run the monitor and attach it below when it
starts back up.

Ah, I did just that, and it did not connect this time.  Attached is the
trace.  No IdentityResolvingKey entries anywhere...

> If this really breaks for your, it should have been broken for weeks for
> everybody. So this is the part that is confusing to me. And my original
> suspicion turned out to be wrong.

Some bluetoothd interaction?

thanks,

greg k-h

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: trace.log --]
[-- Type: text/plain; charset=utf-8, Size: 10226 bytes --]

btsnoop\0\0\0\0\x01\0\0\aÑ\0\0\0!\0\0\0!ÿÿ\0\f\0\0\0\0\0âŽÇ¥ª¨8Linux version 5.9.0-rc8 (x86_64)\0\0\0\0!\0\0\0!ÿÿ\0\f\0\0\0\0\0âŽÇ¥ª¨:Bluetooth subsystem version 2.22\0\0\0\0\x10\0\0\0\x10\0\0\0\0\0\0\0\0\0âŽÇ¥ª¨;\0\x01peö…àPhci0\0\0\0\0\0\0\0#\0\0\0#ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ú#\x06\vbluetoothd\0Bluetooth daemon 5.55\0\0\0\0|\0\0\0|ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ú|\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “BRPageScanType” in group “Controller”\0\0\0\0€\0\0\0€ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ú‰\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “BRPageScanInterval” in group “Controller”\0\0\0\0~\0\0\0~ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ú“\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “BRPageScanWindow” in group “Controller”\0\0\0\0\x7f\0\0\0\x7fÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01úœ\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “BRInquiryScanType” in group “Controller”\0\0\0\0ƒ\0\0\0ƒÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ú¥\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “BRInquiryScanInterval” in group “Controller”\0\0\0\0\0\0\0ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ú¯\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “BRInquiryScanWindow” in group “Controller”\0\0\0\0†\0\0\0†ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ú¸\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “BRLinkSupervisionTimeout” in group “Controller”\0\0\0\0{\0\0\0{ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01úÁ\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “BRPageTimeout” in group “Controller”\0\0\0\0€\0\0\0€ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01úË\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “BRMinSniffInterval” in group “Controller”\0\0\0\0€\0\0\0€ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01úÔ\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “BRMaxSniffInterval” in group “Controller”\0\0\0\0ˆ\0\0\0ˆÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01úÝ\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEMinAdvertisementInterval” in group “Controller”\0\0\0\0ˆ\0\0\0ˆÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01úæ\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEMaxAdvertisementInterval” in group “Controller”\0\0\0\0’\0\0\0’ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01úï\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEMultiAdvertisementRotationInterval” in group “Controller”\0\0\0\0‡\0\0\0‡ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01úø\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEScanIntervalAutoConnect” in group “Controller”\0\0\0\0…\0\0\0…ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01û\x01\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEScanWindowAutoConnect” in group “Controller”\0\0\0\0ƒ\0\0\0ƒÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01û
\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEScanIntervalSuspend” in group “Controller”\0\0\0\0\0\0\0ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01û\x13\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEScanWindowSuspend” in group “Controller”\0\0\0\0…\0\0\0…ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01û\x1d\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEScanIntervalDiscovery” in group “Controller”\0\0\0\0ƒ\0\0\0ƒÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01û%\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEScanWindowDiscovery” in group “Controller”\0\0\0\0†\0\0\0†ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01û.\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEScanIntervalAdvMonitor” in group “Controller”\0\0\0\0„\0\0\0„ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01û6\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEScanWindowAdvMonitor” in group “Controller”\0\0\0\0ƒ\0\0\0ƒÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01û?\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEScanIntervalConnect” in group “Controller”\0\0\0\0\0\0\0ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ûG\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEScanWindowConnect” in group “Controller”\0\0\0\0…\0\0\0…ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ûP\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEMinConnectionInterval” in group “Controller”\0\0\0\0…\0\0\0…ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ûY\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEMaxConnectionInterval” in group “Controller”\0\0\0\0\0\0\0ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ûq\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEConnectionLatency” in group “Controller”\0\0\0\0Œ\0\0\0Œÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ûz\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEConnectionSupervisionTimeout” in group “Controller”\0\0\0\0‚\0\0\0‚ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ûƒ\x04\vbluetoothd\0src/main.c:parse_controller_config() Key file does not have key “LEAutoconnecttimeout” in group “Controller”\0\0\0\0\x1e\0\0\0\x1eÿÿ\0\x0e\0\0\0\0\0âŽÇ¦\x01ÿa\x01\0\0\0\x02\0\x01\x12\0\x01\0\0\0\x10bluetoothd\0\0\0\0\0\0\0\0\0!\0\0\0!ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x01ÿ¦\x06\vbluetoothd\0Starting SDP server\0\0\0\0\x06\0\0\0\x06ÿÿ\0\x10\0\0\0\0\0âŽÇ¦\x02\v”\x01\0\0\0\x01\0\0\0\0\f\0\0\0\fÿÿ\0\x11\0\0\0\0\0âŽÇ¦\x02\vš\x01\0\0\0\x01\0\x01\0\0\x01\x12\0\0\0\0=\0\0\0=ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x02\vñ\x06\vbluetoothd\0Bluetooth management interface 1.18 initialized\0\0\0\0\x06\0\0\0\x06ÿÿ\0\x10\0\0\0\0\0âŽÇ¦\x02\vÂ\x01\0\0\0\x02\0\0\0\0÷\0\0\0÷ÿÿ\0\x11\0\0\0\0\0âŽÇ¦\x02\vÄ\x01\0\0\0\x01\0\x02\0\0O\0&\0\x03\0\x04\0\x05\0\x06\0\a\0\b\0	\0
\0\v\0\f\0\r\0\x0e\0\x0f\0\x10\0\x11\0\x12\0\x13\0\x14\0\x15\0\x16\0\x17\0\x18\0\x19\0\x1a\0^[\0\x1c\0\x1d\0\x1e\0\x1f\0 \0!\0"\0#\0$\0%\0&\0'\0(\0)\0*\0+\0,\0-\0.\0/\00\01\02\03\04\05\06\07\08\09\0:\0;\0<\0=\0>\0?\0@\0A\0B\0C\0F\0G\0H\0I\0J\0K\0L\0M\0N\0O\0P\0Q\0R\0S\0\x03\0\x04\0\x05\0\x06\0\a\0\b\0	\0
\0\v\0\f\0\r\0\x0e\0\x0f\0\x10\0\x11\0\x12\0\x13\0\x14\0\x15\0\x16\0\x17\0\x18\0\x19\0\x1a\0^[\0\x1c\0\x1d\0\x1e\0\x1f\0 \0!\0"\0#\0$\0%\0&\0'\0*\0\0\0\0\x06\0\0\0\x06ÿÿ\0\x10\0\0\0\0\0âŽÇ¦\x02\vÐ\x01\0\0\0\x03\0\0\0\0\r\0\0\0\rÿÿ\0\x11\0\0\0\0\0âŽÇ¦\x02\vÒ\x01\0\0\0\x01\0\x03\0\0\x01\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\và\x01\0\0\0\x04\0\0\0\x01!\0\0\x01!\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\vâ\x01\0\0\0\x01\0\x04\0\0peö…àP
\x02\0ÿÿ\x03\0Ê
\0\0\0\0\0thread\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x16\0\0\0\x16\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x10É\x01\0\0\0\x11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x10Ò\x01\0\0\0\x01\0\x11\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x10ç\x01\0\0\04\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x10î\x01\0\0\0\x01\04\0\0\0\0\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x11\x04\x01\0\0\0/\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x11\x06\x01\0\0\0\x01\0/\0\0Ê
\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x11\x1c\x01\0\0\0I\0\0\0\03\0\0\03\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x11\x1e\x01\0\0\0\x01\0I\0\0\x02\0ÖI°Ñ(ë'’–FÀBµ\x10^[g\0\0\0\0\x04\0\x13¬B\x02Þ³ê\x11sÂH¡À\x15\x02\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x114\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\0\x18\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x116\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x11N\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\x01\x18\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x11P\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x11g\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0
\x18\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x11i\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x06\0\0\0\x06\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x11\x01\0\0\0=\0\0\0\0\x11\0\0\0\x11\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x11ƒ\x01\0\0\0\x01\0=\0\0ÿ\x03\0\0\x1f\x1f\x05\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x11›\x01\0\0\0\x0e\0\x01\x04\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x11œ\x01\0\0\0\x01\0\x0e\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x11³\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\x0e\x11\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x11µ\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x11Ì\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\f\x11\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x11Í\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\r\0\0\0\r\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x11ä\x01\0\0\0'\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x11ç\x01\0\0\0\x01\0'\0\0\0\0\0\0\0\0\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x11þ\x01\0\0\03\0,òM¡A,\0\x01\0\0\0\x15\0\0\0\x15\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12\x02\x01\0\0\0*\0,òM¡A,\0\x01\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12\x04\x01\0\0\0\x01\03\0\0,òM¡A,\0\0\0\0"\0\0\0"\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x12(\x01\0\0\0\x12\0\0\x01\0,òM¡A,\0\x04M¶€¦øê\x1d\x17ƒR\ft±¨*÷\0\0\0\0	\0\0\0	\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12,\x01\0\0\0\x01\0\x12\0\0\0\0\0,\0\0\0,\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x12C\x01\0\0\0\x13\0\x01\0psy‘…ñ\x02\0\x01\x10¡CÑýîSΡ˜1íAˆ:¤ù+~,G¸Õ\f]$\\0\0\0	\0\0\0	\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12D\x01\0\0\0\x01\0\x13\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x12\\x01\0\0\00\0\0\0\0\0\0	\0\0\0	\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12^\x01\0\0\0\x01\00\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x12t\x01\0\0\05\0\x01\0psy‘…ñ\x02\x06\0	\0,\0Ø\0\0\0\0	\0\0\0	\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12v\x01\0\0\0\x01\05\0\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x12Œ\x01\0\0\03\0psy‘…ñ\x02\x02\0\0\0\x15\0\0\0\x15\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12\x01\0\0\0*\0psy‘…ñ\x02\x01\0\0\0\0\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12‘\x01\0\0\0\x01\03\0\0psy‘…ñ\x02\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x12´\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\0\x12\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12¶\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x0e\0\0\0\x0e\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x12Í\x01\0\0\0(\0\x02\0k\x1dF\x027\x05\0\0\0	\0\0\0	\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12Ï\x01\0\0\0\x01\0(\0\0\0\0\0\b\0\0\0\b\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x12å\x01\0\0\0\x0e\0\x01\x04\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x12ç\x01\0\0\0\x01\0\x0e\0\0\0\0\0\0\0\x01
\0\0\x01
\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x12þ\x01\0\0\0\x0f\0BlueZ 5.55\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\r\0\0\x01\r\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x13\0\x01\0\0\0\x01\0\x0f\0\0BlueZ 5.55\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0*\0\0\0*\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x13^[\x01\0\0\0F\0\x02\0\x01¿\x01ûNó¼6Øtõ9A8hL\x02¥™ºäá|¦\x18"Ž\aV´è_\x01\0\0\0	\0\0\0	\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x13\x1d\x01\0\0\0\x01\0F\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02\x133\x01\0\0\0\a\0\0\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02\x135\x01\0\0\0\x01\0\a\0\0À
\0\0\0\0\0\a\0\0\0\a\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02%\f\x01\0\0\0\a\0\x01\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02%\x15\x01\0\0\0\x01\0\a\0\0Â
\0\0\0\0\0	\0\0\0	\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02%.\x01\0\0\0\x06\0\x01\0\0\0\0\0\r\0\0\0\r\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02%0\x01\0\0\0\x01\0\x06\0\0Ê
\0\0\0\0\0\x11\0\0\0\x11\0\0\0\x10\0\0\0\0\0âŽÇ¦\x024[\x01\0\0\0P\0psy‘…ñ\x02\x01\0\0\0\0\0\0\x10\0\0\0\x10\0\0\0\x11\0\0\0\0\0âŽÇ¦\x024f\x01\0\0\0\x01\0P\0\0psy‘…ñ\x02\0\0\0Z\0\0\0Zÿÿ\0\r\0\0\0\0\0âŽÇ¦\x02Xh\x06\vbluetoothd\0Endpoint registered: sender=:1.76 path=/MediaEndpoint/A2DPSource/VENDOR/LDAC\0\0\0\0\\0\0\0\ÿÿ\0\r\0\0\0\0\0âŽÇ¦\x02X‰\x06\vbluetoothd\0Endpoint registered: sender=:1.76 path=/MediaEndpoint/A2DPSource/VENDOR/APTXHD\0\0\0\0Z\0\0\0Zÿÿ\0\r\0\0\0\0\0âŽÇ¦\x02X”\x06\vbluetoothd\0Endpoint registered: sender=:1.76 path=/MediaEndpoint/A2DPSource/VENDOR/APTX\0\0\0\0R\0\0\0Rÿÿ\0\r\0\0\0\0\0âŽÇ¦\x02X\x06\vbluetoothd\0Endpoint registered: sender=:1.76 path=/MediaEndpoint/A2DPSource/AAC\0\0\0\0R\0\0\0Rÿÿ\0\r\0\0\0\0\0âŽÇ¦\x02X¦\x06\vbluetoothd\0Endpoint registered: sender=:1.76 path=/MediaEndpoint/A2DPSource/SBC\0\0\0\0Z\0\0\0Zÿÿ\0\r\0\0\0\0\0âŽÇ¦\x02XÕ\x06\vbluetoothd\0Endpoint registered: sender=:1.76 path=/MediaEndpoint/A2DPSink/VENDOR/APTXHD\0\0\0\0X\0\0\0Xÿÿ\0\r\0\0\0\0\0âŽÇ¦\x02Xë\x06\vbluetoothd\0Endpoint registered: sender=:1.76 path=/MediaEndpoint/A2DPSink/VENDOR/APTX\0\0\0\0P\0\0\0Pÿÿ\0\r\0\0\0\0\0âŽÇ¦\x02Y\x01\x06\vbluetoothd\0Endpoint registered: sender=:1.76 path=/MediaEndpoint/A2DPSink/AAC\0\0\0\0P\0\0\0Pÿÿ\0\r\0\0\0\0\0âŽÇ¦\x02Y\x18\x06\vbluetoothd\0Endpoint registered: sender=:1.76 path=/MediaEndpoint/A2DPSink/SBC\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02Yä\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0
\x11\0\0\b\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02Yë\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02Z\x05\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\v\x11\0\0\x04\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02Z\x06\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02Z\x1c\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\x12\x11\0\0\0\0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02Z\x1e\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\0\x17\0\0\0\x17\0\0\0\x10\0\0\0\0\0âŽÇ¦\x02Z7\x01\0\0\0\x10\0û4›_€\0\0€\0\x10\0\0\b\x11\0\0 \0\0\0\f\0\0\0\f\0\0\0\x11\0\0\0\0\0âŽÇ¦\x02Z9\x01\0\0\0\x01\0\x10\0\0\0\0\0\0\0\x01
\0\0\x01
\0\0\0\x10\0\0\0\0\0âŽÇ¦\x05f\0\x01\0\0\0\x0f\0thread\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\r\0\0\x01\r\0\0\0\x11\0\0\0\0\0âŽÇ¦\x05f\f\x01\0\0\0\x01\0\x0f\0\0thread\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-07 13:23                             ` Greg Kroah-Hartman
@ 2020-10-07 13:40                               ` Greg Kroah-Hartman
  2020-10-07 13:43                                 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-07 13:40 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

On Wed, Oct 07, 2020 at 03:23:21PM +0200, Greg Kroah-Hartman wrote:
> On Mon, Oct 05, 2020 at 08:58:33PM +0200, Marcel Holtmann wrote:
> > Hi Greg,
> > 
> > >>>>>>>>>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> > >>>>>>>>>>>>>> breaks all bluetooth connections on my machine.
> > >>>>>>>>>>>>>> 
> > >>>>>>>>>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
> > >>>>>>>>>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> > >>>>>>>>>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> > >>>>>>>>>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > >>>>>>>>>>>>>> ---
> > >>>>>>>>>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> > >>>>>>>>>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
> > >>>>>>>>>>>>>> 
> > >>>>>>>>>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> > >>>>>>>>>>>>>> stopped working on my desktop system.  I finally got the time to do
> > >>>>>>>>>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
> > >>>>>>>>>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
> > >>>>>>>>>>>>>> work.
> > >>>>>>>>>>>>>> 
> > >>>>>>>>>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
> > >>>>>>>>>>>>>> issue?
> > >>>>>>>>>>>>> 
> > >>>>>>>>>>>>> can you be specific what breaks since our guys and I also think the
> > >>>>>>>>>>>>> ChromeOS guys have been testing these series of patches heavily.
> > >>>>>>>>>>>> 
> > >>>>>>>>>>>> My bluetooth trackball does not connect at all.  With this reverted, it
> > >>>>>>>>>>>> all "just works".
> > >>>>>>>>>>>> 
> > >>>>>>>>>>>> Same I think for a Bluetooth headset, can check that again if you really
> > >>>>>>>>>>>> need me to, but the trackball is reliable here.
> > >>>>>>>>>>>> 
> > >>>>>>>>>>>>> When you run btmon does it indicate any errors?
> > >>>>>>>>>>>> 
> > >>>>>>>>>>>> How do I run it and where are the errors displayed?
> > >>>>>>>>>>> 
> > >>>>>>>>>>> you can do btmon -w trace.log and just let it run like tcdpump.
> > >>>>>>>>>> 
> > >>>>>>>>>> Ok, attached.
> > >>>>>>>>>> 
> > >>>>>>>>>> The device is not connecting, and then I open the gnome bluetooth dialog
> > >>>>>>>>>> and it scans for devices in the area, but does not connect to my
> > >>>>>>>>>> existing devices at all.
> > >>>>>>>>>> 
> > >>>>>>>>>> Any ideas?
> > >>>>>>>>> 
> > >>>>>>>>> the trace file is from -rc7 or from -rc7 with this patch reverted?
> > >>>>>>>>> 
> > >>>>>>>>> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
> > >>>>>>>>> 
> > >>>>>>>>> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
> > >>>>>>>>> index e0269192f2e5..94c0daa9f28d 100644
> > >>>>>>>>> --- a/net/bluetooth/hci_request.c
> > >>>>>>>>> +++ b/net/bluetooth/hci_request.c
> > >>>>>>>>> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
> > >>>>>>>>>             return -1;
> > >>>>>>>>> 
> > >>>>>>>>>     /* White list can not be used with RPAs */
> > >>>>>>>>> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
> > >>>>>>>>> +       if (!allow_rpa &&
> > >>>>>>>>>         hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
> > >>>>>>>>>             return -1;
> > >>>>>>>>>     }
> > >>>>>>>>> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
> > >>>>>>>>>             }
> > >>>>>>>>> 
> > >>>>>>>>>             /* White list can not be used with RPAs */
> > >>>>>>>>> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
> > >>>>>>>>> +               if (!allow_rpa &&
> > >>>>>>>>>                 hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
> > >>>>>>>>>                     return 0x00;
> > >>>>>>>>>             }
> > >>>>>>>>> 
> > >>>>>>>>> 
> > >>>>>>>>> If you just do the above, does thing work for you again?
> > >>>>>>>> 
> > >>>>>>>> Corrupted white-space issues aside, yes, it works!
> > >>>>>>> 
> > >>>>>>> I just pasted it from a different terminal ;)
> > >>>>>>> 
> > >>>>>>>> I am running 5.9-rc8 with just this change on it and my tracball works
> > >>>>>>>> just fine.
> > >>>>>>>> 
> > >>>>>>>>> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
> > >>>>>>>> 
> > >>>>>>>> How would one go about enabling such a hardware feature if they wanted
> > >>>>>>>> to?  :)
> > >>>>>>> 
> > >>>>>>> I need to understand what is going wrong for you. I have a suspicion,
> > >>>>>>> but first I need to understand what kind of device you have. I hope
> > >>>>>>> the trace file is enough.
> > >>>>>> 
> > >>>>>> If you need any other information, just let me know, this is a USB
> > >>>>>> Bluetooth controller from Intel:
> > >>>>>> 
> > >>>>>> 	$ lsusb | grep Blue
> > >>>>>> 	Bus 009 Device 002: ID 8087:0029 Intel Corp. AX200 Bluetooth
> > >>>>>> 
> > >>>>>> And the output of usb-devices for it:
> > >>>>>> 	T:  Bus=09 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
> > >>>>>> 	D:  Ver= 2.01 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
> > >>>>>> 	P:  Vendor=8087 ProdID=0029 Rev=00.01
> > >>>>>> 	C:  #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA
> > >>>>>> 	I:  If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> > >>>>>> 	I:  If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> > >>>>> 
> > >>>>> I already figured out that it is one of our controllers. The trace file gives it away.
> > >>>>> 
> > >>>>> So my suspicion is that the device you want to connect to uses RPA (aka random addresses). And we added support for resolving them in the firmware. Your hardware does support that, but the host side is not fully utilizing it and thus your device is filtered out.
> > >>>> 
> > >>>> Dude, get an email client that line-wraps :)
> > >>>> 
> > >>>>> If I am not mistaken, then the use_ll_privacy() check in these two specific places need to be replaced with LL Privacy Enabled check. And then the allow_rpa condition will do its job as expected.
> > >>>>> 
> > >>>>> We can confirm this if you send me a trace with the patch applied.
> > >>>> 
> > >>>> Want me to disconnect the device and then reconnect it using
> > >>>> bluetootctl?  I'll go do that now...
> > >>>> 
> > >>>> Ok, it's attached, I did:
> > >>>> 
> > >>>> $ bluetoothctl disconnect F1:85:91:79:73:70
> > >>>> Attempting to disconnect from F1:85:91:79:73:70
> > >>>> [CHG] Device F1:85:91:79:73:70 ServicesResolved: no
> > >>>> Successful disconnected
> > >>>> 
> > >>>> And then the gnome bluetooth daemon (or whatever it has) reconnected it
> > >>>> automatically, so you can see the connection happen, and some movements
> > >>>> in the log.
> > >>>> 
> > >>>> If there's anything else you need, just let me know.
> > >>> 
> > >>> so the trace file indicates that you are using static addresses and not RPAs. Now I am confused.
> > >>> 
> > >>> What is the content of /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys?
> > >> 
> > >> f1:85:91:79:73:70 (type 1) f02567096e8537e5dac1cadf548fa750 00:00:00:00:00:00
> > > 
> > > I rebooted, and the same value was there.
> > > 
> > >>> The only way I can explain this if you have an entry in that file, but the device is not using it.
> > >>> 
> > >>> If you have btmgmt (from bluez.git) you can try "./tools/btmgmt irks” to clear that list and try again.
> > >> 
> > >> Ok, I did that, and reconnected, this is still with the kernel that has
> > >> the patch.  Want me to reboot to a "clean" 5.9-rc8?
> > > 
> > > I rebooted into a clean 5.9-rc8 and the device does not connect.
> > > 
> > > So I did the following to trace this:
> > > 
> > > $ sudo btmgmt irks
> > > Identity Resolving Keys successfully loaded
> > > $ sudo cat /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys
> > > $ bluetoothctl connect F1:85:91:79:73:70
> > > Attempting to connect to F1:85:91:79:73:70
> > > Failed to connect: org.bluez.Error.Failed
> > > 
> > > and ran another btmon session to see this, it is attached.
> > 
> > this is confusing and makes no sense :(
> > 
> > What is the content of debug/bluetooth/hci0/whitelist and
> 
> # cat white_list
> f1:85:91:79:73:70 (type 1)
> 
> > debug/bluetooth/hci0/device_list?
> 
> # cat device_list
> 2c:41:a1:4d:f2:2c (type 0)
> f1:85:91:79:73:70 (type 1) 3
> 
> > The only way I can explain this is that somehow the whitelist filter doesn’t
> > get programmed correctly and thus the scan will not find your device. Why
> > this points to use_ll_privacy() is totally unclear to me.
> > 
> > Btw. reboots won’t help since bluetoothd will restore from settings. You
> > need to go into the files in /var/lib/bluetooth/ and look for an entry of
> > IdentityResolvingKey for your device and remove it and then restart
> > bluetoothd.
> 
> I see that entry in there, let me remove it...
> 
> > You can run btmon and will even show you what bluetoothd loads during start.
> > 
> > Can you try to do systemctl stop bluetooth, then start btmon and then
> > systemctl start bluetooth. It should reprogram the controller and I could
> > see the complete trace on how it sets up your hardware.
> 
> Ok, I remove the entry for IdentityResolvingKey and restarted bluetoothd
> and now it works on a clean 5.9-rc8!
> 
> I'll stop it again and run the monitor and attach it below when it
> starts back up.
> 
> Ah, I did just that, and it did not connect this time.  Attached is the
> trace.  No IdentityResolvingKey entries anywhere...
> 
> > If this really breaks for your, it should have been broken for weeks for
> > everybody. So this is the part that is confusing to me. And my original
> > suspicion turned out to be wrong.
> 
> Some bluetoothd interaction?

Ok, rebooting to 5.9-rc8 again, all works fine.  Restarting bluetoothd a
few times, and then it stops working on the 2nd restart.

Logging out of GNOME and then back in, it's working again.

Ugh.  Don't know what to say now, but 5.9-rc8 is working for me.  I
guess.  Watch out for this with users when 5.9 is released if they end
up with the same problem.

Let me do a jump back to 5.8 and then to 5.9 and see if that changes
anything...

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist"
  2020-10-07 13:40                               ` Greg Kroah-Hartman
@ 2020-10-07 13:43                                 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 23+ messages in thread
From: Greg Kroah-Hartman @ 2020-10-07 13:43 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Johan Hedberg, Sathish Narsimman, David S. Miller,
	Jakub Kicinski, linux-bluetooth, open list:NETWORKING [GENERAL],
	linux-kernel

On Wed, Oct 07, 2020 at 03:40:25PM +0200, Greg Kroah-Hartman wrote:
> On Wed, Oct 07, 2020 at 03:23:21PM +0200, Greg Kroah-Hartman wrote:
> > On Mon, Oct 05, 2020 at 08:58:33PM +0200, Marcel Holtmann wrote:
> > > Hi Greg,
> > > 
> > > >>>>>>>>>>>>>> This reverts commit 0eee35bdfa3b472cc986ecc6ad76293fdcda59e2 as it
> > > >>>>>>>>>>>>>> breaks all bluetooth connections on my machine.
> > > >>>>>>>>>>>>>> 
> > > >>>>>>>>>>>>>> Cc: Marcel Holtmann <marcel@holtmann.org>
> > > >>>>>>>>>>>>>> Cc: Sathish Narsimman <sathish.narasimman@intel.com>
> > > >>>>>>>>>>>>>> Fixes: 0eee35bdfa3b ("Bluetooth: Update resolving list when updating whitelist")
> > > >>>>>>>>>>>>>> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > > >>>>>>>>>>>>>> ---
> > > >>>>>>>>>>>>>> net/bluetooth/hci_request.c | 41 ++-----------------------------------
> > > >>>>>>>>>>>>>> 1 file changed, 2 insertions(+), 39 deletions(-)
> > > >>>>>>>>>>>>>> 
> > > >>>>>>>>>>>>>> This has been bugging me for since 5.9-rc1, when all bluetooth devices
> > > >>>>>>>>>>>>>> stopped working on my desktop system.  I finally got the time to do
> > > >>>>>>>>>>>>>> bisection today, and it came down to this patch.  Reverting it on top of
> > > >>>>>>>>>>>>>> 5.9-rc7 restored bluetooth devices and now my input devices properly
> > > >>>>>>>>>>>>>> work.
> > > >>>>>>>>>>>>>> 
> > > >>>>>>>>>>>>>> As it's almost 5.9-final, any chance this can be merged now to fix the
> > > >>>>>>>>>>>>>> issue?
> > > >>>>>>>>>>>>> 
> > > >>>>>>>>>>>>> can you be specific what breaks since our guys and I also think the
> > > >>>>>>>>>>>>> ChromeOS guys have been testing these series of patches heavily.
> > > >>>>>>>>>>>> 
> > > >>>>>>>>>>>> My bluetooth trackball does not connect at all.  With this reverted, it
> > > >>>>>>>>>>>> all "just works".
> > > >>>>>>>>>>>> 
> > > >>>>>>>>>>>> Same I think for a Bluetooth headset, can check that again if you really
> > > >>>>>>>>>>>> need me to, but the trackball is reliable here.
> > > >>>>>>>>>>>> 
> > > >>>>>>>>>>>>> When you run btmon does it indicate any errors?
> > > >>>>>>>>>>>> 
> > > >>>>>>>>>>>> How do I run it and where are the errors displayed?
> > > >>>>>>>>>>> 
> > > >>>>>>>>>>> you can do btmon -w trace.log and just let it run like tcdpump.
> > > >>>>>>>>>> 
> > > >>>>>>>>>> Ok, attached.
> > > >>>>>>>>>> 
> > > >>>>>>>>>> The device is not connecting, and then I open the gnome bluetooth dialog
> > > >>>>>>>>>> and it scans for devices in the area, but does not connect to my
> > > >>>>>>>>>> existing devices at all.
> > > >>>>>>>>>> 
> > > >>>>>>>>>> Any ideas?
> > > >>>>>>>>> 
> > > >>>>>>>>> the trace file is from -rc7 or from -rc7 with this patch reverted?
> > > >>>>>>>>> 
> > > >>>>>>>>> I asked, because I see no hint that anything goes wrong. However I have a suspicion if you bisected it to this patch.
> > > >>>>>>>>> 
> > > >>>>>>>>> diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c
> > > >>>>>>>>> index e0269192f2e5..94c0daa9f28d 100644
> > > >>>>>>>>> --- a/net/bluetooth/hci_request.c
> > > >>>>>>>>> +++ b/net/bluetooth/hci_request.c
> > > >>>>>>>>> @@ -732,7 +732,7 @@ static int add_to_white_list(struct hci_request *req,
> > > >>>>>>>>>             return -1;
> > > >>>>>>>>> 
> > > >>>>>>>>>     /* White list can not be used with RPAs */
> > > >>>>>>>>> -       if (!allow_rpa && !use_ll_privacy(hdev) &&
> > > >>>>>>>>> +       if (!allow_rpa &&
> > > >>>>>>>>>         hci_find_irk_by_addr(hdev, &params->addr, params->addr_type)) {
> > > >>>>>>>>>             return -1;
> > > >>>>>>>>>     }
> > > >>>>>>>>> @@ -812,7 +812,7 @@ static u8 update_white_list(struct hci_request *req)
> > > >>>>>>>>>             }
> > > >>>>>>>>> 
> > > >>>>>>>>>             /* White list can not be used with RPAs */
> > > >>>>>>>>> -               if (!allow_rpa && !use_ll_privacy(hdev) &&
> > > >>>>>>>>> +               if (!allow_rpa &&
> > > >>>>>>>>>                 hci_find_irk_by_addr(hdev, &b->bdaddr, b->bdaddr_type)) {
> > > >>>>>>>>>                     return 0x00;
> > > >>>>>>>>>             }
> > > >>>>>>>>> 
> > > >>>>>>>>> 
> > > >>>>>>>>> If you just do the above, does thing work for you again?
> > > >>>>>>>> 
> > > >>>>>>>> Corrupted white-space issues aside, yes, it works!
> > > >>>>>>> 
> > > >>>>>>> I just pasted it from a different terminal ;)
> > > >>>>>>> 
> > > >>>>>>>> I am running 5.9-rc8 with just this change on it and my tracball works
> > > >>>>>>>> just fine.
> > > >>>>>>>> 
> > > >>>>>>>>> My suspicion is that the use_ll_privacy check is the wrong one here. It only checks if hardware feature is available, not if it is also enabled.
> > > >>>>>>>> 
> > > >>>>>>>> How would one go about enabling such a hardware feature if they wanted
> > > >>>>>>>> to?  :)
> > > >>>>>>> 
> > > >>>>>>> I need to understand what is going wrong for you. I have a suspicion,
> > > >>>>>>> but first I need to understand what kind of device you have. I hope
> > > >>>>>>> the trace file is enough.
> > > >>>>>> 
> > > >>>>>> If you need any other information, just let me know, this is a USB
> > > >>>>>> Bluetooth controller from Intel:
> > > >>>>>> 
> > > >>>>>> 	$ lsusb | grep Blue
> > > >>>>>> 	Bus 009 Device 002: ID 8087:0029 Intel Corp. AX200 Bluetooth
> > > >>>>>> 
> > > >>>>>> And the output of usb-devices for it:
> > > >>>>>> 	T:  Bus=09 Lev=01 Prnt=01 Port=04 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
> > > >>>>>> 	D:  Ver= 2.01 Cls=e0(wlcon) Sub=01 Prot=01 MxPS=64 #Cfgs=  1
> > > >>>>>> 	P:  Vendor=8087 ProdID=0029 Rev=00.01
> > > >>>>>> 	C:  #Ifs= 2 Cfg#= 1 Atr=e0 MxPwr=100mA
> > > >>>>>> 	I:  If#=0x0 Alt= 0 #EPs= 3 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> > > >>>>>> 	I:  If#=0x1 Alt= 0 #EPs= 2 Cls=e0(wlcon) Sub=01 Prot=01 Driver=btusb
> > > >>>>> 
> > > >>>>> I already figured out that it is one of our controllers. The trace file gives it away.
> > > >>>>> 
> > > >>>>> So my suspicion is that the device you want to connect to uses RPA (aka random addresses). And we added support for resolving them in the firmware. Your hardware does support that, but the host side is not fully utilizing it and thus your device is filtered out.
> > > >>>> 
> > > >>>> Dude, get an email client that line-wraps :)
> > > >>>> 
> > > >>>>> If I am not mistaken, then the use_ll_privacy() check in these two specific places need to be replaced with LL Privacy Enabled check. And then the allow_rpa condition will do its job as expected.
> > > >>>>> 
> > > >>>>> We can confirm this if you send me a trace with the patch applied.
> > > >>>> 
> > > >>>> Want me to disconnect the device and then reconnect it using
> > > >>>> bluetootctl?  I'll go do that now...
> > > >>>> 
> > > >>>> Ok, it's attached, I did:
> > > >>>> 
> > > >>>> $ bluetoothctl disconnect F1:85:91:79:73:70
> > > >>>> Attempting to disconnect from F1:85:91:79:73:70
> > > >>>> [CHG] Device F1:85:91:79:73:70 ServicesResolved: no
> > > >>>> Successful disconnected
> > > >>>> 
> > > >>>> And then the gnome bluetooth daemon (or whatever it has) reconnected it
> > > >>>> automatically, so you can see the connection happen, and some movements
> > > >>>> in the log.
> > > >>>> 
> > > >>>> If there's anything else you need, just let me know.
> > > >>> 
> > > >>> so the trace file indicates that you are using static addresses and not RPAs. Now I am confused.
> > > >>> 
> > > >>> What is the content of /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys?
> > > >> 
> > > >> f1:85:91:79:73:70 (type 1) f02567096e8537e5dac1cadf548fa750 00:00:00:00:00:00
> > > > 
> > > > I rebooted, and the same value was there.
> > > > 
> > > >>> The only way I can explain this if you have an entry in that file, but the device is not using it.
> > > >>> 
> > > >>> If you have btmgmt (from bluez.git) you can try "./tools/btmgmt irks” to clear that list and try again.
> > > >> 
> > > >> Ok, I did that, and reconnected, this is still with the kernel that has
> > > >> the patch.  Want me to reboot to a "clean" 5.9-rc8?
> > > > 
> > > > I rebooted into a clean 5.9-rc8 and the device does not connect.
> > > > 
> > > > So I did the following to trace this:
> > > > 
> > > > $ sudo btmgmt irks
> > > > Identity Resolving Keys successfully loaded
> > > > $ sudo cat /sys/kernel/debug/bluetooth/hci0/identity_resolving_keys
> > > > $ bluetoothctl connect F1:85:91:79:73:70
> > > > Attempting to connect to F1:85:91:79:73:70
> > > > Failed to connect: org.bluez.Error.Failed
> > > > 
> > > > and ran another btmon session to see this, it is attached.
> > > 
> > > this is confusing and makes no sense :(
> > > 
> > > What is the content of debug/bluetooth/hci0/whitelist and
> > 
> > # cat white_list
> > f1:85:91:79:73:70 (type 1)
> > 
> > > debug/bluetooth/hci0/device_list?
> > 
> > # cat device_list
> > 2c:41:a1:4d:f2:2c (type 0)
> > f1:85:91:79:73:70 (type 1) 3
> > 
> > > The only way I can explain this is that somehow the whitelist filter doesn’t
> > > get programmed correctly and thus the scan will not find your device. Why
> > > this points to use_ll_privacy() is totally unclear to me.
> > > 
> > > Btw. reboots won’t help since bluetoothd will restore from settings. You
> > > need to go into the files in /var/lib/bluetooth/ and look for an entry of
> > > IdentityResolvingKey for your device and remove it and then restart
> > > bluetoothd.
> > 
> > I see that entry in there, let me remove it...
> > 
> > > You can run btmon and will even show you what bluetoothd loads during start.
> > > 
> > > Can you try to do systemctl stop bluetooth, then start btmon and then
> > > systemctl start bluetooth. It should reprogram the controller and I could
> > > see the complete trace on how it sets up your hardware.
> > 
> > Ok, I remove the entry for IdentityResolvingKey and restarted bluetoothd
> > and now it works on a clean 5.9-rc8!
> > 
> > I'll stop it again and run the monitor and attach it below when it
> > starts back up.
> > 
> > Ah, I did just that, and it did not connect this time.  Attached is the
> > trace.  No IdentityResolvingKey entries anywhere...
> > 
> > > If this really breaks for your, it should have been broken for weeks for
> > > everybody. So this is the part that is confusing to me. And my original
> > > suspicion turned out to be wrong.
> > 
> > Some bluetoothd interaction?
> 
> Ok, rebooting to 5.9-rc8 again, all works fine.  Restarting bluetoothd a
> few times, and then it stops working on the 2nd restart.
> 
> Logging out of GNOME and then back in, it's working again.
> 
> Ugh.  Don't know what to say now, but 5.9-rc8 is working for me.  I
> guess.  Watch out for this with users when 5.9 is released if they end
> up with the same problem.
> 
> Let me do a jump back to 5.8 and then to 5.9 and see if that changes
> anything...

And in 5.8.14 the "restart bluetoothd a bunch of times causes problems"
is the same thing here, and logging out and then back into GNOME solves
it.

So that's not 5.9-rc specific.

Anything else you want me to try?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2020-10-07 13:43 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-03 13:54 [PATCH] Revert "Bluetooth: Update resolving list when updating whitelist" Greg Kroah-Hartman
2020-10-03 15:51 ` Marcel Holtmann
2020-10-03 16:07   ` Greg Kroah-Hartman
2020-10-03 18:33     ` Marcel Holtmann
2020-10-04 10:51       ` Greg Kroah-Hartman
2020-10-04 10:53         ` Greg Kroah-Hartman
2020-10-04 12:17         ` Bastien Nocera
2020-10-04 13:18           ` Greg Kroah-Hartman
2020-10-04 13:23             ` Bastien Nocera
2020-10-05  8:29               ` Greg Kroah-Hartman
2020-10-04 16:59         ` Marcel Holtmann
2020-10-05  8:36           ` Greg Kroah-Hartman
2020-10-05 12:19             ` Marcel Holtmann
2020-10-05 12:40               ` Greg Kroah-Hartman
2020-10-05 15:44                 ` Marcel Holtmann
2020-10-05 16:11                   ` Greg Kroah-Hartman
2020-10-05 17:14                     ` Marcel Holtmann
2020-10-05 17:38                       ` Greg Kroah-Hartman
2020-10-05 18:02                         ` Greg Kroah-Hartman
2020-10-05 18:58                           ` Marcel Holtmann
2020-10-07 13:23                             ` Greg Kroah-Hartman
2020-10-07 13:40                               ` Greg Kroah-Hartman
2020-10-07 13:43                                 ` Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.