JLChen
2021-11-25 dd31df23c4a4b0ab5357014bf822a3704cf21621
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
!<arch>
#1/20           0           0     0     100644  2948      `
__.SYMDEFÀEÈ qÈ È  È .8AÝ8Aµ8A•8A
8Aèš§šÐšš³ššZšWš0š’š}šÊPË\PˉPËÁPËÿPË6PËrPË©PËáPËPË.PËgPˆP˨PË<PËPËMPːPËÔPËõPË"PËPPË|P˱PËîPË,PËGPËnPË–P˼PËP      ,      ï        ˆ     ïm     ï¨    _OBJC_CLASS_$_HDLSiriSceneModel_OBJC_IVAR_$_HDLSiriSceneModel._name_OBJC_IVAR_$_HDLSiriSceneModel._userSceneId_OBJC_METACLASS_$_HDLSiriSceneModel_OBJC_CLASS_$_HDLRunSceneIntent_OBJC_CLASS_$_HDLRunSceneIntentResponse_OBJC_IVAR_$_HDLRunSceneIntentResponse._code_OBJC_METACLASS_$_HDLRunSceneIntent_OBJC_METACLASS_$_HDLRunSceneIntentResponse_OBJC_CLASS_$_HDLSiriSceneListCell_OBJC_IVAR_$_HDLSiriSceneListCell._bgView_OBJC_IVAR_$_HDLSiriSceneListCell._model_OBJC_IVAR_$_HDLSiriSceneListCell._shortcutButton_OBJC_IVAR_$_HDLSiriSceneListCell._titleLabel_OBJC_METACLASS_$_HDLSiriSceneListCell__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_LABEL_PROTOCOL_$_NSObject__OBJC_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_PROTOCOL_$_NSObject___clang_at_available_requires_core_foundation_framework_HDLSiriSceneListCellIdentifier_OBJC_CLASS_$_HDLSiriSceneListViewController_OBJC_IVAR_$_HDLSiriSceneListViewController._dataSource_OBJC_IVAR_$_HDLSiriSceneListViewController._siriShortcutList_OBJC_IVAR_$_HDLSiriSceneListViewController._tableView_OBJC_IVAR_$_HDLSiriSceneListViewController._tableViewStyle_OBJC_IVAR_$_HDLSiriSceneListViewController._titleName_OBJC_IVAR_$_HDLSiriSceneListViewController._topBarView_OBJC_METACLASS_$_HDLSiriSceneListViewController__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutViewControllerDelegate__OBJC_LABEL_PROTOCOL_$_INUIEditVoiceShortcutViewControllerDelegate__OBJC_LABEL_PROTOCOL_$_NSObject__OBJC_LABEL_PROTOCOL_$_UIScrollViewDelegate__OBJC_LABEL_PROTOCOL_$_UITableViewDataSource__OBJC_LABEL_PROTOCOL_$_UITableViewDelegate__OBJC_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_PROTOCOL_$_INUIAddVoiceShortcutViewControllerDelegate__OBJC_PROTOCOL_$_INUIEditVoiceShortcutViewControllerDelegate__OBJC_PROTOCOL_$_NSObject__OBJC_PROTOCOL_$_UIScrollViewDelegate__OBJC_PROTOCOL_$_UITableViewDataSource__OBJC_PROTOCOL_$_UITableViewDelegate___block_descriptor_48_e8_32s40s_e29_v24?0"NSArray"8"NSError"16l___block_descriptor_56_e8_32s40s48s_e5_v8?0l___clang_at_available_requires_core_foundation_framework___copy_helper_block_e8_32s40s___copy_helper_block_e8_32s40s48s___destroy_helper_block_e8_32s40s___destroy_helper_block_e8_32s40s48s_OBJC_CLASS_$_TopBarView_OBJC_IVAR_$_TopBarView._backButton_OBJC_IVAR_$_TopBarView._titleLabel_OBJC_METACLASS_$_TopBarView_OBJC_CLASS_$_HDLSceneSiri_OBJC_METACLASS_$_HDLSceneSiri#1/28           0           0     0     100644  13620     `
HDLSiriSceneModel.oÏúíþ è ØU#U#__text__TEXTX`+€__objc_classname__TEXTX`__objc_const__DATAp€x+__objc_data__DATAðPø    ˆ,__objc_methname__TEXT@“H
__objc_methtype__TEXTÓ'Û
__objc_ivar__DATAü __objc_classlist__DATA È,__bitcode__LLVM __cmdline__LLVM __objc_imageinfo__DATA)1__debug_loc__DWARF1…9__debug_abbrev__DWARF¶T¾__debug_info__DWARF
 Ð,__debug_str__DWARF#Ÿ+"__apple_names__DWARFÂ8Ê%__apple_objc__DWARFúL'__apple_namespac__DWARFF$N'__apple_types__DWARFjr'__compact_unwind__LDp  x(-__debug_line__DWARF!E)(-% 0-4p0¨ P**.-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundation€R€R€R€R€R€RôO¾©ý{©ýC‘óª@‘€Ò”`"‘€Òý{A©ôO¨HDLSiriSceneModel…(( „userSceneIdsetUserSceneId:namesetName:.cxx_destruct_userSceneId_nameuserSceneIdT@"NSString",C,N,V_userSceneIdnameT@"NSString",C,N,V_name@16@0:8v24@0:8@16v16@0:8@"NSString"-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLSiriSceneModel.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriSceneModel.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1637828650364117851-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriSceneModel.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@(8P8TcTX£PŸ(@Q@X£QŸ%‚|ïáå ì : ; æ I8 €„èI: ; ë  I: ; 8 2  : ; æ I: ; I    <
