-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1210 lines (1144 loc) · 89.2 KB
/
index.html
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
<!-- saved from url=(0112)file:///C:/Users/tomvi/AndroidStudioProjects/NotificationManagerPrototype/app/src/main/assets/privacypolicy.html -->
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="ProgId" content="Word.Document">
<meta name="Generator" content="Microsoft Word 15">
<meta name="Originator" content="Microsoft Word 15">
</head><body lang="EN-US" link="blue" vlink="#954F72" style="tab-interval:.5in"><xml>
<w:latentstyles deflockedstate="false" defunhidewhenused="false" defsemihidden="false" defqformat="false" defpriority="99" latentstylecount="376">
<w:lsdexception locked="false" priority="0" qformat="true" name="Normal">
<w:lsdexception locked="false" priority="9" qformat="true" name="heading 1">
<w:lsdexception locked="false" priority="9" semihidden="true" unhidewhenused="true" qformat="true" name="heading 2">
<w:lsdexception locked="false" priority="9" semihidden="true" unhidewhenused="true" qformat="true" name="heading 3">
<w:lsdexception locked="false" priority="9" semihidden="true" unhidewhenused="true" qformat="true" name="heading 4">
<w:lsdexception locked="false" priority="9" semihidden="true" unhidewhenused="true" qformat="true" name="heading 5">
<w:lsdexception locked="false" priority="9" semihidden="true" unhidewhenused="true" qformat="true" name="heading 6">
<w:lsdexception locked="false" priority="9" semihidden="true" unhidewhenused="true" qformat="true" name="heading 7">
<w:lsdexception locked="false" priority="9" semihidden="true" unhidewhenused="true" qformat="true" name="heading 8">
<w:lsdexception locked="false" priority="9" semihidden="true" unhidewhenused="true" qformat="true" name="heading 9">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="index 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="index 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="index 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="index 4">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="index 5">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="index 6">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="index 7">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="index 8">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="index 9">
<w:lsdexception locked="false" priority="39" semihidden="true" unhidewhenused="true" name="toc 1">
<w:lsdexception locked="false" priority="39" semihidden="true" unhidewhenused="true" name="toc 2">
<w:lsdexception locked="false" priority="39" semihidden="true" unhidewhenused="true" name="toc 3">
<w:lsdexception locked="false" priority="39" semihidden="true" unhidewhenused="true" name="toc 4">
<w:lsdexception locked="false" priority="39" semihidden="true" unhidewhenused="true" name="toc 5">
<w:lsdexception locked="false" priority="39" semihidden="true" unhidewhenused="true" name="toc 6">
<w:lsdexception locked="false" priority="39" semihidden="true" unhidewhenused="true" name="toc 7">
<w:lsdexception locked="false" priority="39" semihidden="true" unhidewhenused="true" name="toc 8">
<w:lsdexception locked="false" priority="39" semihidden="true" unhidewhenused="true" name="toc 9">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Normal Indent">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="footnote text">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="annotation text">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="header">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="footer">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="index heading">
<w:lsdexception locked="false" priority="35" semihidden="true" unhidewhenused="true" qformat="true" name="caption">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="table of figures">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="envelope address">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="envelope return">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="footnote reference">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="annotation reference">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="line number">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="page number">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="endnote reference">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="endnote text">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="table of authorities">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="macro">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="toa heading">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Bullet">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Number">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List 4">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List 5">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Bullet 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Bullet 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Bullet 4">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Bullet 5">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Number 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Number 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Number 4">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Number 5">
<w:lsdexception locked="false" priority="10" qformat="true" name="Title">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Closing">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Signature">
<w:lsdexception locked="false" priority="1" semihidden="true" unhidewhenused="true" name="Default Paragraph Font">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Body Text">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Body Text Indent">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Continue">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Continue 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Continue 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Continue 4">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="List Continue 5">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Message Header">
<w:lsdexception locked="false" priority="11" qformat="true" name="Subtitle">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Salutation">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Date">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Body Text First Indent">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Body Text First Indent 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Note Heading">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Body Text 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Body Text 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Body Text Indent 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Body Text Indent 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Block Text">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Hyperlink">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="FollowedHyperlink">
<w:lsdexception locked="false" priority="22" qformat="true" name="Strong">
<w:lsdexception locked="false" priority="20" qformat="true" name="Emphasis">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Document Map">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Plain Text">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="E-mail Signature">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Top of Form">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Bottom of Form">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Normal (Web)">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Acronym">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Address">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Cite">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Code">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Definition">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Keyboard">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Preformatted">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Sample">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Typewriter">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="HTML Variable">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Normal Table">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="annotation subject">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="No List">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Outline List 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Outline List 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Outline List 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Simple 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Simple 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Simple 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Classic 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Classic 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Classic 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Classic 4">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Colorful 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Colorful 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Colorful 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Columns 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Columns 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Columns 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Columns 4">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Columns 5">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Grid 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Grid 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Grid 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Grid 4">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Grid 5">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Grid 6">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Grid 7">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Grid 8">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table List 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table List 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table List 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table List 4">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table List 5">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table List 6">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table List 7">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table List 8">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table 3D effects 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table 3D effects 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table 3D effects 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Contemporary">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Elegant">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Professional">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Subtle 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Subtle 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Web 1">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Web 2">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Web 3">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Balloon Text">
<w:lsdexception locked="false" priority="39" name="Table Grid">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Table Theme">
<w:lsdexception locked="false" semihidden="true" name="Placeholder Text">
<w:lsdexception locked="false" priority="1" qformat="true" name="No Spacing">
<w:lsdexception locked="false" priority="60" name="Light Shading">
<w:lsdexception locked="false" priority="61" name="Light List">
<w:lsdexception locked="false" priority="62" name="Light Grid">
<w:lsdexception locked="false" priority="63" name="Medium Shading 1">
<w:lsdexception locked="false" priority="64" name="Medium Shading 2">
<w:lsdexception locked="false" priority="65" name="Medium List 1">
<w:lsdexception locked="false" priority="66" name="Medium List 2">
<w:lsdexception locked="false" priority="67" name="Medium Grid 1">
<w:lsdexception locked="false" priority="68" name="Medium Grid 2">
<w:lsdexception locked="false" priority="69" name="Medium Grid 3">
<w:lsdexception locked="false" priority="70" name="Dark List">
<w:lsdexception locked="false" priority="71" name="Colorful Shading">
<w:lsdexception locked="false" priority="72" name="Colorful List">
<w:lsdexception locked="false" priority="73" name="Colorful Grid">
<w:lsdexception locked="false" priority="60" name="Light Shading Accent 1">
<w:lsdexception locked="false" priority="61" name="Light List Accent 1">
<w:lsdexception locked="false" priority="62" name="Light Grid Accent 1">
<w:lsdexception locked="false" priority="63" name="Medium Shading 1 Accent 1">
<w:lsdexception locked="false" priority="64" name="Medium Shading 2 Accent 1">
<w:lsdexception locked="false" priority="65" name="Medium List 1 Accent 1">
<w:lsdexception locked="false" semihidden="true" name="Revision">
<w:lsdexception locked="false" priority="34" qformat="true" name="List Paragraph">
<w:lsdexception locked="false" priority="29" qformat="true" name="Quote">
<w:lsdexception locked="false" priority="30" qformat="true" name="Intense Quote">
<w:lsdexception locked="false" priority="66" name="Medium List 2 Accent 1">
<w:lsdexception locked="false" priority="67" name="Medium Grid 1 Accent 1">
<w:lsdexception locked="false" priority="68" name="Medium Grid 2 Accent 1">
<w:lsdexception locked="false" priority="69" name="Medium Grid 3 Accent 1">
<w:lsdexception locked="false" priority="70" name="Dark List Accent 1">
<w:lsdexception locked="false" priority="71" name="Colorful Shading Accent 1">
<w:lsdexception locked="false" priority="72" name="Colorful List Accent 1">
<w:lsdexception locked="false" priority="73" name="Colorful Grid Accent 1">
<w:lsdexception locked="false" priority="60" name="Light Shading Accent 2">
<w:lsdexception locked="false" priority="61" name="Light List Accent 2">
<w:lsdexception locked="false" priority="62" name="Light Grid Accent 2">
<w:lsdexception locked="false" priority="63" name="Medium Shading 1 Accent 2">
<w:lsdexception locked="false" priority="64" name="Medium Shading 2 Accent 2">
<w:lsdexception locked="false" priority="65" name="Medium List 1 Accent 2">
<w:lsdexception locked="false" priority="66" name="Medium List 2 Accent 2">
<w:lsdexception locked="false" priority="67" name="Medium Grid 1 Accent 2">
<w:lsdexception locked="false" priority="68" name="Medium Grid 2 Accent 2">
<w:lsdexception locked="false" priority="69" name="Medium Grid 3 Accent 2">
<w:lsdexception locked="false" priority="70" name="Dark List Accent 2">
<w:lsdexception locked="false" priority="71" name="Colorful Shading Accent 2">
<w:lsdexception locked="false" priority="72" name="Colorful List Accent 2">
<w:lsdexception locked="false" priority="73" name="Colorful Grid Accent 2">
<w:lsdexception locked="false" priority="60" name="Light Shading Accent 3">
<w:lsdexception locked="false" priority="61" name="Light List Accent 3">
<w:lsdexception locked="false" priority="62" name="Light Grid Accent 3">
<w:lsdexception locked="false" priority="63" name="Medium Shading 1 Accent 3">
<w:lsdexception locked="false" priority="64" name="Medium Shading 2 Accent 3">
<w:lsdexception locked="false" priority="65" name="Medium List 1 Accent 3">
<w:lsdexception locked="false" priority="66" name="Medium List 2 Accent 3">
<w:lsdexception locked="false" priority="67" name="Medium Grid 1 Accent 3">
<w:lsdexception locked="false" priority="68" name="Medium Grid 2 Accent 3">
<w:lsdexception locked="false" priority="69" name="Medium Grid 3 Accent 3">
<w:lsdexception locked="false" priority="70" name="Dark List Accent 3">
<w:lsdexception locked="false" priority="71" name="Colorful Shading Accent 3">
<w:lsdexception locked="false" priority="72" name="Colorful List Accent 3">
<w:lsdexception locked="false" priority="73" name="Colorful Grid Accent 3">
<w:lsdexception locked="false" priority="60" name="Light Shading Accent 4">
<w:lsdexception locked="false" priority="61" name="Light List Accent 4">
<w:lsdexception locked="false" priority="62" name="Light Grid Accent 4">
<w:lsdexception locked="false" priority="63" name="Medium Shading 1 Accent 4">
<w:lsdexception locked="false" priority="64" name="Medium Shading 2 Accent 4">
<w:lsdexception locked="false" priority="65" name="Medium List 1 Accent 4">
<w:lsdexception locked="false" priority="66" name="Medium List 2 Accent 4">
<w:lsdexception locked="false" priority="67" name="Medium Grid 1 Accent 4">
<w:lsdexception locked="false" priority="68" name="Medium Grid 2 Accent 4">
<w:lsdexception locked="false" priority="69" name="Medium Grid 3 Accent 4">
<w:lsdexception locked="false" priority="70" name="Dark List Accent 4">
<w:lsdexception locked="false" priority="71" name="Colorful Shading Accent 4">
<w:lsdexception locked="false" priority="72" name="Colorful List Accent 4">
<w:lsdexception locked="false" priority="73" name="Colorful Grid Accent 4">
<w:lsdexception locked="false" priority="60" name="Light Shading Accent 5">
<w:lsdexception locked="false" priority="61" name="Light List Accent 5">
<w:lsdexception locked="false" priority="62" name="Light Grid Accent 5">
<w:lsdexception locked="false" priority="63" name="Medium Shading 1 Accent 5">
<w:lsdexception locked="false" priority="64" name="Medium Shading 2 Accent 5">
<w:lsdexception locked="false" priority="65" name="Medium List 1 Accent 5">
<w:lsdexception locked="false" priority="66" name="Medium List 2 Accent 5">
<w:lsdexception locked="false" priority="67" name="Medium Grid 1 Accent 5">
<w:lsdexception locked="false" priority="68" name="Medium Grid 2 Accent 5">
<w:lsdexception locked="false" priority="69" name="Medium Grid 3 Accent 5">
<w:lsdexception locked="false" priority="70" name="Dark List Accent 5">
<w:lsdexception locked="false" priority="71" name="Colorful Shading Accent 5">
<w:lsdexception locked="false" priority="72" name="Colorful List Accent 5">
<w:lsdexception locked="false" priority="73" name="Colorful Grid Accent 5">
<w:lsdexception locked="false" priority="60" name="Light Shading Accent 6">
<w:lsdexception locked="false" priority="61" name="Light List Accent 6">
<w:lsdexception locked="false" priority="62" name="Light Grid Accent 6">
<w:lsdexception locked="false" priority="63" name="Medium Shading 1 Accent 6">
<w:lsdexception locked="false" priority="64" name="Medium Shading 2 Accent 6">
<w:lsdexception locked="false" priority="65" name="Medium List 1 Accent 6">
<w:lsdexception locked="false" priority="66" name="Medium List 2 Accent 6">
<w:lsdexception locked="false" priority="67" name="Medium Grid 1 Accent 6">
<w:lsdexception locked="false" priority="68" name="Medium Grid 2 Accent 6">
<w:lsdexception locked="false" priority="69" name="Medium Grid 3 Accent 6">
<w:lsdexception locked="false" priority="70" name="Dark List Accent 6">
<w:lsdexception locked="false" priority="71" name="Colorful Shading Accent 6">
<w:lsdexception locked="false" priority="72" name="Colorful List Accent 6">
<w:lsdexception locked="false" priority="73" name="Colorful Grid Accent 6">
<w:lsdexception locked="false" priority="19" qformat="true" name="Subtle Emphasis">
<w:lsdexception locked="false" priority="21" qformat="true" name="Intense Emphasis">
<w:lsdexception locked="false" priority="31" qformat="true" name="Subtle Reference">
<w:lsdexception locked="false" priority="32" qformat="true" name="Intense Reference">
<w:lsdexception locked="false" priority="33" qformat="true" name="Book Title">
<w:lsdexception locked="false" priority="37" semihidden="true" unhidewhenused="true" name="Bibliography">
<w:lsdexception locked="false" priority="39" semihidden="true" unhidewhenused="true" qformat="true" name="TOC Heading">
<w:lsdexception locked="false" priority="41" name="Plain Table 1">
<w:lsdexception locked="false" priority="42" name="Plain Table 2">
<w:lsdexception locked="false" priority="43" name="Plain Table 3">
<w:lsdexception locked="false" priority="44" name="Plain Table 4">
<w:lsdexception locked="false" priority="45" name="Plain Table 5">
<w:lsdexception locked="false" priority="40" name="Grid Table Light">
<w:lsdexception locked="false" priority="46" name="Grid Table 1 Light">
<w:lsdexception locked="false" priority="47" name="Grid Table 2">
<w:lsdexception locked="false" priority="48" name="Grid Table 3">
<w:lsdexception locked="false" priority="49" name="Grid Table 4">
<w:lsdexception locked="false" priority="50" name="Grid Table 5 Dark">
<w:lsdexception locked="false" priority="51" name="Grid Table 6 Colorful">
<w:lsdexception locked="false" priority="52" name="Grid Table 7 Colorful">
<w:lsdexception locked="false" priority="46" name="Grid Table 1 Light Accent 1">
<w:lsdexception locked="false" priority="47" name="Grid Table 2 Accent 1">
<w:lsdexception locked="false" priority="48" name="Grid Table 3 Accent 1">
<w:lsdexception locked="false" priority="49" name="Grid Table 4 Accent 1">
<w:lsdexception locked="false" priority="50" name="Grid Table 5 Dark Accent 1">
<w:lsdexception locked="false" priority="51" name="Grid Table 6 Colorful Accent 1">
<w:lsdexception locked="false" priority="52" name="Grid Table 7 Colorful Accent 1">
<w:lsdexception locked="false" priority="46" name="Grid Table 1 Light Accent 2">
<w:lsdexception locked="false" priority="47" name="Grid Table 2 Accent 2">
<w:lsdexception locked="false" priority="48" name="Grid Table 3 Accent 2">
<w:lsdexception locked="false" priority="49" name="Grid Table 4 Accent 2">
<w:lsdexception locked="false" priority="50" name="Grid Table 5 Dark Accent 2">
<w:lsdexception locked="false" priority="51" name="Grid Table 6 Colorful Accent 2">
<w:lsdexception locked="false" priority="52" name="Grid Table 7 Colorful Accent 2">
<w:lsdexception locked="false" priority="46" name="Grid Table 1 Light Accent 3">
<w:lsdexception locked="false" priority="47" name="Grid Table 2 Accent 3">
<w:lsdexception locked="false" priority="48" name="Grid Table 3 Accent 3">
<w:lsdexception locked="false" priority="49" name="Grid Table 4 Accent 3">
<w:lsdexception locked="false" priority="50" name="Grid Table 5 Dark Accent 3">
<w:lsdexception locked="false" priority="51" name="Grid Table 6 Colorful Accent 3">
<w:lsdexception locked="false" priority="52" name="Grid Table 7 Colorful Accent 3">
<w:lsdexception locked="false" priority="46" name="Grid Table 1 Light Accent 4">
<w:lsdexception locked="false" priority="47" name="Grid Table 2 Accent 4">
<w:lsdexception locked="false" priority="48" name="Grid Table 3 Accent 4">
<w:lsdexception locked="false" priority="49" name="Grid Table 4 Accent 4">
<w:lsdexception locked="false" priority="50" name="Grid Table 5 Dark Accent 4">
<w:lsdexception locked="false" priority="51" name="Grid Table 6 Colorful Accent 4">
<w:lsdexception locked="false" priority="52" name="Grid Table 7 Colorful Accent 4">
<w:lsdexception locked="false" priority="46" name="Grid Table 1 Light Accent 5">
<w:lsdexception locked="false" priority="47" name="Grid Table 2 Accent 5">
<w:lsdexception locked="false" priority="48" name="Grid Table 3 Accent 5">
<w:lsdexception locked="false" priority="49" name="Grid Table 4 Accent 5">
<w:lsdexception locked="false" priority="50" name="Grid Table 5 Dark Accent 5">
<w:lsdexception locked="false" priority="51" name="Grid Table 6 Colorful Accent 5">
<w:lsdexception locked="false" priority="52" name="Grid Table 7 Colorful Accent 5">
<w:lsdexception locked="false" priority="46" name="Grid Table 1 Light Accent 6">
<w:lsdexception locked="false" priority="47" name="Grid Table 2 Accent 6">
<w:lsdexception locked="false" priority="48" name="Grid Table 3 Accent 6">
<w:lsdexception locked="false" priority="49" name="Grid Table 4 Accent 6">
<w:lsdexception locked="false" priority="50" name="Grid Table 5 Dark Accent 6">
<w:lsdexception locked="false" priority="51" name="Grid Table 6 Colorful Accent 6">
<w:lsdexception locked="false" priority="52" name="Grid Table 7 Colorful Accent 6">
<w:lsdexception locked="false" priority="46" name="List Table 1 Light">
<w:lsdexception locked="false" priority="47" name="List Table 2">
<w:lsdexception locked="false" priority="48" name="List Table 3">
<w:lsdexception locked="false" priority="49" name="List Table 4">
<w:lsdexception locked="false" priority="50" name="List Table 5 Dark">
<w:lsdexception locked="false" priority="51" name="List Table 6 Colorful">
<w:lsdexception locked="false" priority="52" name="List Table 7 Colorful">
<w:lsdexception locked="false" priority="46" name="List Table 1 Light Accent 1">
<w:lsdexception locked="false" priority="47" name="List Table 2 Accent 1">
<w:lsdexception locked="false" priority="48" name="List Table 3 Accent 1">
<w:lsdexception locked="false" priority="49" name="List Table 4 Accent 1">
<w:lsdexception locked="false" priority="50" name="List Table 5 Dark Accent 1">
<w:lsdexception locked="false" priority="51" name="List Table 6 Colorful Accent 1">
<w:lsdexception locked="false" priority="52" name="List Table 7 Colorful Accent 1">
<w:lsdexception locked="false" priority="46" name="List Table 1 Light Accent 2">
<w:lsdexception locked="false" priority="47" name="List Table 2 Accent 2">
<w:lsdexception locked="false" priority="48" name="List Table 3 Accent 2">
<w:lsdexception locked="false" priority="49" name="List Table 4 Accent 2">
<w:lsdexception locked="false" priority="50" name="List Table 5 Dark Accent 2">
<w:lsdexception locked="false" priority="51" name="List Table 6 Colorful Accent 2">
<w:lsdexception locked="false" priority="52" name="List Table 7 Colorful Accent 2">
<w:lsdexception locked="false" priority="46" name="List Table 1 Light Accent 3">
<w:lsdexception locked="false" priority="47" name="List Table 2 Accent 3">
<w:lsdexception locked="false" priority="48" name="List Table 3 Accent 3">
<w:lsdexception locked="false" priority="49" name="List Table 4 Accent 3">
<w:lsdexception locked="false" priority="50" name="List Table 5 Dark Accent 3">
<w:lsdexception locked="false" priority="51" name="List Table 6 Colorful Accent 3">
<w:lsdexception locked="false" priority="52" name="List Table 7 Colorful Accent 3">
<w:lsdexception locked="false" priority="46" name="List Table 1 Light Accent 4">
<w:lsdexception locked="false" priority="47" name="List Table 2 Accent 4">
<w:lsdexception locked="false" priority="48" name="List Table 3 Accent 4">
<w:lsdexception locked="false" priority="49" name="List Table 4 Accent 4">
<w:lsdexception locked="false" priority="50" name="List Table 5 Dark Accent 4">
<w:lsdexception locked="false" priority="51" name="List Table 6 Colorful Accent 4">
<w:lsdexception locked="false" priority="52" name="List Table 7 Colorful Accent 4">
<w:lsdexception locked="false" priority="46" name="List Table 1 Light Accent 5">
<w:lsdexception locked="false" priority="47" name="List Table 2 Accent 5">
<w:lsdexception locked="false" priority="48" name="List Table 3 Accent 5">
<w:lsdexception locked="false" priority="49" name="List Table 4 Accent 5">
<w:lsdexception locked="false" priority="50" name="List Table 5 Dark Accent 5">
<w:lsdexception locked="false" priority="51" name="List Table 6 Colorful Accent 5">
<w:lsdexception locked="false" priority="52" name="List Table 7 Colorful Accent 5">
<w:lsdexception locked="false" priority="46" name="List Table 1 Light Accent 6">
<w:lsdexception locked="false" priority="47" name="List Table 2 Accent 6">
<w:lsdexception locked="false" priority="48" name="List Table 3 Accent 6">
<w:lsdexception locked="false" priority="49" name="List Table 4 Accent 6">
<w:lsdexception locked="false" priority="50" name="List Table 5 Dark Accent 6">
<w:lsdexception locked="false" priority="51" name="List Table 6 Colorful Accent 6">
<w:lsdexception locked="false" priority="52" name="List Table 7 Colorful Accent 6">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Mention">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Smart Hyperlink">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Hashtag">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Unresolved Mention">
<w:lsdexception locked="false" semihidden="true" unhidewhenused="true" name="Smart Link">
</w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:lsdexception></w:latentstyles>
</xml><!--[endif]---->
<style>
<!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;
mso-font-charset:0;
mso-generic-font-family:roman;
mso-font-pitch:variable;
mso-font-signature:-536869121 1107305727 33554432 0 415 0;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;
mso-font-charset:0;
mso-generic-font-family:swiss;
mso-font-pitch:variable;
mso-font-signature:-469750017 -1073732485 9 0 511 0;}
@font-face
{font-family:"open sans bold";
panose-1:0 0 0 0 0 0 0 0 0 0;
mso-font-alt:"Segoe UI";
mso-font-charset:0;
mso-generic-font-family:roman;
mso-font-format:other;
mso-font-pitch:auto;
mso-font-signature:0 0 0 0 0 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-parent:"";
margin-top:0in;
margin-right:0in;
margin-bottom:8.0pt;
margin-left:0in;
line-height:106%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;}
h2
{mso-style-noshow:yes;
mso-style-priority:9;
mso-style-qformat:yes;
mso-style-link:"Heading 2 Char";
mso-margin-top-alt:auto;
margin-right:0in;
mso-margin-bottom-alt:auto;
margin-left:0in;
mso-pagination:widow-orphan;
mso-outline-level:2;
font-size:18.0pt;
font-family:"Times New Roman",serif;
mso-fareast-font-family:"Times New Roman";}
a:link, span.MsoHyperlink
{mso-style-noshow:yes;
mso-style-priority:99;
color:blue;
text-decoration:underline;
text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-noshow:yes;
mso-style-priority:99;
color:#954F72;
mso-themecolor:followedhyperlink;
text-decoration:underline;
text-underline:single;}
span.Heading2Char
{mso-style-name:"Heading 2 Char";
mso-style-noshow:yes;
mso-style-priority:9;
mso-style-unhide:no;
mso-style-locked:yes;
mso-style-link:"Heading 2";
mso-ansi-font-size:18.0pt;
mso-bidi-font-size:18.0pt;
font-family:"Times New Roman",serif;
mso-ascii-font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
mso-hansi-font-family:"Times New Roman";
mso-bidi-font-family:"Times New Roman";
font-weight:bold;}
p.msonormal0, li.msonormal0, div.msonormal0
{mso-style-name:msonormal;
mso-style-unhide:no;
mso-margin-top-alt:auto;
margin-right:0in;
mso-margin-bottom-alt:auto;
margin-left:0in;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman",serif;
mso-fareast-font-family:"Times New Roman";
mso-fareast-theme-font:minor-fareast;}
.MsoChpDefault
{mso-style-type:export-only;
mso-default-props:yes;
font-size:10.0pt;
mso-ansi-font-size:10.0pt;
mso-bidi-font-size:10.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:Calibri;
mso-fareast-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;}
@page WordSection1
{size:8.5in 11.0in;
margin:1.0in 1.0in 1.0in 1.0in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;}
div.WordSection1
{page:WordSection1;}
-->
</style>
<!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin:0in;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;}
</style>
<![endif]--><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
<div class="WordSection1">
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;mso-line-height-alt:
14.4pt;mso-outline-level:2;background:white;vertical-align:baseline"><b><span style="font-size:15.0pt;font-family:"open sans bold",serif;mso-fareast-font-family:
"Times New Roman";mso-bidi-font-family:"Times New Roman";color:#222222;
letter-spacing:-.15pt">PRIVACY POLICY<o:p></o:p></span></b></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><b><span style="font-size:12.0pt;font-family:
"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#222222">Last
updated August 5, 2020</span></b><b><span style="font-size:12.0pt;font-family:
"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:white"><br>
</span></b><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><br>
This privacy policy (Policy) explains our policy regarding the
collection, use, disclosure and transfer of your information by Spren (
referred to as the "Company"), which operates various application,
websites, including sub-sites, platforms, applications, m-web platforms and
other platforms (collectively referred to as Application) for delivery of
information, products, offerings and content via any mobile or internet
connected device or otherwise (collectively the "Services"). This
Policy forms part and parcel of the Terms of Use and other terms on the Application(Terms
of Use). Capitalized terms which have been used here but are undefined shall
have the same meaning as attributed to them in the Terms of Use.</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:white"><br style="mso-special-character:line-break">
<!--[if !supportLineBreakNewLine]--><br style="mso-special-character:line-break">
<!--[endif]--><o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222">When you use our
services, youre trusting us with your information. We understand that this is
a big responsibility and we work hard to protect your information and put you
in control. This Privacy Policy is meant to help you understand what
information we collect, why we collect it and how you can update, manage,
export and delete your information</span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:white"><br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">This Privacy Policy is applicable to persons
who installs, browse or uses the Services (User). For the purpose of this
Policy, wherever the context so requires "you" or "your"
shall mean User and the term "we", "us", "our"
shall mean Spren .</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:white"><br>
<br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">As we update, improve and expand the Services,
this Policy may change, so please refer back to it periodically. By accessing
and using the Sites or otherwise using the Services, you consent to collection,
storage, and use of the personal information you provide (including any changes
thereto as provided by you) for any of the Services that we provide.</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:white"><br>
<br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">We respects the privacy of the Users using the
Services and is committed to protect it in all respects. The information about
the User as collected by the Company is:</span><span style="font-size:12.0pt;
font-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";
color:white"><o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><span style="mso-spacerun:yes"> </span>(a) information supplied by Users <o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><span style="mso-spacerun:yes"> </span>(b) information automatically tracked while
using services<o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><span style="mso-spacerun:yes"> </span>(c) information collected voluntarily Help
Us Improve<o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><span style="mso-spacerun:yes"> </span>(collectively referred to as Information).</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:white"><br>
<br>
</span><b><u><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222">1. INFORMATION
RECEIVED, COLLECTED AND STORED BY US</span></u></b><span style="font-size:12.0pt;
font-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";
color:white"><br>
<br>
<br>
<br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">A. <b>INFORMATION SUPPLIED BY USERS</b></span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:white"><br>
<br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">Registration data:</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:white"><br>
<br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">When you register on the Sites for the
Service, we ask that you to provide basic contact information such as your
name, email address. When you register using your Gmail accounts, we shall
retrieve Information from such account to continue to interact with you and to
continue providing the Services.<o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222">The information
provided by you during registration is only sent to Google for authentication
and is only stored on your device and not stored on our servers.</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:white"><br>
<br>
<br>
</span><b><u><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222">B. INFORMATION
AUTOMATICALLY COLLECTED/ TRACKED WHILE USING SERVICES</span></u></b><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:white"><br>
<br style="mso-special-character:line-break">
<!--[if !supportLineBreakNewLine]--><br style="mso-special-character:line-break">
<!--[endif]--><o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><b><span style="font-size:13.5pt;color:black">Spren
App Configuration</span></b><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<br style="font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;
text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-style: initial;
text-decoration-color: initial;word-spacing:0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><span style="font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;
text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-style: initial;
text-decoration-color: initial;float:none;word-spacing:0px">During Application
start after agreeing to our Terms and Conditions we get the latest
configuration from our servers for all the installed applications on the phone.
This requires sending us the list of apps that are installed on the phone.This
allows us to block promotional notifications and group chat notification from
the user. <o:p></o:p></span></span>
</span></p><p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222">The App checks for the
latest configuration from our servers once every 24 hours.<o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222">The list of
application name sent by you is not stored or logged on our servers. No other
user information including userid is sent during this. <br>
<br>
<b>Analytics services</b></span><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<br>
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"></span>We use Google
Firebase and Analytics to track the user behaviour on our Application. Google
Analytics specifically has been enabled to support gaining understanding of the
usage patterns of the service and improving the service accordingly. The
reports are anonymous and cannot be associated with any individual personally
identifiable information that you may have shared with us. <o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:13.5pt;color:black"><br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222"><span style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">Certain types of information is automatically collected via
Google Firebase this includes Mobile ad IDs, IDFVs/Android IDs, Instance IDs,
and Analytics App Instance IDs. Additionally we take Channel Name, Package Name
of the App of the Notification that was received by our user.</span><o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222">Channel Name, Package
Name helps us to improve the blocking promotional and group chat notifications
functionality of the app.</span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222">Google Analytics Data
Retention Policy <o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222">All data collected in
the Google Analytics platform is stored for 90 days and deleted after that.<o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><b><span style="font-size:13.5pt;color:black">c)</span></b><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222"> </span><b><span style="font-size:13.5pt;
color:black">Information collected voluntarily- Help Us Improve - Spren
Improvement Program</span></b><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<br style="font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;
text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-style: initial;
text-decoration-color: initial;word-spacing:0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"></span><span style="font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;
text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-style: initial;
text-decoration-color: initial;float:none;word-spacing:0px">The User during
"Sign up" or by going to the App settings -> "HELP US
IMPROVE" section can agree or disagree to signing up to the Spren
Improvement Program.</span><o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><br>
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">The user by agreeing to participate in "Spren
Improvement Program" allows the Application to send us anonymous data
along with Notifications text to our servers for below mentioned categories
which are enabled by default but can be changed by the user at any time.<br>
</span><span style="font-size:13.5pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:black"></span><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">Promotional Formats<br>
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">OTP Formats</span><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">Transaction Formats</span><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">Order formats</span><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">Appointment formats</span><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">Trip Alert formats</span><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">Bill formats</span><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
</span><span style="font-size:13.5pt;color:black"><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222"><span style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">The user at all time while using the App can withdraw from
the "Spren Improvement Program" by going to the Settings - > Help
us Improve section of the application and unchecking the agreement to send data
anonymously</span></span><span style="font-size:13.5pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:black">.</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222"><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<br style="font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;
text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-style: initial;
text-decoration-color: initial;word-spacing:0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">The user at all time while using the App can change the
categories that they want to share by going to the Settings -> Help us
Improve section of the application and unchecking the formats that they dont
want to send us.</span><br style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<br style="font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;
text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-style: initial;
text-decoration-color: initial;word-spacing:0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">Any Changes done to the above configuration would reflect
instantly or after next app start</span><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<br style="font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;
text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-style: initial;
text-decoration-color: initial;word-spacing:0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">The User can also manually report individual notification as
Promotional format, Otp format, transaction format, Order Formats, Bill
Formats, Trip alert formats, Content Promotional formats by clicking on the
notification details options available inside the application. The Full List of
options will always be shown to the user before sending.</span><br style="mso-special-character:line-break;font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<!--[if !supportLineBreakNewLine]--><br style="mso-special-character:line-break">
<!--[endif]--></span><span style="font-size:13.5pt;color:black"><o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><b><span style="font-size:12.0pt;font-family:
"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#222222">Obfiscation
<o:p></o:p></span></b></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:13.5pt;color:black"><br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222"><span style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">All The data sent through sections "Analytics
Services", "Help us Improve" from app removes all PII
information like name, email, phone , account details, Balance etc and makes
all data anonymous before sending it to us.</span><br style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;word-spacing:
0px">
<br style="font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;
text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-style: initial;
text-decoration-color: initial;word-spacing:0px">
<span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">For Example Notification with text as </span><o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><b><span style="font-size:12.0pt;font-family:
"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#222222">"Dear
John, Your Order no is 123456"</span></b><span style="font-size:12.0pt;
font-family:"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";
color:#222222"><span style="font-variant-ligatures: normal;font-variant-caps: normal;
orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px"> <o:p></o:p></span>
</span>
</p><p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222">before sending it to
us becomes </span><span style="color:#222222"><o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><b><span style="font-size:12.0pt;font-family:
"Arial",sans-serif;mso-fareast-font-family:"Times New Roman";color:#222222">"Dear
[name], Your Order no is {num}{num}{num}{num}{num}{num}"</span></b><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222"><span style="font-variant-ligatures: normal;
font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;
text-decoration-style: initial;text-decoration-color: initial;float:none;
word-spacing:0px">.</span><o:p></o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:13.5pt;color:black"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:#222222"><o:p> </o:p></span></p>
<p class="MsoNormal" style="margin-bottom:0in;margin-bottom:.0001pt;line-height:
19.2pt;vertical-align:baseline"><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:white"><br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">INTERACTION / LINKS TO THIRD PARTY APPLICATION</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:white"><br>
<br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">The Service during use contains links (
Notifications ) to other application that have been installed on the device by
the user. The privacy policy of these applications may differ from ours. If you
can't find the privacy policy of any of these applications via a link from the
application's homepage, you should contact the application owners directly for
more information.</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;
mso-fareast-font-family:"Times New Roman";color:white"><br>
<br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">INFORMATION USE BY THE COMPANY</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:white"><br>
<br>
</span><span style="font-size:12.0pt;font-family:"Arial",sans-serif;mso-fareast-font-family:
"Times New Roman";color:#222222">The information as supplied by the users