-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfacts.pl
1521 lines (1520 loc) · 224 KB
/
facts.pl
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
allow(file-ioctl, [literal("/dev/dtracehelper")]).
allow(file-ioctl, [literal("/dev/ptmx")]).
allow(file-ioctl, [literal("/dev/aes_0")]).
allow(file-issue-extension, [extension-class("com.apple.quicklook.readonly")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.app-sandbox.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.app-sandbox.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.app-sandbox.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.app-sandbox.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.security.exception.files.absolute-path.read-write"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.security.exception.files.home-relative-path.read-write"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.absolute-path.read-only"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.absolute-path.read-write"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.home-relative-path.read-only"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.home-relative-path.read-write"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-issue-extension, [subpath("/private/var/mobile/Media/"),extension("com.apple.avasset.read-only"),extension-class("com.apple.mediaserverd.read"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.security.exception.files.absolute-path.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.security.exception.files.home-relative-path.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.absolute-path.read-only")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.absolute-path.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.home-relative-path.read-only")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.home-relative-path.read-write")]).
allow(file-issue-extension, [subpath("/private/var/mobile/Library/Mobile Documents/"),extension("com.apple.librarian.ubiquity-container"),extension-class("com.apple.mediaserverd.read")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Mobile Documents/"),extension("com.apple.librarian.ubiquity-container")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Mobile Documents/"),require-entitlement("com.apple.private.librarian.container-proxy",[])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Mobile Documents/"),extension("com.apple.librarian.ubiquity-container")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Mobile Documents/"),require-entitlement("com.apple.private.librarian.container-proxy",[])]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.app-sandbox.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.app-sandbox.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.app-sandbox.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.app-sandbox.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.nsurlstorage.extension-cache"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library/Caches/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.nsurlstorage.extension-cache"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library/Caches$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.sharing.airdrop.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.sharing.airdrop.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.sharing.airdrop.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.sharing.airdrop.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.sharing.airdrop.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.sharing.airdrop.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.nsurlsessiond.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.nsurlsessiond.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.nsurlsessiond.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.nsurlsessiond.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.nsurlsessiond.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.nsurlsessiond.readonly"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.sharing.airdrop.readonly"),extension("com.apple.sandbox.executable")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.sandbox.executable")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/StoreKit/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/StoreKit$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/iTunesArtwork$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.security.exception.files.absolute-path.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.security.exception.files.home-relative-path.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.security.exception.files.absolute-path.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.security.exception.files.home-relative-path.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.security.exception.files.absolute-path.read-only")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.security.exception.files.home-relative-path.read-only")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.executable")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),subpath("/System/Library/")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/System/Library/")]).
allow(file-issue-extension, [extension("com.apple.sandbox.executable"),extension-class("com.apple.nsurlsessiond.readonly")]).
allow(file-issue-extension, [extension-class("com.apple.nsurlstorage.extension-cache"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-issue-extension, [extension-class("com.apple.nsurlstorage.extension-cache"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-issue-extension, [extension-class("com.apple.nsurlstorage.extension-cache"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.container2",[])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.container2",[])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.container2",[])]).
allow(file-issue-extension, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-issue-extension, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-issue-extension, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.container2",[])]).
allow(file-issue-extension, [subpath("/private/var/mobile/Media/Podcasts/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-issue-extension, [subpath("/private/var/mobile/Media/Podcasts/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-issue-extension, [subpath("/private/var/mobile/Media/Podcasts/"),require-entitlement("com.apple.container2",[])]).
allow(file-issue-extension, [subpath("/private/var/mobile/Media/Books/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-issue-extension, [subpath("/private/var/mobile/Media/Books/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-issue-extension, [subpath("/private/var/mobile/Media/Books/"),require-entitlement("com.apple.container2",[])]).
allow(file-issue-extension, [extension-class("com.apple.nsurlstorage.extension-cache"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.Radio.RadioRequestURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-issue-extension, [extension-class("com.apple.nsurlstorage.extension-cache"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.Radio.RadioImageCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.Radio.RadioRequestURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.Radio.RadioImageCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.Radio.RadioRequestURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.Radio.RadioImageCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Media/DCIM/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Media/DCIM/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webapp")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webbookmarksd")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.safarifetcherd")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Safari.SocialHelper")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webbookmarksd")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.safarifetcherd")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Safari.SocialHelper")])]).
allow(file-issue-extension, [extension-class("com.apple.sharing.airdrop.readonly"),subpath("/private/var/mobile/Library/Mail/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.security.exception.files.absolute-path.read-write"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.security.exception.files.home-relative-path.read-write"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.absolute-path.read-only"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.absolute-path.read-write"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.home-relative-path.read-only"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.home-relative-path.read-write"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-issue-extension, [subpath("/private/var/mobile/Library/Mail/"),extension-class("com.apple.mediaserverd.read"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Mail/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Mail/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-issue-extension, [extension-class("com.apple.sharing.airdrop.readonly"),subpath("/private/var/mobile/Library/ReplayKit/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ReplayKit.RPVideoEditorExtension")])]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.nsurlsessiond.readonly"),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.sharing.airdrop.readonly"),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+/"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+$"/i)]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/OnDemandResources/AssetPacks/"),extension("com.apple.odr-assets")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),subpath("/private/var/mobile/Library/OnDemandResources/AssetPacks/"),extension("com.apple.odr-assets")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.security.exception.files.absolute-path.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read-write"),extension("com.apple.security.exception.files.home-relative-path.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.absolute-path.read-only")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.absolute-path.read-write")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.home-relative-path.read-only")]).
allow(file-issue-extension, [extension-class("com.apple.mediaserverd.read"),extension("com.apple.security.exception.files.home-relative-path.read-write")]).
allow(file-issue-extension, [subpath("/private/var/mobile/Library/Assets/"),extension("com.apple.assets.read"),extension-class("com.apple.mediaserverd.read")]).
allow(file-issue-extension, [subpath("/private/var/mobile/Library/Mobile Documents/"),extension("com.apple.librarian.ubiquity-container"),extension-class("com.apple.mediaserverd.read")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Mobile Documents/"),extension("com.apple.librarian.ubiquity-container")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read-write"),subpath("/private/var/mobile/Library/Mobile Documents/"),require-entitlement("com.apple.private.librarian.container-proxy",[])]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Mobile Documents/"),extension("com.apple.librarian.ubiquity-container")]).
allow(file-issue-extension, [extension-class("com.apple.app-sandbox.read"),subpath("/private/var/mobile/Library/Mobile Documents/"),require-entitlement("com.apple.private.librarian.container-proxy",[])]).
allow(file-map-executable, []).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Carrier Bundles/Overlay/")]).
allow(file-readSTAR, [regex("^/System/Library/Carrier Bundles//carrier[.]plist$"/i)]).
allow(file-readSTAR, [regex("^/System/Library/Carrier Bundles/.+/carrier[.]plist$"/i)]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/Carrier Bundles//carrier[.]plist$"/i)]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/Carrier Bundles/.+/carrier[.]plist$"/i)]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Preferences/com.apple.carrier.plist")]).
allow(file-readSTAR, [regex("^/System/Library/Carrier Bundles/[.]png$"/i)]).
allow(file-readSTAR, [regex("^/System/Library/Carrier Bundles/.+[.]png$"/i)]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/Carrier Bundles/[.]png$"/i)]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/Carrier Bundles/.+[.]png$"/i)]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i)]).
allow(file-readSTAR, [extension("com.apple.security.exception.files.absolute-path.read-write")]).
allow(file-readSTAR, [extension("com.apple.security.exception.files.home-relative-path.read-write")]).
allow(file-readSTAR, [extension("com.apple.security.exception.files.absolute-path.read-only")]).
allow(file-readSTAR, [extension("com.apple.security.exception.files.home-relative-path.read-only")]).
allow(file-readSTAR, [extension("com.apple.sandbox.executable")]).
allow(file-readSTAR, [literal("/private/var/Managed Preferences/mobile/.GlobalPreferences.plist")]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Preferences/.GlobalPreferences.plist")]).
allow(file-readSTAR, [subpath("/System/Library/")]).
allow(file-readSTAR, [subpath("/usr/lib/")]).
allow(file-readSTAR, [subpath("/usr/share/")]).
allow(file-readSTAR, [subpath("/private/var/db/timezone/")]).
allow(file-readSTAR, [literal("/private/var/preferences/com.apple.security.plist")]).
allow(file-readSTAR, [literal("/private/var/preferences/com.apple.NetworkStatistics.plist")]).
allow(file-readSTAR, [literal("/private/var/preferences/com.apple.networkd.plist")]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.system.get-wallpaper",[])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/iTunes/"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-wal"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-shm"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-journal"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Podcasts/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Podcasts/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Podcasts/"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Books/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Books/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Books/"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.Radio.RadioRequestURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.Radio.RadioImageCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-wal"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-shm"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-journal"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-wal"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-shm"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-journal"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Cookies"),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/WebClips/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/WebClips/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webapp")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/DCIM/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/DCIM/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webapp")])]).
allow(file-readSTAR, [subpath("/Developer/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webbookmarksd")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.safarifetcherd")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Safari.SocialHelper")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webbookmarksd")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.safarifetcherd")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Safari.SocialHelper")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webbookmarksd")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.safarifetcherd")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Safari.SocialHelper")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Notes/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Notes/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.notes.sharedstore.lock"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.notes.sharedstore.lock"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.notes.objectcreation.lock"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.notes.objectcreation.lock"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/Logs/PersistentConnection/com[.]apple[.]mobilemail"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/Logs/CrashReporter/PersistentConnection/com[.]apple[.]mobilemail"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Preferences/com.apple.dataaccess.launchd"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Preferences/com.apple.AOSNotification.launchd"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [literal("/System/Library/PairedSyncServices/com.apple.pairedsync.mail.plist"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [literal("/private/var/preferences/SystemConfiguration/com.apple.AutoWake.plist"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/ConfigurationProfiles/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Caches/DataAccess/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/Library/Application Support/Mail/Plugins/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoMail$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoMail/"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/PairedSyncServiceRestrictions$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/PairedSyncServiceRestrictions/"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Logs/Mail/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/DataAccess/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Calendar/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Mail/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoPreferencesSync/NanoDomains/com[.]apple[.]NanoMail"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoMaps$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoMaps/"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/SMS/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Containers/Bundle/[^/]+/[-0-9A-Z]+/GeoJSON"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.storeservices/AppPurchaseHistory.6.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ios.StoreKitUIService")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.storeservices/AppPurchaseHistory.6.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ios.StoreKitUIService")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.storeservices/AppPurchaseHistory.6.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ios.StoreKitUIService")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.storeservices/AppPurchaseHistory.6.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ios.StoreKitUIService")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.storeservices"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ios.StoreKitUIService")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]restrictionspassword[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.WebContentFilter.remoteUI.WebContentAnalysisUI")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoPreferencesSync/NanoDomains/com[.]apple[.]stocks[.]bridge$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.stocks.watchkitextension")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.stocks.watchkitextension")])]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),subpath("/AppleInternal/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),subpath("/Applications/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),subpath("/private/var/mobile/Library/Carrier Bundles/Overlay/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),regex("^/System/Library/Carrier Bundles//carrier[.]plist$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),regex("^/System/Library/Carrier Bundles/.+/carrier[.]plist$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),regex("^/private/var/mobile/Library/Carrier Bundles//carrier[.]plist$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),regex("^/private/var/mobile/Library/Carrier Bundles/.+/carrier[.]plist$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),literal("/private/var/mobile/Library/Preferences/com.apple.carrier.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),regex("^/System/Library/Carrier Bundles/[.]png$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),regex("^/System/Library/Carrier Bundles/.+[.]png$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),regex("^/private/var/mobile/Library/Carrier Bundles/[.]png$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),regex("^/private/var/mobile/Library/Carrier Bundles/.+[.]png$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),literal("/private/var/mobile/Media/com.apple.itunes.lock_sync")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),subpath("/private/var/mobile/Media/iTunes_Control/Artwork/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),subpath("/private/var/mobile/Media/iTunes_Control/iTunes/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),literal("/private/var/mobile/Library/Preferences/com.apple.mobilephone.speeddial.plist"),extension("com.apple.tcc.kTCCServiceAddressBook")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),subpath("/private/var/mobile/Library/AddressBook/"),extension("com.apple.tcc.kTCCServiceAddressBook")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+/"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+/"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/mobile/Library/GameKit/Data/[^/]+[.]gcdata$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/preferences/SystemConfiguration/com.apple.radios.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/mobile/Library/Preferences/.GlobalPreferences.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Caches/com.apple.UIStatusBar/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Caches/com.apple.IconsCache/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/preferences/SystemConfiguration/com.apple.sinaweibo.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/preferences/SystemConfiguration/com.apple.twitter.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/preferences/SystemConfiguration/com.apple.facebook.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/preferences/SystemConfiguration/com.apple.linkedin.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/preferences/SystemConfiguration/com.apple.accounts.exists.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Fonts/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoPreferencesSync/NanoDomains/[.]GlobalPreferences$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),extension("com.apple.app-sandbox.read-write")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),extension("com.apple.app-sandbox.read")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/com.apple.xpc.launchd.bootstrap.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Caches/com.apple.keyboards/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/mobile/Library/Keyboard/LocalDictionary")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/VoiceServices/Assets/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Assets/com_apple_MobileAsset_VoiceServicesVocalizerVoice/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/mobile/Library/Caches/com.apple.itunesstored/url-resolution.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/mobile/Media/com.apple.itunes.lock_sync")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/mobile/Media/Vibrations/UserGeneratedVibrationPatterns.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/Library/Ringtones/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoPreferencesSync/NanoDomains/com[.]apple[.]ToneLibrary$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/mobile/Library/Caches/Checkpoint.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/GeoServices$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/GeoServices/"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Caches/GeoServices/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/mobile/Library/Caches/DateFormats.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/Library/Dictionaries/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Dictionaries/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/preferences/com.apple.security.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/preferences/com.apple.NetworkStatistics.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/preferences/com.apple.networkd.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/OnDemandResources/AssetPacks/"),extension("com.apple.odr-assets")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Assets/"),extension("com.apple.assets.read")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Application Support/Ubiquity/genstore/"),extension("com.apple.librarian.ubiquity-revision")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Mobile Documents/"),extension("com.apple.librarian.ubiquity-container")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Mobile Documents/"),require-entitlement("com.apple.private.librarian.container-proxy",[])]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Library/Application Support/CloudDocs/session/r/"),vnode-type(regular-file),extension("com.apple.clouddocs.version")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/.DocumentRevisions-V100/staging/"),extension("com.apple.revisiond.staging")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/.DocumentRevisions-V100/PerUID/"),extension("com.apple.revisiond.revision")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Media/"),extension("com.apple.avasset.read-only"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),literal("/private/var/mobile/Media/PhotoData/syncInfo.plist"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Media/PhotoData/Thumbnails/"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Media/PhotoData/Sync/FaceAlbumThumbnails/"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),subpath("/private/var/mobile/Media/PhotoData/Metadata/"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/mobile/Media/PhotoData/Photos[.]sqlite$"/i),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/mobile/Media/PhotoData/Photos[.]sqlite-wal$"/i),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/mobile/Media/PhotoData/Photos[.]sqlite-shm$"/i),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),regex("^/private/var/mobile/Media/PhotoData/Photos[.]sqlite-journal$"/i),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),literal("/dev/aes_0")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),literal("/dev/random")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),literal("/dev/urandom")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),literal("/dev/dtracehelper")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),literal("/dev/null")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),literal("/dev/zero")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),subpath("/private/var/mobile/Library/ConfigurationProfiles/PublicInfo/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),literal("/private/var/mobile/Library/Caches/com.apple.MobileGestalt.plist")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),literal("/dev/ptmx")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.bulletinboard.dataprovider",[])]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),regex("^/dev/ttys[0-9]"/i),extension("com.apple.sandbox.pty")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),regex("^/dev/ttys[0-9]+"/i),extension("com.apple.sandbox.pty")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),vnode-type(tty),regex("^/dev/ttyp[0-9a-f]$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),vnode-type(tty),regex("^/dev/ptyp[0-9a-f]$"/i)]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/etc/protocols")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/etc/services")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/etc/hosts")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/etc/group")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/etc/passwd")]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/var/mobile/Library/CoreDuet/People/interactionC.db-wal"),require-entitlement("com.apple.coreduetd.people",[])]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/var/mobile/Library/CoreDuet/People/interactionC.db-shm"),require-entitlement("com.apple.coreduetd.people",[])]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/var/mobile/Library/CoreDuet/People/interactionC.db-journal"),require-entitlement("com.apple.coreduetd.people",[])]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/var/mobile/Library/CoreDuet/People/interactionC.db"),require-entitlement("com.apple.coreduetd.people",[])]).
allow(file-readSTAR, [require-not(literal("/private/var/mobile/Library/Preferences/com.apple.apsalerts.plist")),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(subpath("/private/var/mobile/Library/FairPlay/")),require-not(literal("/usr/sbin/fairplayd")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/var/mobile/Library/CoreDuet/People"),require-entitlement("com.apple.coreduetd.people",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Carrier Bundles/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Carrier Bundles/"),require-entitlement("com.apple.security.exception.carrier-bundle.read",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Application Support/Ubiquity/genstore/"),extension("com.apple.librarian.ubiquity-revision")]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Mobile Documents/"),extension("com.apple.librarian.ubiquity-container")]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Mobile Documents/"),require-entitlement("com.apple.private.librarian.container-proxy",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Library/Application Support/CloudDocs/session/r/"),vnode-type(regular-file),extension("com.apple.clouddocs.version")]).
allow(file-readSTAR, [subpath("/private/var/.DocumentRevisions-V100/staging/"),extension("com.apple.revisiond.staging")]).
allow(file-readSTAR, [subpath("/private/var/.DocumentRevisions-V100/PerUID/"),extension("com.apple.revisiond.revision")]).
allow(file-readSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp/"/i)]).
allow(file-readSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp$"/i)]).
allow(file-readSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library/"/i)]).
allow(file-readSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library$"/i)]).
allow(file-readSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents/"/i)]).
allow(file-readSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents$"/i)]).
allow(file-readSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+$"/i)]).
allow(file-readSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/StoreKit/"/i)]).
allow(file-readSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/StoreKit$"/i)]).
allow(file-readSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/iTunesArtwork$"/i)]).
allow(file-readSTAR, [subpath("/private/var/mobile/XcodeBuiltProducts/"),debug-mode]).
allow(file-readSTAR, [subpath("/private/var/mobile/XcodeBuiltProducts/"),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(file-readSTAR, [subpath("/Developer/"),debug-mode]).
allow(file-readSTAR, [subpath("/Developer/"),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(file-readSTAR, [subpath("/Developer/"),require-not(require-entitlement("platform-application"))]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("platform-application",[])]).
allow(file-readSTAR, [literal("/private/var/preferences/SystemConfiguration/com.apple.wifi.plist"),require-entitlement("platform-application",[])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.system.set-alert-tone",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.media.ringtones.read-only",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/Ringtones/"),require-entitlement("com.apple.media.ringtones.read-only",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/Ringtones/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/Ringtones.plist"),require-entitlement("com.apple.media.ringtones.read-only",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/Ringtones.plist"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.media.ringtones.read-only",[])]).
allow(file-readSTAR, [regex("^/private/var/Managed Preferences/mobile/com[.]apple[.].+[.]plist$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.media.ringtones.read-write",[])]).
allow(file-readSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/Ringtones/"),require-entitlement("com.apple.media.ringtones.read-write",[])]).
allow(file-readSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/Ringtones.plist"),require-entitlement("com.apple.media.ringtones.read-write",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/LockBackgroundThumbnail[.]jpg$"/i),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/HomeBackgroundThumbnail[.]jpg$"/i),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/LockBackgroundThumbnail[.]jpg$"/i),require-entitlement("com.apple.system.get-wallpaper",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/HomeBackgroundThumbnail[.]jpg$"/i),require-entitlement("com.apple.system.get-wallpaper",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/LockBackgroundThumbnail[.]jpg$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/HomeBackgroundThumbnail[.]jpg$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/LockBackgroundThumbnail[.]jpg$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/HomeBackgroundThumbnail[.]jpg$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/LockBackground[.]cpbitmap"/i),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/[.]LockBackground[.]cpbitmap"/i),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/HomeBackground[.]cpbitmap"/i),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/[.]HomeBackground[.]cpbitmap"/i),require-entitlement("com.apple.container2",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/LockBackground[.]cpbitmap"/i),require-entitlement("com.apple.system.get-wallpaper",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/[.]LockBackground[.]cpbitmap"/i),require-entitlement("com.apple.system.get-wallpaper",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/HomeBackground[.]cpbitmap"/i),require-entitlement("com.apple.system.get-wallpaper",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/[.]HomeBackground[.]cpbitmap"/i),require-entitlement("com.apple.system.get-wallpaper",[])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/LockBackground[.]cpbitmap"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/[.]LockBackground[.]cpbitmap"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/HomeBackground[.]cpbitmap"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/[.]HomeBackground[.]cpbitmap"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/LockBackground[.]cpbitmap"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/[.]LockBackground[.]cpbitmap"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/HomeBackground[.]cpbitmap"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-readSTAR, [regex("^/private/var/mobile/Library/SpringBoard/[.]HomeBackground[.]cpbitmap"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-data, [regex("^/private/var/ea/ea[.0-9]+$"/i)]).
allow(file-read-metadata, [subpath("/private/var/mobile/Library/Carrier Bundles/")]).
allow(file-read-metadata, [literal("/private/var/mobile/Library")]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Mobile Documents")]).
allow(file-read-metadata, [literal("/private/var/mobile")]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences")]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/DeviceRegistry")]).
allow(file-read-metadata, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+$"/i)]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Caches/powerlog.launchd")]).
allow(file-read-metadata, [vnode-type(directory)]).
allow(file-read-metadata, [vnode-type(symlink)]).
allow(file-read-metadata, [literal("/private/var")]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/GameKit/Data")]).
allow(file-read-metadata, [literal("/private/var/run/printd")]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Caches/com.apple.DictionaryServices")]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/PPTDevice")]).
allow(file-read-metadata, [literal("/private/var/mobile/Media")]).
allow(file-read-metadata, [literal("/private/var/run/syslog")]).
allow(file-read-metadata, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/iTunesMetadata[.]plist$"/i)]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/DeviceRegistry")]).
allow(file-read-metadata, [vnode-type(directory),regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+$"/i)]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("platform-application",[])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("platform-application",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.system.set-alert-tone",[])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.system.set-alert-tone",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.media.ringtones.read-only",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.media.ringtones.read-only",[])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.system.get-wallpaper",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.system.get-wallpaper",[])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.container2",[])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webbookmarksd")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.safarifetcherd")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Safari.SocialHelper")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webbookmarksd")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.safarifetcherd")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Safari.SocialHelper")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/Caches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/Caches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Caches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Caches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/Logs/PersistentConnection"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/Logs/CrashReporter/PersistentConnection"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Logs/PersistentConnection"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Logs/CrashReporter/PersistentConnection"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/Caches/com.apple.storeservices"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ios.StoreKitUIService")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Caches/com.apple.storeservices"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ios.StoreKitUIService")])]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.stocks.watchkitextension")])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.stocks.watchkitextension")])]).
allow(file-read-metadata, [vnode-type(directory),literal("/private/var/mobile/Library/Caches/com.apple.DictionaryServices")]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-read-metadata, [literal("/private/var/mobile"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-read-metadata, [literal("/private/var/mobile/Media/PhotoData/Thumbnails"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-read-metadata, [literal("/private/var/mobile/Media/PhotoData"),extension("com.apple.tcc.kTCCServicePhotos")]).
allow(file-read-metadata, [vnode-type(regular-file),extension("com.apple.private.safe-move.receive")]).
allow(file-read-metadata, [vnode-type(regular-file),extension("com.apple.private.safe-move.send")]).
allow(file-read-metadata, [literal("/private/var/mobile/Library/Preferences"),require-entitlement("com.apple.bulletinboard.dataprovider",[])]).
allow(file-read-metadata, [literal("/private/var/mobile"),require-entitlement("com.apple.bulletinboard.dataprovider",[])]).
allow(file-writeSTAR, [extension("com.apple.security.exception.files.absolute-path.read-write")]).
allow(file-writeSTAR, [extension("com.apple.security.exception.files.home-relative-path.read-write")]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]PeoplePicker[.]plist"/i)]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/com.apple.itunes.lock_sync")]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Mobile Documents/"),extension("com.apple.librarian.ubiquity-container")]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Mobile Documents/"),require-entitlement("com.apple.private.librarian.container-proxy",[])]).
allow(file-writeSTAR, [subpath("/private/var/.DocumentRevisions-V100/staging/"),extension("com.apple.revisiond.staging")]).
allow(file-writeSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp/"/i)]).
allow(file-writeSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/tmp$"/i)]).
allow(file-writeSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library/"/i)]).
allow(file-writeSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Library$"/i)]).
allow(file-writeSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents/"/i)]).
allow(file-writeSTAR, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents$"/i)]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i),require-entitlement("com.apple.system.set-alert-tone",[])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.media.ringtones.read-write",[])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/Ringtones/"),require-entitlement("com.apple.media.ringtones.read-write",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/Ringtones.plist"),require-entitlement("com.apple.media.ringtones.read-write",[])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/iTunes/"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]itunesstored[.]plist"/i),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-wal"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-shm"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-journal"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.iTunesStore.NSURLCache/"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Media/iTunes_Control/"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Media/Books/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Media/Books/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Media/Books/"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.Radio.RadioRequestURLCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Caches/sharedCaches/com.apple.Radio.RadioImageCache/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-wal"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-shm"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb-journal"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]mobileipod[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]mobileipod[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]mobileipod[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]mobileipod[.]plist"/i),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]itunesstored[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]itunesstored[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]itunesstored[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]itunesstored[.]plist"/i),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-wal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-wal"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-shm"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-shm"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb-journal"),require-entitlement("com.apple.container2",[])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/WebClips/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/WebClips/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webapp")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]youtube[.]dp[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webbookmarksd")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.safarifetcherd")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Cookies/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Safari.SocialHelper")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.webbookmarksd")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.safarifetcherd")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Safari.SocialHelper")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Safari/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Notes/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Notes/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.notes.sharedstore.lock"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.notes.sharedstore.lock"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.notes.objectcreation.lock"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.notes.objectcreation.lock"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Logs/PersistentConnection/com[.]apple[.]mobilemail"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Logs/CrashReporter/PersistentConnection/com[.]apple[.]mobilemail"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoMail$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoMail/"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/PairedSyncServiceRestrictions$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/PairedSyncServiceRestrictions/"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Logs/Mail/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/DataAccess/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Calendar/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/Mail/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]accountsettings[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]mail[.]composition[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]MailAccount-ExtProperties[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]OTASyncAgent[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]OTASyncState[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoPreferencesSync/NanoDomains/com[.]apple[.]NanoMail"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoMaps$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+/NanoMaps/"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]GMM[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]NanoMailKit[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]skyhookwireless[.]wps[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]assistant[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]internal[.]Voltaire[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/SMS/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Containers/Bundle/[^/]+/[-0-9A-Z]+/GeoJSON"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Maps")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Caches/com.apple.storeservices/AppPurchaseHistory.6.sqlitedb-journal"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ios.StoreKitUIService")])]).
allow(file-writeSTAR, [regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]restrictionspassword[.]plist"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.WebContentFilter.remoteUI.WebContentAnalysisUI")])]).
allow(file-writeSTAR, [literal("/private/var/mobile/Library/Preferences/com.apple.mobilephone.speeddial.plist"),extension("com.apple.tcc.kTCCServiceAddressBook")]).
allow(file-writeSTAR, [subpath("/private/var/mobile/Library/AddressBook/"),extension("com.apple.tcc.kTCCServiceAddressBook")]).
allow(file-writeSTAR, [extension("com.apple.sandbox.application-group"),regex("^/private/var/mobile/Containers/Shared/AppGroup/[-0-9A-Z]+/"/i)]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]Preferences[.]plist"/i)]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]EmojiPreferences[.]plist"/i)]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),extension("com.apple.app-sandbox.read-write")]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),subpath("/private/var/mobile/Library/Caches/com.apple.keyboards/")]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),literal("/private/var/mobile/Library/Keyboard/LocalDictionary")]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]mediaaccessibility[.]public[.]plist"/i)]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),literal("/private/var/mobile/Media/com.apple.itunes.lock_sync")]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),subpath("/private/var/mobile/Library/Mobile Documents/"),extension("com.apple.librarian.ubiquity-container")]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),subpath("/private/var/mobile/Library/Mobile Documents/"),require-entitlement("com.apple.private.librarian.container-proxy",[])]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),subpath("/private/var/.DocumentRevisions-V100/staging/"),extension("com.apple.revisiond.staging")]).
allow(file-writeSTAR, [require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]springboard[.]plist"/i)),require-not(literal("/private/var/mobile/Library/Caches/GeoServices/tguid.bin")),require-not(literal("/private/var/mobile/Library/Caches/DateFormats.plist")),require-not(subpath("/private/var/mobile/Media/")),require-not(vnode-type(block-device)),require-not(vnode-type(character-device)),literal("/private/var/mobile/Library/CoreDuet/People/interactionC.db-journal"),require-entitlement("com.apple.coreduetd.people",[])]).
allow(file-write-create, [vnode-type(directory),literal("/private/var/mobile/Library/DeviceRegistry")]).
allow(file-write-create, [vnode-type(directory),regex("^/private/var/mobile/Library/DeviceRegistry/[-0-9A-Z]+$"/i)]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/Caches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/Caches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilenotes")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/Logs/PersistentConnection"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/Logs/CrashReporter/PersistentConnection"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),literal("/private/var/mobile/Library/Preferences/com.apple.dataaccess.launchd"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),literal("/private/var/mobile/Library/Preferences/com.apple.AOSNotification.launchd"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/Caches/com.apple.storeservices"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ios.StoreKitUIService")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/Caches/com.apple.DictionaryServices")]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]Accessibility[.]plist"/i)),require-not(regex("^/private/var/mobile/Library/Preferences/com[.]apple[.]UIKit[.]plist"/i)),vnode-type(regular-file),extension("com.apple.private.safe-move.send")]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.container2",[])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/Caches/sharedCaches"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.Music")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore"),require-entitlement("com.apple.container2",[])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-write-create, [require-not(regex("^/private/var/mobile/Library/Logs/CrashReporter/CFNetwork_"/i)),vnode-type(directory),literal("/private/var/mobile/Library/com.apple.iTunesStore/LocalStorage"),require-entitlement("com.apple.container2",[])]).
allow(file-write-data, [regex("^/private/var/ea/ea[.0-9]+$"/i)]).
allow(file-write-data, [literal("/dev/ptmx")]).
allow(file-write-data, [literal("/dev/aes_0")]).
allow(file-write-data, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.itunesstored.private",[])]).
allow(file-write-data, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-write-data, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-write-data, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-write-data, [literal("/private/var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb"),require-entitlement("com.apple.container2",[])]).
allow(file-write-data, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(file-write-data, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-write-data, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-write-data, [literal("/private/var/mobile/Library/Cookies/com.apple.itunesstored.2.sqlitedb"),require-entitlement("com.apple.container2",[])]).
allow(file-write-data, [literal("/private/var/mobile/Library/Caches/com.apple.storeservices/AppPurchaseHistory.6.sqlitedb"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.ios.StoreKitUIService")])]).
allow(file-write-data, [vnode-type(regular-file),extension("com.apple.private.safe-move.send")]).
allow(file-write-data, [regex("^/dev/ttys[0-9]"/i),extension("com.apple.sandbox.pty")]).
allow(file-write-data, [regex("^/dev/ttys[0-9]+"/i),extension("com.apple.sandbox.pty")]).
allow(file-write-data, [vnode-type(tty),regex("^/dev/ttyp[0-9a-f]$"/i)]).
allow(file-write-data, [vnode-type(tty),regex("^/dev/ptyp[0-9a-f]$"/i)]).
allow(file-write-data, [require-not(literal("/dev/random")),require-not(literal("/dev/urandom")),literal("/dev/dtracehelper")]).
allow(file-write-data, [require-not(literal("/dev/random")),require-not(literal("/dev/urandom")),literal("/dev/null")]).
allow(file-write-data, [require-not(literal("/dev/random")),require-not(literal("/dev/urandom")),literal("/dev/zero")]).
allow(file-write-data, [require-not(literal("/dev/random")),require-not(literal("/dev/urandom")),literal("/private/var/mobile/Library/CoreDuet/People/interactionC.db"),require-entitlement("com.apple.coreduetd.people",[])]).
allow(file-write-mode, [regex("^/dev/ttys[0-9]"/i),extension("com.apple.sandbox.pty")]).
allow(file-write-mode, [regex("^/dev/ttys[0-9]+"/i),extension("com.apple.sandbox.pty")]).
allow(file-write-unlink, [vnode-type(regular-file),extension("com.apple.private.safe-move.receive")]).
allow(file-write-unlink, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents/Inbox/"/i)]).
allow(file-write-unlink, [extension("com.apple.sandbox.container"),regex("^/private/var/mobile/Containers/Data/[^/]+/[-0-9A-Z]+/Documents/Inbox$"/i)]).
allow(file-write-unlink, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-write-unlink, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-write-unlink, [subpath("/private/var/mobile/Media/Purchases/"),require-entitlement("com.apple.container2",[])]).
allow(file-write-unlink, [subpath("/private/var/mobile/Media/Podcasts/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(file-write-unlink, [subpath("/private/var/mobile/Media/Podcasts/"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(file-write-unlink, [subpath("/private/var/mobile/Media/Podcasts/"),require-entitlement("com.apple.container2",[])]).
allow(file-write-unlink, [literal("/private/var/mobile/Library/Preferences/com.apple.dataaccess.launchd"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(file-write-unlink, [literal("/private/var/mobile/Library/Preferences/com.apple.AOSNotification.launchd"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(iokit-open, [iokit-user-client-class("IOAccelContext")]).
allow(iokit-open, [iokit-user-client-class("IOAccelDevice")]).
allow(iokit-open, [iokit-user-client-class("IOAccelSharedUserClient")]).
allow(iokit-open, [iokit-user-client-class("IOAccelSubmitter2")]).
allow(iokit-open, [iokit-user-client-class("IOAccelContext2")]).
allow(iokit-open, [iokit-user-client-class("IOAccelDevice2")]).
allow(iokit-open, [iokit-user-client-class("IOAccelSharedUserClient2")]).
allow(iokit-open, [iokit-user-client-class("IOMobileFramebufferUserClient")]).
allow(iokit-open, [iokit-user-client-class("AppleJPEGDriverUserClient")]).
allow(iokit-open, [iokit-user-client-class("IOSurfaceAcceleratorClient")]).
allow(iokit-open, [iokit-user-client-class("IOSurfaceSendRight")]).
allow(iokit-open, [iokit-user-client-class("IOSurfaceRootUserClient")]).
allow(iokit-open, [iokit-user-client-class("AppleMobileFileIntegrityUserClient")]).
allow(iokit-open, [extension("com.apple.security.exception.iokit-user-client-class")]).
allow(iokit-open, [iokit-user-client-class("IOHIDLibUserClient")]).
allow(iokit-open, [iokit-user-client-class("AppleKeyStoreUserClient")]).
allow(iokit-open, [iokit-user-client-class("RootDomainUserClient"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilemail")])]).
allow(iokit-open, [iokit-user-client-class("com_apple_driver_FairPlayIOKitUserClient"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.iBooks")])]).
allow(iokit-open, [iokit-user-client-class("com_apple_driver_FairPlayIOKitUserClient"),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.itunesu")])]).
allow(iokit-open, [iokit-user-client-class("com_apple_driver_FairPlayIOKitUserClient"),require-entitlement("com.apple.container2",[])]).
allow(iokit-get-properties, [iokit-property("compass-calibration")]).
allow(iokit-get-properties, [iokit-property("gyro-interrupt-calibration")]).
allow(iokit-get-properties, [iokit-property-regex("^BackCamera"/i)]).
allow(iokit-get-properties, [require-not(iokit-property-regex("-mac-address"/i)),require-not(iokit-property-regex("mac-address-"/i)),require-not(iokit-property-regex(".+-mac-address"/i)),require-not(iokit-property-regex(".+mac-address-"/i))]).
allow(iokit-get-properties, [require-entitlement("com.apple.wifi.manager-access",[])]).
allow(iokit-get-properties, [require-entitlement("fairplay-client",[require-not(require-entitlement("com.apple.private.MobileGestalt.AllowedProtectedKeys"))])]).
allow(iokit-get-properties, [require-entitlement("com.apple.system.get-hardware-identifiers",[])]).
allow(ipc-posix-sem, [semaphore-owner(self)]).
allow(ipc-posix-sem, [extension("com.apple.sandbox.application-group")]).
allow(ipc-posix-shmSTAR, [extension("com.apple.sandbox.application-group")]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^/FSM-"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^OA-"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^stack-logs"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^/FSM-"/i),debug-mode]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^/FSM-"/i),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^/FSM-"/i),require-not(require-entitlement("platform-application"))]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^OA-"/i),debug-mode]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^OA-"/i),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^OA-"/i),require-not(require-entitlement("platform-application"))]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^stack-logs"/i),debug-mode]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^stack-logs"/i),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(ipc-posix-shmSTAR, [ipc-posix-name-regex("^stack-logs"/i),require-not(require-entitlement("platform-application"))]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^Apple MIDI in [0-9]+$"/i)]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^Apple MIDI out [0-9]+$"/i)]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name("apple.shm.notification_center")]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^apple[.]shm[.]cfprefsd[.]"/i)]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),debug-mode]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),debug-mode]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),require-not(require-entitlement("platform-application"))]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),require-not(require-entitlement("platform-application"))]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^AppleABL[.]."/i),require-entitlement("inter-app-audio",[])]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^AppleABL[.].+"/i),require-entitlement("inter-app-audio",[])]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(ipc-posix-shm-readSTAR, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(ipc-posix-shm-write-create, [ipc-posix-name-regex("^/mono[.][0-9]+$"/i)]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^Apple MIDI in [0-9]+$"/i)]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^Apple MIDI out [0-9]+$"/i)]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),debug-mode]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),debug-mode]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),require-not(require-entitlement("platform-application"))]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),require-not(require-entitlement("platform-application"))]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^AppleABL[.]."/i),require-entitlement("inter-app-audio",[])]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^AppleABL[.].+"/i),require-entitlement("inter-app-audio",[])]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(ipc-posix-shm-write-data, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(ipc-posix-shm-write-unlink, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),debug-mode]).
allow(ipc-posix-shm-write-unlink, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),debug-mode]).
allow(ipc-posix-shm-write-unlink, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(ipc-posix-shm-write-unlink, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),require-entitlement("com.apple.private.security.sandbox.debug-mode",[])]).
allow(ipc-posix-shm-write-unlink, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),require-not(require-entitlement("platform-application"))]).
allow(ipc-posix-shm-write-unlink, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),require-not(require-entitlement("platform-application"))]).
allow(ipc-posix-shm-write-unlink, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-c$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(ipc-posix-shm-write-unlink, [ipc-posix-name-regex("^gdt-[0-9A-Za-z]+-s$"/i),require-entitlement("com.apple.private.signing-identifier",[entitlement-value("com.apple.mobilesafari")])]).
allow(mach-bootstrap, []).
allow(mach-lookup, [global-name("com.apple.quicklook.ThumbnailsAgent")]).
allow(mach-lookup, [global-name("com.apple.itunescloudd.xpc")]).
allow(mach-lookup, [global-name("com.apple.itunesstored.xpc")]).
allow(mach-lookup, [global-name("com.apple.audio.AudioSession")]).
allow(mach-lookup, [global-name("com.apple.springboard.backgroundappservices")]).
allow(mach-lookup, [global-name("com.apple.fig.movie")]).
allow(mach-lookup, [global-name("com.apple.mediaserverd")]).
allow(mach-lookup, [global-name("com.apple.coremedia.admin")]).
allow(mach-lookup, [global-name("com.apple.coremedia.asset")]).
allow(mach-lookup, [global-name("com.apple.coremedia.assetimagegenerator")]).
allow(mach-lookup, [global-name("com.apple.coremedia.capturesession")]).
allow(mach-lookup, [global-name("com.apple.coremedia.capturesource")]).
allow(mach-lookup, [global-name("com.apple.coremedia.endpoint.xpc")]).
allow(mach-lookup, [global-name("com.apple.coremedia.recorder")]).
allow(mach-lookup, [global-name("com.apple.coremedia.remaker")]).
allow(mach-lookup, [global-name("com.apple.coremedia.sandboxserver")]).
allow(mach-lookup, [global-name("com.apple.coremedia.videocompositor")]).
allow(mach-lookup, [global-name("com.apple.pegasus")]).
allow(mach-lookup, [global-name("com.apple.FileProvider")]).
allow(mach-lookup, [global-name("com.apple.bird")]).
allow(mach-lookup, [global-name("com.apple.bird.token")]).
allow(mach-lookup, [global-name("com.apple.librariand")]).
allow(mach-lookup, [global-name("com.apple.revisiond")]).
allow(mach-lookup, [global-name("com.apple.pairedsyncd.syncstate")]).
allow(mach-lookup, [global-name("com.apple.nano.nanoregistry.paireddeviceregistry")]).
allow(mach-lookup, [global-name("com.apple.ReportCrash.SimulateCrash")]).
allow(mach-lookup, [global-name("com.apple.hangtracerd")]).
allow(mach-lookup, [global-name("com.apple.usymptomsd")]).
allow(mach-lookup, [global-name("com.apple.symptomsd")]).
allow(mach-lookup, [global-name("com.apple.securityd")]).
allow(mach-lookup, [global-name("com.apple.trustd")]).
allow(mach-lookup, [global-name("com.apple.commcenter.xpc")]).
allow(mach-lookup, [global-name("com.apple.commcenter.cupolicy.xpc")]).
allow(mach-lookup, [global-name("com.apple.SystemConfiguration.configd")]).
allow(mach-lookup, [global-name("com.apple.SystemConfiguration.helper")]).
allow(mach-lookup, [global-name("com.apple.SystemConfiguration.SCNetworkReachability")]).
allow(mach-lookup, [global-name("com.apple.SystemConfiguration.DNSConfiguration")]).
allow(mach-lookup, [global-name("com.apple.SystemConfiguration.PPPController")]).
allow(mach-lookup, [global-name("com.apple.SystemConfiguration.NetworkInformation")]).
allow(mach-lookup, [global-name("com.apple.nesessionmanager")]).
allow(mach-lookup, [global-name("com.apple.nehelper")]).
allow(mach-lookup, [global-name("com.apple.GSSCred")]).
allow(mach-lookup, [global-name("com.apple.accountsd.accountmanager")]).
allow(mach-lookup, [global-name("com.apple.cookied")]).
allow(mach-lookup, [global-name("com.apple.cfnetwork.AuthBrokerAgent")]).
allow(mach-lookup, [global-name("com.apple.cfnetwork.cfnetworkagent")]).
allow(mach-lookup, [global-name("com.apple.nsurlstorage-cache")]).
allow(mach-lookup, [global-name("com.apple.nsurlsessiond")]).
allow(mach-lookup, [global-name("com.apple.networkd")]).
allow(mach-lookup, [global-name("PurplePPTServer")]).
allow(mach-lookup, [global-name("PurpleSystemAppPort")]).
allow(mach-lookup, [global-name("PurpleSystemEventPort")]).
allow(mach-lookup, [global-name("com.apple.ABDatabaseDoctor")]).
allow(mach-lookup, [global-name("com.apple.AdSheetPad.server")]).
allow(mach-lookup, [global-name("com.apple.AdSheetPhone.server")]).
allow(mach-lookup, [global-name("com.apple.CoreAuthentication.daemon")]).
allow(mach-lookup, [global-name("com.apple.FSEvents")]).
allow(mach-lookup, [global-name("com.apple.FileCoordination")]).
allow(mach-lookup, [global-name("com.apple.GameController.gamecontrollerd")]).
allow(mach-lookup, [global-name("com.apple.MediaControl.daemon")]).
allow(mach-lookup, [global-name("com.apple.MobileAccessoryUpdater")]).
allow(mach-lookup, [global-name("com.apple.MobileFileIntegrity")]).
allow(mach-lookup, [global-name("com.apple.MobileInternetSharing")]).
allow(mach-lookup, [global-name("com.apple.Music.MPMusicPlayerControllerInternal")]).
allow(mach-lookup, [global-name("com.apple.Music.MPMusicPlayerMigServer")]).
allow(mach-lookup, [global-name("com.apple.Music.MPMusicPlayerMigServerExists")]).
allow(mach-lookup, [global-name("com.apple.PersistentURLTranslator.Gatekeeper")]).
allow(mach-lookup, [global-name("com.apple.PowerManagement.control")]).
allow(mach-lookup, [global-name("com.apple.ProgressReporting")]).
allow(mach-lookup, [global-name("com.apple.ReportCrash")]).
allow(mach-lookup, [global-name("com.apple.ReportCrash.DirectoryService")]).
allow(mach-lookup, [global-name("com.apple.ReportCrash.Jetsam")]).
allow(mach-lookup, [global-name("com.apple.ReportCrash.SafetyNet")]).
allow(mach-lookup, [global-name("com.apple.ReportCrash.StackShot")]).
allow(mach-lookup, [global-name("com.apple.SBUserNotification")]).
allow(mach-lookup, [global-name("com.apple.VoiceOverTouch")]).
allow(mach-lookup, [global-name("com.apple.VoiceOverTouch.xpc")]).
allow(mach-lookup, [global-name("com.apple.WebBookmarks.webbookmarksd")]).
allow(mach-lookup, [global-name("com.apple.accountsd.accessmanager")]).
allow(mach-lookup, [global-name("com.apple.accountsd.authmanager")]).
allow(mach-lookup, [global-name("com.apple.accountsd.oauthsigner")]).
allow(mach-lookup, [global-name("com.apple.airplay.sender.xpc")]).
allow(mach-lookup, [global-name("com.apple.ait.client")]).
allow(mach-lookup, [global-name("com.apple.appleprofilepolicyd")]).
allow(mach-lookup, [global-name("com.apple.apsd")]).
allow(mach-lookup, [global-name("com.apple.assertiond.extension")]).
allow(mach-lookup, [global-name("com.apple.assetsd.changehub")]).
allow(mach-lookup, [global-name("com.apple.assetsd.keepDaemonAlive")]).
allow(mach-lookup, [global-name("com.apple.assetsd.messagingServer")]).
allow(mach-lookup, [global-name("com.apple.assetsd.notificationServer")]).
allow(mach-lookup, [global-name("com.apple.atc")]).
allow(mach-lookup, [global-name("com.apple.audio.AURemoteIOServer")]).
allow(mach-lookup, [global-name("com.apple.audio.AudioConverterServer")]).
allow(mach-lookup, [global-name("com.apple.audio.AudioFileServer")]).
allow(mach-lookup, [global-name("com.apple.audio.AudioUnitServer")]).
allow(mach-lookup, [global-name("com.apple.awdd")]).
allow(mach-lookup, [global-name("com.apple.backboard.checkin")]).
allow(mach-lookup, [global-name("com.apple.backboard.watchdog")]).
allow(mach-lookup, [global-name("com.apple.backboard.workspaceserverconnection")]).
allow(mach-lookup, [global-name("com.apple.bypassBasebandAutoBooter.msgport")]).
allow(mach-lookup, [global-name("com.apple.calaccessd")]).
allow(mach-lookup, [global-name("com.apple.calaccessd.xpc")]).
allow(mach-lookup, [global-name("com.apple.certui.relay")]).
allow(mach-lookup, [global-name("com.apple.cloudd")]).
allow(mach-lookup, [global-name("com.apple.clouddbd")]).
allow(mach-lookup, [global-name("com.apple.commcenter.dm-helper")]).
allow(mach-lookup, [global-name("com.apple.commcenter.mobile-helper")]).
allow(mach-lookup, [global-name("com.apple.coremedia.audiodeviceclock")]).
allow(mach-lookup, [global-name("com.apple.coremedia.audioprocessingtap")]).
allow(mach-lookup, [global-name("com.apple.coremedia.compressionsession")]).
allow(mach-lookup, [global-name("com.apple.coremedia.cpe")]).
allow(mach-lookup, [global-name("com.apple.coremedia.cpeprotector")]).
allow(mach-lookup, [global-name("com.apple.coremedia.decompressionsession")]).
allow(mach-lookup, [global-name("com.apple.coremedia.formatreader")]).
allow(mach-lookup, [global-name("com.apple.coremedia.mutablecomposition")]).
allow(mach-lookup, [global-name("com.apple.coremedia.videoqueue")]).
allow(mach-lookup, [global-name("com.apple.coremedia.wirelessdisplay")]).
allow(mach-lookup, [global-name("com.apple.coremedia.wirelessdisplayserver")]).
allow(mach-lookup, [global-name("com.apple.corerecents.recentsd")]).
allow(mach-lookup, [global-name("com.apple.coreservices.appleid.authentication")]).
allow(mach-lookup, [global-name("com.apple.coresymbolicationd")]).
allow(mach-lookup, [global-name("com.apple.cvmsCompAgent_armv7")]).
allow(mach-lookup, [global-name("com.apple.cvmsServ")]).
allow(mach-lookup, [global-name("com.apple.dataaccess.dataaccessd")]).
allow(mach-lookup, [global-name("com.apple.dataaccess.dataaccessd.active")]).
allow(mach-lookup, [global-name("com.apple.datamigrator.dz")]).
allow(mach-lookup, [global-name("com.apple.distributed_notifications@0v3")]).
allow(mach-lookup, [global-name("com.apple.gamecenter")]).
allow(mach-lookup, [global-name("com.apple.gamed")]).
allow(mach-lookup, [global-name("com.apple.gamed.note")]).
allow(mach-lookup, [global-name("com.apple.gizmoappd")]).
allow(mach-lookup, [global-name("com.apple.healthd.restriction")]).
allow(mach-lookup, [global-name("com.apple.healthd.server")]).
allow(mach-lookup, [global-name("com.apple.homed.xpc")]).
allow(mach-lookup, [global-name("com.apple.iTunesStore.daemon.notifications.public")]).
allow(mach-lookup, [global-name("com.apple.iTunesStore.daemon.public")]).