€„èI: ; ë $> |€| : ; .ç@dz: ; 'I4áI4.ç@dz: ; '4áI.@dz: ; '4áI4&II/šX\ uŒ¡ hÅ¡hÊ¡ סn5wŒ8—{
œ    ¦˜cu
¡ÃiΨ ³ Ýè% Õ o» ¡PƒûQˆ o6Ü PƒûQˆRŒ¡ ou¡PƒûQˆ o¥+PƒûQˆRÅ¡(0màR
ƒûLˆ3    ‘Apple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLSiriSceneModel.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriHDLSiriSceneModelNSObjectisaClassobjc_classuserSceneIdNSStringlengthNSUIntegerlong unsigned intname_userSceneId_nameFoundation"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework-[HDLSiriSceneModel userSceneId]-[HDLSiriSceneModel setUserSceneId:]setUserSceneId:-[HDLSiriSceneModel name]-[HDLSiriSceneModel setName:]setName:-[HDLSiriSceneModel .cxx_destruct].cxx_destructself_cmdSELobjc_selectorHSAH
 
ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ    ,ÑP&Œ°ù#§ŸAË·8¸F ›|eEa<éýòu´ßNc½˜¨¸ÈØèø(IŒRÇX+ŒÜÅXuÇ»éŒéHSAH óê]U,\éXŒÇHSAH ÿÿÿÿHSAH ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿóê]Uéqy£)ˆ »Nø =ŸT,=pó6½|5û|¢µÈÛî\3¨Ã{Œnu˜¦³Î$    (0Aû /Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/./Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/HeadersHDLSceneSiriHDLSiriSceneModel.mNSObject.hNSObjCRuntime.hNSString.hHDLSiriSceneModel.hHDLSiriSceneModel.m     )
º)
ƒ)
º)
~
ò T3-@3-$2-1-2-1-x hXPH 0( øð+àØÐ,À¸°¨ ˜ˆ€xph`XP H!800.(-     0//*ȍYê'€`@ h¤ã ŠÅ g(,X>XôpMp¼ðSjž@Q@€Ó(ÓLÜÛ¤\†ahjJ湸bü,xîu…‹8‹9—ú¶Â»f€)¨DŽ&    »    
‡
n )2p å–åüð4KÒu_objc_getProperty_objc_setProperty_nonatomic_copy_OBJC_CLASS_$_NSObject_OBJC_METACLASS_$_NSObject__OBJC_$_PROP_LIST_HDLSiriSceneModel__OBJC_$_INSTANCE_VARIABLES_HDLSiriSceneModel__OBJC_$_INSTANCE_METHODS_HDLSiriSceneModel_OBJC_CLASS_$_HDLSiriSceneModel_OBJC_METACLASS_$_HDLSiriSceneModel__OBJC_CLASS_RO_$_HDLSiriSceneModel__OBJC_METACLASS_RO_$_HDLSiriSceneModel_objc_storeStrongl_llvm.cmdline_OBJC_IVAR_$_HDLSiriSceneModel._namel_llvm.embedded.module__objc_empty_cache_OBJC_IVAR_$_HDLSiriSceneModel._userSceneIdl_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME_-[HDLSiriSceneModel .cxx_destruct]-[HDLSiriSceneModel name]-[HDLSiriSceneModel userSceneId]-[HDLSiriSceneModel setName:]-[HDLSiriSceneModel setUserSceneId:]ltmp9l_OBJC_METH_VAR_TYPE_.9ltmp8l_OBJC_METH_VAR_NAME_.8ltmp7l_OBJC_METH_VAR_TYPE_.7ltmp6l_OBJC_METH_VAR_NAME_.6ltmp5l_OBJC_METH_VAR_NAME_.5ltmp4l_OBJC_METH_VAR_NAME_.4ltmp3l_OBJC_PROP_NAME_ATTR_.13l_OBJC_METH_VAR_TYPE_.3ltmp2l_OBJC_PROP_NAME_ATTR_.12l_OBJC_METH_VAR_NAME_.2ltmp1ltmp11l_OBJC_PROP_NAME_ATTR_.11l_OBJC_CLASS_NAME_.1ltmp0ltmp10l_OBJC_METH_VAR_NAME_.10l_OBJC_LABEL_CLASS_$#1/28           0           0     0     100644  22692     `
HDLRunSceneIntent.oÏúíþ  ˆ     Èá=¨    á=__text__TEXT|¨    G(€__objc_classname__TEXT|,$ __objc_const__DATA¨@P ÐH'__objc_data__DATA蠐 J__objc_methname__TEXTˆ0__objc_superrefs__DATA8ˆJ__objc_selrefs__DATA˜(@J__objc_ivar__DATAÀh__objc_classrefs__DATAÈp¸J__objc_methtype__TEXTÐ.x__objc_classlist__DATA¨ÀJ__bitcode__LLVM¸__cmdline__LLVM¹__objc_imageinfo__DATA)Ñ"__debug_loc__DWARF1çÙ"__debug_abbrev__DWARF´À%__debug_info__DWARFÌvt'ÐJ__debug_str__DWARFB& ê/__apple_names__DWARFß28‡<__apple_objc__DWARF4L¿=__apple_namespac__DWARFc4$ >__apple_types__DWARF‡4¾/>__compact_unwind__LDH9 ðBK__debug_line__DWARFè9ùC(K% .0K@pKPpP P??D - -frameworkIntents-(-frameworkCoreGraphics-(-frameworkCoreLocation-0-frameworkUserNotifications-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationÿÑöW©ôO©ý{©ýÑôªõªàª”óª@ùõ#©@ùà‘”õª ´€¹´j(ø@ùàªâª”ઔàªý{C©ôOB©öWA©ÿ‘À_ÖôO¾©ý{©ýC‘ઐ@ù”ôªàª”@ù‚€R€Ò”óª@ù⪔ઔàªý{A©ôO¨ôO¾©ý{©ýC‘ઐ@ù”ôªàª”@ù¢€R€Ò”óª@ù⪔ઔàªý{A©ôO¨€¹hhøÀ_֐€¹h(øÀ_ÖHDLRunSceneIntentHDLRunSceneIntentResponse((€(( €sceneNameT@"NSString",C,D,NsceneIdinitsetUserActivity:initWithCode:userActivity:setSceneName:setErrorMessage:successIntentResponseWithSceneName:failureIntentResponseWithErrorMessage:codesetCode:_codecodeTq,N,V_codeerrorMessagesuccessMessage@24@0:8@16@32@0:8q16@24q16@0:8v24@0:8q16q-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLRunSceneIntent.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLRunSceneIntent.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1637828650364117851-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLRunSceneIntent.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@P(e(H0ŸH„e$Q$Œ£QŸ$R$(£RŸ(€d S $PŒœPœô£PŸŒ¨Q¨ô£QŸŒœRœ¨PÌðcôP\£PŸôQ\£QŸôRP4Xc\hPhl£PŸ%‚|ïáå I : ; ( I: ; $> (ì : ; æ I8     €„èI: ; ë
 : ; æ I: ; 8 2 I <€„èI: ; éë&&II  I8 |€|: ; .@dz: ; 'IáI4: ; I4: ; I.ç@dz: ; 'I4áI4.ç@dz: ; '4áIr/š|q\=¶Ù,Qv­ä|z „ºÐ 8d‹µÞ  @Åî ù@ö    ÿsh        sh
RG    ysa    ”sa    ¦sh    À• L    Õ #h
[5 d^8ih$ n n x
„cG    ºiƒÐ ¥
æ GI    ò    ¸L    ÷    s_h    
s`h    ÿsah 
¸
+ G    <#h (
I    G    Xs     !    es    $(    k%    ((    ‡G    /(    ¢i    3         ·{    7(    c{    ;(    oa    >(    ³G    A(    ¼i    E         ØŽ    I    ðs    N(    i    `        0    i    cB        V    i    fp        Œ    i    h¢            º    ­    j( *
t
G    º
 L
œ G    º t¬ N± €
Â(G    ÈÙS!    èsU!    ÷sV!    {W!    {X!    s\!    !s]!    3sa!    8b!    ¥sc!    ªsd!    ³se!    ¸sf!    Ásg!    Ñsh!    ×si!    äim    õuiw     {}!    0{’! <s G{ P` Y` Þ
Û FG    º H    â N  
=)ó    \<    f!=    †(>    —/?    ¹6@    Æ=A    ä|B    îÅC    DD    KE    IRF    ZYG    miH    wqI    „ºJ    ™sL!
F G    N Wx‘ªÂ×2Tf f
~G    …ƒY¤—á œädisÏ        3\=
!
^
    ÃŒmôñ
Jr S]w X–ò    ¸â<#ŒhmJD &Jr kQw XŠÿ&sÀŽ 'Sôhm © ,Jãr kw XU÷    ,s‹Ž -S\oö ¸®r pQw Xlo(6 Pr pQw XRò    ¸Že µa| f € ^SApple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLRunSceneIntent.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriHDLRunSceneIntentResponseCodeNSIntegerlong intHDLRunSceneIntentResponseCodeUnspecifiedHDLRunSceneIntentResponseCodeReadyHDLRunSceneIntentResponseCodeContinueInAppHDLRunSceneIntentResponseCodeInProgressHDLRunSceneIntentResponseCodeSuccessHDLRunSceneIntentResponseCodeFailureHDLRunSceneIntentResponseCodeFailureRequiringAppLaunchHDLRunSceneIntentResponseCodeErrorINShortcutAvailabilityOptionsNSUIntegerlong unsigned intINShortcutAvailabilityOptionSleepMindfulnessINShortcutAvailabilityOptionSleepJournalingINShortcutAvailabilityOptionSleepMusicINShortcutAvailabilityOptionSleepPodcastsINShortcutAvailabilityOptionSleepReadingINShortcutAvailabilityOptionSleepWrapUpYourDayINShortcutAvailabilityOptionSleepYogaAndStretchingHDLRunSceneIntentINIntentNSObjectisaClassobjc_classidentifierNSStringlengthintentDescriptionsuggestedInvocationPhraseshortcutAvailabilitydonationMetadataINIntentDonationMetadatasceneNamesceneIdHDLRunSceneIntentResponseINIntentResponseuserActivityNSUserActivityactivityTypetitleuserInfoNSDictionarycountrequiredUserInfoKeysNSSetneedsSaveBOOL_BoolwebpageURLNSURLdataRepresentationNSDatabytesabsoluteStringrelativeStringbaseURLabsoluteURLschemeresourceSpecifierhostportNSNumberNSValueobjCTypecharcharValueunsignedCharValueunsigned charshortValueshortunsignedShortValueunsigned shortintValueintunsignedIntValueunsigned intlongValueunsignedLongValuelongLongValuelong long intunsignedLongLongValuelong long unsigned intfloatValuefloatdoubleValuedoubleboolValueintegerValueunsignedIntegerValuestringValueuserpasswordpathfragmentparameterStringqueryrelativePathhasDirectoryPathfileSystemRepresentationfileURLisFileURLstandardizedURLfilePathURL_urlString_baseURL_clients_reservedreferrerURLexpirationDateNSDatetimeIntervalSinceReferenceDateNSTimeIntervalkeywordssupportsContinuationStreamsdelegateidobjc_objecttargetContentIdentifiereligibleForHandoffisEligibleForHandoffeligibleForSearchisEligibleForSearcheligibleForPublicIndexingisEligibleForPublicIndexingeligibleForPredictionisEligibleForPredictionpersistentIdentifierNSUserActivityPersistentIdentifiercodeerrorMessagesuccessMessage_codeIntents"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.framework-[HDLRunSceneIntentResponse initWithCode:userActivity:]initWithCode:userActivity:+[HDLRunSceneIntentResponse successIntentResponseWithSceneName:]successIntentResponseWithSceneName:+[HDLRunSceneIntentResponse failureIntentResponseWithErrorMessage:]failureIntentResponseWithErrorMessage:-[HDLRunSceneIntentResponse code]-[HDLRunSceneIntentResponse setCode:]setCode:instancetypeself_cmdSELobjc_selectorintentResponseHSAH
 
ÿÿÿÿÿÿÿÿ    ÿÿÿÿ¦J‘„€ ƒÏWì°ÜÖòr\ùç<ēZïÊÄ=Ûn1û2 €>•|˜¨¸ÈØèø(\  ÙD -) ש ƒ6 í ƒ… -ñ
×ò    ÙHSAH v›„,×-ƒÙHSAH ÿÿÿÿHSAH( ÿÿÿÿ ÿÿÿÿÿÿÿÿ"&<Ž•\,8Ú½†ßi›‚|v›„›áqc“å? §ËùYo± =pó6éqy£Í“<²­{ÕûŽöò#’NÏàX+0€ˆ  쏠[=ùÕðZt¾\1Ÿ±`MÖÃ=ŸT,2xYri± »Nø ÿ\Šð/Ü v´dMÖÃ)ˆ ùp–~½|5ûÒáú&Ä¥"²_b4šb‡Îc •|ë¬LɸËÞñ*=Pcv‰œ¯ÂÕèû!4Gat‡š­ÀÚí&9L_r…˜«t*e J+¬iµTR$Fóx!$€„xîº×=$2K$RöI(=Â6$„|$fY$‘($zq\3¸ÛÞ[G᎜Lh^Ѓ•±t$D$~f| XäœùÅ$@ÌÏ    ­ª/$¤ƒW$楌Œhôh\lõmû /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objcHDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.framework/Headers/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/HeadersNSObjCRuntime.hHDLRunSceneIntent.hINShortcutAvailabilityOptions.hHDLRunSceneIntent.mNSObject.hNSString.hINIntent.hINIntentDonationMetadata.hNSUserActivity.hNSDictionary.hNSSet.hobjc.hNSData.hNSURL.hNSValue.hNSDate.hINIntentResponse.hHDLRunSceneIntent.m    
(    åK‚K?æ2
óYº'J1‚uXò*‚ô2
óSº-J1‚uRò0‚iò
ò
g ºpALlA=`AL\A=XK-HN-@L-8
L4
=,L- L=J- O-L=ðK-àN-ØL-ÐLÌ=ÄL-¸L´=°J-¤O- Lœ=pN-hL-\LX=PALLA=@M-8L4=,L(= O-86(1."ðèàØ5ÐÈ4À3¸2 0˜/A€ x-p,h `+X*PH)@'"è    à%Ø&ÐÈ%À#°ˆh`XP˜(ˆI€GxHp`IXEPCH8I0D(B IFH@ ! @@?Ú„.Ø'€`@ |48(,X\LPÌд¸œ ´¸œ „ˆÜàìð»Cæu˜ƒ {Œ    Èï¨|°¼ôá¸!\le|½| ¨Ž¨ èCˆˆ¢’L¥ðjI  Ð­Ð˜™Àà²]    È+øÞE쌎3ý&
Ч
ÐÇ!`u˜j
ÛHÖ
éŸMc
ñÁà,VÁ
üZ0k\a¦mIz-XÚ ÿ …  , õ À)cH9&õ8.ÀFè`¶¥ÍÄèi[øç__OBJC_$_PROP_LIST_HDLRunSceneIntent_OBJC_CLASS_$_HDLRunSceneIntent_OBJC_METACLASS_$_HDLRunSceneIntent__OBJC_CLASS_RO_$_HDLRunSceneIntent__OBJC_METACLASS_RO_$_HDLRunSceneIntent_OBJC_CLASS_$_INIntent_OBJC_METACLASS_$_INIntent_OBJC_METACLASS_$_NSObject_objc_retain_objc_autoreleaseReturnValue__OBJC_$_PROP_LIST_HDLRunSceneIntentResponse__OBJC_$_INSTANCE_VARIABLES_HDLRunSceneIntentResponse__OBJC_$_CLASS_METHODS_HDLRunSceneIntentResponse__OBJC_$_INSTANCE_METHODS_HDLRunSceneIntentResponse_OBJC_CLASS_$_HDLRunSceneIntentResponse_OBJC_METACLASS_$_HDLRunSceneIntentResponse__OBJC_CLASS_RO_$_HDLRunSceneIntentResponse__OBJC_METACLASS_RO_$_HDLRunSceneIntentResponse_OBJC_CLASS_$_INIntentResponse_OBJC_METACLASS_$_INIntentResponse_objc_releasel_llvm.cmdlinel_llvm.embedded.module__objc_empty_cache_OBJC_IVAR_$_HDLRunSceneIntentResponse._code_objc_msgSend_objc_alloc_OBJC_SELECTOR_REFERENCES_l_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME_l_OBJC_CLASSLIST_SUP_REFS_$__OBJC_CLASSLIST_REFERENCES_$_-[HDLRunSceneIntentResponse code]-[HDLRunSceneIntentResponse initWithCode:userActivity:]+[HDLRunSceneIntentResponse successIntentResponseWithSceneName:]+[HDLRunSceneIntentResponse failureIntentResponseWithErrorMessage:]-[HDLRunSceneIntentResponse setCode:]ltmp9l_OBJC_METH_VAR_NAME_.19l_OBJC_METH_VAR_NAME_.9ltmp8l_OBJC_METH_VAR_TYPE_.18_OBJC_SELECTOR_REFERENCES_.8ltmp7l_OBJC_METH_VAR_NAME_.17l_OBJC_METH_VAR_NAME_.7ltmp6l_OBJC_METH_VAR_TYPE_.16_OBJC_SELECTOR_REFERENCES_.6ltmp5l_OBJC_METH_VAR_NAME_.15l_OBJC_METH_VAR_NAME_.5ltmp4l_OBJC_PROP_NAME_ATTR_.24ltmp14l_OBJC_METH_VAR_TYPE_.14_OBJC_SELECTOR_REFERENCES_.4ltmp3l_OBJC_PROP_NAME_ATTR_.23ltmp13l_OBJC_METH_VAR_NAME_.13l_OBJC_METH_VAR_NAME_.3_objc_msgSendSuper2ltmp2l_OBJC_PROP_NAME_ATTR_.22ltmp12l_OBJC_METH_VAR_NAME_.12l_OBJC_PROP_NAME_ATTR_.2ltmp1l_OBJC_PROP_NAME_ATTR_.21ltmp11l_OBJC_CLASS_NAME_.11l_OBJC_PROP_NAME_ATTR_.1ltmp0l_OBJC_METH_VAR_TYPE_.20ltmp10_OBJC_SELECTOR_REFERENCES_.10l_OBJC_LABEL_CLASS_$#1/28           0           0     0     100644  78076     `
HDLSiriSceneListCell.oÏúíþ    ¨        æ@     æ__text__TEXT@    @ Pó €__literal8__TEXT@     €__objc_data__DATA`    P Pü__objc_superrefs__DATA°    ðü__objc_methname__TEXT¸    Gø__objc_selrefs__DATA(@˜ü%__objc_classrefs__DATA(@hÀý__objc_ivar__DATAh¨__cstring__TEXTx¸__cfstring__DATA Ðþ__objc_classname__TEXT°Cð__objc_methtype__TEXTóÁ3__objc_const__DATA¸0øþ—__data__DATAèÀ(&È    __objc_protolist__DATA¨è& __objc_classlist__DATA¸ø& __bitcode__LLVMÀ'__cmdline__LLVMÁ!'__objc_imageinfo__DATAâ,":__debug_loc__DWARFê,…*:__debug_abbrev__DWARFo5ίB__debug_info__DWARF=8™4}E(__debug_str__DWARFÖl¥Lz__apple_names__DWARF{¹Ä»Æ__apple_objc__DWARF?¼lÉ__apple_namespac__DWARF«¼$ëÉ__apple_types__DWARFϼÍÊ__compact_unwind__LD ÑÀàÞ˜__eh_frame__TEXT`ÓH à h__debug_line__DWARF¨Õaèâè% .ðú¨8 P×× â-(-frameworkCoreFoundation-(-frameworkIntentsUI- -frameworkIntents-(-frameworkCoreLocation- -frameworkUIKit-(-frameworkFileProvider-0-frameworkUserNotifications- -frameworkCoreText-(-frameworkQuartzCore-(-frameworkCoreImage- -frameworkImageIO-(-frameworkCoreVideo- -frameworkOpenGLES- -frameworkMetal-(-frameworkIOSurface-(-frameworkCoreGraphics-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationÿÃÑôO©ý{©ýƒ‘@ùà#©@ùà‘”óª@´@ù઀Ҕ@ùઔàªý{B©ôOA©ÿÑÀ_Öø_¼©öW©ôO©ý{©ýÑóªà@ù@ù᪔ýª”õª@ùàªáªâª”ઔà@ù᪔ýª”ôª@ùàªáª”ýª”÷ªáªâª”ઔઔàªáª”ýª”öª@ùàªáª”ýª”÷ª@ùàªáªâª”ઔઔàªáª”ýª”öª@ùઔýª”÷ªàªáªâª”ઔઔ@€R€R€R€R”@4àªáª”ýª”õª@ùઔýª”óªàªáªâª”ઔàªý{C©ôOB©öWA©ø_Ĩý{C©ôOB©öWA©ø_ĨÀ_ÖöW½©ôO©ý{©ýƒ‘󪐀¹hvø`    µ@ù”ôª@ù@ù”ýª”õª@ù”ˆøÒgžB(`@ùÈ    èÒgžfcઔhjvø`j6øàª”ઔ@ù@ù”ýª”ôª`jvø@ù⪔ઔ`jvø@ù᪔ýª”õª@ùe”ઔ`jvøáª”ýª”ôª@ù"€R”ઔ`jvøý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘󪐀¹hvø 
µ@ù”ôª@ù@ù”ýª”õª@ù”ˆøÒgž@(`@ý(a@ùˆèÒgžcdઔhjvø`j6øàª”ઔ@ù@ù@ýn N N”ýª”ôª`jvø@ù⪔ઔ@ù@ùB‘f”ýª”ôª`jvø@ù⪔ઔ`jvø@ù€Ò”`jvø@ùB€R”`jvøý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘󪐀¹huø`µ@ù”@ù€Ò”hjuø`j5øàª”`juø@ù"€R”@ù@ù”ýª”ôª@ù”ˆøÒgž@(`@ý(a`juø@ù@ý    èÒgžc”ઔ`juø@ù€R”`juøý{B©ôOA©öWèø_¼©öW©ôO©ý{©ýÑôªöªõªàª”óªàª”ôª€¹·‹àªáª”è@ù´@ùઔýª”öª@ùઔýª”÷ª@ù⪔ઔઔ4´@ù”@ù⪔@ùઔýª”öª€¹ jhø@ù⪔ઔઔàªý{C©ôOB©öWA©ø_ĨöW½©ôO©ý{©ýƒ‘ôª€¹hvø@ù”ýª”óª@ù”@ù”õª€jvø@ù”ýª”ôª@ùàªâª”ઔ@ùàªâª”@ùàªâª”@ù”@ù⪔ôªàª”ઔàªý{B©ôOA©öWè᪐€¹‹áª€¹‹áª€¹‹€¹hhøÀ_Ö᪐€¹‹ôO¾©ý{©ýC‘󪐀¹‹€Ò”€¹`‹€Ò”€¹`‹€Ò”€¹`‹€Òý{A©ôO¨ý{¿©€Ò”  ÔÀiÀÁ?ÀbÀÀb@initWithStyle:reuseIdentifier:setSelectionStyle:addAllChildViewclearColorsetBackgroundColor:contentViewbgViewaddSubview:titleLabelshortcutButtonmainScreenboundsinitWithFrame:whiteColorlayersetCornerRadius:setMasksToBounds:colorWithRed:green:blue:alpha:setTextColor:fontWithName:size:setFont:setTextAlignment:setNumberOfLines:initWithStyle:setTranslatesAutoresizingMaskIntoConstraints:setFrame:setEnabled:namesetText:getINShortcutsetShortcut:initWithIntent:inituserSceneIdsetSceneId:setSuggestedInvocationPhrase:setSceneName:isEqual:classselfperformSelector:performSelector:withObject:performSelector:withObject:withObject:isProxyisKindOfClass:isMemberOfClass:conformsToProtocol:respondsToSelector:retainreleaseautoreleaseretainCountzonehashsuperclassdescriptiondebugDescriptionhashTQ,RsuperclassT#,RdescriptionT@"NSString",R,CdebugDescriptionpresentAddVoiceShortcutViewController:forAddVoiceShortcutButton:presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:initModel:intent:setBgView:setTitleLabel:setShortcutButton:modelsetModel:.cxx_destruct_bgView_titleLabel_shortcutButton_modelbgViewT@"UIView",&,N,V_bgViewtitleLabelT@"UILabel",&,N,V_titleLabelshortcutButtonT@"INUIAddVoiceShortcutButton",&,N,V_shortcutButtonmodelT@"HDLSiriSceneModel",&,N,V_model PingFangSC-MediumÈHDLSiriSceneListCellINUIAddVoiceShortcutButtonDelegateNSObjectB24@0:8@16#16@0:8@16@0:8@24@0:8:16@32@0:8:16@24@40@0:8:16@24@32B16@0:8B24@0:8#16B24@0:8:16Vv16@0:8Q16@0:8^{_NSZone=}16@0:8B24@0:8@"Protocol"16@"NSString"16@0:8v32@0:8@16@24v32@0:8@"INUIAddVoiceShortcutViewController"16@"INUIAddVoiceShortcutButton"24v32@0:8@"INUIEditVoiceShortcutViewController"16@"INUIAddVoiceShortcutButton"24@32@0:8q16@24v16@0:8v24@0:8@16@"UIView"@"UILabel"@"INUIAddVoiceShortcutButton"@"HDLSiriSceneModel"…((  „(``-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLSiriSceneListCell.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriSceneListCell.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1637828650364117851-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriSceneListCell.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@00Ÿ0dc$Q$l£QŸ,R,l£RŸ,S,l£SŸl„P„cL£PŸLTcT`£PŸl˜Q˜`£QŸ`tPt´c´¼£PŸ`Q¬£QŸ¼ÐPÐ8c8@£PŸ¼ìQì0£QŸ@TPT4c4<£PŸ@pQp,£QŸ<`P`t£PŸthe<dQdp£QŸ<dRdt£RŸt°f<TSTldlpPp„P„àdàh£PŸp˜Q˜h£QŸœ¤PÄdeD`dhxPx|£PŸhlQl|£QŸhlRl|Q|ŒPŒ£PŸ|€Q€£QŸ|€R€Q P ¤£PŸ”Q”¤£QŸ”R”¤Q¤°P°´£PŸ´ÄPÄÈ£PŸ´¸Q¸È£QŸ´¸R¸ÈQÈØPØ,    c,    0    £PŸÈèQè0    £QŸ%‚|ïáå I : ; ( I: ; $> (ì : ; æ     I8
€„èI: ; ë I: ; 8 2  : ; æ €„èI: ; ë €„èI: ; é뀄èI: ; éë I: ;I<I  I8 €„èI: ;뀄èI: ;éë : ;  I: ; 8 &Iä  Iˆ8 'Iä  €„èI: ;ë !&"I#!I7 $$ > %I'&|€|': ; (.@dz: ; 'Iá)I4*: ; I+.@dz: ; 'á,4: ; I-.ç@dz: ; '4á.I/.ç@dz: ; 'I4á0I41.@dz: ; '4á•4/0    X_‡£¾Ùct ~Xö&6XzXŸ¯ÃÙîë [€¬Ñý&ö> IXV2r’´XÖ8ó<kX²-ÌíX z(Nq“¾Xé&2X\l† ¶ÒîX /!Deë~’ªÅëÿÿX         $    E    i    XŽ        «    Ì    ô    ë
 
V/
I
b

›
¹
XÒ
ä
 ! B Z r ‡ Ÿ µ Ì     å
ÿ  X8  Z € #©  Í Þ ð  À ë  #  7 N e X|  ‰ œ ¯ Ì â ÷  2XJ %Wj~‘ë©Çô Gqš É@Xü$$;Rj‡¦ÅXå4ùX,@A_‚!¥Íé !@@€_€}€ ž€€À€€â€€€€ü€€€€=€€€€e€€€€‡€€€€¬€€€€Ì€€€€ð€€€€€€€€    0€€€€
M€€€€ #ÄXk+µÚX(2LvžÇïëF;Uj„›²È€€ü €øëù    !?]|™ µ@р #€@H€€j€€ˆ€€¥€€Á€€ ãÿ€€<€€€xA€€€€^ÿÿÿÿXv&—½å 2XX€šºÙ÷X59e½XðAl–ëÂÐë X!6VpˆŸ»XÓ è"X;,]Š·Xäý!AXax–¸XØ2ç  X% ;= ` ~ Xš H¯ Ï è X!B!6!P!Xg!N‡!²!Ú!X"#"Q"}"¨"XÓ"ö" #G#Ñq#!‡#–#¦#Ü{#ƒ#Ñ·#Â#Ó#ä#õ#û#(H    ‚    
þ<óHH
=ì HH
=©%HH
ÊFd0HH îFóH öFì H G©%H Gd0H $Q    . ­+RZA
Ù-wfh
o.nh
„.^ qL
­.ótA
¹.øwA
¨7ì xA
%:ì yA
5:Ú#|h
s;^ L
Ÿ;ó‚H
®;ó„H
Å;ó†H
å;Þ ˆa
õ;}%‹LK-^ ŒT-N1-^ =-N <ˆ%‘A
<^ ’L
%<^ “L
><“%•L
L<ó–H
Z<“%—L
o<ó˜H
„<XšL
•<v›L
¦<YœLo-^ žw-N µ<^ ¡A
Ï<ž%£L
Ú<^ ³L  $‘    Ò
¸&C “A@Ã&^ ˜Ú&N
ó&X™L
÷&<šA ô*^ œA+^  +C
+Þ  h
,+¤L
T+'§h
n+<©L ‡+G²A '$ 9    ,
Q$Y ;A _$^ =A ‚$^ @A š$^ CA
«$p jA ˜&1 mA 3$5 <$C 8O @$0T F$Ò i w$N|$u ·$H    ,
Å$X+Ó$^ 2ë$
%^ 6     
%ë=     
 %¼ D(
;%^ S
C%^ TK%^ WS%]%^ Xe%
o%^ |
‡%^ }
Ÿ%Þ ‚!
¾%Þ ƒ!
Í%Þ !
ß%Þ Ž! ñ% & &¼  $& [& c&  j&        ! &        "Á -%    ,
5%ëã ®% c    ,
·%ë i    ü%ÿ%<$O *;&!D&å8 A ý& .    ,
' ˆ     
N'J      
W'v ’     
a'J ™     
m'v ž     
z'µ £     
Ò' °     Ø'^ µß'    è'^ ºô'    (^ Â(    
$(< Ó
/(¼ à(
9(µ ÿ     K(<
P(^      ^( 3g( <     t(‰ E(›(v O     ©( e     ¸(” k(Ý(Ÿ t()Ÿ u()     {     1)^ 8)    A)^ ›     \)^ ¤     p)ª À     …)^ É     œ)µ Ï ¿)v Õ     Ì)Ê Ú     Ú)Õ à(ù)v î     *µ ó *     ù     *^      ,* >*¼ (F*¼ (X*^ 0     h*v 6     {*µ = ‡*     B     •*‰ F     ¢*v J     ¯*à T Ë*ú ¶(à*Þ ä(å* êî*ú ö() '#2 ' #.'J#/5'‰#0U'#'#"'v#3'v#‚$'"J,'”:'# :'#A'v#G'v#À„'$„'€$’'v$–'v$š'v$ž'v$¢'v$ ¦'v$(ª'v$0®'v$8²'v$@¶'v$Hº'v$P¾'v$XÂ'v$`Æ'v$hÊ'v$pÎ'v$xÞ „( Þ Ç( Þ ð( þ© À¬)% Å·)* #Þ æ) ëº* ðõÄ*ÿ Ó*&    ,
5%ë&X?+'!, `+(    , ` z‹é&W À+    "    Åo-^     $w-N-^     %Š-N•-^     &œ-N¥-^     '°-N
½-a    )L
Ë-l    *L Ù++    ,
ò+7+H-^ +&-N1-^ +=-NK-^ +T-N+^ + +N_-^ + f-N< ,)    , ,è)"A ',ó)%A :,þ)(A J,v)+A W,    ).A k,    )1A },)4A ’,)7a Å,*):A Ò,5)=A è,@)@A û,K)CA -V)JA&!WÓ v;,•ä´aÞ ¯,*ÓØ2ò% ;š H0!BOg!N         :Ž        ‚ô-N‡ .        $.Ü,.Ü 7.½A.ÓÂÎR‚    ØN.a.öj.ö. ý Ã.;    .
Ï.Û;H
]4Û;H
n4Z;HÃ&^ ;Ú&N1-^ ;=-N
‹4¼ ; h
›4¼ ;!h
¶4N;#L
È4X;$L
Ý4|;(H46^ ;,6C
6^ ;/L
<6­;3
z7ó;9A
7^ ;@Là Õ.J    , 5'‰xA
Ý.êyA
ð.ÿ|A w2C~A ˆ2vAŽ2^ š2C
¨2¼ ŠA ¯2N‹A Ç2Y™A ô2šA 3Y¢A 3¨¦A #3³ªA ò+7®a
’3#¯A ª3^ µA Í3vÀA æ3^ ÁA
ò38Ña
4Zùaõå., úÝ. ð.-    ,
ø.ÿ-æE
/ÿ-çE
/ÿ-èE
/ÿ-éE
!/ÿ-êE
,/ÿ-ëE
6/ÿ-ìE
@/ÿ-íE
M/ÿ-îE
Y/ÿ-ïE d/-Ak/ú-”v/-—š/@-›
2-Ÿ22-¤AÝ.ê-¨A ”/        -"     /.    ,
d/.8 /!. ”/        .E ž/(0    ,
¤/ž0S!
Ä/Þ 0U!
Ó/Þ 0V!
â/@0W!
ê/@0X!
ö/Þ 0\!
ý/Þ 0]!
0Þ 0a!
0Ó0b!
L1Þ 0c!
Q1Þ 0d!
Z1Þ 0e!
_1Þ 0f!
h1Þ 0g!
x1Þ 0h!
~1Þ 0i!
‹1^ 0m
œ1Õ0uµ1^ 0w½1
Ç1@0}!
×1@0’! ã1Þ 0 î1@0 ÷1        0 2        0£ ·//F    ,
·%ë/H
¾/Í/NÒ!Ø 01)    ¸
80ß1<
B0æ1=
b0í1>
s0ô1?
•0Ü1@
ž0#1A
¯0c1B
¹0ö1C
Ë0û1D
ç0*1E
ý0    1F
1‚1G
1^ 1H
1X1I
+1ë1J
@1Þ 1L! "01     ,
*0Õ1Úß30T0m0†0Ù0 22 %2#>25K.O24’9`23@>l2îü$‚¸26dÑ2
Ñ2 
Þ2v
â2v
ç2v
î2v
+å4D,@¸ 73    ü
ˆ2vL
1)^ L
n3^ L
ƒ3!L U37    , '7An"( 38    , = 49    ,
ò+79A_ )4:/    =
D4Z:2A@ ç4<    ,
ï4|<2A@
ú4|<3A@
5|<4A@
5|<5A@
"5|<6A@
,5|<7A@
55|<8A@
@5|<9A@
J5|<:A@
T5|<;A@
`5|<<A@
m5|<=A@
y5|<>A@
…5|<?A@
5|<@A@ ·)µ<SA ›5l<VAq ›5(>    ,
£5…>7
½5>:
È5v>=
 
2>@
Î5v>C
Ò5v>D
Ø5v>E
Ý5Þ >K
ï4l>NE
5l>OE
"5l>PE
,5l>QE
55l>RE
@5l>SE
J5l>TE
`5l>UE
T5l>VE
5l>WE ”/        > /š>ö¶5=.•v"        #¦$ò5² N6?    , \6?A
h6ó?$H s6Þ ?)h
~6i ?.A
â6i ?/A
ñ6i ?0A
ü6i ?1A
7 ?2A
&7 ?3A
37× ?4A
Q7× ?5A
^7i ?6A
l7 ?7An  Œ6@@    ~   6@"    ,
à*Þ @5!
¯6@6
´6^ @7
Ç6¼ @8Ç  7@H    ~ Ü  ?7@Q    ~ ñ  ²7A    .
º7Þ Ah
¿78"AH4
¡8|AH4
{*|AH
•*‰AL
«8Œ#AL
¹8—#AL
Ç8¢#A h
ð8|A$H1-^ A%=-NÃ&^ A'Ú&N9^ A( 9N
9XA.L
%9^ A3L
?9Ä#A4L
R9vA5L
e9^ A:L
Š9Ï#A?L
œ9vAJL
´9^ ANL
Ö9^ AQL
ö9vAUL
:^ AXL=" Ä7B    ,
Ë7¼ BA@
×7Þ B5A
â7Þ B6A ë7vB7A õ7vB8A þ7vB9A 8vB:A 8vB;A 8vB<A %8vB=A -8Ô"BFAÙ" <8A    , M8Þ GA ë7vHA \8%#IA ƒ8#JA ’8úNA0#c8Cc80Cu8vCw8vCy8vC{8vC}8vC €8vC(c¥Ÿ¤\§# Ö8D    ,
é8Þ D!Õ /ô~ß# M:E    ,
g:óE3H
¿)vE7L
r:˜$E:L
¤:Ü$E=L
œ)|EBH
Ï:ç$EDh
 
;]%EIh
Ï.ÛELH
&;r%ENL
7;|ESH
C;ç$EUh
Z;vEZL
f;vE^L£$ƒ:
$ƒ: 
"Þ2v
#%8v
#ç2v
#›:v
#Y
 
Vò$ê:F÷$ .        $.Ü,.Ü 7.-%A.=%2%%||B%N.a.öj.öb% ;G    , ŠÒ
jö&ýV2Ö8G²-®% ="    ñ% î*….(A
å*,H
wD.-H
¿)v3L := 1    ¬'
¿78" šH
¹8—# ›L
Ð>‰ œL
â>Y ŸL
ô>Y  L
?Y ¡L
?^ ¤L
7?^ ¥L
S?^ ¦L
l?^ ©L
ò3e) Dh
Ù-G+ Mh
A^ PL
Ý4| RH4 ¯A¾+ SAºA^ VÂAGÌA^ YÑAG
ØAÉ+ [LÝA^ ^÷AN
BÔ+ fh
fCô- ih
³C^ nL
ÓCÞ ˆA
àC| ‰A
òC| ŠA
 
DÛ ‹A
DÛ ŒA
.DZ A
RD¢# ŽA
=ì  ‘A
¹.ø ’A
iDì  ”A C=L    . 9^ T 9NK-^ UT-N1-^ V=-N
M=ž(WL
f=©(XL =©(YA ¥=´([A«=^ \´=C¿=^ ]Ë=C Ù=¿(tA ê=á(uA
û=ì(„A:>^ †X>N
x>^ ˆL
‘>Þ Žh
™>%)A,k+Q(2‚F;Ä( ä=I    ,
5%ëIÀùñ( >     ,
å*#A +>)'A“Ó"*) ¬>J    ,
å*JH9^ J 9N
Á>Þ Jhj) †?A    ,
œ?Ú#TH
§?¥*WL
³?°*ZL
¾?»*]L
Ì?|`H
à?|cH
Ï.ÛeH
ô?ç$fh
 
@Zgh
/@^ jL
F@ç$kh
h@Þ mh
n@¢#nh
~@Æ*oh
Æ@Þ qh
Ï@¢#rh
â@Æ*sh
A˜$vL
AÜ$zL
!Av|L
.Av~L
;A<+€L
JA^ ‚Lgv&˜€½5Ñ*@Ö* .        $.Ü,.Ü 7. +A.++%úú!+N.a.öj.öâðR+jA .W+ .        $.Ü,.Ü 7.+A.ž+’+™+ñ%£+N.a.öj.öO| ’J %ß+(B -ä+ .        $.Ü,.Ü 7.,A.ž+,%4,™+U,ß-9, EBK    , TB¼ KhZ, `BK:    , pBv,K<a{, xBL-    , ŠB»,LGA ²BóLIA ·Bô,LKa 5'‰LQAÀ, ‘BL    , ¡BóL&A «BJL'A z'%#L(Aù, ÂBN    ,
ÖB0-N'h
¯*0-N+h
œ)|N0h05- âBM    ,
Ä*àM LïB^ M<õB 'M=A ýBJM>A
 
CvMCL
CÉ-MDL
!CÔ-MEL
/CvMFL
:CvMGL
CC^ MHL²q#!ã·#ä- WCKj    , ù- kC    9. s6o.!A ‘Cz.$A ™C¼ 'A ¢C¼ *A rCO    , h@Þ O A
Æ@Þ O#h
Ï.ÛO&AÞ €C º •. €DR    ,
‹D¿.Ra
E5/RAÄ. ’DP    ,
s6Þ Pa
›DÞ Pa
­DÞ Ph
ÇD/P L
ÜD /P#h·©%/ íDQ     , :/ ES    ,
"EÞ S !
h@Þ S$(
/EúS((
8E¿(S/(
ME^ S3     
WE@S7(
bE@S;(
nE70S>(
£E¿(SA(
¬E^ SE     
å*SI
ÈEÞ SN(àE^ S`óE    F^ ScF    .F^ SfHF    dF^ ShzF    
’FY0Sj(<0 }E6    ,
„EN6Þ §FSi0 ÐFT     , âFÞ T h à*Þ Th&GG\G'H‘0&íGGõG'H    ¥0&ˆHG’H'H
¹0&'IG2I'TÍ0(lmþ0ÈIU84)\LA4)7aLF4*pî*UY4*©å;UÞ +lômP1JU)â\Ld4)WaLF4(`\mˆ1VJU&ó)\Ld4)ÜaLF4(¼„mÀ1uJU0ì )\Ld4)aaLF4(@ümø1˜JU;©%)š\Ld4)æaLF4+<4m,2¿JUO)\Ld4)kaLF4*¤ÊFUOd0*ð‹DUOi4(pøm‚2ûJU\.)9\Ld4)…aLF4,¾h@U]Þ ,á‹DU^i4,œLUb.-hoã2/KH)'\Ld4)`aLF4.™þ<ó-|o$3]KH)Ï\Ld4)aLF4.A=ì -oe3“KH)w\Ld4)°aLF4.é=©%/¤oª3ÑKHd0)\Ld40QaLF4-´oÜ3ïKH)X\Ld4)‘aLF4.ÊÊFd01Èhm4LU)\Ld4)LaLF4OL
    O4fLT4jL3_A4n4 xLV    Ä.
ŠLÞ Vh
”LÞ VhApple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLSiriSceneListCell.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriUITableViewCellStyleNSIntegerlong intUITableViewCellStyleDefaultUITableViewCellStyleValue1UITableViewCellStyleValue2UITableViewCellStyleSubtitleUITableViewCellSelectionStyleUITableViewCellSelectionStyleNoneUITableViewCellSelectionStyleBlueUITableViewCellSelectionStyleGrayUITableViewCellSelectionStyleDefaultNSTextAlignmentNSTextAlignmentLeftNSTextAlignmentCenterNSTextAlignmentRightNSTextAlignmentJustifiedNSTextAlignmentNaturalINUIAddVoiceShortcutButtonStyleNSUIntegerlong unsigned intINUIAddVoiceShortcutButtonStyleWhiteINUIAddVoiceShortcutButtonStyleWhiteOutlineINUIAddVoiceShortcutButtonStyleBlackINUIAddVoiceShortcutButtonStyleBlackOutlineINUIAddVoiceShortcutButtonStyleAutomaticINUIAddVoiceShortcutButtonStyleAutomaticOutlineUITableViewCellEditingStyleUITableViewCellEditingStyleNoneUITableViewCellEditingStyleDeleteUITableViewCellEditingStyleInsertUITableViewCellAccessoryTypeUITableViewCellAccessoryNoneUITableViewCellAccessoryDisclosureIndicatorUITableViewCellAccessoryDetailDisclosureButtonUITableViewCellAccessoryCheckmarkUITableViewCellAccessoryDetailButtonUITableViewCellFocusStyleUITableViewCellFocusStyleDefaultUITableViewCellFocusStyleCustomUISemanticContentAttributeUISemanticContentAttributeUnspecifiedUISemanticContentAttributePlaybackUISemanticContentAttributeSpatialUISemanticContentAttributeForceLeftToRightUISemanticContentAttributeForceRightToLeftUIUserInterfaceLayoutDirectionUIUserInterfaceLayoutDirectionLeftToRightUIUserInterfaceLayoutDirectionRightToLeftNSLineBreakModeNSLineBreakByWordWrappingNSLineBreakByCharWrappingNSLineBreakByClippingNSLineBreakByTruncatingHeadNSLineBreakByTruncatingTailNSLineBreakByTruncatingMiddleUIBaselineAdjustmentUIBaselineAdjustmentAlignBaselinesUIBaselineAdjustmentAlignCentersUIBaselineAdjustmentNoneNSLineBreakStrategyNSLineBreakStrategyNoneNSLineBreakStrategyPushOutNSLineBreakStrategyHangulWordPriorityNSLineBreakStrategyStandardUICellConfigurationDragStateUICellConfigurationDragStateNoneUICellConfigurationDragStateLiftingUICellConfigurationDragStateDraggingUICellConfigurationDropStateUICellConfigurationDropStateNoneUICellConfigurationDropStateNotTargetedUICellConfigurationDropStateTargetedNSDirectionalRectEdgeNSDirectionalRectEdgeNoneNSDirectionalRectEdgeTopNSDirectionalRectEdgeLeadingNSDirectionalRectEdgeBottomNSDirectionalRectEdgeTrailingNSDirectionalRectEdgeAllUIViewContentModeUIViewContentModeScaleToFillUIViewContentModeScaleAspectFitUIViewContentModeScaleAspectFillUIViewContentModeRedrawUIViewContentModeCenterUIViewContentModeTopUIViewContentModeBottomUIViewContentModeLeftUIViewContentModeRightUIViewContentModeTopLeftUIViewContentModeTopRightUIViewContentModeBottomLeftUIViewContentModeBottomRightUIEditingInteractionConfigurationUIEditingInteractionConfigurationNoneUIEditingInteractionConfigurationDefaultCAEdgeAntialiasingMaskunsigned intkCALayerLeftEdgekCALayerRightEdgekCALayerBottomEdgekCALayerTopEdgeCACornerMaskkCALayerMinXMinYCornerkCALayerMaxXMinYCornerkCALayerMinXMaxYCornerkCALayerMaxXMaxYCornerUIButtonTypeUIButtonTypeCustomUIButtonTypeSystemUIButtonTypeDetailDisclosureUIButtonTypeInfoLightUIButtonTypeInfoDarkUIButtonTypeContactAddUIButtonTypePlainUIButtonTypeCloseUIButtonTypeRoundedRectUIButtonRoleUIButtonRoleNormalUIButtonRolePrimaryUIButtonRoleCancelUIButtonRoleDestructiveINShortcutAvailabilityOptionsINShortcutAvailabilityOptionSleepMindfulnessINShortcutAvailabilityOptionSleepJournalingINShortcutAvailabilityOptionSleepMusicINShortcutAvailabilityOptionSleepPodcastsINShortcutAvailabilityOptionSleepReadingINShortcutAvailabilityOptionSleepWrapUpYourDayINShortcutAvailabilityOptionSleepYogaAndStretchingUIImageOrientationUIImageOrientationUpUIImageOrientationDownUIImageOrientationLeftUIImageOrientationRightUIImageOrientationUpMirroredUIImageOrientationDownMirroredUIImageOrientationLeftMirroredUIImageOrientationRightMirroredUIImageResizingModeUIImageResizingModeTileUIImageResizingModeStretchUIImageRenderingModeUIImageRenderingModeAutomaticUIImageRenderingModeAlwaysOriginalUIImageRenderingModeAlwaysTemplateUIFontDescriptorSymbolicTraitsuint32_tUIFontDescriptorTraitItalicUIFontDescriptorTraitBoldUIFontDescriptorTraitExpandedUIFontDescriptorTraitCondensedUIFontDescriptorTraitMonoSpaceUIFontDescriptorTraitVerticalUIFontDescriptorTraitUIOptimizedUIFontDescriptorTraitTightLeadingUIFontDescriptorTraitLooseLeadingUIFontDescriptorClassMaskUIFontDescriptorClassUnknownUIFontDescriptorClassOldStyleSerifsUIFontDescriptorClassTransitionalSerifsUIFontDescriptorClassModernSerifsUIFontDescriptorClassClarendonSerifsUIFontDescriptorClassSlabSerifsUIFontDescriptorClassFreeformSerifsUIFontDescriptorClassSansSerifUIFontDescriptorClassOrnamentalsUIFontDescriptorClassScriptsUIFontDescriptorClassSymbolicUIControlContentVerticalAlignmentUIControlContentVerticalAlignmentCenterUIControlContentVerticalAlignmentTopUIControlContentVerticalAlignmentBottomUIControlContentVerticalAlignmentFillUIControlContentHorizontalAlignmentUIControlContentHorizontalAlignmentCenterUIControlContentHorizontalAlignmentLeftUIControlContentHorizontalAlignmentRightUIControlContentHorizontalAlignmentFillUIControlContentHorizontalAlignmentLeadingUIControlContentHorizontalAlignmentTrailingUIControlStateUIControlStateNormalUIControlStateHighlightedUIControlStateDisabledUIControlStateSelectedUIControlStateFocusedUIControlStateApplicationUIControlStateReservedUIControlEventsUIControlEventTouchDownUIControlEventTouchDownRepeatUIControlEventTouchDragInsideUIControlEventTouchDragOutsideUIControlEventTouchDragEnterUIControlEventTouchDragExitUIControlEventTouchUpInsideUIControlEventTouchUpOutsideUIControlEventTouchCancelUIControlEventValueChangedUIControlEventPrimaryActionTriggeredUIControlEventMenuActionTriggeredUIControlEventEditingDidBeginUIControlEventEditingChangedUIControlEventEditingDidEndUIControlEventEditingDidEndOnExitUIControlEventAllTouchEventsUIControlEventAllEditingEventsUIControlEventApplicationReservedUIControlEventSystemReservedUIControlEventAllEventsUIButtonConfigurationCornerStyleUIButtonConfigurationCornerStyleFixedUIButtonConfigurationCornerStyleDynamicUIButtonConfigurationCornerStyleSmallUIButtonConfigurationCornerStyleMediumUIButtonConfigurationCornerStyleLargeUIButtonConfigurationCornerStyleCapsuleUIButtonConfigurationSizeUIButtonConfigurationSizeMediumUIButtonConfigurationSizeSmallUIButtonConfigurationSizeMiniUIButtonConfigurationSizeLargeUIButtonConfigurationMacIdiomStyleUIButtonConfigurationMacIdiomStyleAutomaticUIButtonConfigurationMacIdiomStyleBorderedUIButtonConfigurationMacIdiomStyleBorderlessUIButtonConfigurationMacIdiomStyleBorderlessTintedUIButtonConfigurationTitleAlignmentUIButtonConfigurationTitleAlignmentAutomaticUIButtonConfigurationTitleAlignmentLeadingUIButtonConfigurationTitleAlignmentCenterUIButtonConfigurationTitleAlignmentTrailingUIMenuOptionsUIMenuOptionsDisplayInlineUIMenuOptionsDestructiveUIMenuOptionsSingleSelectionUIUserInterfaceIdiomUIUserInterfaceIdiomUnspecifiedUIUserInterfaceIdiomPhoneUIUserInterfaceIdiomPadUIUserInterfaceIdiomTVUIUserInterfaceIdiomCarPlayUIUserInterfaceIdiomMacUIUserInterfaceStyleUIUserInterfaceStyleUnspecifiedUIUserInterfaceStyleLightUIUserInterfaceStyleDarkUITraitEnvironmentLayoutDirectionUITraitEnvironmentLayoutDirectionUnspecifiedUITraitEnvironmentLayoutDirectionLeftToRightUITraitEnvironmentLayoutDirectionRightToLeftUIUserInterfaceSizeClassUIUserInterfaceSizeClassUnspecifiedUIUserInterfaceSizeClassCompactUIUserInterfaceSizeClassRegularUIForceTouchCapabilityUIForceTouchCapabilityUnknownUIForceTouchCapabilityUnavailableUIForceTouchCapabilityAvailableUIDisplayGamutUIDisplayGamutUnspecifiedUIDisplayGamutSRGBUIDisplayGamutP3UIAccessibilityContrastUIAccessibilityContrastUnspecifiedUIAccessibilityContrastNormalUIAccessibilityContrastHighUIUserInterfaceLevelUIUserInterfaceLevelUnspecifiedUIUserInterfaceLevelBaseUIUserInterfaceLevelElevatedUILegibilityWeightUILegibilityWeightUnspecifiedUILegibilityWeightRegularUILegibilityWeightBoldUIUserInterfaceActiveAppearanceUIUserInterfaceActiveAppearanceUnspecifiedUIUserInterfaceActiveAppearanceInactiveUIUserInterfaceActiveAppearanceActiveUIGraphicsImageRendererFormatRangeUIGraphicsImageRendererFormatRangeUnspecifiedUIGraphicsImageRendererFormatRangeAutomaticUIGraphicsImageRendererFormatRangeExtendedUIGraphicsImageRendererFormatRangeStandardUIContextMenuInteractionAppearanceUIContextMenuInteractionAppearanceUnknownUIContextMenuInteractionAppearanceRichUIContextMenuInteractionAppearanceCompactCGLineCapint32_tintkCGLineCapButtkCGLineCapRoundkCGLineCapSquareCGLineJoinkCGLineJoinMiterkCGLineJoinRoundkCGLineJoinBevelfloatHDLSiriSceneListCellUITableViewCellUIViewUIResponderNSObjectisaClassobjc_classnextRespondercanBecomeFirstResponderBOOL_BoolcanResignFirstResponderisFirstResponderundoManagerNSUndoManagergroupingLevelundoRegistrationEnabledisUndoRegistrationEnabledgroupsByEventlevelsOfUndorunLoopModesNSArraycountcanUndocanRedoundoingisUndoingredoingisRedoingundoActionIsDiscardableredoActionIsDiscardableundoActionNameNSStringlengthredoActionNameundoMenuItemTitleredoMenuItemTitle_undoStackidobjc_object_redoStack_runLoopModes_NSUndoManagerPrivate1uint64_tlong long unsigned int_target_proxy_NSUndoManagerPrivate2_NSUndoManagerPrivate3editingInteractionConfigurationlayerClassuserInteractionEnabledisUserInteractionEnabledtaglayerCALayerboundsCGRectoriginCGPointxCGFloatdoubleysizeCGSizewidthheightpositionzPositionanchorPointanchorPointZtransformCATransform3Dm11m12m13m14m21m22m23m24m31m32m33m34m41m42m43m44framehiddenisHiddendoubleSidedisDoubleSidedgeometryFlippedisGeometryFlippedsuperlayersublayerssublayerTransformmaskmasksToBoundscontentscontentsRectcontentsGravityCALayerContentsGravitycontentsScalecontentsCentercontentsFormatCALayerContentsFormatminificationFilterCALayerContentsFiltermagnificationFilterminificationFilterBiasopaqueisOpaqueneedsDisplayOnBoundsChangedrawsAsynchronouslyedgeAntialiasingMaskallowsEdgeAntialiasingbackgroundColorCGColorRefCGColorcornerRadiusmaskedCornerscornerCurveCALayerCornerCurveborderWidthborderColoropacityallowsGroupOpacitycompositingFilterfiltersbackgroundFiltersshouldRasterizerasterizationScaleshadowColorshadowOpacityshadowOffsetshadowRadiusshadowPathCGPathRefCGPathactionsNSDictionarynamedelegatestylecanBecomeFocusedfocusedisFocusedfocusGroupIdentifierfocusGroupPriorityUIFocusGroupPriorityfocusEffectUIFocusEffectsemanticContentAttributeeffectiveUserInterfaceLayoutDirectionconfigurationStateUICellConfigurationStateUIViewConfigurationStatetraitCollectionUITraitCollectionuserInterfaceIdiomuserInterfaceStylelayoutDirectiondisplayScalehorizontalSizeClassverticalSizeClassforceTouchCapabilitypreferredContentSizeCategoryUIContentSizeCategorydisplayGamutaccessibilityContrastuserInterfaceLevellegibilityWeightactiveAppearancedisabledisDisabledhighlightedisHighlightedselectedisSelectedpinnedisPinnededitingisEditingexpandedisExpandedswipedisSwipedreorderingisReorderingcellDragStatecellDropStateconfigurationUpdateHandlerUITableViewCellConfigurationUpdateHandler__isa__flags__reserved__FuncPtr__descriptor__block_descriptorreservedSizecontentConfigurationautomaticallyUpdatesContentConfigurationcontentViewimageViewUIImageViewimageUIImageCGImageCGImageRefCIImageblackImagewhiteImagegrayImageredImagegreenImageblueImagecyanImagemagentaImageyellowImageclearImageextentpropertiesdefinitionCIFilterShape_pad_privurlNSURLdataRepresentationNSDatabytesabsoluteStringrelativeStringbaseURLabsoluteURLschemeresourceSpecifierhostportNSNumberNSValueobjCTypecharcharValueunsignedCharValueunsigned charshortValueshortunsignedShortValueunsigned shortintValueunsignedIntValuelongValueunsignedLongValuelongLongValuelong long intunsignedLongLongValuefloatValuedoubleValueboolValueintegerValueunsignedIntegerValuestringValueuserpasswordpathfragmentparameterStringqueryrelativePathhasDirectoryPathfileSystemRepresentationfileURLisFileURLstandardizedURLfilePathURL_urlString_baseURL_clients_reservedcolorSpaceCGColorSpaceRefCGColorSpacepixelBufferCVPixelBufferRefCVImageBufferRefCVBufferRef__CVBufferimageOrientationscalesymbolImageisSymbolImageimagesdurationNSTimeIntervalcapInsetsUIEdgeInsetstopleftbottomrightresizingModealignmentRectInsetsrenderingModeimageRendererFormatUIGraphicsImageRendererFormatUIGraphicsRendererFormatprefersExtendedRangepreferredRangeimageAssetUIImageAssetflipsForRightToLeftLayoutDirectionbaselineOffsetFromBottomhasBaselineconfigurationUIImageConfigurationsymbolConfigurationUIImageSymbolConfigurationunspecifiedConfigurationhighlightedImagepreferredSymbolConfigurationanimationImageshighlightedAnimationImagesanimationDurationanimationRepeatCounttintColorUIColorblackColordarkGrayColorlightGrayColorwhiteColorgrayColorredColorgreenColorblueColorcyanColoryellowColormagentaColororangeColorpurpleColorbrownColorclearColorCIColornumberOfComponentssize_tcomponentsalpharedgreenbluestringRepresentation__ARRAY_SIZE_TYPE__animatingisAnimatingadjustsImageWhenAncestorFocusedfocusedFrameGuideUILayoutGuidelayoutFrameowningViewidentifierleadingAnchorNSLayoutXAxisAnchorNSLayoutAnchoritemhasAmbiguousLayoutconstraintsAffectingLayouttrailingAnchorleftAnchorrightAnchortopAnchorNSLayoutYAxisAnchorbottomAnchorwidthAnchorNSLayoutDimensionheightAnchorcenterXAnchorcenterYAnchoroverlayContentViewmasksFocusEffectToContentstextLabelUILabeltextfontUIFontfamilyNamesfamilyNamefontNamepointSizeascenderdescendercapHeightxHeightlineHeightleadingfontDescriptorUIFontDescriptorpostscriptNamematrixCGAffineTransformabcdtxtysymbolicTraitsfontAttributestextColortextAlignmentlineBreakModeattributedTextNSAttributedStringstringhighlightedTextColorenabledisEnablednumberOfLinesadjustsFontSizeToFitWidthbaselineAdjustmentminimumScaleFactorallowsDefaultTighteningForTruncationlineBreakStrategypreferredMaxLayoutWidthenablesMarqueeWhenAncestorFocusedshowsExpansionTextWhenTruncatedminimumFontSizeadjustsLetterSpacingToFitWidthdetailTextLabelbackgroundConfigurationUIBackgroundConfigurationcustomViewbackgroundInsetsNSDirectionalEdgeInsetstrailingedgesAddingLayoutMarginsToBackgroundInsetsbackgroundColorTransformerUIConfigurationColorTransformervisualEffectUIVisualEffectimageContentModestrokeColorstrokeColorTransformerstrokeWidthstrokeOutsetautomaticallyUpdatesBackgroundConfigurationbackgroundViewselectedBackgroundViewmultipleSelectionBackgroundViewreuseIdentifierselectionStyleeditingStyleshowsReorderControlshouldIndentWhileEditingaccessoryTypeaccessoryVieweditingAccessoryTypeeditingAccessoryViewindentationLevelindentationWidthseparatorInsetshowingDeleteConfirmationfocusStyleuserInteractionEnabledWhileDraggingbgViewtitleLabelshortcutButtonINUIAddVoiceShortcutButtonUIButtonUIControlcontentVerticalAlignmentcontentHorizontalAlignmenteffectiveContentHorizontalAlignmentstatetrackingisTrackingtouchInsideisTouchInsideallTargetsNSSetallControlEventscontextMenuInteractionUIContextMenuInteractionmenuAppearancecontextMenuInteractionEnabledisContextMenuInteractionEnabledshowsMenuAsPrimaryActiontoolTiptoolTipInteractionUIToolTipInteractiondefaultToolTiptitleShadowOffsetcontentEdgeInsetstitleEdgeInsetsimageEdgeInsetsreversesTitleShadowWhenHighlightedadjustsImageWhenHighlightedadjustsImageWhenDisabledshowsTouchWhenHighlightedUIButtonConfigurationbackgroundcornerStylebuttonSizemacIdiomStylebaseForegroundColorbaseBackgroundColorimageColorTransformerpreferredSymbolConfigurationForImageshowsActivityIndicatoractivityIndicatorColorTransformertitleattributedTitletitleTextAttributesTransformerUIConfigurationTextAttributesTransformersubtitleattributedSubtitlesubtitleTextAttributesTransformercontentInsetsimagePlacementimagePaddingtitlePaddingtitleAlignmentautomaticallyUpdateForSelectionUIButtonConfigurationUpdateHandlerautomaticallyUpdatesConfigurationbuttonTypehoveredisHoveredheldisHeldrolepointerInteractionEnabledisPointerInteractionEnabledpointerStyleProviderUIButtonPointerStyleProviderUIPointerStyleaccessoriesUIPointerEffectpreviewUITargetedPreviewtargetUIPreviewTargetcontainercenterviewparametersUIPreviewParametersvisiblePathUIBezierPathemptyisEmptycurrentPointlineWidthlineCapStylelineJoinStylemiterLimitflatnessusesEvenOddFillRuleUIPointerShapemenuUIMenuUIMenuElementUIMenuIdentifieroptionschildrenselectedElementschangesSelectionAsPrimaryActioncurrentTitlecurrentTitleColorcurrentTitleShadowColorcurrentImagecurrentBackgroundImagecurrentPreferredSymbolConfigurationcurrentAttributedTitlesubtitleLabelshortcutINShortcutintentINIntentintentDescriptionsuggestedInvocationPhraseshortcutAvailabilitydonationMetadataINIntentDonationMetadatauserActivityNSUserActivityactivityTypeuserInforequiredUserInfoKeysneedsSavewebpageURLreferrerURLexpirationDateNSDatetimeIntervalSinceReferenceDatekeywordssupportsContinuationStreamstargetContentIdentifiereligibleForHandoffisEligibleForHandoffeligibleForSearchisEligibleForSearcheligibleForPublicIndexingisEligibleForPublicIndexingeligibleForPredictionisEligibleForPredictionpersistentIdentifierNSUserActivityPersistentIdentifiermodelHDLSiriSceneModeluserSceneId_bgView_titleLabel_shortcutButton_modelUIKit"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.frameworkIntents/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.frameworkIntentsUI/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/IntentsUI.frameworkFoundation/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework-[HDLSiriSceneListCell initWithStyle:reuseIdentifier:]initWithStyle:reuseIdentifier:-[HDLSiriSceneListCell addAllChildView]addAllChildView-[HDLSiriSceneListCell bgView]-[HDLSiriSceneListCell titleLabel]-[HDLSiriSceneListCell shortcutButton]-[HDLSiriSceneListCell initModel:intent:]initModel:intent:-[HDLSiriSceneListCell getINShortcut]getINShortcut-[HDLSiriSceneListCell setBgView:]setBgView:-[HDLSiriSceneListCell setTitleLabel:]setTitleLabel:-[HDLSiriSceneListCell setShortcutButton:]setShortcutButton:-[HDLSiriSceneListCell model]-[HDLSiriSceneListCell setModel:]setModel:-[HDLSiriSceneListCell .cxx_destruct].cxx_destructinstancetypeself_cmdSELobjc_selectorHDLRunSceneIntentsceneNamesceneIdshortCutHSAH  ÿÿÿÿ     ÿÿÿÿöò®3r4¦ ë?ýÙ·ñþåöÇB©¸|i©$Ú«M̪@í¹ç?JûLÚ*î±6ßsûÌ,~‘‹°‰cÓéý    cñóƒå(>4½h>+'¯¶åó#ç\<O«pؽzˆä$4DTdt„”¤´ÄÔäô$4DTdt„”¤´ÊF3¿J2FJ71ÈIá0L4VJk1!Ke2J71/KÊ2„K 3=£1ÿIá0ïKÃ3ûJe2˜JÛ1“KL3éJ2AL4þ<k1¾KL3ÑK3]K 3uJ£1LÃ3RKÊ2=Û1HSAH ºë,û# á071k1£1Û12e2Ê2 3L33Ã34HSAH ÿÿÿÿHSAHT¨      ÿÿÿÿÿÿÿÿÿÿÿÿ "#'ÿÿÿÿ(+-/2578<?ÿÿÿÿADEIKLRTYZ[]_abcfhÿÿÿÿikmopruz|€ÿÿÿÿ‚‡ˆŒ‘“”—ÿÿÿÿÿÿÿÿ˜›œž¢£¤,€ZùMÿn•ÁÚ‘傦~zÁø·/#;_eƒ÷hˆ’Ôðê¿Réä [=ùõÖs¬qé­õâmL<Òŧ‰WÝvÖ&Ä¥"Ÿ³¨'`MÖÃ8;ÙÄ)ˆ ÒáúÒÙ9šb‡ÎÄ´B—}ÁËwÉäÓdMÖÃioæ]Mh´ë\sÆèðIŸ §ËùÑNо2xYé†@×>&‡½7<ÇHÕðZÛ$Y3D‡Æ¤    –U»Nø ïÑ ¢4Ë È9zDbûX3"L:¡¡¹ÕírÑå$bBÑá>¤Ñ¦ v´ÜÔ:Çø½ZêYŒ’]éqy£-    LÎzkùcêÄ\©8‰}$`¦aÐ;ØÙeêÆË„Br…AtF‡èÖiíý“òÐw¤×<Ž•=pó6qf±EÑz¬Í“<²9ÂÔ½|5ûŽö:Lћáqóê]Uÿ\Š_Y3Ì·aÃí4†ìØÝ»`ºìšQ=hc •| òµÌ ìTHR•ùv=JæŒdgêQë¬LÉsB…èðCà7 å™ ÔÏàX+—L«àt¾ð/ÜEúr>ñؙ_¾sÓ¯Ž ž?3¥ï?Ž˜=垴DÅ­Íþ
Bd>›uckÑAɔâ­{ÕûŠ"8/†VòÎë0©;¯)aˎJ¦×Òú„_¦.„
 4â~Î/Ò2ò#’N.@ÜWžòAÒc“å?„ØtHøöŸ]bFØÈ_é=ŸT,­h›‚|ºëZÈvӛ9ë€[sŒÜøpÀùp–~$\©q…“âŠÎu ]èSÅ끕 p–²_b4›ÇX3Kï&Ì0€ˆ ³WfxtzÓ\,8ÚYo± ri± —ÔT?Žwßý;׸ËÞñ %8K^q„ž±Ä×ê*=Pcv‰£¶Éãý    *    =    P    c    v    ‰    œ    ¶    Ð    ê    ý    
#
6
P
c
v
‰
œ
Ð
ã
ö
      / I c v ‰ œ ¶ É Ü ï      # = P j } — ª Ä × ê ý  * = P j }  £ ¶ É ã ö #6Pcv‰œ¶Ðê*=ex‹¥¸ËÞø 8Ke™³Æàó3F`z ºÍàú'A[n”§ºÍàó,F`z§ºÍç':M`s† ³‘BÀ,<8Ù"'$Ò öj}%!&è4=†?j):=ñ%Ù+Å)4_ä•    ,'‚$WCä-=®%rC9.¥c#2§FY0ô-w·/£€D•.fLF4xLn4é‹G¸2N²7ñ ØÓ*
YÜ$}E<0,D¨7Ç ý&A{#ÑT0æ$âB5-ü%Ò
Šr%üîC© þª73¸m0í$`BZ,ÂBù,~ôÏ#;&@$C å.êæ)Õ(Q©("nÃ.ýÖ8§#º*à?+ç4;vþÓWóÙ0û$À+WO2#% ò5>ëê:ç$@Æ*:'‰”ðâ<+„'µÀ›5q!0KÕ.à€˜°*$‚    å+¶5…·$u Ó*ÿ®%ã vg¥*EB9,À #$'JUIö$’DÄ.„(‰õ#    $ÐFi0©·/ 6~ a´ð.>ñ(    að(Ÿ30ß$¬)µ~c$c8%#0#ùÀá( `<·#ãÔ-íD%/,<`+,N.ØB%!+£+$'v0زGž%tX|$i $-%Á Ž    :l $. N6²ƒ:˜$£$(BÔ+\¤—#Ö“%Ó"“) ÕÄ#`2.| O¾+D&*$?7Ü 3(½»*M:ß#š @_3Y4C=¬';b%º….¬>*)E:/Ñ2Yd *Ê"0¸Âz.k,ž(U3ü/    3$, Ç(”w$^ û#
    Ä7="€Co.ò5¦$jAG+ÿ% ')J’É+ŸŒ#Ä!F‚´(xB{,†0ô$Výˆ%q#²É-ƒ#Ü$Œ6n kCù-OL84ž/Eä=Ä(¯,8 å1>2g!OVllô`\¼„@ü<4pøh|¤´Èh0    zRx (äÿÿÿÿÿÿÿlP ž“”,D¸ÿÿÿÿÿÿÿôT ž“”•–—˜,tˆÿÿÿÿÿÿÿ\P ž“”•–,¤Xÿÿÿÿÿÿÿ„P ž“”•–,Ô(ÿÿÿÿÿÿÿüP ž“”•–,øþÿÿÿÿÿÿ4T ž“”•–—˜,4ÈþÿÿÿÿÿÿøP ž“”•–d˜þÿÿÿÿÿÿ„xþÿÿÿÿÿÿ¤XþÿÿÿÿÿÿÄ8þÿÿÿÿÿÿäþÿÿÿÿÿÿ$øýÿÿÿÿÿÿhL ž“”,ÐýÿÿÿÿÿÿDž]ž û /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/IntentsUI.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/sys/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/includeHDLSceneSiriNSObjCRuntime.hUITableViewCell.hNSText.hINUIAddVoiceShortcutButton.hUIView.hUIInterface.hNSParagraphStyle.hUIStringDrawing.hUICellConfigurationState.hUIGeometry.hUIResponder.hCALayer.hUIButton.hINShortcutAvailabilityOptions.hUIImage.h_uint32_t.hUIFontDescriptor.hUIControl.hUIButtonConfiguration.hUIMenu.hUIDevice.hUITouch.hUIGraphicsImageRenderer.hUIContextMenuInteraction.h_int32_t.hCGPath.hHDLSiriSceneListCell.m    NSObject.hobjc.hNSUndoManager.h
NSArray.h
NSString.h
_uint64_t.hCGBase.hCGGeometry.hCATransform3D.hCGColor.hNSDictionary.h
UIFocus.hUIFocusEffect.hUITraitCollection.hUIContentSizeCategory.hUIViewConfigurationState.hCGImage.hCIImage.h CIFilterShape.h NSData.h
NSURL.h
NSValue.h
CGColorSpace.hCVBuffer.h CVImageBuffer.h CVPixelBuffer.h NSDate.h
UIGraphicsRenderer.hUIImageAsset.hUIImageConfiguration.hUIImageSymbolConfiguration.hUIImageView.hUIColor.hstddef.h CIColor.h UILayoutGuide.hNSLayoutAnchor.hUILabel.hUIFont.hCGAffineTransform.hNSAttributedString.h
UIBackgroundConfiguration.hUIConfigurationColorTransformer.hUIVisualEffect.hHDLSiriSceneListCell.hNSSet.h
UIToolTipInteraction.hUIPointerStyle.hUITargetedPreview.hUIBezierPath.hUIPreviewParameters.hUIMenuElement.hINIntent.hINIntentDonationMetadata.hINShortcut.hNSUserActivity.h
HDLSiriSceneModel.hHDLSiriSceneListCell.mHDLRunSceneIntent.hU    
ó    äK    >õ?
uctJ
‚t(ƒbºJ
‚b<J‚º óaºJ'‚a<J‚ (`º J"‚`ò J‚    å<K^º"J&‚^ò"J    ‚0>    
=ºKBòX<(JX<S(‚Jä    ò+ƒW<)J    ‚J    òƒJVò*J‚    òƒJU‚+J‚    ò „?    
=ºKGòN<2JN<X2‚]ºJä    ò!ƒM(3J    ‚J    òƒLä4J    ‚J    òƒJ    óJ ô?    
=ºKºò    ôJ,ó@<ÀJ@<=À‚Bº    JJ    ä
ƒ    J õ <
8 º    ¼J"L¬òÔJ
‚¬òÔJ‚òó%M$º¨òÖJªòÖJªJÚ(æ
=º£ºÝJ"ƒ!ºóJ¡ºßJ ‚< ƒ==º>H±$
kJò
jJò
iJò3
ò
gJUò
òh8    â-,    ù-    ØL    Ø=    ù-    ÛL    Û=üù-ðÚLìÚ=èù-ÜÙLØÙ=Äù-¼ÙL¸Ù=¨ÙL¤Ù= ù-˜ÚL”Ú=Œù-„ÛL€Û=xù-pØLlØ=dò-Põ-Hõ-<ó-42L02=,ñ-(1L$1= ó-;L;= ó-:Lü:=øõ-ðó-ä9Là9=Øø-Ðó-Ì8LÈ8=¼ó-¸7L´7=°ñ-¬6L¨6= ø-˜ó-”/L/=ˆÙL„Ù=lõ-Tõ-Lõ-Dó-<4L84=0ÚL,Ú=$ø-ó-3L3=ó-2Lü2=øñ-ô1Lð1=èõ-àõ-Øó-Ð0LÌ0=Äø-¼ó-´ L° =¨ø- ó-˜/L”/=ˆù-xÙLtÙ=lö-`ö-8÷-$ó--L-=õ-ó-ø'Lô'=ð,Lì,=à&LÜ&=Ìó-ÈLÄ=¼ø-´ó-°L¬=¨L¤= ó-˜+L”+=Œõ-|ó-t*Lp*=lñ-h)Ld)=XÚLTÚ=<÷-(ó- %L%=ó- $L$=õ-øó-ð#Lì#=àø-Øó-Ð"LÌ"=È!LÄ!=À L¼ =¸õ-°ó-¨L¤=˜ø-ó-€L|=xLt=pLl=hõ-`õ-Pó-8L4=,L(=ó-L=ø-ó-üLø=ôLð=èñ-äLà=ÔÛLÐÛ=¸÷-¤õ-œó-”L=ˆø-€ó-tõ-ló-dL`=Xø-Pó-HLD=<õ-4ó-,    L(    =ø-ó-L =L=õ-øõ-èó-ÐLÌ=¼ó-¸L´=¬ø-¤ó- Lœ=˜L”=Œñ-ˆL„=xØLtØ=Hõ-0õ-(ó-ø- ó-L=øø-ðó-àï-Ìõ-Äõ-¼ó-¨ø- ó-˜ L” =Œø-„ó-xõ-põ-hó-X LT =Lø-Dó-8 L4 =,ø-$ó-õ-õ-ó-øø-ðó-ä
=Øø-Ðó-ÈLÄõ-¼ó-¬    L¨    = ø-˜ó-LŒ=ˆL„=Tó-LLH=Dó-8L4=(ô- L=L=H¯8ð0í(ì CðêÜ× ponmløkðjèiàhØgÐfÈeÀd¸c°b¨a `˜_[ˆZ€YxXpWhV`UXTPSHQ@P8O0N(M LKIHF8ã0ä(å çèéëæ]î(ÍÄ®»rø°àžØŸÐžÈÀœ¸›°š¨™ Ì˜ËÊˆÉ€ÈxÇpÆhÅPÃHÂ@Ù0Á(À Ú¿¾Ûð½è¼àØÐAȲÀº¸@°µ¨¹ ?˜{¸ˆ>€µx·p=hµ`¶X<PµH´@58{0i(. ¨³({Qøð{èPàØ{ÐNÈÀ²¸I°¨± Fx®hr@ß0¬(«¨©¨ø§ààТȢÀy¸°‘¨ {˜Œ{ˆ‰€¡x…p…hƒ`XP}H{@y8w0ž(Ÿ žœ›šø™à{Ø—À{¸”¨y “ˆ’x‘p`XŽH{@0Œ(‹{Љøˆèwà‡ЅȆ¸…°„ ƒ˜‚ˆ€€ph~X}P|@{8z(y xwu¨­xªp¦hsH£8 (˜–tßà×4Ä3Ž3M3 3Ë2f22Ü1¤1l181â0' €`@ àÀ €`@ 0Ö0áÖAèÖè@ÈÖÈ?¨Ö¨>ˆÖˆ=hÖh<8Ö85Ö.ØÖØ(¨Ö¨xÖxHÖHÖ­  HL48”˜ÔØ´¸à䨬Œ€„ôø”àäÄȨ¬Œ„Œ„ˆÌд¸œ ”œ”˜„ˆÐÔœ
 
ˆ
Œ
ì    ð    Ì    Ð    Ä    È    ¼    Ä    ¼    À    ¤    ¨    ü€    ôüôøìôì𴸨´¨¬”øüðøðôàäÔ
Ø
˜ œ ô ø ì ô ì ð Ü ì Ü à Ä È ¬ ° ¤ ¬ ¤ ¨ ” ˜ ð
ô
ä
è
ô ø Ì Ð ° ´ ” ˜ ü €ð ô ”¸¼¬°°´¤¨”ü€àäÈÌ´¸¨¬”„„ˆìð€„”˜¤¨¸¼”˜€„ìðØÜgÃ@°    Ï‹#šl](ठ è(S0ë8¨@l H{`Ë
0¦8P«Xh`, hgpÜxs€¨@    u@    ¶H    S¼Ý@œ ˆY
,H¤˜º
; ¨Á °mP    ®X    @
PD¸´ÀqÈ0 Й<å    Ø à«Xo ø–èSðÂpÄ    `íx5ù ¦     vhG    |ú5¤%    ´èÈì`    —  @°    ž¸    *¸    ýO×    Àê    Z(†ú    B
 
%
,
S8
C
Á hâR
R]
d
Ô s
‘
~
¯„
•
8§
ù Æ
     x¡    xn    
|Ô
ìç
ªð
i  ù q# Q Ì[  g Ål =u ïƒ   ¬  $¥ Ö± ’½ V Û Ç ° °– Å× è é û ó ó_ò ½ þø y à ý =       } ¾* ò 'FQ ¤ 8Y ` @Ç h $ y t      K5¡ q¨ ¦ V    ° l¼ Æ _(È Š  gì
Í ÎÒ Ý 2 ¸ ¸9é Æ ˆêú rÿ Ð 8  ô   Q 1 ª ¨±
 yŒ Žö ðkèɨ ÈB ú  8ƒ  ¨‘ ®þ ü? ài ð¾ Q ñº  K  Yw
Å M× • aÂâ ñ YÃ
ð P‚ "ß  l?
* vb6Š ÒF! Ÿ¿ MåTN l¦ w
”Þ£)×VÝ— 1¸ ¸†ÀTÀí ÁEÁJ â,ª
 Ñ…`Ó`    hétØplBˆ    Ç °e ¨ H† èV€0    ¾Š@@@
@¨u@@W+Ju~Yk®¡ Ø73¾á_OBJC_IVAR_$_HDLSiriSceneListCell._bgView_OBJC_CLASS_$_UIView_OBJC_CLASS_$_INShortcut___isPlatformVersionAtLeast_OBJC_CLASS_$_UIFont_OBJC_CLASS_$_HDLRunSceneIntent__OBJC_$_PROP_LIST_NSObject__OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_NSObject__OBJC_$_PROTOCOL_METHOD_TYPES_NSObject__OBJC_$_PROTOCOL_INSTANCE_METHODS_NSObject_OBJC_METACLASS_$_NSObject__OBJC_LABEL_PROTOCOL_$_NSObject__OBJC_PROTOCOL_$_NSObjectl_.str_OBJC_CLASS_$_UIColor_CFBundleGetVersionNumber_OBJC_IVAR_$_HDLSiriSceneListCell._shortcutButton_OBJC_CLASS_$_INUIAddVoiceShortcutButton_objc_retain_OBJC_CLASS_$_UIScreen_OBJC_CLASS_$_UITableViewCell_OBJC_METACLASS_$_UITableViewCell__OBJC_$_PROP_LIST_HDLSiriSceneListCell__OBJC_$_INSTANCE_VARIABLES_HDLSiriSceneListCell__OBJC_$_INSTANCE_METHODS_HDLSiriSceneListCell_OBJC_CLASS_$_HDLSiriSceneListCell_OBJC_METACLASS_$_HDLSiriSceneListCell__OBJC_CLASS_PROTOCOLS_$_HDLSiriSceneListCell__OBJC_CLASS_RO_$_HDLSiriSceneListCell__OBJC_METACLASS_RO_$_HDLSiriSceneListCell_OBJC_IVAR_$_HDLSiriSceneListCell._model_OBJC_IVAR_$_HDLSiriSceneListCell._titleLabel_OBJC_CLASS_$_UILabel___clang_at_available_requires_core_foundation_framework_objc_storeStrong_objc_autoreleaseReturnValue_objc_retainAutoreleaseReturnValue_objc_retainAutoreleasedReturnValue__OBJC_$_PROTOCOL_REFS_INUIAddVoiceShortcutButtonDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_INUIAddVoiceShortcutButtonDelegate__OBJC_$_PROTOCOL_INSTANCE_METHODS_INUIAddVoiceShortcutButtonDelegate__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate_objc_releasel_llvm.cmdlinel_llvm.embedded.module__objc_empty_cache___CFConstantStringClassReference_objc_msgSend_objc_allocl__unnamed_cfstring__OBJC_SELECTOR_REFERENCES_l_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME_l_OBJC_CLASSLIST_SUP_REFS_$__OBJC_CLASSLIST_REFERENCES_$_-[HDLSiriSceneListCell bgView]-[HDLSiriSceneListCell addAllChildView]-[HDLSiriSceneListCell getINShortcut]-[HDLSiriSceneListCell .cxx_destruct]-[HDLSiriSceneListCell shortcutButton]-[HDLSiriSceneListCell model]-[HDLSiriSceneListCell titleLabel]-[HDLSiriSceneListCell setBgView:]-[HDLSiriSceneListCell initModel:intent:]-[HDLSiriSceneListCell initWithStyle:reuseIdentifier:]-[HDLSiriSceneListCell setShortcutButton:]-[HDLSiriSceneListCell setModel:]-[HDLSiriSceneListCell setTitleLabel:]ltmp9l_OBJC_METH_VAR_NAME_.99l_OBJC_METH_VAR_NAME_.89_OBJC_SELECTOR_REFERENCES_.79_OBJC_CLASSLIST_REFERENCES_$_.69_OBJC_SELECTOR_REFERENCES_.59l_OBJC_PROP_NAME_ATTR_.149_OBJC_CLASSLIST_REFERENCES_$_.49l_OBJC_METH_VAR_NAME_.139_OBJC_SELECTOR_REFERENCES_.39l_OBJC_METH_VAR_NAME_.129l_OBJC_METH_VAR_NAME_.29ltmp19l_OBJC_METH_VAR_TYPE_.119_OBJC_CLASSLIST_REFERENCES_$_.19l_OBJC_METH_VAR_NAME_.109l_OBJC_METH_VAR_NAME_.9ltmp8l_OBJC_METH_VAR_NAME_.98l_OBJC_METH_VAR_TYPE_.88l_OBJC_METH_VAR_NAME_.78_OBJC_SELECTOR_REFERENCES_.68l_OBJC_METH_VAR_NAME_.58l_OBJC_PROP_NAME_ATTR_.148_OBJC_SELECTOR_REFERENCES_.48l_OBJC_METH_VAR_TYPE_.138l_OBJC_METH_VAR_NAME_.38l_OBJC_METH_VAR_TYPE_.128_OBJC_SELECTOR_REFERENCES_.28ltmp18l_OBJC_PROP_NAME_ATTR_.118_OBJC_SELECTOR_REFERENCES_.18l_OBJC_METH_VAR_TYPE_.108_OBJC_SELECTOR_REFERENCES_.8ltmp7l_OBJC_METH_VAR_NAME_.97l_OBJC_METH_VAR_NAME_.87_OBJC_SELECTOR_REFERENCES_.77l_OBJC_METH_VAR_NAME_.67_OBJC_SELECTOR_REFERENCES_.57l_OBJC_PROP_NAME_ATTR_.147l_OBJC_METH_VAR_NAME_.47l_OBJC_METH_VAR_NAME_.137_OBJC_SELECTOR_REFERENCES_.37l_OBJC_METH_VAR_TYPE_.127l_OBJC_METH_VAR_NAME_.27ltmp17l_OBJC_PROP_NAME_ATTR_.117l_OBJC_METH_VAR_NAME_.17l_OBJC_METH_VAR_NAME_.107l_OBJC_METH_VAR_NAME_.7ltmp6l_OBJC_METH_VAR_TYPE_.96l_OBJC_METH_VAR_TYPE_.86l_OBJC_METH_VAR_NAME_.76_OBJC_CLASSLIST_REFERENCES_$_.66l_OBJC_METH_VAR_NAME_.56l_OBJC_PROP_NAME_ATTR_.146_OBJC_SELECTOR_REFERENCES_.46l_OBJC_METH_VAR_NAME_.136l_OBJC_METH_VAR_NAME_.36l_OBJC_CLASS_NAME_.126_OBJC_SELECTOR_REFERENCES_.26ltmp16l_OBJC_PROP_NAME_ATTR_.116_OBJC_SELECTOR_REFERENCES_.16l_OBJC_METH_VAR_TYPE_.106_OBJC_SELECTOR_REFERENCES_.6ltmp5l_OBJC_METH_VAR_NAME_.95l_OBJC_METH_VAR_NAME_.85_OBJC_SELECTOR_REFERENCES_.75_OBJC_SELECTOR_REFERENCES_.65_OBJC_SELECTOR_REFERENCES_.55l_OBJC_PROP_NAME_ATTR_.145l_OBJC_METH_VAR_NAME_.45l_OBJC_METH_VAR_NAME_.135_OBJC_CLASSLIST_REFERENCES_$_.35l_OBJC_METH_VAR_TYPE_.125l_OBJC_METH_VAR_NAME_.25ltmp15l_OBJC_PROP_NAME_ATTR_.115l_OBJC_METH_VAR_NAME_.15l_OBJC_METH_VAR_NAME_.105l_OBJC_METH_VAR_NAME_.5ltmp4l_OBJC_METH_VAR_TYPE_.94l_OBJC_METH_VAR_TYPE_.84l_OBJC_METH_VAR_NAME_.74l_OBJC_METH_VAR_NAME_.64l_OBJC_METH_VAR_NAME_.54l_OBJC_METH_VAR_TYPE_.144_OBJC_SELECTOR_REFERENCES_.44l_OBJC_METH_VAR_NAME_.134_OBJC_SELECTOR_REFERENCES_.34l_OBJC_METH_VAR_TYPE_.124_OBJC_SELECTOR_REFERENCES_.24ltmp14l_OBJC_PROP_NAME_ATTR_.114_OBJC_SELECTOR_REFERENCES_.14l_OBJC_METH_VAR_NAME_.104_OBJC_SELECTOR_REFERENCES_.4ltmp3l_OBJC_METH_VAR_NAME_.93l_OBJC_METH_VAR_NAME_.83_OBJC_SELECTOR_REFERENCES_.73_OBJC_SELECTOR_REFERENCES_.63_OBJC_SELECTOR_REFERENCES_.53l_OBJC_METH_VAR_NAME_.143l_OBJC_METH_VAR_NAME_.43l_OBJC_METH_VAR_NAME_.133l_OBJC_METH_VAR_NAME_.33l_OBJC_METH_VAR_NAME_.123l_OBJC_METH_VAR_NAME_.23ltmp13l_OBJC_PROP_NAME_ATTR_.113l_OBJC_METH_VAR_NAME_.13l_OBJC_METH_VAR_TYPE_.103l_OBJC_METH_VAR_NAME_.3_objc_msgSendSuper2ltmp2l_OBJC_METH_VAR_TYPE_.92l_OBJC_METH_VAR_NAME_.82l_OBJC_METH_VAR_NAME_.72l_OBJC_METH_VAR_NAME_.62l_OBJC_PROP_NAME_ATTR_.152l_OBJC_METH_VAR_NAME_.52l_OBJC_METH_VAR_TYPE_.142_OBJC_SELECTOR_REFERENCES_.42l_OBJC_METH_VAR_NAME_.132_OBJC_SELECTOR_REFERENCES_.32l_OBJC_METH_VAR_TYPE_.122_OBJC_SELECTOR_REFERENCES_.22ltmp12l_OBJC_METH_VAR_NAME_.112_OBJC_SELECTOR_REFERENCES_.12l_OBJC_METH_VAR_NAME_.102_OBJC_SELECTOR_REFERENCES_.2ltmp1lCPI4_1lCPI3_1l_OBJC_METH_VAR_NAME_.91l_OBJC_CLASS_NAME_.81_OBJC_SELECTOR_REFERENCES_.71_OBJC_SELECTOR_REFERENCES_.61l_OBJC_PROP_NAME_ATTR_.151_OBJC_SELECTOR_REFERENCES_.51l_OBJC_METH_VAR_NAME_.141l_OBJC_METH_VAR_NAME_.41l_OBJC_METH_VAR_TYPE_.131l_OBJC_METH_VAR_NAME_.31l_OBJC_METH_VAR_NAME_.121l_OBJC_METH_VAR_NAME_.21ltmp11l_OBJC_METH_VAR_NAME_.111l_OBJC_METH_VAR_NAME_.11l_OBJC_METH_VAR_NAME_.101l_OBJC_METH_VAR_NAME_.1ltmp0lCPI4_0lCPI3_0l_OBJC_METH_VAR_TYPE_.90l_OBJC_CLASS_NAME_.80l_OBJC_METH_VAR_NAME_.70l_OBJC_METH_VAR_NAME_.60l_OBJC_PROP_NAME_ATTR_.150l_OBJC_METH_VAR_NAME_.50l_OBJC_METH_VAR_TYPE_.140_OBJC_CLASSLIST_REFERENCES_$_.40l_OBJC_METH_VAR_NAME_.130_OBJC_SELECTOR_REFERENCES_.30ltmp20l_OBJC_METH_VAR_TYPE_.120_OBJC_CLASSLIST_REFERENCES_$_.20ltmp10l_OBJC_METH_VAR_NAME_.110_OBJC_SELECTOR_REFERENCES_.10l_OBJC_METH_VAR_TYPE_.100l_OBJC_LABEL_CLASS_$#1/36           0           0     0     100644  147988    `
HDLSiriSceneListViewController.oÏúíþ  ˜
–0–!__text__TEXT0H¤Ø€__literal8__TEXT 0)__cstring__TEXT DP)__cfstring__DATAh`˜)»__const__DATAÈhø)8»__objc_data__DATA0P`*p»__objc_superrefs__DATA€°*°»__objc_methname__TEXTˆÎ¸*__objc_selrefs__DATAX3€ˆA¸»P__objc_ivar__DATAØ5D__objc_classrefs__DATAð5h D8¾ __ustring__TEXTX6ˆD__objc_classname__TEXTj6ãšD__objc_methtype__TEXTM7Õ }E__objc_const__DATA(C¨XQ ¾ã__data__DATAÐV e¸Í__objc_protolist__DATApY8 g¨Î __objc_classlist__DATA¨YØgàÎ__bitcode__LLVM°Yàg__cmdline__LLVM±Y?ág__objc_imageinfo__DATAðl {__debug_loc__DWARFøl?({__debug_abbrev__DWARF7Šóg˜__debug_info__DWARF*ŽÚNZœèÎ4__debug_ranges__DWARFÝÀ4ë__debug_str__DWARFÄ݂qôë__apple_names__DWARFFO$v]__apple_objc__DWARFjWȚe__apple_namespac__DWARF2X$bf__apple_types__DWARFVX‹†f__compact_unwind__LDèq`€ˆÐ+__eh_frame__TEXTHw@x…àÑV h__debug_line__DWARFˆ~ЏŒÔ% .˜ÔpÙAýØD Pýý&-(-frameworkCoreFoundation-(-frameworkIntentsUI- -frameworkIntents-(-frameworkCoreLocation- -frameworkUIKit-(-frameworkFileProvider-0-frameworkUserNotifications- -frameworkCoreText-(-frameworkQuartzCore-(-frameworkCoreImage- -frameworkImageIO-(-frameworkCoreVideo- -frameworkOpenGLES- -frameworkMetal-(-frameworkIOSurface-(-frameworkCoreGraphics-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationÿƒÑý{©ýC‘@ùà#©@ùà‘”€´€¹h(øý{A©ÿƒ‘À_ÖÿÑöW©ôO©ý{©ýÑóª@ùà#©@ùà‘”@ùઔýª”ôª@ù"€R#€R”ઔ@ù@ù@ý@ýn N”ýª”ôª@ùઔýª”õª@ù⪔ઔઔ@ùઔý{C©ôOB©öWA©ÿ‘À_Öø_¼©öW©ôO©ý{©ýÑóª@ù᪔ýª”õª`´àªáª”ýª”öª@ùB‘”÷ªàª”ઔ—5    àª”@ùB‘ઔàªáª”ýª”ôª@ùàªâª”ઔ@ùઔ@ùàªý{C©ôOB©öWA©ø_ĨöW½©ôO©ý{©ýƒ‘󪐀¹hvøàµ@ù”ôª@ù@ù”ýª”õª@ù”@ùˆèÒgžàgžágžàª”hjvø`j6øàª”ઔ`jvø@ù”ýª”ôª@ù@ù⪀R”ઔ`jvøý{B©ôOA©öWèø_¼©öW©ôO©ý{©ýÑôª@ùઔóªàªáª”ýª”öª@ùàªáª”ýª”÷ª@ùàªâª”ઔઔ@ù@ù”ýª”öªàªáª”ýª”÷ª@ù⪔ઔઔàªáª”ýª”ôª@ù”ýª”õª@ù⪔ઔઔàªý{C©ôOB©öWA©ø_Ĩø_¼©öW©ôO©ý{©ýÑóª@ù᪔ýª”õª@ù”ýª”öª@ù⪔÷ªàª”ઔw´àªáª”ýª”óª@ù"€R”ýª”àªý{C©ôOB©öWA©ø_Ĩ@ùàª"€R€Òý{C©ôOB©öWA©ø_Ĩé#¼möW©ôO©ý{©ýÑ󪐀¹hvø 
µ@ù”ôª@ù@ù”ýª”õª@ù”H¢N@ùઔ⪐@ùàgžágžãgžàª¨N”hjvø`j6øàª”ઔ@ù@ù”ýª”ôª`jvø@ù⪔ઔ`jvø@ù€R”`jvø@ù€R”`jvø@ù€Ò”`jvø@ùàgžágžâgžãgž”`jvø@ù⪔`jvø@ù⪔`jvøý{C©ôOB©öWA©é#Älë+¸mé#müo©úg©ø_©öW©ôO©ý{©ýÑóª@@ù@ù᪔ýª”ôª@ù᪔ÈèÒ gž` kh
èÒgž( èÒgž(¬``@ù@ù᪔ýª”õª@ù᪔I¢N`@ù᪔ýª”øªáª”j£N@@ù᪔ýª”ùªáª”` k
èÒgžÈ
èÒgž ¬`J9`@@ù᪔ýª”öªáª”` k(èÒgžágž¬a@9`u
(a@ùàªáª”ýª”úª@ùàgž¨N"©NCªN”ઔઔઔઔઔઔ@ùઔýª”ôªàªáª”ýª”óª@ùàªâª”ઔàªý{G©ôOF©öWE©ø_D©úgC©üoB©é#Amë+ÈlôO¾©ý{©ýC‘@ù”ýª”óª@ù”ôªàª”àªý{A©ôO¨À_Öø_¼©öW©ôO©ý{©ýÑôªóª@ùઔõªB‘àªáª”ýª”ôª`µ@ù”@ùc‘€Ò”ôª@ùઔýª”öª@ùઔ÷ªàª”@ùàªâª”ýª”õªàª”´@€R€R€R€R”@4@ùઔýª”öª@ùàªâª”ýª”óªàª”@ùàªâªãª”ઔઔàªý{C©ôOB©öWA©ø_ĨH
èÒgžÀ_Öø_¼©öW©ôO©ý{©ýÑõªôªàª”óª@ùàªâª#€R”@€R€R€R€R”@4@ùઔýª”öª@ùઔ⪐@ùઔýª”õªàª”U´@ùઔýª”öª@ùàªâª”ýª”÷ªàª”@ùàªâªãª”ઔઔàªý{C©ôOB©öWA©ø_Ĩø_¼©öW©ôO©ý{©ýÑôªõªàª”óªàª”ôª“´@ù”@ù⪔öª@ù@ù”öª@ùàªâª”ýª”÷ª@ùàªâª”öªàª”@ùàªâª”@€R¡€R€R€R”À4@ùઢ€R”@ùàªâª#€R€Ò”ઔઔàªý{C©ôOB©öWA©ø_ĨöW½©ôO©ý{©ýƒ‘ઐ@ù”ôªáª”ýª”óª@ù”@ù”õª@ùઔýª”öªàª”@ùàªâª”ઔ@ùàªâª”@ùàªâª”@ù”@ù⪔ôªàª”ઔàªý{B©ôOA©öWèÿCÑüo©úg©ø_©öW©ôO©ý{©ý‘ôª@ù@ù¨øàª”àùäOà­à­@ùઔýª”@ù⃑パჩ€R”à´è@ù@ù    
 €Ò@ù7@ùX@ùy@ùñ„Ÿšè@ù@ùë`Tà @ù”è@ùysøáª”ýª”ûªáª”ýª”úªàª”Ú´àªáª”ýª”ûªáªâ@ù”üªàª”<7ઔs‘ŸëAûÿT⃑パáƒ@©€R”    
  ùÿµ€Òà @ù”à@ù”¨Zø    )@ù)@ù?ëATàªý{T©ôOS©öWR©ø_Q©úgP©üoO©ÿC‘”ÿCÑüo©úg©ø_©öW©ôO©ý{©ý‘ôª@ù@ù¨øàª”àùäOà­à­@ùઔýª”@ù⃑パᩀR” ´è@ù@ù    
 €Ò@ù7@ùH@ùè ùy@ùñ„Ÿšè@ù@ùë`Tà@ù”è@ùytøàªáª”ýª”üªáª”ýª”ûªàª”Û´àªá @ù”ýª”üªáªâ@ù”õªàª”U5ઔ”‘ë!ûÿT⃑パá@©€R”    
 àøÿµ€Òઔõªàª”à@ù”à@ù”¨Zø    )@ù)@ù?ëATàªý{T©ôOS©öWR©ø_Q©úgP©üoO©ÿC‘”öW½©ôO©ý{©ýƒ‘ઐ@ù”ýª”óª@ù”ýª”ôª@ù@ù”⪐@ùઔõªàª”ઔàªý{B©ôOA©öWèÀ_ÖÿƒÑöW©ôO©ý{©ýC‘óª@€R€R€R€R”€4@ù@ù”ýª”ôª@ù@ù”ýª”õª@ùèù@ýàý‘    )‘è'©óS©@ùઔôªâ‘àªáª”ઔà@ù”ઔ@ùઔýª”óª@ù”ઔý{E©ôOD©öWC©ÿƒ‘À_ÖÿƒÑôO©ý{©ýC‘óªàª”ôª@ùèù@ýà ý‘    )‘è§©h@ùࣩ`@ù”àùઔóª@ùá#‘”à@ù”à@ù”ઔý{E©ôOD©ÿƒ‘À_ÖÿÃÑüo ©úg©ø_©öW©ôO©ý{©ýƒ‘óª@ù@ù¨øäOà­à­@ù”ôª@ùâ‘ã‘᪀R” ´öªè @ù@ù€Ò@ù˜@ùè @ù@ùë`Tઔè@ùy{ø`@ùáªâª” 4`@ùáªâª”{‘ë£ýÿTâ‘ã‘àªáª€R”öª üÿµàª”@ùb@ù@ù”ýª”ôª`@ù@ù⪔ઔ`@ù@ù”ýª”óª@ù”ઔ¨Zø    )@ù)@ù?ë!Tý{R©ôOQ©öWP©ø_O©úgN©üoM©ÿÑÀ_֔ôO¾©ý{©ýC‘óª @ù”`@ù”`@ùý{A©ôO¨ôO¾©ý{©ýC‘óª@ù”`@ù”`@ùý{A©ôO¨ôO¾©ý{©ýC‘óª @ù”`@ùý{A©ôO¨ôO¾©ý{©ýC‘óª@ù”`@ùý{A©ôO¨ôO¾©ý{©ýC‘ôªàª”óª@ù⪔@€R¡€R€R€R”À4@ùઢ€R”@ùàªâª#€R€Ò”àªý{A©ôO¨ôO¾©ý{©ýC‘ôªàª”óª@ù⪔@€R¡€R€R€R”À4@ùઢ€R”@ùàªâª#€R€Ò”àªý{A©ôO¨öW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”@ùàª"€R€Ò”àªý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”@ùàª"€R€Ò”àªý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”@ùàª"€R€Ò”àªý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”@ùàª"€R€Ò”àªý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”@ùàª"€R€Ò”àªý{B©ôOA©öW萀¹hhøÀ_֐€¹h(øÀ_Ö᪐€¹‹€¹hhøÀ_Ö᪐€¹‹€¹hhøÀ_Ö᪐€¹‹áª€¹‹€¹€R€¹ôO¾©ý{©ýC‘󪐀¹‹€Ò”€¹`‹€Ò”€¹`‹€Ò”€¹`‹€Ò”€¹`‹€Òý{A©ôO¨ý{¿©€Ò”  Ôÿþþþþþî? ŸŸŸŸŸï?ÂÂHDLSiriSceneListCellIdentifierv8@?0v24@?0@"NSArray"8@"NSError"16ÈÈÐ80initviewDidLoadnavigationControllersetNavigationBarHidden:animated:colorWithRed:green:blue:alpha:viewsetBackgroundColor:initViewtitleNameisEqual:setTitleName:setTopBarViewWithTitle:initTableViewrefreshSirimainScreenboundsinitWithFrame:backButtongoBackaddTarget:action:forControlEvents:topBarViewaddSubview:whiteColortitleLabelsetText:viewControllersindexOfObject:dismissViewControllerAnimated:completion:popViewControllerAnimated:tableViewStyleinitWithFrame:style:clearColorsetShowsVerticalScrollIndicator:setShowsHorizontalScrollIndicator:setSeparatorStyle:setContentInset:setDataSource:setDelegate:sharedApplicationstatusBarFrametableViewsetFrame:dataSourcecountdequeueReusableCellWithIdentifier:initWithStyle:reuseIdentifier:rowobjectAtIndexedSubscript:userSceneIdgetSceneIntent:initModel:intent:deselectRowAtIndexPath:animated:getSceneINVoiceShortcut:addOrEditVoiceShortcut:model:getINShortcut:initWithShortcut:setModalPresentationStyle:presentViewController:animated:completion:initWithVoiceShortcut:namesetSceneId:setSuggestedInvocationPhrase:setSceneName:initWithIntent:siriShortcutListcountByEnumeratingWithState:objects:count:shortcutintentsceneIdisEqualToString:classisKindOfClass:arraysharedCentercheckCurrentClass:addObject:arrayWithArray:setSiriShortcutList:reloadDatagetAllVoiceShortcutsWithCompletion:selfperformSelector:performSelector:withObject:performSelector:withObject:withObject:isProxyisMemberOfClass:conformsToProtocol:respondsToSelector:retainreleaseautoreleaseretainCountzonehashsuperclassdescriptiondebugDescriptionhashTQ,RsuperclassT#,RdescriptionT@"NSString",R,CdebugDescriptionpresentAddVoiceShortcutViewController:forAddVoiceShortcutButton:presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:addVoiceShortcutViewController:didFinishWithVoiceShortcut:error:addVoiceShortcutViewControllerDidCancel:editVoiceShortcutViewController:didUpdateVoiceShortcut:error:editVoiceShortcutViewController:didDeleteVoiceShortcutWithIdentifier:editVoiceShortcutViewControllerDidCancel:tableView:numberOfRowsInSection:tableView:cellForRowAtIndexPath:numberOfSectionsInTableView:tableView:titleForHeaderInSection:tableView:titleForFooterInSection:tableView:canEditRowAtIndexPath:tableView:canMoveRowAtIndexPath:sectionIndexTitlesForTableView:tableView:sectionForSectionIndexTitle:atIndex:tableView:commitEditingStyle:forRowAtIndexPath:tableView:moveRowAtIndexPath:toIndexPath:scrollViewDidScroll:scrollViewDidZoom:scrollViewWillBeginDragging:scrollViewWillEndDragging:withVelocity:targetContentOffset:scrollViewDidEndDragging:willDecelerate:scrollViewWillBeginDecelerating:scrollViewDidEndDecelerating:scrollViewDidEndScrollingAnimation:viewForZoomingInScrollView:scrollViewWillBeginZooming:withView:scrollViewDidEndZooming:withView:atScale:scrollViewShouldScrollToTop:scrollViewDidScrollToTop:scrollViewDidChangeAdjustedContentInset:tableView:willDisplayCell:forRowAtIndexPath:tableView:willDisplayHeaderView:forSection:tableView:willDisplayFooterView:forSection:tableView:didEndDisplayingCell:forRowAtIndexPath:tableView:didEndDisplayingHeaderView:forSection:tableView:didEndDisplayingFooterView:forSection:tableView:heightForRowAtIndexPath:tableView:heightForHeaderInSection:tableView:heightForFooterInSection:tableView:estimatedHeightForRowAtIndexPath:tableView:estimatedHeightForHeaderInSection:tableView:estimatedHeightForFooterInSection:tableView:viewForHeaderInSection:tableView:viewForFooterInSection:tableView:accessoryTypeForRowWithIndexPath:tableView:accessoryButtonTappedForRowWithIndexPath:tableView:shouldHighlightRowAtIndexPath:tableView:didHighlightRowAtIndexPath:tableView:didUnhighlightRowAtIndexPath:tableView:willSelectRowAtIndexPath:tableView:willDeselectRowAtIndexPath:tableView:didSelectRowAtIndexPath:tableView:didDeselectRowAtIndexPath:tableView:editingStyleForRowAtIndexPath:tableView:titleForDeleteConfirmationButtonForRowAtIndexPath:tableView:editActionsForRowAtIndexPath:tableView:leadingSwipeActionsConfigurationForRowAtIndexPath:tableView:trailingSwipeActionsConfigurationForRowAtIndexPath:tableView:shouldIndentWhileEditingRowAtIndexPath:tableView:willBeginEditingRowAtIndexPath:tableView:didEndEditingRowAtIndexPath:tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:tableView:indentationLevelForRowAtIndexPath:tableView:shouldShowMenuForRowAtIndexPath:tableView:canPerformAction:forRowAtIndexPath:withSender:tableView:performAction:forRowAtIndexPath:withSender:tableView:canFocusRowAtIndexPath:tableView:shouldUpdateFocusInContext:tableView:didUpdateFocusInContext:withAnimationCoordinator:indexPathForPreferredFocusedViewInTableView:tableView:selectionFollowsFocusForRowAtIndexPath:tableView:shouldSpringLoadRowAtIndexPath:withContext:tableView:shouldBeginMultipleSelectionInteractionAtIndexPath:tableView:didBeginMultipleSelectionInteractionAtIndexPath:tableViewDidEndMultipleSelectionInteraction:tableView:contextMenuConfigurationForRowAtIndexPath:point:tableView:previewForHighlightingContextMenuWithConfiguration:tableView:previewForDismissingContextMenuWithConfiguration:tableView:willPerformPreviewActionForMenuWithConfiguration:animator:tableView:willDisplayContextMenuWithConfiguration:animator:tableView:willEndContextMenuInteractionWithConfiguration:animator:setTableViewStyle:setTableView:setTopBarView:.cxx_destruct_tableViewStyle_tableView_dataSource_titleName_topBarView_siriShortcutListtopBarViewT@"TopBarView",&,N,V_topBarViewsiriShortcutListT@"NSArray",C,N,V_siriShortcutListtableViewStyleTq,N,V_tableViewStyletableViewT@"UITableView",&,N,V_tableViewdataSourceT@"NSMutableArray",&,N,V_dataSourcetitleNameT@"NSString",&,N,V_titleName( 0Sirië_wccäNHDLSiriSceneListViewControllerINUIAddVoiceShortcutButtonDelegateNSObjectINUIAddVoiceShortcutViewControllerDelegateINUIEditVoiceShortcutViewControllerDelegateUITableViewDataSourceUITableViewDelegateUIScrollViewDelegateB24@0:8@16#16@0:8@16@0:8@24@0:8:16@32@0:8:16@24@40@0:8:16@24@32B16@0:8B24@0:8#16B24@0:8:16Vv16@0:8Q16@0:8^{_NSZone=}16@0:8B24@0:8@"Protocol"16@"NSString"16@0:8v32@0:8@16@24v32@0:8@"INUIAddVoiceShortcutViewController"16@"INUIAddVoiceShortcutButton"24v32@0:8@"INUIEditVoiceShortcutViewController"16@"INUIAddVoiceShortcutButton"24v40@0:8@16@24@32v24@0:8@16v40@0:8@"INUIAddVoiceShortcutViewController"16@"INVoiceShortcut"24@"NSError"32v24@0:8@"INUIAddVoiceShortcutViewController"16v40@0:8@"INUIEditVoiceShortcutViewController"16@"INVoiceShortcut"24@"NSError"32v32@0:8@"INUIEditVoiceShortcutViewController"16@"NSUUID"24v24@0:8@"INUIEditVoiceShortcutViewController"16q32@0:8@16q24@32@0:8@16@24q24@0:8@16@32@0:8@16q24B32@0:8@16@24@24@0:8@16q40@0:8@16@24q32v40@0:8@16q24@32q32@0:8@"UITableView"16q24@"UITableViewCell"32@0:8@"UITableView"16@"NSIndexPath"24q24@0:8@"UITableView"16@"NSString"32@0:8@"UITableView"16q24B32@0:8@"UITableView"16@"NSIndexPath"24@"NSArray"24@0:8@"UITableView"16q40@0:8@"UITableView"16@"NSString"24q32v40@0:8@"UITableView"16q24@"NSIndexPath"32v40@0:8@"UITableView"16@"NSIndexPath"24@"NSIndexPath"32v48@0:8@16{CGPoint=dd}24N^{CGPoint=dd}40v28@0:8@16B24v40@0:8@16@24d32v24@0:8@"UIScrollView"16v48@0:8@"UIScrollView"16{CGPoint=dd}24N^{CGPoint=dd}40v28@0:8@"UIScrollView"16B24@"UIView"24@0:8@"UIScrollView"16v32@0:8@"UIScrollView"16@"UIView"24v40@0:8@"UIScrollView"16@"UIView"24d32B24@0:8@"UIScrollView"16v40@0:8@16@24q32d32@0:8@16@24d32@0:8@16q24q32@0:8@16@24@40@0:8@16@24@32B48@0:8@16:24@32@40v48@0:8@16:24@32@40B40@0:8@16@24@32@48@0:8@16@24{CGPoint=dd}32v40@0:8@"UITableView"16@"UITableViewCell"24@"NSIndexPath"32v40@0:8@"UITableView"16@"UIView"24q32d32@0:8@"UITableView"16@"NSIndexPath"24d32@0:8@"UITableView"16q24@"UIView"32@0:8@"UITableView"16q24q32@0:8@"UITableView"16@"NSIndexPath"24v32@0:8@"UITableView"16@"NSIndexPath"24@"NSIndexPath"32@0:8@"UITableView"16@"NSIndexPath"24@"NSString"32@0:8@"UITableView"16@"NSIndexPath"24@"NSArray"32@0:8@"UITableView"16@"NSIndexPath"24@"UISwipeActionsConfiguration"32@0:8@"UITableView"16@"NSIndexPath"24@"NSIndexPath"40@0:8@"UITableView"16@"NSIndexPath"24@"NSIndexPath"32B48@0:8@"UITableView"16:24@"NSIndexPath"32@40v48@0:8@"UITableView"16:24@"NSIndexPath"32@40B32@0:8@"UITableView"16@"UITableViewFocusUpdateContext"24v40@0:8@"UITableView"16@"UITableViewFocusUpdateContext"24@"UIFocusAnimationCoordinator"32@"NSIndexPath"24@0:8@"UITableView"16B40@0:8@"UITableView"16@"NSIndexPath"24@"<UISpringLoadedInteractionContext>"32v24@0:8@"UITableView"16@"UIContextMenuConfiguration"48@0:8@"UITableView"16@"NSIndexPath"24{CGPoint=dd}32@"UITargetedPreview"32@0:8@"UITableView"16@"UIContextMenuConfiguration"24v40@0:8@"UITableView"16@"UIContextMenuConfiguration"24@"<UIContextMenuInteractionCommitAnimating>"32v40@0:8@"UITableView"16@"UIContextMenuConfiguration"24@"<UIContextMenuInteractionAnimating>"32v16@0:8q16@0:8v24@0:8q16q@"UITableView"@"NSMutableArray"@"NSString"@"TopBarView"@"NSArray"    3…(($ 
„8```````-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLSiriSceneListViewController.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriSceneListViewController.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1637828650364117851-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriSceneListViewController.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@(0Ÿ(DP Q D£QŸD\P\<c<H£PŸDpQpH£QŸH`P`@c@L£PŸHlQlL£QŸL`P`0c08£PŸL|Q|(£QŸ8PPP0d8`Q`€£QŸ8\R\`P€˜P˜ c <£PŸ<XcXd£PŸ€¤Q¤d£QŸd|P|äcäð£PŸd˜Q˜Ü£QŸðPäcä(    £PŸð,Q,(    £QŸ(    @    P@    t    £PŸ(    <    Q<    t    £QŸ(    @    R@    t    £RŸ(    @    S@    t    £SŸt        P    ¨
ct         Q     ð
£QŸt        R    °    d°    ¸    Pt    œ    Sœ         PÄ    ä
dH
è
eœ
¤
Pü
 P $ £PŸ$ $ dü
  Q  0 £QŸü
  R  $ £RŸ$ 0 e0 < Pü
 S   P” œ P¬  eÜ ä P0 P PP d £PŸd ` e0 T QT h £QŸ0 P RP T P0 H SH \ d\ ` Pˆ ” fÜ ð fh | P| h£PŸh ˆ Qˆ h£QŸh | R| ˆ P” œ P¼ deD`dh P ¨£PŸ¨ÀdÀÄPh¤Q¤8£QŸh R ¤P¨0Ÿ ¨0Ÿ¨äjè(j48j@HPhäj8pPpx£PŸxd”P8tQt(£QŸ8pRptPxÔ0Ÿô€0ŸÄÐ0ŸØe$(e¼jÄØj@¼kÄØk(<P<¼£PŸ(DQD¼£QŸ(<R<HP¼ÔPÔ´c´Ü£PŸ¼ÜQÜÜ£QŸPÜôPôü£PŸüHcÜôQôøPÜøRø€£RŸìôp# üHƒ# ìôp#(üHƒ#(€´P´àc ´p# ´àƒ#  ´p#(´àƒ#( ´p#0´àƒ#0,|i0DPD`£PŸ0@Q@\c\`£QŸ`pPpŒcŒ£PŸ¤P¤¸£PŸ Q ´c´¸£QŸ¸ÈPÈÜcÜà£PŸàôPôü£PŸü`dàøQød£QŸàôRôøPàøSød£SŸdxPx€£PŸ€ädd|Q|è£QŸdxRx|Pd|S|è£SŸèüPücPè Q H£QŸèR Pè S H£SŸè T H£TŸH\P\tct|PHlQl¨£QŸHhRhlP¨¼P¼ÔcÔÜP¨ÌQÌ£QŸ¨ÈRÈÌPP4c4<P,Q,h£QŸ(R(,P,S,h£SŸ,T,h£TŸh|P|”c”œPhŒQŒÈ£QŸhˆRˆŒPhŒSŒÈ£SŸÈÔPÔØ£PŸèøPøü£PŸèìQìü£QŸèìRìüQüP £PŸ P £PŸ Q £QŸ R Q ,P,0£PŸ0@P@D£PŸ04Q4D£QŸ04R4DQDTPTX£PŸDHQHX£QŸDHRHXQt„P„ìcìð£PŸt”Q”ð£QŸ%‚|ïáå 4I?: ; &II : ; æ I8 €„èI: ; ë I: ; 8 2     I: ;
< I: ; $> I : ; ( (I : ;ì : ; æ €„èI: ; ë €„èI: ;ë €„èI: ; éë €„èI: ;뀄èI: ; éë  I8 €„èI: ;éë : ;  I: ; 8 &I!I7  $ > !ä " Iˆ8 #I'$I%ä &'' : ;æ (|€|): ; *.@dz: ; 'Iá+I4,.@dz: ; 'á-: ; I.4: ; I/ 0.ç@dz: ; 'Iá1I42: ; I3 U4.@dzn: ; 'á5: ; I464: ; I47H}8I~9.: ; '<?á:';.@z4?á<I4=.@dz: ;'á>: ;I?.ç@dz: ; 'I4á@.ç@dz: ; '4áAIBIC.@dz: ; '4áÖN/§ðiH    ÈMRˆco¯œi‘5š†8    ’žK—
¤ §¶ Á ÍÓ÷ % Øä î œBRjˆ¦Åâ þ@€7€Q€ l€@‘€€³€€Ñ€€î€€
€€ ,ÿI€€<h€€€xŠ€€€€§ÿÿÿÿ Í¿Ôð & ÍC    ,\z—´Öð8Sy‘~ Í®    %Åé2 œT
-_n|‹œ¬ ͺ Ëã= ÍY n‡  ͺ  Ïï        Í"    E    l     ͙     ·    Ù    
 Í/
&M
o
‘
³
 ÍØ
2ô
 6  ÍX 8u ’ ¾ í   Í4 -N o  œ  ¯ Ô  % Q z  ͪ Ì ò  Íz6\¡Ì Í÷ &@ Íjz”®Äàü Í':Mj€•¬¾Ð Íè%õ/ ÍGWk–¯ ÍÆ/Ûþ œ8Ld¥ÿÿ ÍÁ#ìIq ͚µ×÷ Í4Z ̓£Çí Í;eŒ Ͷ Óô Í=Z{£ œÈ
VÞø.Jh ́“°Ðñ    !6Nd{    ”
® Ê œç2^…¯Ø @ Ó:^o” Q œ¤#±Èßö Í +/W|¤ ÍÊ2î@i‘¼ œè;÷ &=Tj€€ü„€€€ø ͛&¼â
0W} Í¥¿ßþ Í;5^еâ Í 9 f ‘ »  œç õ !)!  ÍF!$Y!n!…!œ!´!Ñ!ð!" Í/"4C"[" Ív"@‹"©"Ì" Íï"##4# ÍH#a#‚# #À#Þ#$$ ÍB$U$€€m$€€€$€€•$€€ ¬$€€ÀÁ$€€€ ÍÙ$3ë$% 3
%!G%c%}% ›%@º%€Ù%€÷%€ &€€:&€€\&€€€€v&“&€€€€·&€€€€ß&€€€€'€€€€&'€€€€F'€€€€j'€€€€‰'€€€€    ª'€€€€
Ç'€€€€ Ó>%  Íå'"(6(b(( ͸(#Í(í())6)R) Íj) ,Œ)¹)æ) Í* ,*P*p* ͐*$§*Å*ç* Í+ 2+0+C+ ÍT+ ;l++­+ ÍÉ+ HÞ+þ+, Í4, BG,e,, ͖, N¶,á,    - « /-&!E-T-d- ¶ 9-% A- « u-&€-‘-¢- ³-¹-8Z  ù<ÞH8P(hIPƒ1ZLXPŽ1ZHAU°8ZH6YMZH@Yƒ1ZPYŽ1Z[Y°8ZgYMZrYÞ~Y(Ø-    ckL0(    ‡A_0‰    qH4`5‰    tAm5Ê    zx5C…5M    |a5H    }AÖ9‚    ~Aî9M    ©hô9—    ²A    :—    µA:—    ¸A5:—    »AN:Ê    ÂLi:Ê    ÅL”:Ê    ÈLÊ4M    Ëh±:Ê    ÔÀ:CÑ:Ê    Õà:Cñ:Ê    ×;C-;Ê    ØL;Cm;œ    îL‚;§    õL™;Ê    øLÆ;Ê    ûAé;Ê    ýLÿ;²    ÿL<Ê    L7<Ê    L\<    Lq<½    A‰<Ê    A <È    AÂ<Ó    .AÞ<Ó    5Lé-9oõ-Å;A.Ê=A&.Ê@A>.ÊCAO.ÜjA,0~mAk Õ.'N  .á[.H(oi.Í(+w.Ê(2.©.Ê(6     ·.œ(=     Ä.((D(ß.Ê(Sç.Ê(Tï.Ê(W÷./Ê(X    //Ê(|+/Ê(}C/M(‚!R/M(ƒ!a/M(!s/M(Ž!…/J(Ÿ/J(ª/((¸/l(ï/J(÷/J( þ/ã (!0ã ("-Ñ.)oÙ.œ)    V/K[“/š’ wÏ/* Ø/ «ª Žd0‘kk0†“A@v0ʘ0N¦0Í™Lª02šA§4ÊœA¸4ʝÀ4CÊ4M hß4¤L5§h!52©L:5=²A7°0.o¸0ˆ     1@     
1l’     1@™      1lž     -1«£     …1°     ‹1ʵ’1    ›1ʺ§1    µ1ÊÂÅ1    ×12Óâ1(à(ì1«ÿ     þ12
2Ê     2J32<     '2E(N2lO     \2e     k2Šk(2•t(¹2•u(Í2Ü {     ä2ʁë2    ô2Ê›     3ʤ     #3 À     83ÊÉ     O3«Ï r3lÕ     3ÀÚ     3Ëà(¬3lî     ¸3«ó Ä3Ü ù     Ì3Ê     ß3Jñ3((ù3(( 4Ê0     4l6     .4«= :4Ü B     H4F     U4lJ     b4ÖT ~4ð¶(“4Mä(˜4Jê¡4ðö( ¿0,2¿0 ,.Æ0@,/è0,0 KÍ0,Í0,Õ0l,æ0l,    x×0+J ß0 Ší0, í0,ô0l,ú0l, ¶71-71€-E1l-I1l-M1l-Q1l-U1l- Y1l-(]1l-0a1l-8e1l-@i1l-Hm1l-Pq1l-Xu1l-`y1l-h}1l-p1l-x M72 Mz2 M£2 ®: ¶_3. »
j3 Ú¤# M™3 ám4& æë
w4õ†4/oÙ.œ/ Íò40!"51o Äz ï÷ &M—52o 5H2E«5(2!!A¶5(2"!AÄ5Ê2&Ë5Ô5À2-!J8À2.!V8À2/!d8À22!y8À23!8À24!ž8À25!°8À27!Ã8M29!Î8M2:!Û8M2;!ê8M2>!9M2?!9M2@!'9M2A!:9M2^!K9ð2_!Z9ð2`!r9†2c9(2f!˜9(2h!¦9M2i!¾9(2w!ÅÞ5(4oä54S!6M4U!6M4V!"6À4W!*6À4X!66M4\!=6M4]!O6M4a!T6S4b!Œ7M4c!‘7M4d!š7M4e!Ÿ7M4f!¨7M4g!¸7M4h!¾7M4i!Ë7Ê4mÜ7U4uõ7Ê4wý78À4}!8À4’!#8M4.8À478ã 4@8ã 4#÷53Fo¯œ3Hþ5M3NRXY65)8x6_5<‚6f5=¢6m5>³6t5?Õ6¶ 5@Þ6Ó5Aï6Ø5Bù6§5C 7{5D'7w5E=7Ü 5FH7x5GT7Ê5H^7Í5Ik7œ5J€7M5L!b65 oj6U5Z_ s6 ”6 ­6 Æ6 7‡á96o ú®    % «C    , T
- Pº  {Y  šº  ã=Y Ž= YH›Lô-YH=1Íð>†šHÒ?Ú›Là?œLò?åŸL'@å L7@å¡LG@ʤLj@Ê¥L†@ʦLŸ@Ê©L¹@) DhqI»*Mh¯IÊPLÑIv"RH4ÛI-+SAæIÊVîIGøIÊYýIGJ8+[L    JÊ^#JN?JC+fhKc-ihåKÊnLLMˆALv"‰A$Lv"ŠA<LG%‹AILG%ŒA`LÊ)A„L*ŽA›Lô-‘AýMa/’A*Pô-”A#=LŽ-=ÊT5=N?=ÊUH=NS=ÊV_=Nm=¿WL†=ÊXL¡=ÊYAÅ=Õ[AË=Ê\Ô=Cß=Ê]ë=Cù=àtA
>uA> „AZ>ʆx>N˜>ʈL±>MŽh¹>FA ÿ + $Ê2 Uè;å>7oÙ.œ7 ßB2> o˜4J#AK>;'A ŽKÌ>8o˜4J8H-=Ê85=Ná>M8h‹õ>9oü>(9A@?M95A?M96A?l97A&?l98A/?l99A9?l9:AC?l9;AK?l9<AV?l9=A^?"9FA'm?!Ao~?M!GA?l!HA?s!IA´?Ï!JAÃ?ð!NA ~”?:”?0:¦?l:¨?l:ª?l:¬?l:®?l: ±?l:( u    %! j ð@
@ 
@l
@l
@l
!@l
. Ç@AoÝ@i!THšG÷)WL¦G*ZL±G *]L¿Gv"`HÓGv"cHdCG%eHçG¼$fhýGÊ)gh"HÊjL9H¼$khî9Mmh[H*nh…H:*ohÍHMqhÖH*rhéH:*sh I'"vLIk"zL(Il|L5Il~LBI°*€LQIÊ‚Ln!è@;oA‰;3Hr3l;7L A'";:L?Ak";=LO3v";BH¼B¼$;DhHC2%;IhdCG%;LHMGì);NL^Gv";SHjG¼$;UhGl;ZLGl;^L 2"A
$A 
"@l
#V?l
#@l
#6Al
# ëÈ
V{"jA<orAv"<2A@}Av"<3A@‹Av"<4A@šAv"<5A@¥Av"<6A@¯Av"<7A@¸Av"<8A@ÃAv"<9A@ÍAv"<:A@×Av"<;A@ãAv"<<A@ðAv"<=A@üAv"<>A@Bv"<?A@Bv"<@A@j3«<SABf#<VAk#B(>o&B$>7@BŠ$>:KBl>=QB”$>@yBl>C}Bl>DƒBl>EˆBM>KrAf#>NEšAf#>OE¥Af#>PE¯Af#>QE¸Af#>REÃAf#>SEÍAf#>TEãAf#>UE×Af#>VEBf#>WEBã >£B©$> §9B=.$l Ÿ$\B? ¤$
lBã µ$ ¨B Ç$×B@Ì$! ÷Bã ýB¶ C¶ C%"C%%#v"$v"%%'C:C§CC§7%UCAoL%jCJoè0xArCV&yA…Ck&|AmDØ'~A~DlA„DʁDCžD(ŠA¥Dã'‹A½Då™AÇDî'šAÔDå¢AèDù'¦AöD(ªAeEt(®aF“)¯A¨FʵAËFlÀAäFÊÁA¹@¨)ÑaGÊ)ùa a&zCB f&
rCp&…CCoCk&CæE˜Ck&CçE£Ck&CèE­Ck&CéE¶Ck&CêEÁCk&CëEËCk&CìEÕCk&CíEâCk&CîEîCk&CïEùCCADðC” Dp'C—$DÀC›QB”$CŸ(D¬'C¤ArCV&C¨ABã C"u'DDoùCD8£B3
DBã D    ¸'4DGK Ã'EDF’ Î'VDE@Ó'
bD RF!$ x®DH /"4 ¨v"@    (
E"M(~Dl"Lä2Ê"LAEÊ"LVEi("!L(EIo¸0IA >
å'"y(uEJo‡E%)J"AšEÓJ%A­E0)J(A½ElJ+AÊE;)J.AÞE;)J1AðEF)J4AFQ)J7a8F\)J:AEFg)J=A[Fr)J@AnF})JCAFˆ)JJA c
¸(# ”
j) , ³
*  Ò
*$ M"FK ñ
+ 2  T+ ; / É+ H N 4, B m –, N˜)›FLo­)ðFMoeEt(MAÏ)GN/­)4GÊ)N2A@  “›& Ä¥ é;5*kHOo~HMO! E*¤HJ*! ÷Bã ýB¶ C¶ C€*"C*…*#ð$ð•*%'C:C§CC§   Æ*ŒI.Ë*! ÷Bã ýB¶ C¶ C+"C ++&$ +%'C:C§CC§ 9 |è% N+TJ-S+! ÷Bã ýB¶ C¶ C‰+"C +Ž+#£+$ $Ä+$N-¨+qJPo€J(PhÉ+ŒJP:oœJå+P<aê+¤JQ-o¶J*,QGA_0‰QIAÞJc,QKaè0QQA/,½JQoÍJ‰Q&A×J@Q'A-1sQ(Ah,éJSoýJŸ,S'hb4Ÿ,S+hO3v"S0h0¤,    KRow4ÖR LKÊR<K¸0R=A$K@R>A1KlRCL;K8-RDLHKC-RELVKlRFLaKlRGLjKÊRHL Œ /-&! ½ u-&S-~KPjoh-’K¨-§KÞ-!AÃKé-$AËK('AÔK(*A™KToî9MT AÍHMT#hdCG%T&A M²K 3ç ù-¦LUŽ®LMUhð>†UH4³Lv"UH4.4v"UHH4UL½L@/ULÒ?ÚULËL*U hÚLv"U$HS=ÊU%_=Nv0ÊU'0N-=ÊU(5=NïLÍU.LýLÊU3LMK/U4L*MlU5L=MÊU:LbMV/U?LtMlUJLŒMÊUNL®MÊUQLÎMlUULÞMÊUXL ¡G ÌÆ/ ë8f/NVŽdCG%VHNG%VH$NÊ)VHv0ÊV0NS=ÊV_=NAN(V hQN(V!hlNã'V#L~NÍV$LÑIv"V(H4“NÊV,NC©NÊV/LÉND0V3üO‰V9APÊV@LI0ÛNWoéNWAõN‰W$H§KMW)hO1W.AdO1W/AsO1W0A~O1W1AŠOY1W2A¨OY1W3AµOn1W4AÓOn1W5AàO1W6AîOY1W7A1OX@1"OX"o“4MX5!1OJX66OÊX7IO(X8^1”OXH1s1ÁOXQ1 ®Ó“1'bP+F4¡4ƒ10AAUJ2H˜4J3HLUJ5H_UÊ6rUN‡UJ8H”UJ9H¡Ul;L«Ul<L¿Ul=LÓUl>LæUl?LVl@L VlDL0VlGLHVåILWVK8JLoV‰LH> NA~VÍRAV(aAœV(bAµVʁAËVÊ‹ÓVNÝVÊŽLíVʏL
WʐL"WÊ‘LGWW8•A|W(–A–WÍžL¹Wv"ŸHËWv" HçWv"¡H X¥8£LXv"¤H)X2%¥h9XʧL^XʨL{X‰ªH‹X‰«H›XʼL¹XÊÀLÏXÊÅLÛXÊÊLôXÊÐL YÊÓAYÊÖAnP3Ž{P@5L‰P6L•På7L¢På<A·Pv6ELÖPÊJLQD0OAQD0TA˜4JVH$QÊW;QNTQÊXL\QÊYLqQÊZLˆQÊ[–QN¦QÊ\´QNÄQÊ^LáQÊ_LR6`LRåbL-RåcLMRådLcRŒ6fL‘R—6gLË=ÊvÔ=C¢RÊw«RC¶RÊxÃRCÒRÊzLçRÊ{LÿRlŽLSlL!Sl‘L+SÊ•L7SÊ—?SCISʘVSCeSÊœLrS¢6¢AšTÎ7¤AÓTü7¦AõT8¨L    U 8ªH Á# 7š ltR* V§6‡SÞ6UTœ!LlTœ"LƒTÃ7)LžS#oÅ=¢70A˜4J2H-=Ê45=N_0‰7A²SÊ9LÇSÊ:LÚSÊ;LíS(=hÿS(>hTÊCL,TœMA“4MPh<T­7TAJT¸7UA æH#     B$ \    Ù$3 Çï"Ó7±T[Þ6~Dl[LÊTl[AÞ6 oƒ8U\Í)UÊ\4UCÑIv"\H4[H*\H    ¹"    \8_W ]
o¯œ] kW 8] tWœ]@8ã ]œ Ó™     µ8'Y)-(Y–YÓY)ZÅ8(dZ–YlZ)    Ù8(ÿZ–Y    [)
í8(ž[–Y©[)^9*Dm29?\ìE+nìE+7•nŸK,Dmf9k\%+pn´K+¼•nŸK,Hmš9¥\.+õn´K+A•nŸK*LìmÒ9Ù\9Þ+zn´K+Æ•nŸK,8Hm:]A+ÿn´K+5•nŸK-nî9AM,€ämI:X]G+¤n´K+•nŸK*dŒm:ˆ]RŽ1+Rn´K+ž•nŸK,ð8mµ:´]b+אn´K+#•nŸK*(    Lmí:ò]kÍ+\n´K+••nŸK-ÎXPkŽ1-¬nkÍ*t    |mC;V^oñE+@n´K+v•nŸK-¯XPoŽ1-ø´noW8..¾nq¹K.Q    ovUL/l
\.tñkyK0ð
oÔ;º^‚l1Pn´K1Q•nŸK2RXP‚Ž12S´n‚W8,ü
4m<"_†+—n´K+ã•nŸK-XP†Ž1-{´n†W8/T ¼.±    oŠUL/¬ \.ç-oŒCK,0 8mª<Š_˜+
n´K+V•nŸK--o˜CK-Å    o˜UL/h ,.    ;o¥‚L/” \.1    ;oœ¤L*h m:=è_°@I+T    n´K+    •nŸK-Æ        o°UL.ü    î9±M.
ñk²K.B
…o¶@I*hÐm®=(`¼K+e
n´K+Ä
•nŸK-ý
Ln¼M.3 Žo½K30.¤ -o¾ÆL3.Ç ñk¿K*8ðm.>j`ÌCK+ê n´K+I •nŸK-‚ LnÌM.¸ ™oÍCK3.* -oÎÆL3`.` ñkÏK*(”m®>¾`ÛÊ+– n´K+Ï •nŸK--oÛCK,¼ mñ>aß+>n´K+Š•nŸK/ìœ.ëoá°84ܤms?@a@aâ5æ°oâËL-2Ûpâ(-hêpâEM6¡nï^N.ß«oá°87¦?X8Q9a_×$¸?$½?oÂ?! ÷Bã ýB¶ C¶ Cø?"Cþ?ý?:@%'C:C§CC§4€°mY@ŽaŽaä5°oäcN.SÛpâ(6‘nâ^N.Ï«oá°8/,X. -oåÆL;00mÏa<0ã <iã ;`0mða<µã ;(mb<ã <:ã ;¸(m2b<†ã ,à„m4ASbõ+Ґn´K+•nŸK-Wqõ¤L-!qõL,d„m†A÷bý+Ɛn´K+•nŸK-K8qý‚L-!qýL=è`mÙAc+ºn´K+•nŸK><Xq¤L>r-oCK>«êpEM=H`m>BAd +än´K+-•nŸK>fXq ¤L=¨`mƒBµd+œn´K+å•nŸK>Xq‚L=`mÈB+e+Tn´K+•nŸK>ÖXq‚L> -oCK>EêpEM=h`m-CÉe+~n´K+Ç•nŸK>Xq‚L>6cq}K?Èo…CwfZƒ1+on´K1Q•nŸK@Øo·C¨fZ1Pn´K1Q•nŸKARIPƒ1@èoòCðfZ+¨n´K+á•nŸKBXPŽ1?üo7D.gZ°8+Pn´K1Q•nŸK@ oiD[gZ+‰n´K+•nŸKBûAU°8? o®D›gZM+1n´K1Q•nŸK@0oàDÇgZ+jn´K+£•nŸKBÜ6YM@Do!Eh+n´K+K•nŸKB„ù<Þ?XofEEh(1Pn´K1Q•nŸK@h o–Exh1Pn´K1Q•nŸKAR8P(Ct|mÑEÄh+ºn´K+•nŸKä öEiQŽi¢GZAqIHfhýiJnhjÊqL;j‰tAýMa/wAGjô-xAQjô-yAaji!|hyjÊLoV‰‚H¥j‰„H¼j‰†HÜjMˆaìjI‹L?=ÊŒH=NS=ʍ_=NûjI‘AkÊ’LkÊ“L5k*I•LCk‰–HQk*I—Lfk‰˜H{kÍšLŒkl›LHVåœLËVÊžÓVNkÊ¡A·k5I£LÂkʳL§G%i"HËVÊ$ÓVN{iÊ%„iNiÊ&–iNŸiÊ'ªiN·i‡H)LÅi’H*L>i`oeEt(`HWiÊ``iNS=Ê`_=N?=Ê`H=N¸4Ê`À4NkiÊ` riN ­¶ Ì= ¨HÓiN­H! ÷Bã ýB¶ C¶ CãH"CôHèH&$ñE$¢GùH%'C:C§CC§ ò/
& Ø
2 6X 8 a4 -EIækcoñkoIcallåIcAtIøkao§KMaalMaalMah-lÅIa LBlÐIa#h wçÕISlb oêIyldoˆlMd !î9Md$(•lðd((žlàd/(³lÊd3     ½lÀd7(ÈlÀd;(ÔlçJd>(    màdA(mÊdE     ˜4JdI.mMdN(FmÊd`Ym    nmÊdc€m    ”mÊdf®m    ÊmÊdhàm    øm    Kdj(ìJãlHoêlã'H M ndK0netIBnMehLnMehHKTngo§K}KgAvnMga‡n@Ig!a‚KdnfoknMf#! ªKšn¯K
žnìE¾KÃnhöEØn‰hH›Lô-hHßnLhH    oULhHLîn "¡4JL (A˜4J ,H‡n@I -Hr3l 3L z ZLo^ o!oM^ h“4M^h‡L>oi ˜4JiH©Lboj ˜4JjHCKÐLÂo0â÷Bã âýB¶ âC¶ â C4MâCNân´Kâ «o°8â(9M&$($EMJMÔo(k,oÜoNk;!ñoÍk<•lðk@!öoMkJ! pMkN!"pMkR!>p(kV!WpJkZipMk^!tp(kb!@8ã k.…pÍk/‹pMk0“pðk1 Mãok     Np â:C§âCC§âÀpYNâÌpYNâã ìEhNðp8ä÷Bã äýB¶ äC¶ ä Cø?äCNäÛp(䠐n´Kä(«o°8ä0@¨°ä´È@ô€ˆÐ„˜äApple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLSiriSceneListViewController.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriHDLSiriSceneListCellIdentifierNSStringNSObjectisaClassobjc_classlengthNSUIntegerlong unsigned intUITableViewStyleNSIntegerlong intUITableViewStylePlainUITableViewStyleGroupedUITableViewStyleInsetGroupedUIControlEventsUIControlEventTouchDownUIControlEventTouchDownRepeatUIControlEventTouchDragInsideUIControlEventTouchDragOutsideUIControlEventTouchDragEnterUIControlEventTouchDragExitUIControlEventTouchUpInsideUIControlEventTouchUpOutsideUIControlEventTouchCancelUIControlEventValueChangedUIControlEventPrimaryActionTriggeredUIControlEventMenuActionTriggeredUIControlEventEditingDidBeginUIControlEventEditingChangedUIControlEventEditingDidEndUIControlEventEditingDidEndOnExitUIControlEventAllTouchEventsUIControlEventAllEditingEventsUIControlEventApplicationReservedUIControlEventSystemReservedUIControlEventAllEventsUITableViewCellStyleUITableViewCellStyleDefaultUITableViewCellStyleValue1UITableViewCellStyleValue2UITableViewCellStyleSubtitleUIModalPresentationStyleUIModalPresentationFullScreenUIModalPresentationPageSheetUIModalPresentationFormSheetUIModalPresentationCurrentContextUIModalPresentationCustomUIModalPresentationOverFullScreenUIModalPresentationOverCurrentContextUIModalPresentationPopoverUIModalPresentationBlurOverFullScreenUIModalPresentationNoneUIModalPresentationAutomaticUIModalTransitionStyleUIModalTransitionStyleCoverVerticalUIModalTransitionStyleFlipHorizontalUIModalTransitionStyleCrossDissolveUIModalTransitionStylePartialCurlUIRectEdgeUIRectEdgeNoneUIRectEdgeTopUIRectEdgeLeftUIRectEdgeBottomUIRectEdgeRightUIRectEdgeAllUIStatusBarStyleUIStatusBarStyleDefaultUIStatusBarStyleLightContentUIStatusBarStyleDarkContentUIStatusBarStyleBlackTranslucentUIStatusBarStyleBlackOpaqueUIStatusBarAnimationUIStatusBarAnimationNoneUIStatusBarAnimationFadeUIStatusBarAnimationSlideUIUserInterfaceStyleUIUserInterfaceStyleUnspecifiedUIUserInterfaceStyleLightUIUserInterfaceStyleDarkUITableViewSeparatorInsetReferenceUITableViewSeparatorInsetFromCellEdgesUITableViewSeparatorInsetFromAutomaticInsetsUITableViewCellSeparatorStyleUITableViewCellSeparatorStyleNoneUITableViewCellSeparatorStyleSingleLineUITableViewCellSeparatorStyleSingleLineEtchedUITableViewCellSelectionStyleUITableViewCellSelectionStyleNoneUITableViewCellSelectionStyleBlueUITableViewCellSelectionStyleGrayUITableViewCellSelectionStyleDefaultUITableViewCellEditingStyleUITableViewCellEditingStyleNoneUITableViewCellEditingStyleDeleteUITableViewCellEditingStyleInsertUITableViewCellAccessoryTypeUITableViewCellAccessoryNoneUITableViewCellAccessoryDisclosureIndicatorUITableViewCellAccessoryDetailDisclosureButtonUITableViewCellAccessoryCheckmarkUITableViewCellAccessoryDetailButtonUITableViewCellFocusStyleUITableViewCellFocusStyleDefaultUITableViewCellFocusStyleCustomINUIAddVoiceShortcutButtonStyleINUIAddVoiceShortcutButtonStyleWhiteINUIAddVoiceShortcutButtonStyleWhiteOutlineINUIAddVoiceShortcutButtonStyleBlackINUIAddVoiceShortcutButtonStyleBlackOutlineINUIAddVoiceShortcutButtonStyleAutomaticINUIAddVoiceShortcutButtonStyleAutomaticOutlineUIEditingInteractionConfigurationUIEditingInteractionConfigurationNoneUIEditingInteractionConfigurationDefaultUISemanticContentAttributeUISemanticContentAttributeUnspecifiedUISemanticContentAttributePlaybackUISemanticContentAttributeSpatialUISemanticContentAttributeForceLeftToRightUISemanticContentAttributeForceRightToLeftUIUserInterfaceLayoutDirectionUIUserInterfaceLayoutDirectionLeftToRightUIUserInterfaceLayoutDirectionRightToLeftNSLineBreakModeNSLineBreakByWordWrappingNSLineBreakByCharWrappingNSLineBreakByClippingNSLineBreakByTruncatingHeadNSLineBreakByTruncatingTailNSLineBreakByTruncatingMiddleUIButtonTypeUIButtonTypeCustomUIButtonTypeSystemUIButtonTypeDetailDisclosureUIButtonTypeInfoLightUIButtonTypeInfoDarkUIButtonTypeContactAddUIButtonTypePlainUIButtonTypeCloseUIButtonTypeRoundedRectUIButtonRoleUIButtonRoleNormalUIButtonRolePrimaryUIButtonRoleCancelUIButtonRoleDestructiveNSTextAlignmentNSTextAlignmentLeftNSTextAlignmentCenterNSTextAlignmentRightNSTextAlignmentJustifiedNSTextAlignmentNaturalUIBaselineAdjustmentUIBaselineAdjustmentAlignBaselinesUIBaselineAdjustmentAlignCentersUIBaselineAdjustmentNoneNSLineBreakStrategyNSLineBreakStrategyNoneNSLineBreakStrategyPushOutNSLineBreakStrategyHangulWordPriorityNSLineBreakStrategyStandardUIScrollViewContentInsetAdjustmentBehaviorUIScrollViewContentInsetAdjustmentAutomaticUIScrollViewContentInsetAdjustmentScrollableAxesUIScrollViewContentInsetAdjustmentNeverUIScrollViewContentInsetAdjustmentAlwaysUIScrollViewIndicatorStyleUIScrollViewIndicatorStyleDefaultUIScrollViewIndicatorStyleBlackUIScrollViewIndicatorStyleWhiteUIScrollViewIndexDisplayModeUIScrollViewIndexDisplayModeAutomaticUIScrollViewIndexDisplayModeAlwaysHiddenUIScrollViewKeyboardDismissModeUIScrollViewKeyboardDismissModeNoneUIScrollViewKeyboardDismissModeOnDragUIScrollViewKeyboardDismissModeInteractiveUIContextMenuInteractionAppearanceUIContextMenuInteractionAppearanceUnknownUIContextMenuInteractionAppearanceRichUIContextMenuInteractionAppearanceCompactUICellConfigurationDragStateUICellConfigurationDragStateNoneUICellConfigurationDragStateLiftingUICellConfigurationDragStateDraggingUICellConfigurationDropStateUICellConfigurationDropStateNoneUICellConfigurationDropStateNotTargetedUICellConfigurationDropStateTargetedNSDirectionalRectEdgeNSDirectionalRectEdgeNoneNSDirectionalRectEdgeTopNSDirectionalRectEdgeLeadingNSDirectionalRectEdgeBottomNSDirectionalRectEdgeTrailingNSDirectionalRectEdgeAllUIViewContentModeUIViewContentModeScaleToFillUIViewContentModeScaleAspectFitUIViewContentModeScaleAspectFillUIViewContentModeRedrawUIViewContentModeCenterUIViewContentModeTopUIViewContentModeBottomUIViewContentModeLeftUIViewContentModeRightUIViewContentModeTopLeftUIViewContentModeTopRightUIViewContentModeBottomLeftUIViewContentModeBottomRightINShortcutAvailabilityOptionsINShortcutAvailabilityOptionSleepMindfulnessINShortcutAvailabilityOptionSleepJournalingINShortcutAvailabilityOptionSleepMusicINShortcutAvailabilityOptionSleepPodcastsINShortcutAvailabilityOptionSleepReadingINShortcutAvailabilityOptionSleepWrapUpYourDayINShortcutAvailabilityOptionSleepYogaAndStretchingCAEdgeAntialiasingMaskunsigned intkCALayerLeftEdgekCALayerRightEdgekCALayerBottomEdgekCALayerTopEdgeCACornerMaskkCALayerMinXMinYCornerkCALayerMaxXMinYCornerkCALayerMinXMaxYCornerkCALayerMaxXMaxYCornerUIControlContentVerticalAlignmentUIControlContentVerticalAlignmentCenterUIControlContentVerticalAlignmentTopUIControlContentVerticalAlignmentBottomUIControlContentVerticalAlignmentFillUIControlContentHorizontalAlignmentUIControlContentHorizontalAlignmentCenterUIControlContentHorizontalAlignmentLeftUIControlContentHorizontalAlignmentRightUIControlContentHorizontalAlignmentFillUIControlContentHorizontalAlignmentLeadingUIControlContentHorizontalAlignmentTrailingUIControlStateUIControlStateNormalUIControlStateHighlightedUIControlStateDisabledUIControlStateSelectedUIControlStateFocusedUIControlStateApplicationUIControlStateReservedUIButtonConfigurationCornerStyleUIButtonConfigurationCornerStyleFixedUIButtonConfigurationCornerStyleDynamicUIButtonConfigurationCornerStyleSmallUIButtonConfigurationCornerStyleMediumUIButtonConfigurationCornerStyleLargeUIButtonConfigurationCornerStyleCapsuleUIButtonConfigurationSizeUIButtonConfigurationSizeMediumUIButtonConfigurationSizeSmallUIButtonConfigurationSizeMiniUIButtonConfigurationSizeLargeUIButtonConfigurationMacIdiomStyleUIButtonConfigurationMacIdiomStyleAutomaticUIButtonConfigurationMacIdiomStyleBorderedUIButtonConfigurationMacIdiomStyleBorderlessUIButtonConfigurationMacIdiomStyleBorderlessTintedUIButtonConfigurationTitleAlignmentUIButtonConfigurationTitleAlignmentAutomaticUIButtonConfigurationTitleAlignmentLeadingUIButtonConfigurationTitleAlignmentCenterUIButtonConfigurationTitleAlignmentTrailingUIMenuOptionsUIMenuOptionsDisplayInlineUIMenuOptionsDestructiveUIMenuOptionsSingleSelectionUIImageOrientationUIImageOrientationUpUIImageOrientationDownUIImageOrientationLeftUIImageOrientationRightUIImageOrientationUpMirroredUIImageOrientationDownMirroredUIImageOrientationLeftMirroredUIImageOrientationRightMirroredUIImageResizingModeUIImageResizingModeTileUIImageResizingModeStretchUIImageRenderingModeUIImageRenderingModeAutomaticUIImageRenderingModeAlwaysOriginalUIImageRenderingModeAlwaysTemplateUIScrollTypeMaskUIScrollTypeMaskDiscreteUIScrollTypeMaskContinuousUIScrollTypeMaskAllUIGestureRecognizerStateUIGestureRecognizerStatePossibleUIGestureRecognizerStateBeganUIGestureRecognizerStateChangedUIGestureRecognizerStateEndedUIGestureRecognizerStateCancelledUIGestureRecognizerStateFailedUIGestureRecognizerStateRecognizedUIKeyModifierFlagsUIKeyModifierAlphaShiftUIKeyModifierShiftUIKeyModifierControlUIKeyModifierAlternateUIKeyModifierCommandUIKeyModifierNumericPadUIEventButtonMaskUIEventButtonMaskPrimaryUIEventButtonMaskSecondaryUIFontDescriptorSymbolicTraitsuint32_tUIFontDescriptorTraitItalicUIFontDescriptorTraitBoldUIFontDescriptorTraitExpandedUIFontDescriptorTraitCondensedUIFontDescriptorTraitMonoSpaceUIFontDescriptorTraitVerticalUIFontDescriptorTraitUIOptimizedUIFontDescriptorTraitTightLeadingUIFontDescriptorTraitLooseLeadingUIFontDescriptorClassMaskUIFontDescriptorClassUnknownUIFontDescriptorClassOldStyleSerifsUIFontDescriptorClassTransitionalSerifsUIFontDescriptorClassModernSerifsUIFontDescriptorClassClarendonSerifsUIFontDescriptorClassSlabSerifsUIFontDescriptorClassFreeformSerifsUIFontDescriptorClassSansSerifUIFontDescriptorClassOrnamentalsUIFontDescriptorClassScriptsUIFontDescriptorClassSymbolicUIGraphicsImageRendererFormatRangeUIGraphicsImageRendererFormatRangeUnspecifiedUIGraphicsImageRendererFormatRangeAutomaticUIGraphicsImageRendererFormatRangeExtendedUIGraphicsImageRendererFormatRangeStandardUIUserInterfaceIdiomUIUserInterfaceIdiomUnspecifiedUIUserInterfaceIdiomPhoneUIUserInterfaceIdiomPadUIUserInterfaceIdiomTVUIUserInterfaceIdiomCarPlayUIUserInterfaceIdiomMacUITraitEnvironmentLayoutDirectionUITraitEnvironmentLayoutDirectionUnspecifiedUITraitEnvironmentLayoutDirectionLeftToRightUITraitEnvironmentLayoutDirectionRightToLeftUIUserInterfaceSizeClassUIUserInterfaceSizeClassUnspecifiedUIUserInterfaceSizeClassCompactUIUserInterfaceSizeClassRegularUIForceTouchCapabilityUIForceTouchCapabilityUnknownUIForceTouchCapabilityUnavailableUIForceTouchCapabilityAvailableUIDisplayGamutUIDisplayGamutUnspecifiedUIDisplayGamutSRGBUIDisplayGamutP3UIAccessibilityContrastUIAccessibilityContrastUnspecifiedUIAccessibilityContrastNormalUIAccessibilityContrastHighUIUserInterfaceLevelUIUserInterfaceLevelUnspecifiedUIUserInterfaceLevelBaseUIUserInterfaceLevelElevatedUILegibilityWeightUILegibilityWeightUnspecifiedUILegibilityWeightRegularUILegibilityWeightBoldUIUserInterfaceActiveAppearanceUIUserInterfaceActiveAppearanceUnspecifiedUIUserInterfaceActiveAppearanceInactiveUIUserInterfaceActiveAppearanceActiveCGLineCapint32_tintkCGLineCapButtkCGLineCapRoundkCGLineCapSquareCGLineJoinkCGLineJoinMiterkCGLineJoinRoundkCGLineJoinBevelfloatHDLSiriSceneListViewControllerUIViewControllerUIRespondernextRespondercanBecomeFirstResponderBOOL_BoolcanResignFirstResponderisFirstResponderundoManagerNSUndoManagergroupingLevelundoRegistrationEnabledisUndoRegistrationEnabledgroupsByEventlevelsOfUndorunLoopModesNSArraycountcanUndocanRedoundoingisUndoingredoingisRedoingundoActionIsDiscardableredoActionIsDiscardableundoActionNameredoActionNameundoMenuItemTitleredoMenuItemTitle_undoStackidobjc_object_redoStack_runLoopModes_NSUndoManagerPrivate1uint64_tlong long unsigned int_target_proxy_NSUndoManagerPrivate2_NSUndoManagerPrivate3editingInteractionConfigurationpreviewActionItemsviewUIViewlayerClassuserInteractionEnabledisUserInteractionEnabledtaglayerCALayerboundsCGRectoriginCGPointxCGFloatdoubleysizeCGSizewidthheightpositionzPositionanchorPointanchorPointZtransformCATransform3Dm11m12m13m14m21m22m23m24m31m32m33m34m41m42m43m44framehiddenisHiddendoubleSidedisDoubleSidedgeometryFlippedisGeometryFlippedsuperlayersublayerssublayerTransformmaskmasksToBoundscontentscontentsRectcontentsGravityCALayerContentsGravitycontentsScalecontentsCentercontentsFormatCALayerContentsFormatminificationFilterCALayerContentsFiltermagnificationFilterminificationFilterBiasopaqueisOpaqueneedsDisplayOnBoundsChangedrawsAsynchronouslyedgeAntialiasingMaskallowsEdgeAntialiasingbackgroundColorCGColorRefCGColorcornerRadiusmaskedCornerscornerCurveCALayerCornerCurveborderWidthborderColoropacityallowsGroupOpacitycompositingFilterfiltersbackgroundFiltersshouldRasterizerasterizationScaleshadowColorshadowOpacityshadowOffsetshadowRadiusshadowPathCGPathRefCGPathactionsNSDictionarynamedelegatestylecanBecomeFocusedfocusedisFocusedfocusGroupIdentifierfocusGroupPriorityUIFocusGroupPriorityfocusEffectUIFocusEffectsemanticContentAttributeeffectiveUserInterfaceLayoutDirectionviewIfLoadedviewLoadedisViewLoadednibNamenibBundleNSBundlemainBundleallBundlesallFrameworksloadedisLoadedbundleURLNSURLdataRepresentationNSDatabytesabsoluteStringrelativeStringbaseURLabsoluteURLschemeresourceSpecifierhostportNSNumberNSValueobjCTypecharcharValueunsignedCharValueunsigned charshortValueshortunsignedShortValueunsigned shortintValueunsignedIntValuelongValueunsignedLongValuelongLongValuelong long intunsignedLongLongValuefloatValuedoubleValueboolValueintegerValueunsignedIntegerValuestringValueuserpasswordpathfragmentparameterStringqueryrelativePathhasDirectoryPathfileSystemRepresentationfileURLisFileURLstandardizedURLfilePathURL_urlString_baseURL_clients_reservedresourceURLexecutableURLprivateFrameworksURLsharedFrameworksURLsharedSupportURLbuiltInPlugInsURLappStoreReceiptURLbundlePathresourcePathexecutablePathprivateFrameworksPathsharedFrameworksPathsharedSupportPathbuiltInPlugInsPathbundleIdentifierinfoDictionarylocalizedInfoDictionaryprincipalClasspreferredLocalizationslocalizationsdevelopmentLocalizationexecutableArchitecturesstoryboardUIStoryboardtitleparentViewControllermodalViewControllerpresentedViewControllerpresentingViewControllerdefinesPresentationContextprovidesPresentationContextTransitionStylerestoresFocusAfterTransitionbeingPresentedisBeingPresentedbeingDismissedisBeingDismissedmovingToParentViewControllerisMovingToParentViewControllermovingFromParentViewControllerisMovingFromParentViewControllermodalTransitionStylemodalPresentationStylemodalPresentationCapturesStatusBarAppearancedisablesAutomaticKeyboardDismissalwantsFullScreenLayoutedgesForExtendedLayoutextendedLayoutIncludesOpaqueBarsautomaticallyAdjustsScrollViewInsetspreferredContentSizepreferredStatusBarStyleprefersStatusBarHiddenpreferredStatusBarUpdateAnimationpreferredUserInterfaceStyleoverrideUserInterfaceStyletopBarViewTopBarViewbackButtonUIButtonUIControlenabledisEnabledselectedisSelectedhighlightedisHighlightedcontentVerticalAlignmentcontentHorizontalAlignmenteffectiveContentHorizontalAlignmentstatetrackingisTrackingtouchInsideisTouchInsideallTargetsNSSetallControlEventscontextMenuInteractionUIContextMenuInteractionmenuAppearancecontextMenuInteractionEnabledisContextMenuInteractionEnabledshowsMenuAsPrimaryActiontoolTiptoolTipInteractionUIToolTipInteractiondefaultToolTipfontUIFontfamilyNamesfamilyNamefontNamepointSizeascenderdescendercapHeightxHeightlineHeightleadingfontDescriptorUIFontDescriptorpostscriptNamematrixCGAffineTransformabcdtxtysymbolicTraitsfontAttributeslineBreakModetitleShadowOffsetcontentEdgeInsetsUIEdgeInsetstopleftbottomrighttitleEdgeInsetsimageEdgeInsetsreversesTitleShadowWhenHighlightedadjustsImageWhenHighlightedadjustsImageWhenDisabledshowsTouchWhenHighlightedconfigurationUIButtonConfigurationbackgroundUIBackgroundConfigurationcustomViewbackgroundInsetsNSDirectionalEdgeInsetstrailingedgesAddingLayoutMarginsToBackgroundInsetsUIColorblackColordarkGrayColorlightGrayColorwhiteColorgrayColorredColorgreenColorblueColorcyanColoryellowColormagentaColororangeColorpurpleColorbrownColorclearColorCIColornumberOfComponentssize_tcomponentsalphacolorSpaceCGColorSpaceRefCGColorSpaceredgreenbluestringRepresentation_priv_pad__ARRAY_SIZE_TYPE__backgroundColorTransformerUIConfigurationColorTransformer__isa__flags__reserved__FuncPtr__descriptor__block_descriptorreservedSizevisualEffectUIVisualEffectimageUIImageCGImageCGImageRefCIImageblackImagewhiteImagegrayImageredImagegreenImageblueImagecyanImagemagentaImageyellowImageclearImageextentpropertiesdefinitionCIFilterShapeurlpixelBufferCVPixelBufferRefCVImageBufferRefCVBufferRef__CVBufferimageOrientationscalesymbolImageisSymbolImageimagesdurationNSTimeIntervalcapInsetsresizingModealignmentRectInsetsrenderingModeimageRendererFormatUIGraphicsImageRendererFormatUIGraphicsRendererFormatprefersExtendedRangepreferredRangetraitCollectionUITraitCollectionuserInterfaceIdiomuserInterfaceStylelayoutDirectiondisplayScalehorizontalSizeClassverticalSizeClassforceTouchCapabilitypreferredContentSizeCategoryUIContentSizeCategorydisplayGamutaccessibilityContrastuserInterfaceLevellegibilityWeightactiveAppearanceimageAssetUIImageAssetflipsForRightToLeftLayoutDirectionbaselineOffsetFromBottomhasBaselineUIImageConfigurationsymbolConfigurationUIImageSymbolConfigurationunspecifiedConfigurationimageContentModestrokeColorstrokeColorTransformerstrokeWidthstrokeOutsetcornerStylebuttonSizemacIdiomStylebaseForegroundColorbaseBackgroundColorimageColorTransformerpreferredSymbolConfigurationForImageshowsActivityIndicatoractivityIndicatorColorTransformerattributedTitleNSAttributedStringstringtitleTextAttributesTransformerUIConfigurationTextAttributesTransformersubtitleattributedSubtitlesubtitleTextAttributesTransformercontentInsetsimagePlacementimagePaddingtitlePaddingtitleAlignmentautomaticallyUpdateForSelectionconfigurationUpdateHandlerUIButtonConfigurationUpdateHandlerautomaticallyUpdatesConfigurationtintColorbuttonTypehoveredisHoveredheldisHeldrolepointerInteractionEnabledisPointerInteractionEnabledpointerStyleProviderUIButtonPointerStyleProviderUIPointerStyleaccessoriesUIPointerEffectpreviewUITargetedPreviewtargetUIPreviewTargetcontainercenterparametersUIPreviewParametersvisiblePathUIBezierPathemptyisEmptycurrentPointlineWidthlineCapStylelineJoinStylemiterLimitflatnessusesEvenOddFillRuleUIPointerShapemenuUIMenuUIMenuElementidentifierUIMenuIdentifieroptionschildrenselectedElementschangesSelectionAsPrimaryActioncurrentTitlecurrentTitleColorcurrentTitleShadowColorcurrentImagecurrentBackgroundImagecurrentPreferredSymbolConfigurationcurrentAttributedTitletitleLabelUILabeltexttextColortextAlignmentattributedTexthighlightedTextColornumberOfLinesadjustsFontSizeToFitWidthbaselineAdjustmentminimumScaleFactorallowsDefaultTighteningForTruncationlineBreakStrategypreferredMaxLayoutWidthenablesMarqueeWhenAncestorFocusedshowsExpansionTextWhenTruncatedminimumFontSizeadjustsLetterSpacingToFitWidthimageViewUIImageViewhighlightedImagepreferredSymbolConfigurationanimationImageshighlightedAnimationImagesanimationDurationanimationRepeatCountanimatingisAnimatingadjustsImageWhenAncestorFocusedfocusedFrameGuideUILayoutGuidelayoutFrameowningViewleadingAnchorNSLayoutXAxisAnchorNSLayoutAnchoritemhasAmbiguousLayoutconstraintsAffectingLayouttrailingAnchorleftAnchorrightAnchortopAnchorNSLayoutYAxisAnchorbottomAnchorwidthAnchorNSLayoutDimensionheightAnchorcenterXAnchorcenterYAnchoroverlayContentViewmasksFocusEffectToContentssubtitleLabelsiriShortcutListtableViewStyletableViewUITableViewUIScrollViewcontentOffsetcontentSizecontentInsetadjustedContentInsetcontentInsetAdjustmentBehaviorautomaticallyAdjustsScrollIndicatorInsetscontentLayoutGuideframeLayoutGuidedirectionalLockEnabledisDirectionalLockEnabledbouncesalwaysBounceVerticalalwaysBounceHorizontalpagingEnabledisPagingEnabledscrollEnabledisScrollEnabledshowsVerticalScrollIndicatorshowsHorizontalScrollIndicatorindicatorStyleverticalScrollIndicatorInsetshorizontalScrollIndicatorInsetsscrollIndicatorInsetsdecelerationRateUIScrollViewDecelerationRateindexDisplayModedraggingisDraggingdeceleratingisDeceleratingdelaysContentTouchescanCancelContentTouchesminimumZoomScalemaximumZoomScalezoomScalebouncesZoomzoomingisZoomingzoomBouncingisZoomBouncingscrollsToToppanGestureRecognizerUIPanGestureRecognizerUIGestureRecognizercancelsTouchesInViewdelaysTouchesBegandelaysTouchesEndedallowedTouchTypesallowedPressTypesrequiresExclusiveTouchTypenumberOfTouchesmodifierFlagsbuttonMaskminimumNumberOfTouchesmaximumNumberOfTouchesallowedScrollTypesMaskpinchGestureRecognizerUIPinchGestureRecognizervelocitydirectionalPressGestureRecognizerkeyboardDismissModerefreshControlUIRefreshControlrefreshingisRefreshingdataSourceprefetchDataSourceprefetchingEnabledisPrefetchingEnableddragDelegatedropDelegaterowHeightsectionHeaderHeightsectionFooterHeightestimatedRowHeightestimatedSectionHeaderHeightestimatedSectionFooterHeightfillerRowHeightsectionHeaderTopPaddingseparatorInsetseparatorInsetReferencebackgroundViewnumberOfSectionsvisibleCellsindexPathsForVisibleRowshasUncommittedUpdateseditingisEditingallowsSelectionallowsSelectionDuringEditingallowsMultipleSelectionallowsMultipleSelectionDuringEditingindexPathForSelectedRowNSIndexPath_indexes_lengthindexPathsForSelectedRowssectionIndexMinimumDisplayRowCountsectionIndexColorsectionIndexBackgroundColorsectionIndexTrackingBackgroundColorseparatorStyleseparatorColorseparatorEffectcellLayoutMarginsFollowReadableWidthinsetsContentViewsToSafeAreatableHeaderViewtableFooterViewremembersLastFocusedIndexPathselectionFollowsFocusallowsFocusallowsFocusDuringEditingdragInteractionEnabledhasActiveDraghasActiveDropNSMutableArraytitleName_tableViewStyle_tableView_dataSource_titleName_topBarView_siriShortcutListUIKit"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.frameworkIntents/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.frameworkIntentsUI/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/IntentsUI.frameworkFoundation/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework-[HDLSiriSceneListViewController init]init-[HDLSiriSceneListViewController viewDidLoad]viewDidLoad-[HDLSiriSceneListViewController initView]initView-[HDLSiriSceneListViewController topBarView]-[HDLSiriSceneListViewController setTopBarViewWithTitle:]setTopBarViewWithTitle:-[HDLSiriSceneListViewController goBack]goBack-[HDLSiriSceneListViewController tableView]-[HDLSiriSceneListViewController initTableView]initTableView-[HDLSiriSceneListViewController tableView:numberOfRowsInSection:]tableView:numberOfRowsInSection:-[HDLSiriSceneListViewController tableView:cellForRowAtIndexPath:]tableView:cellForRowAtIndexPath:-[HDLSiriSceneListViewController tableView:heightForRowAtIndexPath:]tableView:heightForRowAtIndexPath:-[HDLSiriSceneListViewController tableView:didSelectRowAtIndexPath:]tableView:didSelectRowAtIndexPath:-[HDLSiriSceneListViewController addOrEditVoiceShortcut:model:]addOrEditVoiceShortcut:model:-[HDLSiriSceneListViewController getINShortcut:]getINShortcut:-[HDLSiriSceneListViewController getSceneIntent:]getSceneIntent:-[HDLSiriSceneListViewController getSceneINVoiceShortcut:]getSceneINVoiceShortcut:-[HDLSiriSceneListViewController checkCurrentClass:]checkCurrentClass:-[HDLSiriSceneListViewController refreshSiri]refreshSiri__45-[HDLSiriSceneListViewController refreshSiri]_block_invokedispatch_async__45-[HDLSiriSceneListViewController refreshSiri]_block_invoke_2__copy_helper_block_e8_32s40s48s__destroy_helper_block_e8_32s40s48s__copy_helper_block_e8_32s40s__destroy_helper_block_e8_32s40s-[HDLSiriSceneListViewController presentAddVoiceShortcutViewController:forAddVoiceShortcutButton:]presentAddVoiceShortcutViewController:forAddVoiceShortcutButton:-[HDLSiriSceneListViewController presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:]presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:-[HDLSiriSceneListViewController addVoiceShortcutViewController:didFinishWithVoiceShortcut:error:]addVoiceShortcutViewController:didFinishWithVoiceShortcut:error:-[HDLSiriSceneListViewController addVoiceShortcutViewControllerDidCancel:]addVoiceShortcutViewControllerDidCancel:-[HDLSiriSceneListViewController editVoiceShortcutViewControllerDidCancel:]editVoiceShortcutViewControllerDidCancel:-[HDLSiriSceneListViewController editVoiceShortcutViewController:didUpdateVoiceShortcut:error:]editVoiceShortcutViewController:didUpdateVoiceShortcut:error:-[HDLSiriSceneListViewController editVoiceShortcutViewController:didDeleteVoiceShortcutWithIdentifier:]editVoiceShortcutViewController:didDeleteVoiceShortcutWithIdentifier:-[HDLSiriSceneListViewController tableViewStyle]-[HDLSiriSceneListViewController setTableViewStyle:]setTableViewStyle:-[HDLSiriSceneListViewController setTableView:]setTableView:-[HDLSiriSceneListViewController dataSource]-[HDLSiriSceneListViewController setDataSource:]setDataSource:-[HDLSiriSceneListViewController titleName]-[HDLSiriSceneListViewController setTitleName:]setTitleName:-[HDLSiriSceneListViewController setTopBarView:]setTopBarView:-[HDLSiriSceneListViewController siriShortcutList]-[HDLSiriSceneListViewController setSiriShortcutList:]setSiriShortcutList:-[HDLSiriSceneListViewController .cxx_destruct].cxx_destructUITableViewCellconfigurationStateUICellConfigurationStateUIViewConfigurationStatedisabledisDisabledpinnedisPinnedexpandedisExpandedswipedisSwipedreorderingisReorderingcellDragStatecellDropStateUITableViewCellConfigurationUpdateHandlercontentConfigurationautomaticallyUpdatesContentConfigurationcontentViewtextLabeldetailTextLabelbackgroundConfigurationautomaticallyUpdatesBackgroundConfigurationselectedBackgroundViewmultipleSelectionBackgroundViewreuseIdentifierselectionStyleeditingStyleshowsReorderControlshouldIndentWhileEditingaccessoryTypeaccessoryVieweditingAccessoryTypeeditingAccessoryViewindentationLevelindentationWidthshowingDeleteConfirmationfocusStyleuserInteractionEnabledWhileDraggingINShortcutintentINIntentintentDescriptionsuggestedInvocationPhraseshortcutAvailabilitydonationMetadataINIntentDonationMetadatauserActivityNSUserActivityactivityTypeuserInforequiredUserInfoKeysneedsSavewebpageURLreferrerURLexpirationDateNSDatetimeIntervalSinceReferenceDatekeywordssupportsContinuationStreamstargetContentIdentifiereligibleForHandoffisEligibleForHandoffeligibleForSearchisEligibleForSearcheligibleForPublicIndexingisEligibleForPublicIndexingeligibleForPredictionisEligibleForPredictionpersistentIdentifierNSUserActivityPersistentIdentifierHDLRunSceneIntentsceneNamesceneIdINVoiceShortcutNSUUIDUUIDStringinvocationPhraseshortcutself_cmdSELobjc_selectorsectionindexPathcellHDLSiriSceneListCellbgViewshortcutButtonINUIAddVoiceShortcutButtonmodelHDLSiriSceneModeluserSceneIdvoiceShortcutvcINUIEditVoiceShortcutViewControllerINUIAddVoiceShortcutViewControllershortCutintentFindvoiceShortcutFindtemp.block_descriptor__block_literal_1NSErrordomainNSErrorDomaincodelocalizedDescriptionlocalizedFailureReasonlocalizedRecoverySuggestionlocalizedRecoveryOptionsrecoveryAttempterhelpAnchorunderlyingErrors_code_domain_userInfo__block_descriptor_withcopydisposeCopyFuncPtrDestroyFuncPtrvoiceShortcutserror__block_literal_2addVoiceShortcutViewControlleraddVoiceShortcutButtoneditVoiceShortcutViewControllercontrollerdeletedVoiceShortcutIdentifierHSAH'O  !%ÿÿÿÿ(*,./ÿÿÿÿ134689ÿÿÿÿ<?ÿÿÿÿADÿÿÿÿEFHIÿÿÿÿLtn‹sÔZ»9…˜|\8,ij_D&.ւnRd¶—‹HødHíÈm~ºP>.—Ýà@R³áièîˏYkHÖ †±A¬åìAÕ÷o0ýñUÐB*]‘¡éýå“û^),†©Œ¿ò™Öö    )'q?>©È­W» û¹úÁF”޼Œ6g‘3î.îe DTzÿ†ëàz3-LË6?✠œì%jì”Ñ·zßRèØ”¹Nż–wÂo0:ŒÔ†x.XŽ˜¼¾¡1°Ÿ’oéñP$qî~èV­üv‹ß¹ì0ÃQï‹Ɩn¶þ%Lµ;]Ւíe.O|Æ¢éÉé,3é¥ñüTî•Ú)Š_ß/c“ãƸb›qÖV¦ŽkœÆ‚o©¼ÃÌ*LØ n(?BՄ‰F™é1 çXó˶²4DTdt„”¤´ÄÔäô$4DTdt„”¤´ÄÔäô$4DTdt„”¤´ÄÔäô$4DTdt„”¤´ÄÔäô$4DTdt„”¤´ÄÔäôÐ\98PIEf\9ä]œ:j`>ÿ^·;¶bA4aØ>@a)?è_=XPd:Äh¸Exh}E2bþ@d¿AhE6Y‘Dù<µ9Ù\µ9+e®B™\M9µdiBôh¸E1fC]í9Ê_‘<`=ó`‘>5^Ð:aØ>Ad$Bi3bØ@?\9÷gÇD.gDg_<¯h}Eº^·;(`‘=›g‘D¥\9V^&;´]œ:wfhCŒd$Bc¿A[cmA"_<EhIESbAÏa•@k\M9eiBZ`‘=AUDÇgÇD gÙC÷bmA™^&;6hE¥`>Š_‘<ˆ]d:ða»@‹e®BÝfžC¾`‘>ÉeCŒgPD¨fžCX]0:@]í9]0:ò]Ð:Ža@IPhCðfÙC[gPDHSAH ]å5 ,¹-$9M99µ9í90:d:œ:Ð:&;·;<‘<=‘=>‘>Ø>AmA¿A$BiB®BChCžCÙCDPD‘DÇDEIE}E¸EHSAH ÿÿÿÿHSAHgÎ ÿÿÿÿÿÿÿÿ  !ÿÿÿÿ#%')-/26;>BDHJNQSVYZ[\]_`bdeikoqÿÿÿÿsty|}~€‚ƒ†‰Œÿÿÿÿ‘’”–™šÿÿÿÿ› ¢£ÿÿÿÿ¦§¬­ÿÿÿÿ®ÿÿÿÿ²³µ·¸ÿÿÿÿ¼½¿ÀÿÿÿÿÂÆÈÉÊÿÿÿÿË uY=pó6ZÈvÓ–UÒÙ9dMÖÏ[é†r…AtwÃå™ Ô·/#;ñؙ_žòAÒèŒï*Y3D‡uckÑ[sŒÜ ³Wfw”ú͓<²0€ˆ {Á/—½|5ûÍþ
B$\©ùv=JÏó€U;¯)aøöŸ]rÑå$ÏàX+ÑÕÁz]èS¾sÓ]å5 œc¡›‚|ùp–~ôÈ2Õÿ[C×»Nø Ÿ³¨'Òŧ‰ø½ZêÈ9zRéäò#’N¨„¢wÿ\Šºë›ÇX3 ‹Ýž·aÃíð/Üd>›µ[¯\sÆ×ÒúŠÎu 8;ÙĹÕí3"LùMÿn 쏕 p–h¬Ó §Ëù²_b4Ú‘¦ÎÅ¿AɔâŽöÔðê¿âmL<,€ZTHR•:LÑ` µE„ØtHÖiíýðCà7÷hˆ’›áqˎJ¦qé­õ^»>¤Ñ¦Mh´ë8‰}$?Ž<Ž•4Ë õÖs¬gßÃ7<ÇHøpÀ;WpzK5,2’F‡è“òÐÆË„Bc •|9ÂÔ`¦azkùcºìÅëbB݁»`-    LÎq…“â:¡¡ë¬LÉ@×LªI&Ä¥"îSú;ioæ]—L«àÕðZÎ/Ò2êÄ\©©ö [=ùâ}á&éqy£Ì˜9uYo± óê]UDbûX}bh¾ˆhPäqf±EYŒ’]È_éÑá> òµÌxtzÓ(Àw¤×MÉþ•„
 44†ìØÍ”{Òt¾Ð;ØÛ$ v´=ŸT,ÜÔ:ÇwÉäÓ>&‡½Ñz¬æŒdêöÿt ïÑ ¢sB…èëöÿtbF؟ý;×Eúr>gêQ¯Ž ž¹Ë*„_¦.èðIŸ´DÅ­šb‡Î?3¥ïë0©~zÁøÒáú傦_Y3ÌÙeê™éª1—}ÁˆVòÎ.@ÜWæ    “•ÁƤ    ›9ë€_eƒšI c“å?ri± Kï&̊"8/­h˜=åž2xYâ~?ŽÑNоWÝvÖ­{Õû—ÔT)ˆ `MÖÃÄ´BšQ=hܧ•4Nat‡¡´Çáû    !    4    N    h    {    Ž    ¡    ´    Ç    á    ô    
!
4
N
h
‚
•
¨
Â
Õ
è
û
 ! 4 G Z m € š ­ À Ú í  ! 4 G a t Ž ¡ » Î è   ( B U h { Ž ¡ ´ Ç Ú í !;Nat‡¡´Îè(;Uh{•¨ÂÜï(;Nh{Ž¡´ÇÚô!;Uh{ލ»Îè(B\o‚œ¶ÉÜï(B\vª½×êý*=Pc}£¶ÉÜï    #6Pc’¥¸ËÞø %8K^q‹ž¸Òåø%?Rl™¬¿Ùìÿ,?Yl™¬ÆÙìÿ%8K^qÙ$\    ¸7ˆRõ>‹Ï/l÷ï=ãlìJ—5Mì)¥Ä*4D¬'×0lÇ@. =Ì’H¤ÚÀ=ãéJh,VDÃ'¨Bµ$$O1Ó®ƒ1QÓ$A-¶ $H#æ¢7Á§$Ž;¿0Bß'Yµ8è@n! ÿ¿ò4Y6X>o‡L>%3
d0޹-ä U8.Ê“/[bo©Lƒo8ž†ÓiH%u    ÏED¸'Ê$Ê*³
;)ylêIãoNçwÅIÃn¾KØ
I_W\8*Ò
F) .Õ$ÆÌK/ï"ÇÃ7°07¿†G¡@/ækEIm4ÖNf/m?'îØ$¤Jê+tRŒ6”6f$Æ6t$/
òIT²9-+øktIGÏ)™K¨-½J/,”?s~72V—6ç 3é-/"î'5">iH³-Ü $É+/ r)înLÔoJMºšÓ”O^1 °*ª «~†4õ™3Ë~KS-dn‚K
E    (ŒI»*š76žSÞ6á9‡iöE9B$jCL%s6_$Í0@K71«¶¤H:*¶­‡HèUÕjA{"2>×B¼$è|8+kH*SlÕIF!RØ'®úœ n    KTnHKv"¨ù'4 a5I­6m$Ì>Kí0Š"    ¹K8ß0x$Ø- ¶œ±TÓ7Þ5ÅoZLå'>
i(C«§B$    ­7›“÷)T+ g)Du'j)”
0)_3«’Kh-™    Ó¥8[.ánPF4UC7%…Cp&ºP½äÍBk#ŒJÉ+7{$‘o%i§GÈëk":® qJ¨+Ä2ÂoÐL'C%•*+@ùHzCV&uEy(ðphN(EM(–,m ˆ)Ñ.-u-½ C-ÛNI0‡S§6#=Í9-« X 6*I®Dã'A'"2";é *ðF­)0nK¸(c
%)"O14,N })p N+ñ
\)›F˜)@åðbP“1é-k8ëV/²KÞ-=Áv6b68>å/-Œ 8-ÁOs1z2Šjڐ/J zJLTJC+    K¤,\B”$Ø/w$"FQ)šnŸK÷5#¦Lù-£2•Y{ÈDDHLì8H€ädŒð8(    Lt    |ð
40 8h hÐ8ð(”¼ Ü¤€°00`0(¸(à„d„è`H`¨``h`ÈØèü  0DXh t|ðzRx  äÿÿÿÿÿÿÿDL ž,<ÀÿÿÿÿÿÿÿT ž“”•–,lÿÿÿÿÿÿÿT ž“”•–—˜,œ`ÿÿÿÿÿÿÿìP ž“”•–,Ì0ÿÿÿÿÿÿÿHT ž“”•–—˜,üÿÿÿÿÿÿÿäT ž“”•–—˜,,ÐþÿÿÿÿÿÿŒT ž“”•–HID\ þÿÿÿÿÿÿ8d ž“”•–—˜™    š
› œ H IJK$¤XþÿÿÿÿÿÿLL ž“”,Ì0þÿÿÿÿÿÿ|T ž“”•–—˜üþÿÿÿÿÿÿ ,àýÿÿÿÿÿÿ4T ž“”•–—˜,L°ýÿÿÿÿÿÿ8T ž“”•–—˜,|€ýÿÿÿÿÿÿP ž“”•–4¬PýÿÿÿÿÿÿÐ` ž“”•–—˜™    š
› œ 4äýÿÿÿÿÿÿð` ž“”•–—˜™    š
› œ ,àüÿÿÿÿÿÿ”P ž“”•–,L°üÿÿÿÿÿÿ T ž“”•–$|€üÿÿÿÿÿÿ¤P ž“”4¤Xüÿÿÿÿÿÿ°` ž“”•–—˜™    š
› œ $Ü üÿÿÿÿÿÿ0L ž“”$øûÿÿÿÿÿÿ0L ž“”$,Ðûÿÿÿÿÿÿ(L ž“”$T¨ûÿÿÿÿÿÿ(L ž“”$|€ûÿÿÿÿÿÿ„L ž“”$¤Xûÿÿÿÿÿÿ„L ž“”,Ì0ûÿÿÿÿÿÿ`P ž“”•–,üûÿÿÿÿÿÿ`P ž“”•–,,Ðúÿÿÿÿÿÿ`P ž“”•–,\ úÿÿÿÿÿÿ`P ž“”•–,Œpúÿÿÿÿÿÿ`P ž“”•–¼@úÿÿÿÿÿÿÜ úÿÿÿÿÿÿüúÿÿÿÿÿÿàùÿÿÿÿÿÿ<Àùÿÿÿÿÿÿ\ ùÿÿÿÿÿÿ|€ùÿÿÿÿÿÿœ`ùÿÿÿÿÿÿ¼@ùÿÿÿÿÿÿÜ ùÿÿÿÿÿÿ $üùÿÿÿÿÿÿ|L ž“”$ØøÿÿÿÿÿÿDž†îû /Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/HeadersHDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/IntentsUI.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/sys/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/dispatchHDLSiriSceneListViewController.mNSObject.hNSObjCRuntime.hNSString.hHDLSiriSceneListViewController.mUITableView.hUIControl.hUITableViewCell.hUIViewController.hUIGeometry.hUIApplication.hUIInterface.hINUIAddVoiceShortcutButton.hUIResponder.hUIView.hNSParagraphStyle.hUIButton.hNSText.hUIStringDrawing.hUIScrollView.hUIContextMenuInteraction.hUICellConfigurationState.hINShortcutAvailabilityOptions.hCALayer.hUIButtonConfiguration.hUIMenu.hUIImage.hUIPanGestureRecognizer.hUIGestureRecognizer.hUICommand.hUIEvent.h_uint32_t.h    UIFontDescriptor.hUIGraphicsImageRenderer.hUIDevice.hUITouch.h_int32_t.h
CGPath.h objc.hNSUndoManager.hNSArray.h_uint64_t.h    CGBase.h CGGeometry.h CATransform3D.hCGColor.h NSDictionary.hUIFocus.hUIFocusEffect.hNSBundle.hNSData.hNSURL.hNSValue.hUIStoryboard.hNSSet.hUIToolTipInteraction.hUIFont.hCGAffineTransform.h UIBackgroundConfiguration.hUIColor.hstddef.h CIColor.h CGColorSpace.h UIConfigurationColorTransformer.hUIVisualEffect.hCGImage.h CIImage.h CIFilterShape.h CVBuffer.hCVImageBuffer.hCVPixelBuffer.hNSDate.hUIGraphicsRenderer.hUITraitCollection.hUIContentSizeCategory.hUIImageAsset.hUIImageConfiguration.hUIImageSymbolConfiguration.hNSAttributedString.hUIPointerStyle.hUITargetedPreview.hUIBezierPath.hUIPreviewParameters.hUIMenuElement.hUILabel.hUIImageView.hUILayoutGuide.hNSLayoutAnchor.hTopBarView.hHDLSiriSceneListViewController.hUIPinchGestureRecognizer.hUIRefreshControl.hNSIndexPath.hHDLSiriSceneModel.hqueue.hUIViewConfigurationState.hINIntent.hINIntentDonationMetadata.hINShortcut.hNSUserActivity.hHDLRunSceneIntent.hNSUUID.hINVoiceShortcut.hHDLSiriSceneListCell.hINUIEditVoiceShortcutViewController.hINUIAddVoiceShortcutViewController.hNSError.h    
»    ¬K‚M¼
u ­Yò'J‚!­X,(J
‚Xò(J‚òóô?
vPò0J‚'JPº0J!‚tò‚ƒ'vMº3J‚­óè
 
=    ºKKòE<;J<ä    ò
ƒJDº<J7‚    ‚ ®?
u¾º‚¾ºÂJ ‚¾<ÂJ‚/$½<ÃJ
‚½ºÃJ‚ò
ó¼ºÄJ‚¼ºÄJ ‚¼òĂç
u¸òÈJ$‚¸ºÈJ    ‚$N´ºÌJ    ‚´òÌJ©    (
 
v    ºLJòª<ÖJjt<ä    ò.„¨<ØJ    ‚J    òƒJ    óJ    óJ    óJ    ­J    óJ ôv*
(tãJtã‚CttãJU¬ºãJäãJj,ºãJh$‚
J<ãJ‚¬ 0›òåJ ‚›ºåJ‚D
»”ºìJ‚òƒô"
®ºñ‚<ñJ    ƒKº%¯ŠòöJ:‚ ¬Š<öJó K<EK‡òùJ)‚‡< ùJ ó    u…è
„L
(    v<)Kö~òŠJ>‚$<ö~òŠJ óRKô~òŒJ.‚ô~<ŒJ ó    u„„z
44 J3º =3vºoòä~<œJ2‚-t ƒã~º­Xç
=Ï~º±JÏ~‚±J"ƒ!ºóÍ~ò³J ò< ƒ==º>$
@1ºÂ~ò¾JÂ~<¾<Â~t¾JH»Á~‚¿JQ‚Á~‚¿J óK¿~ºÁJ‚tO‚º~äÆòº~JÆ‚º~JÈJ¸~JÈt¸~$ÌJ
@1º²~òÎJ²~<Ît²~tÎJH»±~ºÏJQ‚±~‚ÏJ óK¯~ºÑJ‚tO‚ª~äÖòª~J#Ò‚¾ª~‚ÖJª~JØJ¨~JØt¨~$ÛJ
=¤~ºÜJ$‚¤~ºÜJ9‚ t<ó>    
u< KŸ~<áJ
ƒž~<âJR‚    0ž~òâJt~‚ ñ‚~òñJ‚=p<7
æœ~H äJ     ò‘~òï‚uò
4›~HåòåJºKJ¼,)„A‚)J•~ºëJ‚JòƒJ”~ºìJ‚”~< ît’~äJ00(õ($
­ó<(K>­ô%
­ó<)K>­õ
>ø}ºˆ‚»÷}tŒ<
=ó}º‚»ò}t‘<
=î}º’‚»í}t–<
=é}º—‚»è}t›<
=ä}ºœ‚»ã}tZ<6
ò
r6ºK
qJò7
ò
pJò7
ò
oJò
jJò%
ò%
¾
ò|ø-ì?-ØLÔ=Ð?-ÄÿLÀÿ=¼?-°L¬=¨?-œL˜=”?-ˆL„=p>-lLh=d7-\LX=T?-LLH=@?-8L4=$L =?-ÿLÿ=ÿLüÿ=ø?-ðLì=ÜLØ=ÌLÈ=Ä:-°8- ,Lœ,=˜8-ˆ;-€L|=d:-P8-@,L<,=88-(;- L=:-ð8-à,LÜ,=Ø8-È;-ÀL¼=¤:-8-€,L|,=x8-h;-`L\=D:-08- ,L,=8-;-Lü=ä:-Ô8-ÀWL¼W=¸8-¬VL¨V= .-Œ8-„7L€7=x;-`:-P8-<WL8W=48-(VL$V=.-8-7Lü7=ô;-Ü:-Ì:-´;-¤;-Œ:-|:-t:-\;-L;-D;-,/-ü0lø0]ð:-è8-äsLàs=Ø=-Ð8-Ì<LÈ<=À:-¸8-°zL¬z= =-˜8-”yLy=ˆxL„x=€:-p8-L8-88- 6-vLwLw=øv=ä8-ÐbLÌb=Ä;-¨0l¤0]l:-d:-\:-T3-L1lH1]@;-4;- L=uLu= tLt=,lü,]ô;-Ä:-¼8-¸sL´s=¬=-¤8-œ<L˜<=”:-Œ:-„:-|8-h;-`rL\r=PLL=HqLDq=<kL8k=0,l,,]$=-8-pLp=oL o==-ü8-ønLôn=ðmLìm=ä.-¤:-œ:-8-ˆjL„j=|8-xiLti=pZLlZ=d=-\8-XdLTd=L=-D8-@cL<c=$/- 5-ð0lì0]ä:-Ü:-Ô:-È;-´f=°e=¬d=¨c=¤8-„:-x:-l8-\=-T8-D:-8=-08-$=-8-6-èfLàeLÜdLØcLÐf=Ìe=Èd=Äc=´8- bLœb=˜=-8-ˆaL„a=p;-`0l\0]4/-05-0lü0]ô:-ì:-Üf=Øe=Ôd=Ðc=Ì8-¬:- :-”8-„=-|8-l:-`=-X8-L=-D8-46-fLeL dLcLf=üe=ød=ôc=ä8-ÐbLÌb=È=-À8-¸aL´a= ;-0lŒ0]d5-P:-H:-<8-4_L0_=,4-(^L$^= 8-]L]= 8-\Lü \=ø :-ð 8-ä [Là [=Ü :-Ð =-È 8-À HL¼ H=´ 8-° L¬ =¨ 4-¤ ZL  Z=˜ =- 8-„ ;-€ YL| Y=d :-L :-D :-< 8-( WL$ W=  8- VL V= .-ô 8-è 7Lä 7=à :-Ô 8-È ULÄ U=¼ =-´ 8-¨ TL¤ T=œ 4-˜ SL” S=Œ 7Lˆ 7=€ 8-x RLt R=p 4-l QLh Q=\ ;-P ;-, :- :- :- 8-ô OLð O=ì :-à =-Ø 8-Ì NLÈ N=À =-¸ 8-° HL¬ H=¤ :-˜ =- 8-ˆ GL„ G=| 8-t FLp F=h =-` 8-X ?LT ?=L .-8 8-( ML$ M= ;-ì
5-Ô
:-Ì
:-Ä
8-´
JL°
J=¬
:- 
=-˜
8-Œ
ILˆ
I=€
=-x
8-p
HLl
H=d
.-L
:-@
=-8
8-,
GL(
G=$
:-
8-
FL
F=
=-ü    8-ô    ?Lð    ?=è    8-à    CLÜ    C=Ø    ELÔ    E=Р   4-Ì    DLÈ    D=¼    =-´    8-¨    CL¤    C=œ    ;-”    BL    B=`    :-T    8-P    @LL    @=D    =-<    8-8    ?L4    ?=$    :-ü:-ô8-è$Lä$=Ü=-Ô8-Ä=-¼8-´ L° =¬:-¤:-œ:-”:-Œ:-„:-|8-h=Ld==\=-T8-H<LD<= 8-=- 8-9Lä8-Ø=-Ð8-È9LÀ8-´=-¬8-¤Lœ8-”L=ˆ=-€8-xLt=pLl=H8-@;L<;=4=-,8-$:L :=9L9=ì<-Ô8-Ì7LÈ7=À8-¸6L´6=¬8-˜5L”5=Œ8-„4L€4=x8-p3Ll3=d8-\2LX2=P:-H8-@L<=0=-(8-$1L 1= L =:- :-ü8-ä0Là0=Ø8-Ð/LÌ/=Ä8-ÀL¼=´=-¬8-¨L¤= Lœ=”4-.LŒ.=€L|=`8-@,L<,=8:- @-8-+L +==-ü8-ì:-ä:-Ø8-Ð*LÌ*=Ä=-¼8-¸)L´)=¬=-¤8-œ    L˜    =|:-d:-\:-T8-L'LH'=@=-88-4&L0&=(=- 8-:- :-8-üLø=ð=-è8-Ø=-Ð8-Ì%LÈ%=Ä LÀ =¼:-´:-¬8- $Lœ$=”=-Œ8-€#L|#=t=-l8-\;-T LP =4<- :-8- !L!= L =ø=-ð8-ìLè=à:-Ø:-È8-°L¬=¨8-¤L =˜=-8-ŒLˆ=„L€=x4-tLp=dL`=H8-0L,=(8- L=:-8-L=ø=-ð8-ä8-ÜLØ=ÔLÐ=Ì:-¼:-´:-¨8-¤L =œL˜==-ˆ8-t=-l8-dL`=08-(L$= :-:-8-L=ü=-ô8-ì Lè =à=-Ø8-ÌLÈ=ÄLÀ=¼ L¸ =´ L° =¬:-¤8-˜
=Œ=-„8-|    Lx    =t9-lLh=`L\=0L,=$9-L=L =P¤@-0¡ -Ž-XëPH(ê CHÐ820+(* ’2)þxìpéhè`çXæPåHä@ã8â0á(à ßÞÝÜÛøÚðÙèØàרÖÐÕÈÔÀӸҰѨРϘΐ͈̀ËxÊpÉhÈ`ÇXÆPÅHÄ@Ã8Â0Á(À ¿¾½¼»øºð¹è¸à·ضеÈ´À³¸²°±¨° ¯˜®­ˆ¬€«xªp©h¨`§X¦P¥H¢@ 8Ÿ0ž( œš™˜•`"X!P#H@8 0( %('$& óæˆÏ€ÙxîpÑXPH@80( òñðïøîðíèìàëØêÐéÈèÀç¨å ä˜ˆã€âxhá`àXHß@Þ8ÿ(Ý ÜÛÚøèŒàÒØØÐ‹È,À踊°õ¨Û ‰˜,×ˆˆ€,x¥p‡hõ` X†P,H¿@…8õ0Å(„ ,ÖƒÕÔø‚ðÓè¸àØ!Ð4È€À*¸3°¨, 5˜~,ˆ+€}x*p)h|`!X"P{H!@ 8l0Ò(¨ hòågKøÏð`èKàÌØXÐKÈÑÀP¸!°Ð¨L !˜“Kˆ‚€xAp@h?`>X>P=H8@Ò8§0-(õ Ã(Ò­"ø,ð¦èàõدÐÈÒÀŸ¸°Ò¨˜ ˜õ•hÏXî0(  Íø Íð Ìè Ëà ËØ ÊÐ ÉÈ ½À V¸ Ȱ V¨ Ç  Ƙ Ő Vˆ Ä€ Ãx Vp ¼h Â` ½X ½P VH Á@ Á8 À0 ¿( ¼  ½ ½ ¾ ¾ ½ø ½ð Vè ½à ¼Ø »Ð »È ºÀ º¸ ¹° º¨ º  ¹˜ ¸ ¸ˆ ·€ ¸x ¸p ·` *X µH *@ ´0 *( ³ @ ² @ø ±è °à ¯Ð ,È ®¸ !° ­  H˜ ¬ˆ «€ ªp Hh ©X KP ¨@ *8 §( H  ¦ H ¥ø
¤ð
£à
¢Ø
¡È
HÀ
 °
ά
Ÿ˜
ž
€
!x
œh
!`
›P
HH
š8
@0
™ 
@
˜
@
—ð    @è    –Ø    ŒР   •À    !¸    ”¨    !     “    @ˆ    ’x    @p    ‘`    !X    H    !@    0    H(    Ž    !        Œø‹èEàŠÐEȉ¸„°ˆ „˜‡ˆ‚€†p„h…X„Pƒ@‚8(| €|ø*ð~à|Ø}È|À{°*¨zˆxqpqhw`vXuPtHq@q8q0s(r qqq,øoè,ànÐòÈm¸l°k !˜jˆK€ip,hhX,Pg@,8f(e dcbø,ðaà,Ø`È,À_¨˜ZYˆX€WxVpVhU`UXTPSHR8*0P ONMLðKèJØHÐIÀH¸G¨E FEˆDxCpBX@P?@>8= 987ð,è5Ø!Ð4À*¸3 /ˆ.x,p+`*X)@0%($!"!ø àÐÈÀó¸°
¨ õ˜õˆ€xþpþhý`ûXùP÷Hõ@ó8ò0( øàõØÀõ¸ ¨ó  ˆ x
p    `XHõ@0(õøèòàÐþÈÿ¸þ°â ý˜üˆû€úpùhøX÷Pö@õ8ô(ó áò¢ˆÎh¶PyH\(xpð^è]È[¨Q˜A<ˆ;h:8602(10Ø-Ð(È'¨&x#phïH8(ð0(  þ¹E~EJE    EÈD’DQDDÚCŸCiCC¯BjB%BÀAnAAÿ@Ù@¼@–@x@@–?*? ?Ù>’>>’===ã<’<s<W<<¸;š;';Ñ::e:1:î9¶9‚9N99@'@ àÀ €`@ àÀ €`@ àÀ €`@ àÀ €`@ àÀ €`@ (ü(üŒàüà‹ÀüÀŠ ü ‰€ü€ˆ`ü`‡@ü@† ü …ü„àüàƒÀüÀ‚ü`ü`€0ü0ü~ÐüÐ}¨ü¨|€ü€{XüX0ü0üàüà¨ü¨u€ü€qPüPl ü hèüèg°ü°`€ü€XPüPP ü LüKÐüÐA¨ü¨>`ü`80ü0-ü(ÐüÐ" ü püp@ü@üý ,0¤¨„ˆèìÈÌÀÈÀĸÀ¸¼°¸°´”˜x|hl\`àä ¤˜œØÜÐÔ¬°œ €„à䈌€ˆ€„è쬰 ¤ˆŒ€ˆ€„ðôḚ̀´øüÈÌÀÈÀÄœ ü€ÐÔÌ    Ð    ´    ¸    ˜    œ    Œ

¼
À
ü
€ È Ì ´ ¸ ” ˜ € „ ì ð Ø Ü ¼ À   ¤ ˜   ˜ œ à ä Ì Ð ¼ À ¤ ¨ œ ¤ œ   Œ  äè°´äèÄȐ”ôø¼À ¤Ìд¸¤¨”ÜàÔØĘ̀¬Œðô°´ˆŒì𤨄ˆðôÔØðôÈ̬°ˆŒôøèìäèÄȤ¨”˜”¤¨°´¤¨”ü€àä¼À¬° ¤ü€Ìд¸Œ”ü€ „ œ! !„!ˆ!Ü à ä ì#ð#ô#„%ˆ%ô$ø$ì$ô$ì$ð$Ô$Ø$¼$À$Ü&à&Ì&Ð&Ä&È&¸&Ä&¸&¼&¬&°&”&˜&Œ&”&Œ&&ô%ø%ì%ô%ì%ð%´'¸'˜'œ'È(Ì(œ( (”(˜(ˆ(”(ˆ(Œ(ü'€(Ì)Ð)¤)¨)¬)€*„*ø+ü+€,à+ä+È+Ì+¬+°++”+„++„+ˆ+ü-€.¤.¨.¸.¼.€/„/¨/¬/¼/À/œ0 0ü/€0ü0€1Ü0à0Ü1à1¼1À1¼2À2œ2 2œ3 3ü2€3È3Ì3Ø3Ü3ì3ð3ü3€44”4 4¤4´4¸4È4Ì4Ø4Ü4è4ì4Ô5Ø5À5Ä5¬5°5˜5œ5„5ˆ5U@ ê€y    X3ü;m@<DDß;    `3Ø2    h3j*    p3 ð5å!    x37D    €3X;    ˆ3l2    3%Hþ)    ˜3ÃC     3~!ˆù1    ¨3ê:¨ƒ)    °3!    ¸3NC    À3PLÛ> ø5o: 6ˆ1    È3)    Ð3š     Ø3ÚB    à3þ9    è31    ð38¦(    ø3.     4nB    4’9    4®0    4c€:(     4    (4&9    84B    04}dw4 6,    @4–#    H4    P4+=    X4    4    `4ª+    h4*#    p4®    x4¿<    €4©ðN8 6†/    ˆ4ë&    4    ˜4Ã@     4Ï(    â7    ¨4/    °4st    &    ¸4dhW" 6Û    À4@    È47    Ð4Ž.    Ø4ó%    à4Ž    è4.ð
éü
—?    ð4y6    ø4".    50 ¬- (6'%    (5Ü)  6_!    5¤C    5Ë:    5Ú1     5h ³    05,C 06P:    85i1    @5ø(    H5»$ 86G    P5vhU>    X585    `5Ù,    h5O$    p5Û    x5é=    €5Ó8¨(Ì4    ˆ5m,    5d@Œ¼( @6£    ˜5l H6}=     5LÜ='    Ð5 8    È5[@Q7€ü+    °5X4    ¨5©' P67    ¸5|A    À5làdÝèžHR¨@ hæÈæØ£èüU º ¶0rDÙX?h3tK7  õ2hÅ.ȇ*0ûˆV*&€"ˆÔˆÅ    X3†
Ø5=@7™­.®áC ð5&Ï­î¶?ó˜6A.´%?@[? X6Q? X6%6#Î-1F%IÒW¾5c_-nÝ$uf„t>W5–ø,¹n$ÄúÐ>Ûë4æŒ,ï$ÿŽœ=8G0SË'bVw›A‚¿8£ã/Æ\'Ùêê/Aù±3C+Æ"'G1X<;J3FÜ*Lo¤DŽÅ;’¾2¬P*¸Ë!ÈDÚ>;ûR2 š%2 &A 7?S  6n i)™ ì ° Á>µ ¤5Á E-ß € í ÀBý ä9!19!Œ(B! I!TBQ!x9b!”0h!è#w!èA}! 9Š!-0!|#¨!¸!=Í!þ3@Ø/F+Ø!; j6Á j6# ‰6Ó ¬6>6M7«M7”X7Aü!¥<`748"—3h7l/")+s7Ñ&."¬"7gU"-’7©@š7><]"È7n"03‚"/¥7Â*–"e&"="°7¥"Á±"ŠD¹7@½"«;Á7æ6Â"¤2Ç"t.Ò"2(C(C6*Þ"¸øD”ï"Ø%ô"°!ù"s#D    #|?##;&#œE_6Ó782è7è`Eç-ÐV¡)pYs F.7#Â)ú7€%x#ï FE!8 V8­ PFC µ6 `F?º#±:¥8ñ5û#À1¶8¥ xF’-Á8O)9[ °F% à6º    ÀFÒ $$™b$C¨$H
ØF§>?96:9Š5Ê9ý    (GR1 7@G+-Ò$Þ(ú9¡$ó$f :vXG-%¦B:;>1%Ê9!:5T%æ0w%¿,/:r(˜%5$¹%ú=:ÁÙ%:BH:Ï=&^9Y:²48&אGz0j:S,…:þ'¾:Î#Ö:‰û:R#;ÎAD;c=l;ò8—;ApHA4 "70 67ÈHâ+b&'w&b#Š&§&æÏ;bAã&÷<ø;†8 'ä3-'¾/K'v+o'#'‹'ù"°'¹<zÚ'û@÷'‹<(ßàH8<}30<R/g<+ƒ<·&¤<’"È<Mï<G8J
    ¨J:(@g($<=®7“(3¿(æ.ñ(¨*")K&S)#"=æv)§'=pDš)ê?¾)‘;ê)Ì6*Š2D*Z.f**ˆ*¾%5=–!´*Yè*èC+b?7+    ;_+E6ƒ+2©+î-Ì+¨)ñ+f%,+!W,ò,sC¼,?ú,—:,-×5V-¦1}-x-C=5)Å-ö$ò-¸ .T=øBV.>h=:Œ.p5®.81Ô.-/Ä(=/‡$o/L |=¥/ŒBã/!>0°9K05=Ì0†0¥,Ä0X(1$E1à1ÏÈJ§©= Bå=µ= >D93>˜4N>`0q>9,™>ä'Á>´#ö>o(?8Y?´Až?I=ã?Ø8@'4?@ü/y@È+Ó@u'ø@H#GA_A̱AHAûAÝ<`B5    ˜OÃ0Q,hQo8 K7Ê3¿B¤/ÇB\+Ä1    'ÏBß"×1Ÿå1`ô1,°Qá@2q<ÚB82c3ÜB8/2õ*ëB&)2x"ýB342ù    Cu@@2
<CñU“7R2û2]2Ë.}2*Ž20&±2"À2ËÖ2Œà2UD3Ï? 3v;/3±693¿àU_%¨Y¾D¨Y$!°Y5°Yë±Y³ ±YlCðlü>èq: Hw£Èe0Ÿ
ä5"
ì5¸
à5ù 
Ø5Â 
è5g
Ü5’X5  xYó  €Y—
 ˆYW pY{ ˜Y¯ Yh      Yp  0W6  WÛ
 ðWx ÐV¨ °XÝ PX”     Y~ÀÂÀÐð€ðÚÀ“À0ùÀ¸µÀ`Ã|@I    @Ž@\@8@Q4Ÿ    "2ïa<€)`l'ÝŒTHRï:77¥ %o’@¶_objc_getProperty_objc_setProperty_nonatomic_copy_OBJC_CLASS_$_NSMutableArray_OBJC_CLASS_$_NSArray_OBJC_IVAR_$_HDLSiriSceneListViewController._topBarView_OBJC_CLASS_$_TopBarView_OBJC_IVAR_$_HDLSiriSceneListViewController._tableView_OBJC_CLASS_$_UITableView_OBJC_CLASS_$_INShortcut_OBJC_IVAR_$_HDLSiriSceneListViewController._siriShortcutList___isPlatformVersionAtLeast_OBJC_CLASS_$_HDLRunSceneIntent__OBJC_$_PROP_LIST_NSObject__OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_NSObject__OBJC_$_PROTOCOL_METHOD_TYPES_NSObject__OBJC_$_PROTOCOL_INSTANCE_METHODS_NSObject_OBJC_METACLASS_$_NSObject__OBJC_LABEL_PROTOCOL_$_NSObject__OBJC_PROTOCOL_$_NSObject___copy_helper_block_e8_32s40s48s___destroy_helper_block_e8_32s40s48s___copy_helper_block_e8_32s40s___destroy_helper_block_e8_32s40sl_.str_OBJC_CLASS_$_UIColor_OBJC_CLASS_$_INVoiceShortcutCenter_OBJC_CLASS_$_INUIEditVoiceShortcutViewController_OBJC_CLASS_$_INUIAddVoiceShortcutViewController__OBJC_$_PROP_LIST_HDLSiriSceneListViewController__OBJC_$_INSTANCE_VARIABLES_HDLSiriSceneListViewController__OBJC_$_INSTANCE_METHODS_HDLSiriSceneListViewController_OBJC_CLASS_$_HDLSiriSceneListViewController_OBJC_METACLASS_$_HDLSiriSceneListViewController__OBJC_CLASS_PROTOCOLS_$_HDLSiriSceneListViewController__OBJC_CLASS_RO_$_HDLSiriSceneListViewController__OBJC_METACLASS_RO_$_HDLSiriSceneListViewController_OBJC_CLASS_$_UIViewController_OBJC_METACLASS_$_UIViewController_HDLSiriSceneListCellIdentifier_CFBundleGetVersionNumber__dispatch_main_q_objc_enumerationMutation_OBJC_CLASS_$_UIApplication_objc_retain_OBJC_CLASS_$_UIScreen_OBJC_CLASS_$_HDLSiriSceneListCell___stack_chk_fail___block_descriptor_48_e8_32s40s_e29_v24?0"NSArray"8"NSError"16l___block_descriptor_56_e8_32s40s48s_e5_v8?0l___clang_at_available_requires_core_foundation_framework__NSConcreteStackBlock_objc_storeStrong_objc_autoreleaseReturnValue_objc_retainAutoreleaseReturnValue_objc_retainAutoreleasedReturnValue_objc_unsafeClaimAutoreleasedReturnValue__OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_UIScrollViewDelegate__OBJC_$_PROTOCOL_REFS_UIScrollViewDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_UIScrollViewDelegate__OBJC_LABEL_PROTOCOL_$_UIScrollViewDelegate__OBJC_PROTOCOL_$_UIScrollViewDelegate__OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_UITableViewDelegate__OBJC_$_PROTOCOL_REFS_UITableViewDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_UITableViewDelegate__OBJC_LABEL_PROTOCOL_$_UITableViewDelegate__OBJC_PROTOCOL_$_UITableViewDelegate__OBJC_$_PROTOCOL_REFS_INUIEditVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_INUIEditVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_INSTANCE_METHODS_INUIEditVoiceShortcutViewControllerDelegate__OBJC_LABEL_PROTOCOL_$_INUIEditVoiceShortcutViewControllerDelegate__OBJC_PROTOCOL_$_INUIEditVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_REFS_INUIAddVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_INUIAddVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_INSTANCE_METHODS_INUIAddVoiceShortcutViewControllerDelegate__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutViewControllerDelegate__OBJC_PROTOCOL_$_INUIAddVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_REFS_INUIAddVoiceShortcutButtonDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_INUIAddVoiceShortcutButtonDelegate__OBJC_$_PROTOCOL_INSTANCE_METHODS_INUIAddVoiceShortcutButtonDelegate__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate_objc_releasel_llvm.cmdline_OBJC_IVAR_$_HDLSiriSceneListViewController._titleName_OBJC_IVAR_$_HDLSiriSceneListViewController._tableViewStylel_llvm.embedded.module___45-[HDLSiriSceneListViewController refreshSiri]_block_invoke__objc_empty_cache_OBJC_IVAR_$_HDLSiriSceneListViewController._dataSource__OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_UITableViewDataSource__OBJC_$_PROTOCOL_REFS_UITableViewDataSource__OBJC_$_PROTOCOL_METHOD_TYPES_UITableViewDataSource__OBJC_$_PROTOCOL_INSTANCE_METHODS_UITableViewDataSource__OBJC_LABEL_PROTOCOL_$_UITableViewDataSource__OBJC_PROTOCOL_$_UITableViewDataSource___CFConstantStringClassReference___stack_chk_guard_objc_msgSend_objc_alloc_dispatch_asyncl__unnamed_cfstring__OBJC_SELECTOR_REFERENCES_l_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME_l_OBJC_CLASSLIST_SUP_REFS_$__OBJC_CLASSLIST_REFERENCES_$_-[HDLSiriSceneListViewController initView]-[HDLSiriSceneListViewController topBarView]-[HDLSiriSceneListViewController tableView]-[HDLSiriSceneListViewController initTableView]-[HDLSiriSceneListViewController siriShortcutList]-[HDLSiriSceneListViewController init]-[HDLSiriSceneListViewController .cxx_destruct]-[HDLSiriSceneListViewController goBack]-[HDLSiriSceneListViewController refreshSiri]-[HDLSiriSceneListViewController titleName]-[HDLSiriSceneListViewController tableViewStyle]-[HDLSiriSceneListViewController dataSource]-[HDLSiriSceneListViewController viewDidLoad]-[HDLSiriSceneListViewController setTopBarView:]-[HDLSiriSceneListViewController setTableView:]-[HDLSiriSceneListViewController getSceneINVoiceShortcut:]-[HDLSiriSceneListViewController getINShortcut:]-[HDLSiriSceneListViewController setSiriShortcutList:]-[HDLSiriSceneListViewController getSceneIntent:]-[HDLSiriSceneListViewController checkCurrentClass:]-[HDLSiriSceneListViewController addVoiceShortcutViewController:didFinishWithVoiceShortcut:error:]-[HDLSiriSceneListViewController editVoiceShortcutViewController:didUpdateVoiceShortcut:error:]-[HDLSiriSceneListViewController editVoiceShortcutViewController:didDeleteVoiceShortcutWithIdentifier:]-[HDLSiriSceneListViewController presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:]-[HDLSiriSceneListViewController presentAddVoiceShortcutViewController:forAddVoiceShortcutButton:]-[HDLSiriSceneListViewController tableView:numberOfRowsInSection:]-[HDLSiriSceneListViewController addOrEditVoiceShortcut:model:]-[HDLSiriSceneListViewController editVoiceShortcutViewControllerDidCancel:]-[HDLSiriSceneListViewController addVoiceShortcutViewControllerDidCancel:]-[HDLSiriSceneListViewController tableView:didSelectRowAtIndexPath:]-[HDLSiriSceneListViewController tableView:heightForRowAtIndexPath:]-[HDLSiriSceneListViewController tableView:cellForRowAtIndexPath:]-[HDLSiriSceneListViewController setTitleName:]-[HDLSiriSceneListViewController setTableViewStyle:]-[HDLSiriSceneListViewController setTopBarViewWithTitle:]-[HDLSiriSceneListViewController setDataSource:]ltmp9l_OBJC_PROP_NAME_ATTR_.399l_OBJC_METH_VAR_TYPE_.299l_OBJC_METH_VAR_NAME_.199_OBJC_SELECTOR_REFERENCES_.99l_OBJC_METH_VAR_TYPE_.389l_OBJC_METH_VAR_NAME_.289l_OBJC_METH_VAR_TYPE_.189l_OBJC_METH_VAR_NAME_.89l_OBJC_METH_VAR_NAME_.379l_OBJC_METH_VAR_NAME_.279l_OBJC_METH_VAR_TYPE_.179_OBJC_SELECTOR_REFERENCES_.79l_OBJC_METH_VAR_TYPE_.369l_OBJC_METH_VAR_TYPE_.269l_OBJC_METH_VAR_NAME_.169_OBJC_SELECTOR_REFERENCES_.69l_OBJC_METH_VAR_TYPE_.359l_OBJC_METH_VAR_TYPE_.259_OBJC_CLASSLIST_REFERENCES_$_.159l_OBJC_METH_VAR_NAME_.59l_OBJC_METH_VAR_TYPE_.349l_OBJC_METH_VAR_NAME_.249_OBJC_SELECTOR_REFERENCES_.149l_OBJC_METH_VAR_NAME_.49l_OBJC_METH_VAR_NAME_.339l_OBJC_METH_VAR_NAME_.239_OBJC_SELECTOR_REFERENCES_.139l_OBJC_METH_VAR_NAME_.39l_OBJC_METH_VAR_TYPE_.329l_OBJC_METH_VAR_NAME_.229_OBJC_SELECTOR_REFERENCES_.129l_OBJC_METH_VAR_NAME_.29ltmp19l_OBJC_METH_VAR_NAME_.319l_OBJC_METH_VAR_TYPE_.219l_OBJC_METH_VAR_NAME_.119l_OBJC_METH_VAR_NAME_.19l_OBJC_METH_VAR_NAME_.309l_OBJC_PROP_NAME_ATTR_.209_OBJC_SELECTOR_REFERENCES_.109l_OBJC_METH_VAR_NAME_.9ltmp8l_OBJC_PROP_NAME_ATTR_.398l_OBJC_METH_VAR_NAME_.298l_OBJC_METH_VAR_NAME_.198l_OBJC_METH_VAR_NAME_.98l_OBJC_METH_VAR_NAME_.388l_OBJC_METH_VAR_TYPE_.288l_OBJC_METH_VAR_NAME_.188_OBJC_SELECTOR_REFERENCES_.88l_OBJC_METH_VAR_NAME_.378l_OBJC_METH_VAR_TYPE_.278l_OBJC_CLASS_NAME_.178l_OBJC_METH_VAR_NAME_.78l_OBJC_METH_VAR_TYPE_.368l_OBJC_METH_VAR_NAME_.268_OBJC_SELECTOR_REFERENCES_.168l_OBJC_METH_VAR_NAME_.68l_OBJC_METH_VAR_TYPE_.358l_OBJC_METH_VAR_TYPE_.258_OBJC_SELECTOR_REFERENCES_.158_OBJC_SELECTOR_REFERENCES_.58l_OBJC_METH_VAR_NAME_.348l_OBJC_METH_VAR_TYPE_.248l_OBJC_METH_VAR_NAME_.148_OBJC_SELECTOR_REFERENCES_.48l_OBJC_METH_VAR_TYPE_.338l_OBJC_METH_VAR_TYPE_.238l_OBJC_METH_VAR_NAME_.138_OBJC_SELECTOR_REFERENCES_.38l_OBJC_METH_VAR_NAME_.328l_OBJC_METH_VAR_NAME_.228l_OBJC_METH_VAR_NAME_.128_OBJC_SELECTOR_REFERENCES_.28ltmp18l_OBJC_METH_VAR_NAME_.318l_OBJC_METH_VAR_TYPE_.218_OBJC_SELECTOR_REFERENCES_.118l__unnamed_cfstring_.18l_OBJC_METH_VAR_NAME_.308l_OBJC_PROP_NAME_ATTR_.208l_OBJC_METH_VAR_NAME_.108_OBJC_SELECTOR_REFERENCES_.8ltmp7l_OBJC_PROP_NAME_ATTR_.397l_OBJC_METH_VAR_TYPE_.297l_OBJC_METH_VAR_TYPE_.197_OBJC_CLASSLIST_REFERENCES_$_.97l_OBJC_METH_VAR_TYPE_.387l_OBJC_METH_VAR_TYPE_.287l_OBJC_METH_VAR_TYPE_.187l_OBJC_METH_VAR_NAME_.87l_OBJC_METH_VAR_NAME_.377l_OBJC_METH_VAR_NAME_.277l_OBJC_CLASS_NAME_.177_OBJC_SELECTOR_REFERENCES_.77l_OBJC_METH_VAR_TYPE_.367l_OBJC_METH_VAR_NAME_.267l_OBJC_METH_VAR_NAME_.167_OBJC_SELECTOR_REFERENCES_.67l_OBJC_METH_VAR_TYPE_.357l_OBJC_METH_VAR_TYPE_.257l_OBJC_METH_VAR_NAME_.157l_OBJC_METH_VAR_NAME_.57l_OBJC_METH_VAR_NAME_.347l_OBJC_METH_VAR_NAME_.247_OBJC_SELECTOR_REFERENCES_.147l_OBJC_METH_VAR_NAME_.47l_OBJC_METH_VAR_NAME_.337l_OBJC_METH_VAR_NAME_.237_OBJC_CLASSLIST_REFERENCES_$_.137l_OBJC_METH_VAR_NAME_.37l_OBJC_METH_VAR_NAME_.327l_OBJC_CLASS_NAME_.227_OBJC_SELECTOR_REFERENCES_.127l_OBJC_METH_VAR_NAME_.27ltmp17l_OBJC_METH_VAR_NAME_.317l_OBJC_METH_VAR_NAME_.217l_OBJC_METH_VAR_NAME_.117l_.str.17l_OBJC_METH_VAR_TYPE_.307l_OBJC_PROP_NAME_ATTR_.207_OBJC_SELECTOR_REFERENCES_.107l_OBJC_METH_VAR_NAME_.7ltmp6l_OBJC_PROP_NAME_ATTR_.396l_OBJC_METH_VAR_NAME_.296l_OBJC_METH_VAR_NAME_.196_OBJC_SELECTOR_REFERENCES_.96l_OBJC_METH_VAR_NAME_.386l_OBJC_METH_VAR_TYPE_.286l_OBJC_METH_VAR_NAME_.186_OBJC_SELECTOR_REFERENCES_.86l_OBJC_METH_VAR_TYPE_.376l_OBJC_METH_VAR_NAME_.276_OBJC_SELECTOR_REFERENCES_.176l_OBJC_METH_VAR_NAME_.76l_OBJC_METH_VAR_TYPE_.366l_OBJC_METH_VAR_NAME_.266_OBJC_CLASSLIST_REFERENCES_$_.166l_OBJC_METH_VAR_NAME_.66l_OBJC_METH_VAR_TYPE_.356l_OBJC_METH_VAR_TYPE_.256_OBJC_CLASSLIST_REFERENCES_$_.156_OBJC_SELECTOR_REFERENCES_.56l_OBJC_METH_VAR_NAME_.346l_OBJC_METH_VAR_NAME_.246l_OBJC_METH_VAR_NAME_.146_OBJC_SELECTOR_REFERENCES_.46l_OBJC_METH_VAR_NAME_.336l_OBJC_METH_VAR_TYPE_.236_OBJC_SELECTOR_REFERENCES_.136_OBJC_SELECTOR_REFERENCES_.36l_OBJC_METH_VAR_NAME_.326l_OBJC_METH_VAR_TYPE_.226l_OBJC_METH_VAR_NAME_.126_OBJC_SELECTOR_REFERENCES_.26ltmp16l_OBJC_METH_VAR_NAME_.316l_OBJC_METH_VAR_TYPE_.216_OBJC_CLASSLIST_REFERENCES_$_.116_OBJC_SELECTOR_REFERENCES_.16l_OBJC_METH_VAR_NAME_.306l_OBJC_METH_VAR_NAME_.206l_OBJC_METH_VAR_NAME_.106_OBJC_SELECTOR_REFERENCES_.6ltmp5l_OBJC_PROP_NAME_ATTR_.395l_OBJC_METH_VAR_NAME_.295l_OBJC_METH_VAR_NAME_.195l_OBJC_METH_VAR_NAME_.95l_OBJC_METH_VAR_TYPE_.385l_OBJC_METH_VAR_TYPE_.285l_OBJC_METH_VAR_TYPE_.185l_OBJC_METH_VAR_NAME_.85l_OBJC_METH_VAR_NAME_.375l_OBJC_METH_VAR_NAME_.275l_OBJC_METH_VAR_NAME_.175_OBJC_SELECTOR_REFERENCES_.75l_OBJC_METH_VAR_TYPE_.365l_OBJC_METH_VAR_NAME_.265_OBJC_SELECTOR_REFERENCES_.165_OBJC_SELECTOR_REFERENCES_.65l_OBJC_METH_VAR_TYPE_.355l_OBJC_METH_VAR_TYPE_.255_OBJC_SELECTOR_REFERENCES_.155l_OBJC_METH_VAR_NAME_.55l_OBJC_METH_VAR_NAME_.345l_OBJC_METH_VAR_TYPE_.245_OBJC_SELECTOR_REFERENCES_.145l_OBJC_METH_VAR_NAME_.45l_OBJC_METH_VAR_NAME_.335l_OBJC_METH_VAR_NAME_.235l_OBJC_METH_VAR_NAME_.135l_OBJC_METH_VAR_NAME_.35l_OBJC_METH_VAR_TYPE_.325l_OBJC_METH_VAR_TYPE_.225_OBJC_CLASSLIST_REFERENCES_$_.125l_OBJC_METH_VAR_NAME_.25ltmp15l_OBJC_METH_VAR_NAME_.315l_OBJC_METH_VAR_NAME_.215_OBJC_SELECTOR_REFERENCES_.115l_OBJC_METH_VAR_NAME_.15l_OBJC_METH_VAR_NAME_.305l_OBJC_METH_VAR_NAME_.205_OBJC_SELECTOR_REFERENCES_.105l_OBJC_METH_VAR_NAME_.5ltmp4l_OBJC_PROP_NAME_ATTR_.394l_OBJC_METH_VAR_NAME_.294l_OBJC_METH_VAR_TYPE_.194_OBJC_SELECTOR_REFERENCES_.94l_OBJC_METH_VAR_NAME_.384l_OBJC_METH_VAR_TYPE_.284l_OBJC_METH_VAR_NAME_.184_OBJC_SELECTOR_REFERENCES_.84l_OBJC_METH_VAR_TYPE_.374l_OBJC_METH_VAR_NAME_.274l_.str.174l_OBJC_METH_VAR_NAME_.74l_OBJC_METH_VAR_TYPE_.364l_OBJC_CLASS_NAME_.264l_OBJC_METH_VAR_NAME_.164l_OBJC_METH_VAR_NAME_.64l_OBJC_METH_VAR_TYPE_.354l_OBJC_METH_VAR_TYPE_.254l_OBJC_METH_VAR_NAME_.154_OBJC_SELECTOR_REFERENCES_.54l_OBJC_METH_VAR_NAME_.344l_OBJC_METH_VAR_NAME_.244l_OBJC_METH_VAR_NAME_.144_OBJC_SELECTOR_REFERENCES_.44l_OBJC_METH_VAR_NAME_.334l_OBJC_CLASS_NAME_.234_OBJC_SELECTOR_REFERENCES_.134_OBJC_SELECTOR_REFERENCES_.34l_OBJC_METH_VAR_NAME_.324l_OBJC_METH_VAR_TYPE_.224_OBJC_SELECTOR_REFERENCES_.124_OBJC_SELECTOR_REFERENCES_.24ltmp14l_OBJC_METH_VAR_NAME_.314l_OBJC_METH_VAR_TYPE_.214l_OBJC_METH_VAR_NAME_.114_OBJC_SELECTOR_REFERENCES_.14l_OBJC_METH_VAR_NAME_.304l_OBJC_METH_VAR_NAME_.204l_OBJC_METH_VAR_NAME_.104_OBJC_SELECTOR_REFERENCES_.4ltmp3l_OBJC_PROP_NAME_ATTR_.393l_OBJC_METH_VAR_NAME_.293l_OBJC_METH_VAR_NAME_.193l_OBJC_METH_VAR_NAME_.93l_OBJC_METH_VAR_TYPE_.383l_OBJC_METH_VAR_TYPE_.283l_OBJC_METH_VAR_TYPE_.183l_OBJC_METH_VAR_NAME_.83l_OBJC_METH_VAR_TYPE_.373l_OBJC_METH_VAR_NAME_.273l_.str.173_OBJC_SELECTOR_REFERENCES_.73l_OBJC_METH_VAR_TYPE_.363l_OBJC_CLASS_NAME_.263_OBJC_SELECTOR_REFERENCES_.163_OBJC_CLASSLIST_REFERENCES_$_.63l_OBJC_METH_VAR_TYPE_.353l_OBJC_METH_VAR_NAME_.253_OBJC_SELECTOR_REFERENCES_.153l_OBJC_METH_VAR_NAME_.53l_OBJC_METH_VAR_TYPE_.343l_OBJC_METH_VAR_NAME_.243_OBJC_SELECTOR_REFERENCES_.143l_OBJC_METH_VAR_NAME_.43l_OBJC_METH_VAR_NAME_.333l_OBJC_METH_VAR_TYPE_.233l_OBJC_METH_VAR_NAME_.133l_OBJC_METH_VAR_NAME_.33l_OBJC_METH_VAR_NAME_.323l_OBJC_METH_VAR_NAME_.223l_OBJC_METH_VAR_NAME_.123l_OBJC_METH_VAR_NAME_.23ltmp13l_OBJC_METH_VAR_NAME_.313l_OBJC_METH_VAR_TYPE_.213_OBJC_SELECTOR_REFERENCES_.113l_OBJC_METH_VAR_NAME_.13l_OBJC_PROP_NAME_ATTR_.403l_OBJC_METH_VAR_NAME_.303l_OBJC_METH_VAR_NAME_.203_OBJC_SELECTOR_REFERENCES_.103l_OBJC_METH_VAR_NAME_.3_objc_msgSendSuper2ltmp2___45-[HDLSiriSceneListViewController refreshSiri]_block_invoke_2l_OBJC_PROP_NAME_ATTR_.392l_OBJC_METH_VAR_NAME_.292l_OBJC_METH_VAR_NAME_.192_OBJC_SELECTOR_REFERENCES_.92l_OBJC_METH_VAR_NAME_.382l_OBJC_METH_VAR_TYPE_.282l_OBJC_METH_VAR_NAME_.182_OBJC_CLASSLIST_REFERENCES_$_.82l_OBJC_CLASS_NAME_.372l_OBJC_METH_VAR_NAME_.272_OBJC_SELECTOR_REFERENCES_.172l_OBJC_METH_VAR_NAME_.72l_OBJC_METH_VAR_TYPE_.362l_OBJC_METH_VAR_TYPE_.262l_OBJC_METH_VAR_NAME_.162_OBJC_SELECTOR_REFERENCES_.62l_OBJC_METH_VAR_TYPE_.352l_OBJC_METH_VAR_TYPE_.252l_OBJC_METH_VAR_NAME_.152_OBJC_SELECTOR_REFERENCES_.52l_OBJC_METH_VAR_NAME_.342l_OBJC_METH_VAR_TYPE_.242l_OBJC_METH_VAR_NAME_.142_OBJC_SELECTOR_REFERENCES_.42l_OBJC_METH_VAR_NAME_.332l_OBJC_METH_VAR_TYPE_.232_OBJC_SELECTOR_REFERENCES_.132_OBJC_CLASSLIST_REFERENCES_$_.32ltmp22l_OBJC_METH_VAR_NAME_.322l_OBJC_METH_VAR_TYPE_.222_OBJC_SELECTOR_REFERENCES_.122l__unnamed_cfstring_.22ltmp12l_OBJC_METH_VAR_NAME_.312l_OBJC_PROP_NAME_ATTR_.212l_OBJC_METH_VAR_NAME_.112_OBJC_SELECTOR_REFERENCES_.12l_OBJC_PROP_NAME_ATTR_.402l_OBJC_METH_VAR_NAME_.302l_OBJC_METH_VAR_TYPE_.202l_OBJC_METH_VAR_NAME_.102_OBJC_SELECTOR_REFERENCES_.2ltmp1lCPI1_1l_OBJC_METH_VAR_TYPE_.391l_OBJC_METH_VAR_TYPE_.291l_OBJC_METH_VAR_NAME_.191l_OBJC_METH_VAR_NAME_.91l_OBJC_METH_VAR_TYPE_.381l_OBJC_METH_VAR_NAME_.281l_OBJC_METH_VAR_TYPE_.181_OBJC_SELECTOR_REFERENCES_.81l_OBJC_METH_VAR_TYPE_.371l_OBJC_METH_VAR_TYPE_.271l_OBJC_METH_VAR_NAME_.171_OBJC_SELECTOR_REFERENCES_.71l_OBJC_METH_VAR_TYPE_.361l_OBJC_METH_VAR_TYPE_.261_OBJC_SELECTOR_REFERENCES_.161l_OBJC_METH_VAR_NAME_.61l_OBJC_METH_VAR_TYPE_.351l_OBJC_METH_VAR_NAME_.251_OBJC_SELECTOR_REFERENCES_.151l_OBJC_METH_VAR_NAME_.51l_OBJC_METH_VAR_NAME_.341l_OBJC_METH_VAR_NAME_.241_OBJC_SELECTOR_REFERENCES_.141l_OBJC_METH_VAR_NAME_.41l_OBJC_METH_VAR_TYPE_.331l_OBJC_METH_VAR_TYPE_.231l_OBJC_METH_VAR_NAME_.131_OBJC_CLASSLIST_REFERENCES_$_.31ltmp21l_OBJC_METH_VAR_NAME_.321l_OBJC_METH_VAR_NAME_.221l_OBJC_METH_VAR_NAME_.121l_.str.21ltmp11l_OBJC_METH_VAR_NAME_.311l_OBJC_PROP_NAME_ATTR_.211_OBJC_SELECTOR_REFERENCES_.111l_OBJC_METH_VAR_NAME_.11l_OBJC_PROP_NAME_ATTR_.401l_OBJC_METH_VAR_NAME_.301l_OBJC_METH_VAR_NAME_.201_OBJC_SELECTOR_REFERENCES_.101l_OBJC_METH_VAR_NAME_.1ltmp0lCPI18_0lCPI17_0lCPI1_0l_OBJC_METH_VAR_NAME_.390l_OBJC_METH_VAR_NAME_.290l_OBJC_METH_VAR_TYPE_.190_OBJC_SELECTOR_REFERENCES_.90l_OBJC_METH_VAR_NAME_.380l_OBJC_METH_VAR_NAME_.280l_OBJC_METH_VAR_NAME_.180l_OBJC_METH_VAR_NAME_.80l_OBJC_METH_VAR_TYPE_.370l_OBJC_METH_VAR_NAME_.270_OBJC_SELECTOR_REFERENCES_.170l_OBJC_METH_VAR_NAME_.70l_OBJC_METH_VAR_TYPE_.360l_OBJC_METH_VAR_TYPE_.260l_OBJC_METH_VAR_NAME_.160_OBJC_SELECTOR_REFERENCES_.60l_OBJC_METH_VAR_TYPE_.350l_OBJC_METH_VAR_TYPE_.250l_OBJC_METH_VAR_NAME_.150_OBJC_SELECTOR_REFERENCES_.50l_OBJC_METH_VAR_NAME_.340l_OBJC_METH_VAR_TYPE_.240l_OBJC_METH_VAR_NAME_.140_OBJC_SELECTOR_REFERENCES_.40l_OBJC_METH_VAR_NAME_.330l_OBJC_METH_VAR_NAME_.230_OBJC_CLASSLIST_REFERENCES_$_.130_OBJC_SELECTOR_REFERENCES_.30ltmp20l_OBJC_METH_VAR_NAME_.320l_OBJC_CLASS_NAME_.220_OBJC_SELECTOR_REFERENCES_.120_OBJC_SELECTOR_REFERENCES_.20ltmp10l_OBJC_METH_VAR_NAME_.310l_OBJC_PROP_NAME_ATTR_.210l_OBJC_METH_VAR_NAME_.110_OBJC_SELECTOR_REFERENCES_.10l_OBJC_PROP_NAME_ATTR_.400l_OBJC_METH_VAR_NAME_.300l_OBJC_METH_VAR_TYPE_.200l_OBJC_METH_VAR_NAME_.100l_OBJC_LABEL_CLASS_$#1/20           0           0     0     100644  57668     `
TopBarView.oÏúíþ ˜  ¸¾´¸ ¾´__text__TEXT˜¸ xÀÄ€__literal8__TEXT˜P__objc_data__DATA°Ph˜Æ__objc_superrefs__DATA¸ØÆ__objc_methname__TEXTûÀ__objc_selrefs__DATA    °ÀàÆ__objc_classrefs__DATA¸    8pÇ__objc_ivar__DATAð    ¨__cstring__TEXTø    °__cfstring__DATA
`ÐÈÇ__objc_classname__TEXTx
0__objc_const__DATAˆ
à@øÇ+__objc_methtype__TEXTh  __objc_classlist__DATAø °PÉ__bitcode__LLVM ¸__cmdline__LLVM ¹__objc_imageinfo__DATA ¼+__debug_loc__DWARF  zÄ+__debug_abbrev__DWARF†%×>1__debug_info__DWARF](è+4XÉ
__debug_str__DWARFETô=ý___apple_names__DWARF9’ôñ__apple_objc__DWARF-”\åŸ__apple_namespac__DWARF‰”$A __apple_types__DWARF­”ãe __compact_unwind__LD¦ H²¨É    __debug_line__DWARF°§ h³ðÉ% .øÉ ˜ËhÔÈ Pttx- -frameworkUIKit-(-frameworkFileProvider-0-frameworkUserNotifications- -frameworkCoreText-(-frameworkQuartzCore-(-frameworkCoreImage- -frameworkImageIO-(-frameworkCoreVideo- -frameworkOpenGLES- -frameworkMetal-(-frameworkIOSurface-(-frameworkCoreGraphics-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationÿCÑé#möW©ôO©ý{©ý‘@ùà#©@ùà‘”óªà´@ù@ù”ýª”ôª@ù”H¢N@ù@ù”ýª”õª@ù”ÈèÒgž` `
èÒgžÈ
èÒgž#¬`@ùàgžágžàª¨N”ઔઔ@ùઔýª”ôª@ùàªáªâª”ઔ@ùઔýª”ôªàªáªâª”ઔàªý{D©ôOC©öWB©é#AmÿC‘À_ÖöW½©ôO©ý{©ýƒ‘󪐀¹hvøà    µ@ù@ù"€R”ýª”hjvø`j6øàª”@ù@ù”ýª”ôª@ù”ÈèÒgž` df¬``jvø@ù@ýàgžƒ¤N”ઔtjvø@ù@ùB‘”ýª”õª@ùàªâª€Ò”ઔ@ù@ù@ýn N N”ýª”ôª`jvø@ù⪔ઔ`jvøý{B©ôOA©öWèë+ºmé#mø_©öW©ôO©ý{©ýC‘󪐀¹hxø µ@ù@ù”ýª”ôª@ù”ÈèÒgž` hf    ­`@ù@ù”ýª”õª@ù”ˆ
øÒgžJ(`@ù@ùB‘f”ýª”öª@ù@ù@ýn N N”ýª”÷ª@ù„‘ˆèÒgžàª!©NBªN¨Nâªãª”ýª”hjxø`j8øàª”ઔઔઔઔ`jxø@ù"€R”`jxøý{E©ôOD©öWC©ø_B©é#Amë+Ælë+ºmé#mø_©öW©ôO©ý{©ýC‘ôªàªõªh£NI¢N*¡N  N”óªàª”ôª@ùઔ÷ªàª”@ù`«NAªN"©N¨N”õª@ù@ù”ýª”öª@ùàªâª”ઔ@ùàªâª”ઔӴ@ùàªâª”@ùàªâª”ઔઔàªý{E©ôOD©öWC©ø_B©é#Amë+ÆlÀ_ÖöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”ýª”óª@ù⪔ઔàªý{B©ôOA©öWè᪐€¹‹áª€¹‹ôO¾©ý{©ýC‘󪐀¹‹€Ò”€¹`‹€Òý{A©ôO¨€C@Á?Á?initWithFrame:mainScreenboundssharedApplicationstatusBarFramesetFrame:backButtonaddSubview:titleLabelbuttonWithType:imageNamed:setImage:forState:colorWithRed:green:blue:alpha:setTintColor:fontWithName:size:NewLabel:font:textColor:text:setTextAlignment:clearColorsetBackgroundColor:setFont:setTextColor:setText:backButtonClicksetTitle:setBackButton:setTitleLabel:.cxx_destruct_backButton_titleLabelbackButtonT@"UIButton",&,N,V_backButtontitleLabelT@"UILabel",&,N,V_titleLabelic_nav_backPingFangSC-MediumÈ ÈÈTopBarView…((     „@48@0:8{CGRect={CGPoint=dd}{CGSize=dd}}16@16@0:8@72@0:8{CGRect={CGPoint=dd}{CGSize=dd}}16@48@56@64v16@0:8v24@0:8@16@"UIButton"@"UILabel"-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameTopBarView.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/TopBarView.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1637828650364117851-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/TopBarView.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@80Ÿ8`c,Q,p£QŸp„P„ÔcÔÜ£PŸp¤Q¤Ì£QŸÜüPüpcp„£PŸÜQh£QŸ„¨P¨À£PŸ„ÀQÀÀ£QŸ„ÀRÀУRŸÐÜeÜàP„¨S¨ÀP„¤T¤ÈdÈÌP °eÄØPØðcðøPÄèQè0£QŸÄäRäèP0@P@D£PŸ04Q4D£QŸ04R4DQDTPTX£PŸDHQHX£QŸDHRHXQXhPh”c”˜£PŸXxQx˜£QŸ%‚|ïáå I : ; ( I: ; $> (ì : ; æ     I8
€„èI: ; ë I: ; 8 2  : ; æ €„èI: ; é뀄èI: ; ë €„èI: ; éë I: ;I<I  I8 €„èI: ;뀄èI: ;éë : ;  I: ; 8 &II!I7 $ > ä  Iˆ8  I'!I"ä #€„èI: ;ë $&%'&|€|': ; (.@dz: ; 'Iá)I4*: ; I+: ; I,4: ; I-.ç@dz: ; 'á.I4/.@dz: ; 'á0.ç@dz: ; '4á1I2.@dz: ; '4áä+/“ú ˜vUuˆ›¸Îãú b lÆ6;bw‘¨¿Õ€€ü€øÑE Pv*@Unv…z Æé 6va&€ªvÔäþ.Jfv„%‘¤¸Ëvã/ø<ÆUiœÂÿÿvÞ    &!O
s„–©fƹ
#ÆÝô v"+Dl‘¹vß2    -    U    ~    ¦    Ñ    Æý    
%
C
a
€

 ¹
@Õ
€ò
€ € ' €@L €€n €€Œ €€© €€Å €€ ç ÿ €€<# €€€xE €€€€b ÿÿÿÿvz  &› Á é  6 \ v„  ž ¾ Ý û v 5=i”ÁÆô V
$=Zv”v­ Ñþ)SÆ ¨Á vÞ$ñ4Liˆ§vÇ4Ûóv@#Adm‡¯Ëå @"€A€_€ €€€¢€€Ä€€€€Þû€€€€€€€€G€€€€i€€€€Ž€€€€®€€€€Ò€€€€ñ€€€€    €€€€
/€€€€ !¦vMpšÁvëý:[s‹ ¸Îå    þ
 4 vQt¢Îùv$9Ys‹¢¾vÖ ë %v>,`ºvç$Dvd{™»vÛ2êv(;@cvH²ÒëvB9SvjNеÝ~!(8‰ ~ITev‡J     û
%%JH
(7¸%JH Å:J Ñ:¸%J ˜‘    Ÿ
0     “A@ ; +    ˜R N
k v™L
o      šAl$+    œA}$+    …$C
$«
 h
¤$é¤L
Ì$ô§h
æ$    ©Lÿ$²A Ÿ    9    ù
É&        ;A×+        =Aú+        @A+        CA
#=        jA þ
    mA «5 ´    8    ¸0!    ¾Ÿ6    ïNôB     /H    ù
=v+ K+    2c
}+    6     
‹Æ=     
˜‰
D(
³+    S
»+    T Ã+    WË Õ+    XÝ
ç+    |
ÿ+    }
«
‚!
6«
ƒ!
E«
!
W«
Ž! iÍ
 ƒÍ
 މ
 ϓ
 ÓÍ
 ÛÍ
  â¶! ù¶"Ž
¥    ù
­Æ°
&c    ù
/ÆiÖ
tÛ
w´    ÷
³¼ãÞ     u 
.    ù
} ë
ˆ     
Æ 
     
Ï C
’     
Ù 
™     
å C
ž     
ò ‚
£     
J!ë
°      P!+    
µW!     `!+    
ºl!     z!+    
Š!    
œ!    
Ó
§!‰
 
à(
±!‚
ÿ     Ã!    
 
È!+    
     Ö!Í
 
3ß!ë
<     ì!V
E("C
O     !"ë
e     0"a
k(U"l
t(~"l
u(’"¯
{     ©"+    
°"    ¹"+    
›     Ô"+    
¤     è"w
À     ý"+    
É     #‚
Ï 7#C
Õ     D#—
Ú     R#¢
à(q#C
î     }#‚
ó ‰#¯
ù     ‘#+    
     ¤#Í
 
¶#‰
 
(¾#‰
 
(Ð#+    
0     à#C
6     ó#‚
= ÿ#¯
B      $V
F     $C
J     '$­
T C$Ç
¶(X$«
 
ä(]$Í
 
êf$Ç
ö(ö „ 2„  .‹ /­ V0"’ ’ š C« COœ J¤ a²  ² ¹ C¿ Cü  ü € 
!C !C !C !C !C  !C ("!C 0&!C 8*!C @.!C H2!C P6!C X:!C `>!C hB!C pF!C x«
ü!
«
?"
«
h"
üO
$#! ’/#(¹
#«
^#
¸2$ ½Â<$Ì K$"    ù
­Æ"v·$#!ù Ø$$    ù…z.a&$ 0%1    ß
'˜šH
è'ì›L
ö'VœL
(÷ŸL
=(÷ L
M(÷¡L
](+    ¤L
€(+    ¥L
œ(+    ¦L
µ(+    ©L
Ï(;Dh
ù3"Mh
74+    PL
Y4RH4c4ñ"SA n4+    Vv4G €4+    Y…4G
Œ4ü"[L ‘4+    ^«4N
Ç4#fh
6'%ih
r6+    nL
’6«
ˆA
Ÿ6‰A
±6ŠA
É6^‹A
Ö6^ŒA
í6®!A
7ü!ŽA
(7¸%‘A
Š8%'’A
·:¸%”A 9%L    û C%+    TK%N U%+    U^%N i%+    Vu%N
ƒ%ÑWL
œ%ÜXL·%ÜYAÛ%ç[Aá%+    \ê%Cõ%+    ]&C&òtA &uA
1&„A p&+    †Ž&N
®&+    ˆL
Ç&«
Žh
Ï&XAM"+rß2ˆ6;÷ &%    ù
­Æ%£ý    $ H&     ù
]$Í
#Aa&M'AxM] â&&    ù
]$Í
&H C%+    &K%N
÷&«
&h ''    ù
'‰
'A@
'«
'5A
)'«
'6A2'C'7A<'C'8AE'C'9AO'C':AY'C';Aa'C'<Al'C'=At'4'FA9 ƒ'A    ù”'«
GA2'CHA£'…IAÊ'áJAÙ'ÇNAª'(ª'0(¼'C(¾'C(À'C(Â'C(Ä'C( Ç'C((¯‡GÔ( (  '(C +(C 0(C 7(C @ Ý( A    ù
ó({ TH
2Û! WL
(2æ! ZL
32ñ! ]L
A2 `H
U2 cH
z+^ eH
i2Ó fh
2®! gh
¤2+     jL
»2Ó kh
Ý2«
mh
ã2ü! nh
3" oh
U3«
qh
^3ü! rh
q3" sh
“3> vL
¡3‚ zL
°3C |L
½3C ~L
Ê3t" €L
Ù3+     ‚L€ þ()    ù
)9)3H
7#C)7L
#)>):L
U)‚)=L
#)BH
Ò*Ó)Dh
^+I)Ih
z+^)LH
Ï1Ð!)NL
à1)SH
ì1Ó)Uh
2C)ZL
2C)^LûI4) $4)  "'(C #l'C #0(C #L)C #Åô V’ €)*    ù
ˆ)*2A@
“)*3A@
¡)*4A@
°)*5A@
»)*6A@
Å)*7A@
Î)*8A@
Ù)*9A@
ã)*:A@
í)*;A@
ù)*<A@
**=A@
**>A@
**?A@
)**@A@/#‚*SA4*}*VA‚ 4*(,    ù
<*–,7
V*¡,:
a*C,=
g*«,@
*C,C
“*C,D
™*C,E
ž*«
,K
ˆ)},NE
°)},OE
»)},PE
Å)},QE
Î)},RE
Ù)},SE
ã)},TE
ù)},UE
í)},VE
)*},WE ³*¶, ¹*À,ÑO*+.¦C¶r*- »‚*¶Ì¾*Þí*.ã  +¶+‰+‰ &+0+) !."=+P+ÑY+ÑN k+/    ùc €+J    ù­ VxA
ˆ+myA
›+‚|Aï.±~A/CA/+    /C
 /‰
ŠA'/¼‹A?/÷™AI/ÇšAV/÷¢Aj/Ò¦Ax/ݪAç/M ®a
1w!¯A*1+    µAM1CÀAf1+    ÁA
Ï(Œ!Ña
‡1®!ùax+0 }ˆ+‡ ›+1    ù
£+‚1æE
®+‚1çE
¹+‚1èE
Ã+‚1éE
Ì+‚1êE
×+‚1ëE
á+‚1ìE
ë+‚1íE
ø+‚1îE
,‚1ïE#,ë 1A,Ç1”!,‡1—:,Ã1›g*«1Ÿª.…1¤Aˆ+m1¨A ³*¶1"Œ ,,2    ù
,ë 28 ¹*m2 ³*¶2È >,(4    ù
D,!4S!
d,«
4U!
s,«
4V!
‚,Ã4W!
Š,Ã4X!
–,«
4\!
,«
4]!
¯,«
4a!
´,V4b!
ì-«
4c!
ñ-«
4d!
ú-«
4e!
ÿ-«
4f!
.«
4g!
.«
4h!
.«
4i!
+.+    4m
<.X4u U.+    4w].
g.Ã4}!
w.Ã4’! ƒ.«
4 Ž.Ã4 —.¶4  .¶4& W,3F    ù
/Æ3H
^,P3NU$[ ¹,5)    ;
Ø,b5<
â,i5=
-p5>
-w5?
5-‰5@
>-!5A
O-5B
Y-Ñ5C
k-~5D
‡-÷
5E
-¯5F
¨-O5G
´-+    5H
¾-v5I
Ë-Æ5J
à-«
5L! Â,5     ù
Ê,X5]bÓ,ô, -&-y-‘¶.8KœÇ.7’§Ø.6@¬ä.:Þ$O0/9wÇ4@â Œ/    & 
/CL
©"+    L
Ã/+    L
Ø/B !L ª/:    ù} ë :AòQR  ÷/;    ù    0þ ;"A0    !;%A/0!;(A?0C;+AL0!;.A`0!;1Ar0*!;4A‡05!;7aº0@!;:AÇ0K!;=AÝ0V!;@Að0a!;CA1l!;JA$HÖ g>,†ç¥d«
¤0<ÄÛ2ã(;H!B@jN|! 1=    ù‘! r1>    ù
ç/M >A³! ›1?/    ‘!
¶1®!?2A@—ëJz &{„   5" ó2@    ù
3«
@!)",3 ."  +¶+‰+‰ &+d"0+)i" Ç!Çö­ Š"4."  +¶+‰+‰ &+Å"0+Ñ"Ê"%!Ö""=+P+ÑY+Ñ3Ux„%#Ü4-#  +¶+‰+‰ &+M#0+Ñ"R# g#!!ˆ#!%l# ù4A    ù5‰
Ah# 5A:    ù$5©#A<a®# ,5B-    ù>5î#BGAf59BIAk5'$BKa­ VBQAó# E5B    ùU59B&A_5B'Aò …B(A,$ v5D    ù
Š5c$D'h
'$c$D+h
#D0h0h$ –5C    ù
<$­C L £5+    C<©5} ë C=A±5C>A
¾5CCCL
È5ü$CDL
Õ5%CEL
ã5CCFL
î5CCGL
÷5+    CHL_!I% 6Aj    ù,% 6     l%46¢% !AP6­% $AX6‰
'Aa6‰
*A &6E    ùÝ2«
E A
U3«
E#h
z+^E&A«
?6  ½% 37F    û
;7«
Fh
'˜FH4
@7FH4
ó#FH
$VFL
J7'FL
è'ìFL
X7ü!F h
g7F$H i%+    F%u%N ; +    F'R N C%+    F(K%N
|7vF.L
Š7+    F3L
¤7'F4L
·7CF5L
Ê7+    F:L
ï7'F?L
8CFJL
8+    FNL
;8+    FQL
[8CFUL
k8+    FXL؝ã/¼U*' ”8G    û
z+^GH
 8^GH
±8®!GH ; +    GR N i%+    Gu%N
Î8‰
G h
Þ8‰
G!h
ù8¼G#L
9vG$L
Y4G(H4 9+    G,*9C
69+    G/L
V9(G3
‰:9G9A
œ:+    G@L ( h9H    ùv9ë HA
‚99H$H46«
H)h
9Ä(H.A
ñ9Ä(H/A
:Ä(H0A
:Ä(H1A
:)H2A
5:)H3A
B:2)H4A
`:2)H5A
m:Ä(H6A
{:)H7AÉ( ›9I@    Ù( ¯9I"    ù
X$«
I5!
¾9Í
I6
Ã9+    I7
Ö9‰
I8") !:IH    Ù(7) N:IQ    Ù(&Ý:ã: ;'JG)&±;ã:¼;'K[)(pmŒ)R<LÍ
)Ì=Ê+)7Ñ=Ï+*J!Lë (plmÏ)~<L)pÌ=â+)¼Ñ=Ï+(ܨm*—<L)¸%)õÌ=â+)AÑ=Ï+(„<m?*°<L1¸%)zÌ=â+)³Ñ=Ï+*J!L1ë +ì'L1˜+Kè=L1+;7L1«
,Êî=L2¸%-Àoº*ú<L>.PÌ=â+.QÑ=Ï+/Älmê*(=LB)íÌ=â+)6Ñ=Ï++oÝ2LB«
00o-+J=J)¥Ì=â+)ÞÑ=Ï+1%%0Don+v=J)MÌ=â+)†Ñ=Ï+1¿(7¸%2X@m¯+¢=L)õÌ=â+)AÑ=Ï+·Ø+Ö=Ý+Ú=Ê+Apple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/TopBarView.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriUIButtonTypeNSIntegerlong intUIButtonTypeCustomUIButtonTypeSystemUIButtonTypeDetailDisclosureUIButtonTypeInfoLightUIButtonTypeInfoDarkUIButtonTypeContactAddUIButtonTypePlainUIButtonTypeCloseUIButtonTypeRoundedRectUIControlStateNSUIntegerlong unsigned intUIControlStateNormalUIControlStateHighlightedUIControlStateDisabledUIControlStateSelectedUIControlStateFocusedUIControlStateApplicationUIControlStateReservedNSTextAlignmentNSTextAlignmentLeftNSTextAlignmentCenterNSTextAlignmentRightNSTextAlignmentJustifiedNSTextAlignmentNaturalUISemanticContentAttributeUISemanticContentAttributeUnspecifiedUISemanticContentAttributePlaybackUISemanticContentAttributeSpatialUISemanticContentAttributeForceLeftToRightUISemanticContentAttributeForceRightToLeftUIUserInterfaceLayoutDirectionUIUserInterfaceLayoutDirectionLeftToRightUIUserInterfaceLayoutDirectionRightToLeftNSLineBreakModeNSLineBreakByWordWrappingNSLineBreakByCharWrappingNSLineBreakByClippingNSLineBreakByTruncatingHeadNSLineBreakByTruncatingTailNSLineBreakByTruncatingMiddleUIButtonRoleUIButtonRoleNormalUIButtonRolePrimaryUIButtonRoleCancelUIButtonRoleDestructiveUIBaselineAdjustmentUIBaselineAdjustmentAlignBaselinesUIBaselineAdjustmentAlignCentersUIBaselineAdjustmentNoneNSLineBreakStrategyNSLineBreakStrategyNoneNSLineBreakStrategyPushOutNSLineBreakStrategyHangulWordPriorityNSLineBreakStrategyStandardUIEditingInteractionConfigurationUIEditingInteractionConfigurationNoneUIEditingInteractionConfigurationDefaultCAEdgeAntialiasingMaskunsigned intkCALayerLeftEdgekCALayerRightEdgekCALayerBottomEdgekCALayerTopEdgeCACornerMaskkCALayerMinXMinYCornerkCALayerMaxXMinYCornerkCALayerMinXMaxYCornerkCALayerMaxXMaxYCornerUIControlContentVerticalAlignmentUIControlContentVerticalAlignmentCenterUIControlContentVerticalAlignmentTopUIControlContentVerticalAlignmentBottomUIControlContentVerticalAlignmentFillUIControlContentHorizontalAlignmentUIControlContentHorizontalAlignmentCenterUIControlContentHorizontalAlignmentLeftUIControlContentHorizontalAlignmentRightUIControlContentHorizontalAlignmentFillUIControlContentHorizontalAlignmentLeadingUIControlContentHorizontalAlignmentTrailingUIControlEventsUIControlEventTouchDownUIControlEventTouchDownRepeatUIControlEventTouchDragInsideUIControlEventTouchDragOutsideUIControlEventTouchDragEnterUIControlEventTouchDragExitUIControlEventTouchUpInsideUIControlEventTouchUpOutsideUIControlEventTouchCancelUIControlEventValueChangedUIControlEventPrimaryActionTriggeredUIControlEventMenuActionTriggeredUIControlEventEditingDidBeginUIControlEventEditingChangedUIControlEventEditingDidEndUIControlEventEditingDidEndOnExitUIControlEventAllTouchEventsUIControlEventAllEditingEventsUIControlEventApplicationReservedUIControlEventSystemReservedUIControlEventAllEventsUIButtonConfigurationCornerStyleUIButtonConfigurationCornerStyleFixedUIButtonConfigurationCornerStyleDynamicUIButtonConfigurationCornerStyleSmallUIButtonConfigurationCornerStyleMediumUIButtonConfigurationCornerStyleLargeUIButtonConfigurationCornerStyleCapsuleUIButtonConfigurationSizeUIButtonConfigurationSizeMediumUIButtonConfigurationSizeSmallUIButtonConfigurationSizeMiniUIButtonConfigurationSizeLargeUIButtonConfigurationMacIdiomStyleUIButtonConfigurationMacIdiomStyleAutomaticUIButtonConfigurationMacIdiomStyleBorderedUIButtonConfigurationMacIdiomStyleBorderlessUIButtonConfigurationMacIdiomStyleBorderlessTintedNSDirectionalRectEdgeNSDirectionalRectEdgeNoneNSDirectionalRectEdgeTopNSDirectionalRectEdgeLeadingNSDirectionalRectEdgeBottomNSDirectionalRectEdgeTrailingNSDirectionalRectEdgeAllUIButtonConfigurationTitleAlignmentUIButtonConfigurationTitleAlignmentAutomaticUIButtonConfigurationTitleAlignmentLeadingUIButtonConfigurationTitleAlignmentCenterUIButtonConfigurationTitleAlignmentTrailingUIMenuOptionsUIMenuOptionsDisplayInlineUIMenuOptionsDestructiveUIMenuOptionsSingleSelectionUIImageOrientationUIImageOrientationUpUIImageOrientationDownUIImageOrientationLeftUIImageOrientationRightUIImageOrientationUpMirroredUIImageOrientationDownMirroredUIImageOrientationLeftMirroredUIImageOrientationRightMirroredUIImageResizingModeUIImageResizingModeTileUIImageResizingModeStretchUIImageRenderingModeUIImageRenderingModeAutomaticUIImageRenderingModeAlwaysOriginalUIImageRenderingModeAlwaysTemplateUIFontDescriptorSymbolicTraitsuint32_tUIFontDescriptorTraitItalicUIFontDescriptorTraitBoldUIFontDescriptorTraitExpandedUIFontDescriptorTraitCondensedUIFontDescriptorTraitMonoSpaceUIFontDescriptorTraitVerticalUIFontDescriptorTraitUIOptimizedUIFontDescriptorTraitTightLeadingUIFontDescriptorTraitLooseLeadingUIFontDescriptorClassMaskUIFontDescriptorClassUnknownUIFontDescriptorClassOldStyleSerifsUIFontDescriptorClassTransitionalSerifsUIFontDescriptorClassModernSerifsUIFontDescriptorClassClarendonSerifsUIFontDescriptorClassSlabSerifsUIFontDescriptorClassFreeformSerifsUIFontDescriptorClassSansSerifUIFontDescriptorClassOrnamentalsUIFontDescriptorClassScriptsUIFontDescriptorClassSymbolicUIContextMenuInteractionAppearanceUIContextMenuInteractionAppearanceUnknownUIContextMenuInteractionAppearanceRichUIContextMenuInteractionAppearanceCompactUIViewContentModeUIViewContentModeScaleToFillUIViewContentModeScaleAspectFitUIViewContentModeScaleAspectFillUIViewContentModeRedrawUIViewContentModeCenterUIViewContentModeTopUIViewContentModeBottomUIViewContentModeLeftUIViewContentModeRightUIViewContentModeTopLeftUIViewContentModeTopRightUIViewContentModeBottomLeftUIViewContentModeBottomRightUIGraphicsImageRendererFormatRangeUIGraphicsImageRendererFormatRangeUnspecifiedUIGraphicsImageRendererFormatRangeAutomaticUIGraphicsImageRendererFormatRangeExtendedUIGraphicsImageRendererFormatRangeStandardUIUserInterfaceIdiomUIUserInterfaceIdiomUnspecifiedUIUserInterfaceIdiomPhoneUIUserInterfaceIdiomPadUIUserInterfaceIdiomTVUIUserInterfaceIdiomCarPlayUIUserInterfaceIdiomMacUIUserInterfaceStyleUIUserInterfaceStyleUnspecifiedUIUserInterfaceStyleLightUIUserInterfaceStyleDarkUITraitEnvironmentLayoutDirectionUITraitEnvironmentLayoutDirectionUnspecifiedUITraitEnvironmentLayoutDirectionLeftToRightUITraitEnvironmentLayoutDirectionRightToLeftUIUserInterfaceSizeClassUIUserInterfaceSizeClassUnspecifiedUIUserInterfaceSizeClassCompactUIUserInterfaceSizeClassRegularUIForceTouchCapabilityUIForceTouchCapabilityUnknownUIForceTouchCapabilityUnavailableUIForceTouchCapabilityAvailableUIDisplayGamutUIDisplayGamutUnspecifiedUIDisplayGamutSRGBUIDisplayGamutP3UIAccessibilityContrastUIAccessibilityContrastUnspecifiedUIAccessibilityContrastNormalUIAccessibilityContrastHighUIUserInterfaceLevelUIUserInterfaceLevelUnspecifiedUIUserInterfaceLevelBaseUIUserInterfaceLevelElevatedUILegibilityWeightUILegibilityWeightUnspecifiedUILegibilityWeightRegularUILegibilityWeightBoldUIUserInterfaceActiveAppearanceUIUserInterfaceActiveAppearanceUnspecifiedUIUserInterfaceActiveAppearanceInactiveUIUserInterfaceActiveAppearanceActiveCGLineCapint32_tintkCGLineCapButtkCGLineCapRoundkCGLineCapSquareCGLineJoinkCGLineJoinMiterkCGLineJoinRoundkCGLineJoinBevelfloatTopBarViewUIViewUIResponderNSObjectisaClassobjc_classnextRespondercanBecomeFirstResponderBOOL_BoolcanResignFirstResponderisFirstResponderundoManagerNSUndoManagergroupingLevelundoRegistrationEnabledisUndoRegistrationEnabledgroupsByEventlevelsOfUndorunLoopModesNSArraycountcanUndocanRedoundoingisUndoingredoingisRedoingundoActionIsDiscardableredoActionIsDiscardableundoActionNameNSStringlengthredoActionNameundoMenuItemTitleredoMenuItemTitle_undoStackidobjc_object_redoStack_runLoopModes_NSUndoManagerPrivate1uint64_tlong long unsigned int_target_proxy_NSUndoManagerPrivate2_NSUndoManagerPrivate3editingInteractionConfigurationlayerClassuserInteractionEnabledisUserInteractionEnabledtaglayerCALayerboundsCGRectoriginCGPointxCGFloatdoubleysizeCGSizewidthheightpositionzPositionanchorPointanchorPointZtransformCATransform3Dm11m12m13m14m21m22m23m24m31m32m33m34m41m42m43m44framehiddenisHiddendoubleSidedisDoubleSidedgeometryFlippedisGeometryFlippedsuperlayersublayerssublayerTransformmaskmasksToBoundscontentscontentsRectcontentsGravityCALayerContentsGravitycontentsScalecontentsCentercontentsFormatCALayerContentsFormatminificationFilterCALayerContentsFiltermagnificationFilterminificationFilterBiasopaqueisOpaqueneedsDisplayOnBoundsChangedrawsAsynchronouslyedgeAntialiasingMaskallowsEdgeAntialiasingbackgroundColorCGColorRefCGColorcornerRadiusmaskedCornerscornerCurveCALayerCornerCurveborderWidthborderColoropacityallowsGroupOpacitycompositingFilterfiltersbackgroundFiltersshouldRasterizerasterizationScaleshadowColorshadowOpacityshadowOffsetshadowRadiusshadowPathCGPathRefCGPathactionsNSDictionarynamedelegatestylecanBecomeFocusedfocusedisFocusedfocusGroupIdentifierfocusGroupPriorityUIFocusGroupPriorityfocusEffectUIFocusEffectsemanticContentAttributeeffectiveUserInterfaceLayoutDirectionbackButtonUIButtonUIControlenabledisEnabledselectedisSelectedhighlightedisHighlightedcontentVerticalAlignmentcontentHorizontalAlignmenteffectiveContentHorizontalAlignmentstatetrackingisTrackingtouchInsideisTouchInsideallTargetsNSSetallControlEventscontextMenuInteractionUIContextMenuInteractionmenuAppearancecontextMenuInteractionEnabledisContextMenuInteractionEnabledshowsMenuAsPrimaryActiontoolTiptoolTipInteractionUIToolTipInteractiondefaultToolTipfontUIFontfamilyNamesfamilyNamefontNamepointSizeascenderdescendercapHeightxHeightlineHeightleadingfontDescriptorUIFontDescriptorpostscriptNamematrixCGAffineTransformabcdtxtysymbolicTraitsfontAttributeslineBreakModetitleShadowOffsetcontentEdgeInsetsUIEdgeInsetstopleftbottomrighttitleEdgeInsetsimageEdgeInsetsreversesTitleShadowWhenHighlightedadjustsImageWhenHighlightedadjustsImageWhenDisabledshowsTouchWhenHighlightedconfigurationUIButtonConfigurationbackgroundUIBackgroundConfigurationcustomViewbackgroundInsetsNSDirectionalEdgeInsetstrailingedgesAddingLayoutMarginsToBackgroundInsetsUIColorblackColordarkGrayColorlightGrayColorwhiteColorgrayColorredColorgreenColorblueColorcyanColoryellowColormagentaColororangeColorpurpleColorbrownColorclearColorCIColornumberOfComponentssize_tcomponentsalphacolorSpaceCGColorSpaceRefCGColorSpaceredgreenbluestringRepresentation_priv_pad__ARRAY_SIZE_TYPE__backgroundColorTransformerUIConfigurationColorTransformer__isa__flags__reserved__FuncPtr__descriptor__block_descriptorreservedSizevisualEffectUIVisualEffectimageUIImageCGImageCGImageRefCIImageblackImagewhiteImagegrayImageredImagegreenImageblueImagecyanImagemagentaImageyellowImageclearImageextentpropertiesdefinitionCIFilterShapeurlNSURLdataRepresentationNSDatabytesabsoluteStringrelativeStringbaseURLabsoluteURLschemeresourceSpecifierhostportNSNumberNSValueobjCTypecharcharValueunsignedCharValueunsigned charshortValueshortunsignedShortValueunsigned shortintValueunsignedIntValuelongValueunsignedLongValuelongLongValuelong long intunsignedLongLongValuefloatValuedoubleValueboolValueintegerValueunsignedIntegerValuestringValueuserpasswordpathfragmentparameterStringqueryrelativePathhasDirectoryPathfileSystemRepresentationfileURLisFileURLstandardizedURLfilePathURL_urlString_baseURL_clients_reservedpixelBufferCVPixelBufferRefCVImageBufferRefCVBufferRef__CVBufferimageOrientationscalesymbolImageisSymbolImageimagesdurationNSTimeIntervalcapInsetsresizingModealignmentRectInsetsrenderingModeimageRendererFormatUIGraphicsImageRendererFormatUIGraphicsRendererFormatprefersExtendedRangepreferredRangetraitCollectionUITraitCollectionuserInterfaceIdiomuserInterfaceStylelayoutDirectiondisplayScalehorizontalSizeClassverticalSizeClassforceTouchCapabilitypreferredContentSizeCategoryUIContentSizeCategorydisplayGamutaccessibilityContrastuserInterfaceLevellegibilityWeightactiveAppearanceimageAssetUIImageAssetflipsForRightToLeftLayoutDirectionbaselineOffsetFromBottomhasBaselineUIImageConfigurationsymbolConfigurationUIImageSymbolConfigurationunspecifiedConfigurationimageContentModestrokeColorstrokeColorTransformerstrokeWidthstrokeOutsetcornerStylebuttonSizemacIdiomStylebaseForegroundColorbaseBackgroundColorimageColorTransformerpreferredSymbolConfigurationForImageshowsActivityIndicatoractivityIndicatorColorTransformertitleattributedTitleNSAttributedStringstringtitleTextAttributesTransformerUIConfigurationTextAttributesTransformersubtitleattributedSubtitlesubtitleTextAttributesTransformercontentInsetsimagePlacementimagePaddingtitlePaddingtitleAlignmentautomaticallyUpdateForSelectionconfigurationUpdateHandlerUIButtonConfigurationUpdateHandlerautomaticallyUpdatesConfigurationtintColorbuttonTypehoveredisHoveredheldisHeldrolepointerInteractionEnabledisPointerInteractionEnabledpointerStyleProviderUIButtonPointerStyleProviderUIPointerStyleaccessoriesUIPointerEffectpreviewUITargetedPreviewtargetUIPreviewTargetcontainercenterviewparametersUIPreviewParametersvisiblePathUIBezierPathemptyisEmptycurrentPointlineWidthlineCapStylelineJoinStylemiterLimitflatnessusesEvenOddFillRuleUIPointerShapemenuUIMenuUIMenuElementidentifierUIMenuIdentifieroptionschildrenselectedElementschangesSelectionAsPrimaryActioncurrentTitlecurrentTitleColorcurrentTitleShadowColorcurrentImagecurrentBackgroundImagecurrentPreferredSymbolConfigurationcurrentAttributedTitletitleLabelUILabeltexttextColortextAlignmentattributedTexthighlightedTextColornumberOfLinesadjustsFontSizeToFitWidthbaselineAdjustmentminimumScaleFactorallowsDefaultTighteningForTruncationlineBreakStrategypreferredMaxLayoutWidthenablesMarqueeWhenAncestorFocusedshowsExpansionTextWhenTruncatedminimumFontSizeadjustsLetterSpacingToFitWidthimageViewUIImageViewhighlightedImagepreferredSymbolConfigurationanimationImageshighlightedAnimationImagesanimationDurationanimationRepeatCountanimatingisAnimatingadjustsImageWhenAncestorFocusedfocusedFrameGuideUILayoutGuidelayoutFrameowningViewleadingAnchorNSLayoutXAxisAnchorNSLayoutAnchoritemhasAmbiguousLayoutconstraintsAffectingLayouttrailingAnchorleftAnchorrightAnchortopAnchorNSLayoutYAxisAnchorbottomAnchorwidthAnchorNSLayoutDimensionheightAnchorcenterXAnchorcenterYAnchoroverlayContentViewmasksFocusEffectToContentssubtitleLabel_backButton_titleLabelUIKit"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.frameworkFoundation/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework-[TopBarView initWithFrame:]initWithFrame:-[TopBarView backButton]-[TopBarView titleLabel]-[TopBarView NewLabel:font:textColor:text:]NewLabel:font:textColor:text:-[TopBarView backButtonClick]backButtonClick-[TopBarView setTitle:]setTitle:-[TopBarView setBackButton:]setBackButton:-[TopBarView setTitleLabel:]setTitleLabel:-[TopBarView .cxx_destruct].cxx_destructself_cmdSELobjc_selectorcolorlabelHSAH          ÿÿÿÿ õk]_P0¹éý`þƒ<¯cG’;hí¹{ÒÁAºÔƒøÕ¿gw,®ÿXµO,ø*tÐç?J VÅBë?üš­¨þ(Ôäô$4DTdt„”¤´ÄÔäv=U+°<"*¾=–+J=+—<ê)%%²)“=U+¢=–+~<²)(=Ñ*Ü<"*=¡*g=+(7ê)ú<¡*R<o)o<o)@=Ñ*HSAH èŒï*,    o)²)ê)"*¡*Ñ*+U+–+HSAH ÿÿÿÿHSAHH‘ 
$%(*,ÿÿÿÿ/012579;=ADEHKLMNOPRÿÿÿÿÿÿÿÿSUX\ÿÿÿÿ^abefjknÿÿÿÿpsvy{}‚…†‰Š‹ŒŽøpÀ ì`MÖÃÛ$ùp–~q…“âÙeêŠÎu Š"8/r…AtsB…è<Ž•Ôðê¿RéäÅë=pó6• p–Í“<²å™ ÔÎ/Ò2ÏàX+øöŸ]èðIŸ v´È_éYŒ’]2xYšQ=hZÈvÓ òµÌ,€Z•Ád>›å‚¦uckÑ­{ÕûƤ    gêQw¤×_eƒÈ9zðCà73"L¹Õí²_b4bBÒŧ‰bFØEúr>¾sÓ?Ž7<ÇH?3¥ï˜=åžÐ;Øùv=JAɔâ–UÒÙ9ë0©;¯)a4Ë „_¦.DbûX :¡¡Ñz¬½|5û.@ÜW_Y3ÌWÝvÖ·aÃíèŒï*ø½Zê §Ëù›‚|zkùcc •|?ŽÕðZÆË„B†VòÎwÉäÓrÑå$:LћáqÑá>Kï&Ìt¾„ØtH ³Wf4†ìØÝ»`-    LΗÔT¯Ž žwÃ8‰}$)ˆ ùMÿnY3D‡šb‡Î»Nø “òÐÄ´BˎJ¦„
 4]èSõÖs¬Mh´ë\sƞòAÒ0€ˆ ð/ÜxtzÓYo± éqy£ÑNоri± @×êÄ\©›9ë€[sŒÜ`¦aTHR•Íþ
B$\©æŒd~zÁøÖiíý·/#;ïÑ ¢—}ÁË [=ùqf±Eioæ]9ÂÔâmL<c“å?¤Ñ¦=ŸT,­hé†>&‡½Ÿý;×Ðãö    /Ic}ª½Ðãý*=Pcv‰£¶ÉÜö    /BUh‚œ¯ÂÜö            6    I    \    o    ‚    •    ¯    Â    Õ    è    
 
/
I
\
v

£
½
×
ê
ý
 * D W j } — ª ½ × ê ý  # 6 I \ o ‚ • ¯ Â Õ è   / I \ o ‚ • ¨ » Î è û !4GZm‡š­ÀÓæ&9L_r…Ÿ¹Ìßù-GatŽ¡´Îáû/BUo‚•¯É4"l$W,&5#wÛ
„xü"!a!Ø'N:7)„ {æ!÷/R K$Ì›1³!ç†!6ˆç&°
,5®#f!$œ Câ&]¹,["MÑ ~y-~$,,Œ(ãK!tÍ
h"l '$#‚E5ó#ŸŸã'$þ Ø.œ¼÷
$U¼'I%/B    0%$ßrÜØ$ù”8*'2$­&-w$€)’‡¯áª/& ¥Ž
˜ûÞãþ
Œ/â4)>IÔGì4*‚ý    £U3ñ"³ì
a. ñ!þ(€^#¢9%ßQòB =+.Ö"ó2"ù4l#PÑ$(÷¯9Ù(r*«d¥*!·Ç.‘ô,i$ï+    ,3"Ó,b$Ü4# -p$€+c1|!ôÅ‚·$éü!V‡¯$>g!_ü$bv­%›9É(›+‡H&$í*Ó¤05!h9 (¶.…­öt"Ö=Ï+ƒ'9v5,$0/¼¸    O*–37½%V!k+N¦m 6%!:")u  ¹(—‰$ô6    $6,%>,ÈEÆ–5h$&÷Þ:±² Va?6¢%¾*Ì$ü ‚ª'…MxM„ ë ö …    r1‘!ÇwÇÝ(@+mÛÄ@!¤ O$z JÛ!Ò’ "&6l%Â,;ÖH    !«ù?"aë—Ð!Oüwj@l!pplܨ„<ÀÄl0DX@
H û /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/sys/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreVideo.framework/HeadersHDLSceneSiriNSObjCRuntime.hUIButton.hUIControl.hNSText.hUIView.hUIInterface.hNSParagraphStyle.hUIStringDrawing.hUIResponder.hCALayer.hUIButtonConfiguration.hUIGeometry.hUIMenu.hUIImage.h_uint32_t.hUIFontDescriptor.hUIContextMenuInteraction.hUIGraphicsImageRenderer.hUIDevice.hUITouch.h_int32_t.hCGPath.hTopBarView.mNSObject.hobjc.hNSUndoManager.hNSArray.hNSString.h_uint64_t.hCGBase.hCGGeometry.hCATransform3D.hCGColor.hNSDictionary.hUIFocus.hUIFocusEffect.hNSSet.hUIToolTipInteraction.hUIFont.hCGAffineTransform.hUIBackgroundConfiguration.hUIColor.hstddef.h    CIColor.h
CGColorSpace.hUIConfigurationColorTransformer.hUIVisualEffect.hCGImage.hCIImage.h
CIFilterShape.h
NSData.hNSURL.hNSValue.hCVBuffer.h CVImageBuffer.h CVPixelBuffer.h NSDate.hUIGraphicsRenderer.hUITraitCollection.hUIContentSizeCategory.hUIImageAsset.hUIImageConfiguration.hUIImageSymbolConfiguration.hNSAttributedString.hUIPointerStyle.hUITargetedPreview.hUIBezierPath.hUIPreviewParameters.hUIMenuElement.hUILabel.hUIImageView.hUILayoutGuide.hNSLayoutAnchor.hTopBarView.h HDLSceneSiri.h TopBarView.m L    
v    å'Kj<J9tj<Jj<‚t    ¬óiòJ    ‚åhòJ    ‚w®    
=ºL`t J+=_<!J_<!‚    ºJ    ¬
ƒJ^¬"J    ‚!æ\($J    ‚J    ò „?
 
å    º5KU<+JU<+‚LºU<+JU<]+‚lJUä+J‘‚U(+J‚U4+J    <åJ ôç
LNº2‚‚åM<3J ‚< ƒL<    5‚K >?0
L
 
=½ºÂ½ºÃJ‚½òÂJK<
rJò
qJLò
ò0”Œ-€uL|u=xŒ-lvLhv=TŒ-LvLHv=@Œ-8uL4u=,ˆ-ˆ-†-)L)=ü‹-ô†-ä‰-Ü LØ =¼…-œˆ-”ˆ-Œ†-€)L|)=x†-l(Lh(=`ˆ-X†-L'LH'=Dˆ-<†-0&L,&=$‹-†-%L%=L =†-ðLì=è„-܉-Ô$LÐ$=ȉ-¼‰-€Š-`†-X"LT"=Lˆ-Dˆ-<ˆ-4ˆ-,ˆ-‹-†-ð!Lì!=è Lä =Ü‹-Ô†-ÄLÀ=¼L¸=´L°=¨‹- †-˜L”=LŒ=ˆL„=t†-pLl=d‹-\†-XLT=PLL=4†-0    L,    =$‹-†-L=L =vLüv=ØŠ-Ĉ-¼†-´L°=¤‹-œ†-ŒLˆ=„L€=|Lx=tˆ-l†-\LX=P‹-H†-DL@=<L8=4L0=(ˆ- †-L= 
L
=ì†-è    Lä    =Ü‹-Ô†-ÐLÌ=ÈLÄ=Àˆ-°‹-¨†- Lœ=˜L”=ˆuL„u=Pˆ-H†-4‹-,†-$ L  =ˆ-†- L =ø‹-ð†-è Lä =àˆ-؈-І-¼
=”†-    LŒ    =„‹-|†-xLt=pLl=d†-`L\=T‹-L†-HLD=@L<=0‡-(L$=L=HT8ƒ0(€ 0ƒwt¨P O˜NMˆL€KxJpHhF`EXDPCH?@=8<0;(: 987630}({ z|yx~PI@‚0G ‚A‚ØkÈf¸a°R¨Ujˆi€hxg`eXdPv@c8b0u .[`-]ø_ð,è]à^Ø+Ð]È\À*¸[°Z¨# Y˜JˆX€=xpXh;`XWP3Rt—+V++Ò*¢*#*ë)³)p)'àÀ €`@ W $( ¤€„ä踼Œtxltlp\`DH<D<@„ˆ°´ˆŒ€ˆ€„ø€øüØÜÀĸ¼°¸°´”ˆˆŒäèÌÐÄÌÄÈœ ”œ”˜ü€ÔØìðäèÀĸÀ¸¼°¸°´”˜Œ„Œ„ˆìðÔØÌÔÌЬ°”˜Œ”ŒÈ
Ì
¬
°
”
˜
Œ
”
Œ

ì    ð    Р   Ô    è
ì
ü
€ „ ˆ Ø Ü ´ ¸ È Ì ü € è ì ñ ±¤3    Á¸    ÷
    d        œÀ         ˆ(    » 0    
8    ~@    öH     ˜ÿ ˜  ûp3È    u P    “ Р   ç    X    
 
Y`    ‘Ø    h    W p    ÷ ¨Ür à    ;x    Ï    
8
8€    ¾
X
T ˆ    K„“
è    ô    i˜    Þ       ¨    u
°    -ÀÎÄw0”DßXV
°¡       ¼Žê    1¸    Ù *
"Ò)T;š JÞ
TK    _¹klð    ov¥    ø    =    ø    æ
 
¾
†+    ’Ö¥VÄ´
    
    Ò‡    
üå> ¶    " ¥4=; K“  x
{ x
´  ˆ
¾ ˆ
      ƒ
×
 h e h Û ’      š PTŒ Í Åd Õ  n" }\
ŒF Ð
‡    šÂ à ð¦7 ì  ° N²r½«Ûìæ ø 
ø ³ ø D     ¢ w “ ² ï¦k°Zð    Õô    „Ø•~D Ìù¾ß"ôâ¹!B
…±>a__OBJC_$_PROP_LIST_TopBarView__OBJC_$_INSTANCE_VARIABLES_TopBarView__OBJC_$_INSTANCE_METHODS_TopBarView_OBJC_CLASS_$_TopBarView_OBJC_METACLASS_$_TopBarView__OBJC_CLASS_RO_$_TopBarView__OBJC_METACLASS_RO_$_TopBarView_OBJC_CLASS_$_UIView_OBJC_METACLASS_$_UIView_OBJC_CLASS_$_UIFont_OBJC_METACLASS_$_NSObjectl_.str_OBJC_CLASS_$_UIColor_OBJC_IVAR_$_TopBarView._backButton_OBJC_CLASS_$_UIButton_OBJC_CLASS_$_UIApplication_objc_retain_OBJC_CLASS_$_UIScreen_OBJC_IVAR_$_TopBarView._titleLabel_OBJC_CLASS_$_UILabel_objc_storeStrong_objc_autoreleaseReturnValue_objc_retainAutoreleaseReturnValue_objc_retainAutoreleasedReturnValue_objc_releasel_llvm.cmdlinel_llvm.embedded.module__objc_empty_cache_OBJC_CLASS_$_UIImage___CFConstantStringClassReference_objc_msgSend_objc_allocl__unnamed_cfstring__OBJC_SELECTOR_REFERENCES_l_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME_l_OBJC_CLASSLIST_SUP_REFS_$__OBJC_CLASSLIST_REFERENCES_$_-[TopBarView .cxx_destruct]-[TopBarView backButton]-[TopBarView titleLabel]-[TopBarView backButtonClick]-[TopBarView NewLabel:font:textColor:text:]-[TopBarView setBackButton:]-[TopBarView setTitleLabel:]-[TopBarView initWithFrame:]-[TopBarView setTitle:]ltmp9l_OBJC_PROP_NAME_ATTR_.69l_OBJC_METH_VAR_TYPE_.59l_OBJC_METH_VAR_NAME_.49_OBJC_SELECTOR_REFERENCES_.39l_OBJC_METH_VAR_NAME_.29l_OBJC_METH_VAR_NAME_.19_OBJC_SELECTOR_REFERENCES_.9ltmp8l_OBJC_PROP_NAME_ATTR_.68l_OBJC_METH_VAR_NAME_.58_OBJC_SELECTOR_REFERENCES_.48l_OBJC_METH_VAR_NAME_.38_OBJC_SELECTOR_REFERENCES_.28_OBJC_CLASSLIST_REFERENCES_$_.18l_OBJC_METH_VAR_NAME_.8ltmp7l_OBJC_PROP_NAME_ATTR_.67l_OBJC_METH_VAR_TYPE_.57l_OBJC_METH_VAR_NAME_.47l__unnamed_cfstring_.37l_OBJC_METH_VAR_NAME_.27ltmp17_OBJC_SELECTOR_REFERENCES_.17_OBJC_SELECTOR_REFERENCES_.7ltmp6l_OBJC_METH_VAR_TYPE_.66l_OBJC_METH_VAR_NAME_.56_OBJC_SELECTOR_REFERENCES_.46l_.str.36_OBJC_CLASSLIST_REFERENCES_$_.26ltmp16l_OBJC_METH_VAR_NAME_.16l_OBJC_METH_VAR_NAME_.6ltmp5l_OBJC_METH_VAR_NAME_.65l_OBJC_METH_VAR_TYPE_.55l_OBJC_METH_VAR_NAME_.45_OBJC_SELECTOR_REFERENCES_.35_OBJC_SELECTOR_REFERENCES_.25ltmp15_OBJC_SELECTOR_REFERENCES_.15_OBJC_CLASSLIST_REFERENCES_$_.5ltmp4l_OBJC_METH_VAR_TYPE_.64l_OBJC_METH_VAR_TYPE_.54_OBJC_SELECTOR_REFERENCES_.44l_OBJC_METH_VAR_NAME_.34l_OBJC_METH_VAR_NAME_.24ltmp14l_OBJC_METH_VAR_NAME_.14_OBJC_SELECTOR_REFERENCES_.4ltmp3l_OBJC_METH_VAR_NAME_.63l_OBJC_CLASS_NAME_.53l_OBJC_METH_VAR_NAME_.43l__unnamed_cfstring_.33_OBJC_SELECTOR_REFERENCES_.23ltmp13_OBJC_SELECTOR_REFERENCES_.13l_OBJC_METH_VAR_NAME_.3_objc_msgSendSuper2ltmp2l_OBJC_METH_VAR_NAME_.62_OBJC_SELECTOR_REFERENCES_.52_OBJC_CLASSLIST_REFERENCES_$_.42l_.str.32l_OBJC_METH_VAR_NAME_.22ltmp12l_OBJC_METH_VAR_NAME_.12_OBJC_SELECTOR_REFERENCES_.2ltmp1lCPI1_1l_OBJC_METH_VAR_NAME_.61l_OBJC_METH_VAR_NAME_.51_OBJC_SELECTOR_REFERENCES_.41_OBJC_CLASSLIST_REFERENCES_$_.31_OBJC_CLASSLIST_REFERENCES_$_.21ltmp11_OBJC_SELECTOR_REFERENCES_.11l_OBJC_METH_VAR_NAME_.1ltmp0lCPI2_0lCPI1_0l_OBJC_METH_VAR_NAME_.60_OBJC_SELECTOR_REFERENCES_.50l_OBJC_METH_VAR_NAME_.40_OBJC_SELECTOR_REFERENCES_.30_OBJC_SELECTOR_REFERENCES_.20ltmp10l_OBJC_METH_VAR_NAME_.10l_OBJC_LABEL_CLASS_$#1/20           0           0     0     100644  8820      `
HDLSceneSiri.oÏúíþ X Hx__text__TEXTx€__objc_classname__TEXT x__objc_const__DATAˆ˜__objc_data__DATA P¨__objc_classlist__DATAðhè__bitcode__LLVMøp__cmdline__LLVMù    q__objc_imageinfo__DATAz__debug_abbrev__DWARF
Š‚__debug_info__DWARF”v __debug_str__DWARF
`‚__apple_names__DWARFj$â__apple_objc__DWARFŽ$__apple_namespac__DWARF²$*__apple_types__DWARFÖ…N__debug_line__DWARF[ÃÓ% ð !@ P-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationHDLSceneSiri((€-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLSceneSiri.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSceneSiri.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1637828650364117851-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSceneSiri.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@%‚|ïáå ì : ; æ I8  : ; æ  I: ; 8 2 II<    |€|
: ; r/•ü W+7d5mN8Wq\w    ‚Ê
aApple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLSceneSiri.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriHDLSceneSiriNSObjectisaClassobjc_classFoundation"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.frameworkHSAH ÿÿÿÿHSAH ÿÿÿÿHSAH ÿÿÿÿHSAH ÿÿÿÿ»Nø =ŸT,¢¢JEL_rqNd7W'¿¹û /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objcHDLSceneSiriNSObject.hHDLSceneSiri.h`H80( %茠mX ð+ðø¾øù¯ùû3ÈN Õ_OBJC_CLASS_$_NSObject_OBJC_METACLASS_$_NSObject_OBJC_CLASS_$_HDLSceneSiri_OBJC_METACLASS_$_HDLSceneSiri__OBJC_CLASS_RO_$_HDLSceneSiri__OBJC_METACLASS_RO_$_HDLSceneSiril_llvm.cmdlinel_llvm.embedded.module__objc_empty_cachel_OBJC_CLASS_NAME_ltmp7ltmp6ltmp5ltmp4ltmp3ltmp2ltmp1ltmp0l_OBJC_LABEL_CLASS_$