-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
2432 lines (2419 loc) · 238 KB
/
Copy pathprivacy.html
File metadata and controls
2432 lines (2419 loc) · 238 KB
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
<html>
<head>
<title>Privacy Policy</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="I am a software engineer, maker, and Christ follower.">
<meta name="author" content="Jacob Rhoda">
</head>
<body>
<style>
[data-custom-class='body'],
[data-custom-class='body'] * {
background: transparent !important;
}
[data-custom-class='title'],
[data-custom-class='title'] * {
font-family: Arial !important;
font-size: 26px !important;
color: #000000 !important;
}
[data-custom-class='subtitle'],
[data-custom-class='subtitle'] * {
font-family: Arial !important;
color: #595959 !important;
font-size: 14px !important;
}
[data-custom-class='heading_1'],
[data-custom-class='heading_1'] * {
font-family: Arial !important;
font-size: 19px !important;
color: #000000 !important;
}
[data-custom-class='heading_2'],
[data-custom-class='heading_2'] * {
font-family: Arial !important;
font-size: 17px !important;
color: #000000 !important;
}
[data-custom-class='body_text'],
[data-custom-class='body_text'] * {
color: #595959 !important;
font-size: 14px !important;
font-family: Arial !important;
}
[data-custom-class='link'],
[data-custom-class='link'] * {
color: #3030F1 !important;
font-size: 14px !important;
font-family: Arial !important;
word-break: break-word !important;
}
</style>
<span
style="display: block;margin: 0 auto 3.125rem;width: 11.125rem;height: 2.375rem;background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAxNzggMzgiPgogICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8cGF0aCBmaWxsPSIjRDFEMUQxIiBkPSJNNC4yODMgMjQuMTA3Yy0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY2LS43NjhoLS4wODVjLjA1Ny41MDIuMDg2Ljc5Mi4wODYuODd2Mi40MzRILjk4NXYtOC42NDhoMS4zMzJsLjIzMS43NzloLjA3NmMuMzgzLS41OTQuOTUtLjg5MiAxLjcwMi0uODkyLjcxIDAgMS4yNjQuMjc0IDEuNjY1LjgyMi40MDEuNTQ4LjYwMiAxLjMwOS42MDIgMi4yODMgMCAuNjQtLjA5NCAxLjE5OC0uMjgyIDEuNjctLjE4OC40NzMtLjQ1Ni44MzMtLjgwMyAxLjA4LS4zNDcuMjQ3LS43NTYuMzctMS4yMjUuMzd6TTMuOCAxOS4xOTNjLS40MDUgMC0uNy4xMjQtLjg4Ni4zNzMtLjE4Ny4yNDktLjI4My42Ni0uMjkgMS4yMzN2LjE3N2MwIC42NDUuMDk1IDEuMTA3LjI4NyAxLjM4Ni4xOTIuMjguNDk1LjQxOS45MS40MTkuNzM0IDAgMS4xMDEtLjYwNSAxLjEwMS0xLjgxNiAwLS41OS0uMDktMS4wMzQtLjI3LTEuMzI5LS4xODItLjI5NS0uNDY1LS40NDMtLjg1Mi0uNDQzem01LjU3IDEuNzk0YzAgLjU5NC4wOTggMS4wNDQuMjkzIDEuMzQ4LjE5Ni4zMDQuNTEzLjQ1Ny45NTQuNDU3LjQzNyAwIC43NS0uMTUyLjk0Mi0uNDU0LjE5Mi0uMzAzLjI4OC0uNzUzLjI4OC0xLjM1MSAwLS41OTUtLjA5Ny0xLjA0LS4yOS0xLjMzOC0uMTk0LS4yOTctLjUxLS40NDUtLjk1LS40NDUtLjQzOCAwLS43NTMuMTQ3LS45NDYuNDQzLS4xOTQuMjk1LS4yOS43NDItLjI5IDEuMzR6bTQuMTUzIDBjMCAuOTc3LS4yNTggMS43NDItLjc3NCAyLjI5My0uNTE1LjU1Mi0xLjIzMy44MjctMi4xNTQuODI3LS41NzYgMC0xLjA4NS0uMTI2LTEuNTI1LS4zNzhhMi41MiAyLjUyIDAgMCAxLTEuMDE1LTEuMDg4Yy0uMjM3LS40NzMtLjM1NS0xLjAyNC0uMzU1LTEuNjU0IDAtLjk4MS4yNTYtMS43NDQuNzY4LTIuMjg4LjUxMi0uNTQ1IDEuMjMyLS44MTcgMi4xNi0uODE3LjU3NiAwIDEuMDg1LjEyNiAxLjUyNS4zNzYuNDQuMjUxLjc3OS42MSAxLjAxNSAxLjA4LjIzNi40NjkuMzU1IDEuMDE5LjM1NSAxLjY0OXpNMTkuNzEgMjRsLS40NjItMi4xLS42MjMtMi42NTNoLS4wMzdMMTcuNDkzIDI0SDE1LjczbC0xLjcwOC02LjAwNWgxLjYzM2wuNjkzIDIuNjU5Yy4xMS40NzYuMjI0IDEuMTMzLjMzOCAxLjk3MWguMDMyYy4wMTUtLjI3Mi4wNzctLjcwNC4xODgtMS4yOTRsLjA4Ni0uNDU3Ljc0Mi0yLjg3OWgxLjgwNGwuNzA0IDIuODc5Yy4wMTQuMDc5LjAzNy4xOTUuMDY3LjM1YTIwLjk5OCAyMC45OTggMCAwIDEgLjE2NyAxLjAwMmMuMDIzLjE2NS4wMzYuMjk5LjA0LjM5OWguMDMyYy4wMzItLjI1OC4wOS0uNjExLjE3Mi0xLjA2LjA4Mi0uNDUuMTQxLS43NTQuMTc3LS45MTFsLjcyLTIuNjU5aDEuNjA2TDIxLjQ5NCAyNGgtMS43ODN6bTcuMDg2LTQuOTUyYy0uMzQ4IDAtLjYyLjExLS44MTcuMzMtLjE5Ny4yMi0uMzEuNTMzLS4zMzguOTM3aDIuMjk5Yy0uMDA4LS40MDQtLjExMy0uNzE3LS4zMTctLjkzNy0uMjA0LS4yMi0uNDgtLjMzLS44MjctLjMzem0uMjMgNS4wNmMtLjk2NiAwLTEuNzIyLS4yNjctMi4yNjYtLjgtLjU0NC0uNTM0LS44MTYtMS4yOS0uODE2LTIuMjY3IDAtMS4wMDcuMjUxLTEuNzg1Ljc1NC0yLjMzNC41MDMtLjU1IDEuMTk5LS44MjUgMi4wODctLjgyNS44NDggMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDcyLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MSAwIC43MDMtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45Mi4zMmE1Ljc5IDUuNzkgMCAwIDEtMS4xOTEuMTA0em03LjI1My02LjIyNmMuMjIyIDAgLjQwNi4wMTYuNTUzLjA0OWwtLjEyNCAxLjUzNmExLjg3NyAxLjg3NyAwIDAgMC0uNDgzLS4wNTRjLS41MjMgMC0uOTMuMTM0LTEuMjIyLjQwMy0uMjkyLjI2OC0uNDM4LjY0NC0uNDM4IDEuMTI4VjI0aC0xLjYzOHYtNi4wMDVoMS4yNGwuMjQyIDEuMDFoLjA4Yy4xODctLjMzNy40MzktLjYwOC43NTYtLjgxNGExLjg2IDEuODYgMCAwIDEgMS4wMzQtLjMwOXptNC4wMjkgMS4xNjZjLS4zNDcgMC0uNjIuMTEtLjgxNy4zMy0uMTk3LjIyLS4zMS41MzMtLjMzOC45MzdoMi4yOTljLS4wMDctLjQwNC0uMTEzLS43MTctLjMxNy0uOTM3LS4yMDQtLjIyLS40OC0uMzMtLjgyNy0uMzN6bS4yMyA1LjA2Yy0uOTY2IDAtMS43MjItLjI2Ny0yLjI2Ni0uOC0uNTQ0LS41MzQtLjgxNi0xLjI5LS44MTYtMi4yNjcgMC0xLjAwNy4yNTEtMS43ODUuNzU0LTIuMzM0LjUwNC0uNTUgMS4yLS44MjUgMi4wODctLjgyNS44NDkgMCAxLjUxLjI0MiAxLjk4Mi43MjUuNDczLjQ4NC43MDkgMS4xNTIuNzA5IDIuMDA0di43OTVoLTMuODczYy4wMTguNDY1LjE1Ni44MjkuNDE0IDEuMDkuMjU4LjI2MS42Mi4zOTIgMS4wODUuMzkyLjM2MiAwIC43MDQtLjAzNyAxLjAyNi0uMTEzYTUuMTMzIDUuMTMzIDAgMCAwIDEuMDEtLjM2djEuMjY4Yy0uMjg3LjE0My0uNTkzLjI1LS45MTkuMzJhNS43OSA1Ljc5IDAgMCAxLTEuMTkyLjEwNHptNS44MDMgMGMtLjcwNiAwLTEuMjYtLjI3NS0xLjY2My0uODIyLS40MDMtLjU0OC0uNjA0LTEuMzA3LS42MDQtMi4yNzggMC0uOTg0LjIwNS0xLjc1Mi42MTUtMi4zMDEuNDEtLjU1Ljk3NS0uODI1IDEuNjk1LS44MjUuNzU1IDAgMS4zMzIuMjk0IDEuNzI5Ljg4MWguMDU0YTYuNjk3IDYuNjk3IDAgMCAxLS4xMjQtMS4xOTh2LTEuOTIyaDEuNjQ0VjI0SDQ2LjQzbC0uMzE3LS43NzloLS4wN2MtLjM3Mi41OTEtLjk0Ljg4Ni0xLjcwMi44ODZ6bS41NzQtMS4zMDZjLjQyIDAgLjcyNi0uMTIxLjkyMS0uMzY1LjE5Ni0uMjQzLjMwMi0uNjU3LjMyLTEuMjR2LS4xNzhjMC0uNjQ0LS4xLTEuMTA2LS4yOTgtMS4zODYtLjE5OS0uMjc5LS41MjItLjQxOS0uOTctLjQxOWEuOTYyLjk2MiAwIDAgMC0uODUuNDY1Yy0uMjAzLjMxLS4zMDQuNzYtLjMwNCAxLjM1IDAgLjU5Mi4xMDIgMS4wMzUuMzA2IDEuMzMuMjA0LjI5Ni40OTYuNDQzLjg3NS40NDN6bTEwLjkyMi00LjkyYy43MDkgMCAxLjI2NC4yNzcgMS42NjUuODMuNC41NTMuNjAxIDEuMzEyLjYwMSAyLjI3NSAwIC45OTItLjIwNiAxLjc2LS42MiAyLjMwNC0uNDE0LjU0NC0uOTc3LjgxNi0xLjY5LjgxNi0uNzA1IDAtMS4yNTgtLjI1Ni0xLjY1OS0uNzY4aC0uMTEzbC0uMjc0LjY2MWgtMS4yNTF2LTguMzU3aDEuNjM4djEuOTQ0YzAgLjI0Ny0uMDIxLjY0My0uMDY0IDEuMTg3aC4wNjRjLjM4My0uNTk0Ljk1LS44OTIgMS43MDMtLjg5MnptLS41MjcgMS4zMWMtLjQwNCAwLS43LjEyNS0uODg2LjM3NC0uMTg2LjI0OS0uMjgzLjY2LS4yOSAxLjIzM3YuMTc3YzAgLjY0NS4wOTYgMS4xMDcuMjg3IDEuMzg2LjE5Mi4yOC40OTUuNDE5LjkxLjQxOS4zMzcgMCAuNjA1LS4xNTUuODA0LS40NjUuMTk5LS4zMS4yOTgtLjc2LjI5OC0xLjM1IDAtLjU5MS0uMS0xLjAzNS0uMy0xLjMzYS45NDMuOTQzIDAgMCAwLS44MjMtLjQ0M3ptMy4xODYtMS4xOTdoMS43OTRsMS4xMzQgMy4zNzljLjA5Ni4yOTMuMTYzLjY0LjE5OCAxLjA0MmguMDMzYy4wMzktLjM3LjExNi0uNzE3LjIzLTEuMDQybDEuMTEyLTMuMzc5aDEuNzU3bC0yLjU0IDYuNzczYy0uMjM0LjYyNy0uNTY2IDEuMDk2LS45OTcgMS40MDctLjQzMi4zMTItLjkzNi40NjgtMS41MTIuNDY4LS4yODMgMC0uNTYtLjAzLS44MzMtLjA5MnYtMS4zYTIuOCAyLjggMCAwIDAgLjY0NS4wN2MuMjkgMCAuNTQzLS4wODguNzYtLjI2Ni4yMTctLjE3Ny4zODYtLjQ0NC41MDgtLjgwM2wuMDk2LS4yOTUtMi4zODUtNS45NjJ6Ii8+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzMpIj4KICAgICAgICAgICAgPGNpcmNsZSBjeD0iMTkiIGN5PSIxOSIgcj0iMTkiIGZpbGw9IiNFMEUwRTAiLz4KICAgICAgICAgICAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTIyLjQ3NCAxNS40NDNoNS4xNjJMMTIuNDM2IDMwLjRWMTAuMzYzaDE1LjJsLTUuMTYyIDUuMDh6Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxwYXRoIGZpbGw9IiNEMkQyRDIiIGQ9Ik0xMjEuNTQ0IDE0LjU2di0xLjcyOGg4LjI3MnYxLjcyOGgtMy4wMjRWMjRoLTIuMjR2LTkuNDRoLTMuMDA4em0xMy43NDQgOS41NjhjLTEuMjkgMC0yLjM0MS0uNDE5LTMuMTUyLTEuMjU2LS44MS0uODM3LTEuMjE2LTEuOTQ0LTEuMjE2LTMuMzJzLjQwOC0yLjQ3NyAxLjIyNC0zLjMwNGMuODE2LS44MjcgMS44NzItMS4yNCAzLjE2OC0xLjI0czIuMzYuNDAzIDMuMTkyIDEuMjA4Yy44MzIuODA1IDEuMjQ4IDEuODggMS4yNDggMy4yMjQgMCAuMzEtLjAyMS41OTctLjA2NC44NjRoLTYuNDY0Yy4wNTMuNTc2LjI2NyAxLjA0LjY0IDEuMzkyLjM3My4zNTIuODQ4LjUyOCAxLjQyNC41MjguNzc5IDAgMS4zNTUtLjMyIDEuNzI4LS45NmgyLjQzMmEzLjg5MSAzLjg5MSAwIDAgMS0xLjQ4OCAyLjA2NGMtLjczNi41MzMtMS42MjcuOC0yLjY3Mi44em0xLjQ4LTYuNjg4Yy0uNC0uMzUyLS44ODMtLjUyOC0xLjQ0OC0uNTI4cy0xLjAzNy4xNzYtMS40MTYuNTI4Yy0uMzc5LjM1Mi0uNjA1LjgyMS0uNjggMS40MDhoNC4xOTJjLS4wMzItLjU4Ny0uMjQ4LTEuMDU2LS42NDgtMS40MDh6bTcuMDE2LTIuMzA0djEuNTY4Yy41OTctMS4xMyAxLjQ2MS0xLjY5NiAyLjU5Mi0xLjY5NnYyLjMwNGgtLjU2Yy0uNjcyIDAtMS4xNzkuMTY4LTEuNTIuNTA0LS4zNDEuMzM2LS41MTIuOTE1LS41MTIgMS43MzZWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnptNi40NDggMHYxLjMyOGMuNTY1LS45NyAxLjQ4My0xLjQ1NiAyLjc1Mi0xLjQ1Ni42NzIgMCAxLjI3Mi4xNTUgMS44LjQ2NC41MjguMzEuOTM2Ljc1MiAxLjIyNCAxLjMyOC4zMS0uNTU1LjczMy0uOTkyIDEuMjcyLTEuMzEyYTMuNDg4IDMuNDg4IDAgMCAxIDEuODE2LS40OGMxLjA1NiAwIDEuOTA3LjMzIDIuNTUyLjk5Mi42NDUuNjYxLjk2OCAxLjU5Ljk2OCAyLjc4NFYyNGgtMi4yNHYtNC44OTZjMC0uNjkzLS4xNzYtMS4yMjQtLjUyOC0xLjU5Mi0uMzUyLS4zNjgtLjgzMi0uNTUyLTEuNDQtLjU1MnMtMS4wOS4xODQtMS40NDguNTUyYy0uMzU3LjM2OC0uNTM2Ljg5OS0uNTM2IDEuNTkyVjI0aC0yLjI0di00Ljg5NmMwLS42OTMtLjE3Ni0xLjIyNC0uNTI4LTEuNTkyLS4zNTItLjM2OC0uODMyLS41NTItMS40NC0uNTUycy0xLjA5LjE4NC0xLjQ0OC41NTJjLS4zNTcuMzY4LS41MzYuODk5LS41MzYgMS41OTJWMjRoLTIuMjU2di04Ljg2NGgyLjI1NnpNMTY0LjkzNiAyNFYxMi4xNmgyLjI1NlYyNGgtMi4yNTZ6bTcuMDQtLjE2bC0zLjQ3Mi04LjcwNGgyLjUyOGwyLjI1NiA2LjMwNCAyLjM4NC02LjMwNGgyLjM1MmwtNS41MzYgMTMuMDU2aC0yLjM1MmwxLjg0LTQuMzUyeiIvPgogICAgPC9nPgo8L3N2Zz4K) center no-repeat;"></span>
<div data-custom-class="body">
<div><strong><span style="font-size: 26px;"><span data-custom-class="title">
<bdt class="block-component"></bdt>
<bdt class="question">
<h1>PRIVACY POLICY</h1>
</bdt>
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></strong></div>
<div><span style="color: rgb(127, 127, 127);"><strong><span style="font-size: 15px;"><span
data-custom-class="subtitle">Last updated <bdt class="question">June 25, 2025</bdt>
</span></span></strong></span></div>
<div><br></div>
<div><br></div>
<div><br></div>
<div style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text">This Privacy Notice for
<bdt class="question noTranslate">Jacob Rhoda</bdt>
<bdt class="block-component"></bdt>
</bdt> (<bdt class="block-component"></bdt>"<strong>we</strong>," "<strong>us</strong>," or
"<strong>our</strong>"<bdt class="statement-end-if-in-editor"></bdt>
</span><span data-custom-class="body_text">), describes how and why we might access, collect, store, use,
and/or
share (<bdt class="block-component"></bdt>"<strong>process</strong>"<bdt class="statement-end-if-in-editor">
</bdt>) your personal information when you use our services (<bdt class="block-component"></bdt>
"<strong>Services</strong>"<bdt class="statement-end-if-in-editor"></bdt>), including when
you:</span></span></span><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span></span></span></span></span></li>
</ul>
<div>
<bdt class="block-component"><span style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span></span></span></bdt>
</div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">Download and use<bdt
class="block-component"></bdt> our mobile application
<bdt class="block-component"></bdt> (<bdt class="question">Covfamikoi Conference App)<span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor">,</bdt>
</span></span></span></span></span></span></span></span></bdt>
</span><span data-custom-class="body_text"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor">
<bdt class="block-component"> or any other application of ours that links to this Privacy
Notice</bdt>
</bdt>
</span></span></span></span></span></span></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
</li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span></span></div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">Engage with us in
other related ways, including any sales, marketing, or events<span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></span></span></span></span></span></span></li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
data-custom-class="body_text"><strong>Questions or concerns? </strong>Reading this Privacy Notice will
help you understand your privacy rights and choices. We are responsible for making decisions about how
your personal information is processed. If you do not agree with our policies and practices, please do
not
use our Services.<bdt class="block-component"></bdt> If you still have any questions or concerns, please
contact us at <bdt class="question noTranslate">privacy@jadar.net</bdt>.</span></span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><strong><span style="font-size: 15px;"><span data-custom-class="heading_1">
<h2>SUMMARY OF KEY POINTS</h2>
</span></span></strong></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span
data-custom-class="body_text"><strong><em>This
summary provides key points from our Privacy Notice, but you can find out more details about any of
these topics by clicking the link following each key point or by using
our </em></strong></span></span><a data-custom-class="link" href="#toc"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text"><strong><em>table of
contents</em></strong></span></span></a><span style="font-size: 15px;"><span
data-custom-class="body_text"><strong><em> below to find the section you are looking
for.</em></strong></span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>What
personal information do we process?</strong> When you visit, use, or navigate our Services, we may
process
personal information depending on how you interact with us and the Services, the choices you make, and the
products and features you use. Learn more about </span></span><a data-custom-class="link"
href="#personalinfo"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
data-custom-class="body_text">personal information you disclose to us</span></span></a><span
data-custom-class="body_text">.</span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>Do we
process any sensitive personal information? </strong>Some of the information may be considered <bdt
class="block-component"></bdt>"special" or "sensitive"<bdt class="statement-end-if-in-editor"></bdt> in
certain jurisdictions, for example your racial or ethnic origins, sexual orientation, and religious
beliefs.
<bdt class="block-component"></bdt>We do not process sensitive personal information.<bdt
class="else-block">
</bdt>
</span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>Do we
collect any information from third parties?</strong>
<bdt class="block-component"></bdt>We do not collect any information from third parties.<bdt
class="else-block"></bdt>
</span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do
we process your information?</strong> We process your information to provide, improve, and administer
our
Services, communicate with you, for security and fraud prevention, and to comply with law. We may also
process your information for other purposes with your consent. We process your information only when we
have
a valid legal reason to do so. Learn more about </span></span><a data-custom-class="link"
href="#infouse"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
data-custom-class="body_text">how
we process your information</span></span></a><span data-custom-class="body_text">.</span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>In
what
situations and with which <bdt class="block-component"></bdt>parties do we share personal
information?</strong> We may share information in specific situations and with specific <bdt
class="block-component"></bdt>third parties. Learn more about </span></span><a data-custom-class="link"
href="#whoshare"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
data-custom-class="body_text">when and with whom we share your personal
information</span></span></a><span style="font-size: 15px;"><span data-custom-class="body_text">.<bdt
class="block-component"></bdt>
</span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>What
are
your rights?</strong> Depending on where you are located geographically, the applicable privacy law may
mean you have certain rights regarding your personal information. Learn more about </span></span><a
data-custom-class="link" href="#privacyrights"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
data-custom-class="body_text">your privacy rights</span></span></a><span
data-custom-class="body_text">.</span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do
you exercise your rights?</strong> The easiest way to exercise your rights is by <bdt
class="block-component">submitting a </bdt></span></span><a data-custom-class="link"
href="https://app.termly.io/notify/63119f81-d95e-4378-81ac-c763d441132b" rel="noopener noreferrer"
target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
data-custom-class="body_text">data subject access request</span></span></a><span
style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>, or by contacting us. We will consider and act upon any request in
accordance with applicable data protection laws.
</span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text">Want to learn
more about what we do with any information we collect? </span></span><a data-custom-class="link"
href="#toc"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
data-custom-class="body_text">Review
the Privacy Notice in full</span></span></a><span style="font-size: 15px;"><span
data-custom-class="body_text">.</span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><br></div>
<div id="toc" style="line-height: 1.5;"><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span style="color: rgb(0, 0, 0);"><strong><span
data-custom-class="heading_1">
<h2>TABLE OF CONTENTS</h2>
</span></strong></span></span></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link"
href="#infocollect"><span style="color: rgb(0, 58, 250);">1. WHAT INFORMATION DO WE
COLLECT?</span></a></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infouse"><span
style="color: rgb(0, 58, 250);">2. HOW DO WE PROCESS YOUR INFORMATION?<bdt class="block-component">
</bdt>
</span></a></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(0, 58, 250);"><a
data-custom-class="link" href="#whoshare">3. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL
INFORMATION?</a></span><span data-custom-class="body_text">
<bdt class="block-component"></bdt></a><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></span></span></span>
<bdt class="block-component"></bdt>
</span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);"><span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></span>
<bdt class="block-component"></bdt>
</span></span></span></span></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link"
href="#inforetain"><span style="color: rgb(0, 58, 250);">4. HOW LONG DO WE KEEP YOUR
INFORMATION?</span></a><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span></span></span></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link"
href="#infominors"><span style="color: rgb(0, 58, 250);">5. DO WE COLLECT INFORMATION FROM
MINORS?</span></a><span style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></span></span></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(0, 58, 250);"><a
data-custom-class="link" href="#privacyrights">6. WHAT ARE YOUR PRIVACY RIGHTS?</a></span></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#DNT"><span
style="color: rgb(0, 58, 250);">7. CONTROLS FOR DO-NOT-TRACK FEATURES<bdt class="block-component"></bdt>
</span></a></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#uslaws"><span
style="color: rgb(0, 58, 250);">8. DO UNITED STATES RESIDENTS HAVE SPECIFIC PRIVACY
RIGHTS?</span></a></span>
<bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></span></bdt>
</span>
</div>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></span></bdt>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link"
href="#policyupdates"><span style="color: rgb(0, 58, 250);">9. DO WE MAKE UPDATES TO THIS
NOTICE?</span></a></span></div>
<div style="line-height: 1.5;"><a data-custom-class="link" href="#contact"><span
style="color: rgb(0, 58, 250); font-size: 15px;">10. HOW CAN YOU CONTACT US ABOUT THIS NOTICE?</span></a>
</div>
<div style="line-height: 1.5;"><a data-custom-class="link" href="#request"><span
style="color: rgb(0, 58, 250);">11. HOW CAN YOU REVIEW, UPDATE, OR DELETE THE DATA WE COLLECT FROM
YOU?</span></a></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><br></div>
<div id="infocollect" style="line-height: 1.5;"><span style="color: rgb(0, 0, 0);"><span
style="color: rgb(0, 0, 0); font-size: 15px;"><span style="font-size: 15px; color: rgb(0, 0, 0);"><span
style="font-size: 15px; color: rgb(0, 0, 0);"><span id="control"
style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_1">
<h2>1. WHAT INFORMATION DO WE COLLECT?</h2>
</span></strong></span></span></span></span></span><span data-custom-class="heading_2"
id="personalinfo" style="color: rgb(0, 0, 0);"><span style="font-size: 15px;"><strong>
<h3>Personal information you disclose to us</h3>
</strong></span></span><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong><em>In
Short:</em></strong></span></span></span></span><span data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em> </em></strong><em>We collect personal information that
you provide to us.</em></span></span></span></span></span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">We collect personal
information that you voluntarily provide to us when you <span style="font-size: 15px;">
<bdt class="block-component"></bdt>
</span></span><span data-custom-class="body_text">express an interest in obtaining information about us
or
our products and Services, when you participate in activities on the Services, or otherwise when you
contact us.</span></span></span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="font-size: 15px;">
<bdt class="block-component"></bdt>
</span></span></span></span></span></div>
<div id="sensitiveinfo" style="line-height: 1.5;"><span style="font-size: 15px;"><span
data-custom-class="body_text"><strong>Sensitive Information.</strong>
<bdt class="block-component"></bdt>We do not process sensitive information.
</span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="else-block"></bdt>
</span></span><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component">
<bdt class="block-component"></bdt>
</bdt>
</span></span></span></span>
<bdt class="block-component">
<bdt class="block-component"></bdt>
</bdt>
</div>
<div style="line-height: 1.5;"><span data-custom-class="body_text"><span
style="font-size: 15px;"><strong>Application Data.</strong> If you use our application(s), we also may
collect the following information if you choose to provide us with access or permission:<bdt
class="block-component"></bdt></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></bdt>
</span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size: 15px;"><span
data-custom-class="body_text"><em>Mobile Device Data.</em> We automatically collect device
information
(such as your mobile device ID, model, and manufacturer), operating system, version information and
system configuration information, device and application identification numbers, browser type and
version, hardware model Internet service provider and/or mobile carrier, and Internet Protocol (IP)
address (or proxy server). If you are using our application(s), we may also collect information
about
the phone network associated with your mobile device, your mobile device’s operating system or
platform, the type of mobile device you use, your mobile device’s unique device ID, and information
about the features of our application(s) you accessed.<bdt class="statement-end-if-in-editor"></bdt>
</span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></bdt>
</span></span></li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text">This
information is primarily needed to maintain the security and operation of our application(s), for
troubleshooting, and for our internal analytics and reporting purposes.</span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;">
<bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">All personal
information that you provide to us must be true, complete, and accurate, and you must notify us of
any changes to such personal information.</span></span></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span><span data-custom-class="heading_2" style="color: rgb(0, 0, 0);"><span
style="font-size: 15px;"><strong>
<h3>Information automatically collected</h3>
</strong></span></span><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em>In
Short:</em></strong></span></span></span></span><span
data-custom-class="body_text"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em> </em></strong><em>Some information — such as your
Internet Protocol (IP) address and/or browser and device characteristics — is collected
automatically when you visit our Services.</em></span></span></span></span></span></span>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">We
automatically
collect certain information when you visit, use, or navigate the Services. This information does
not
reveal your specific identity (like your name or contact information) but may include device and
usage information, such as your IP address, browser and device characteristics, operating system,
language preferences, referring URLs, device name, country, location, information about how and
when
you use our Services, and other technical information. This information is primarily needed to
maintain the security and operation of our Services, and for our internal analytics and reporting
purposes.</span></span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component">
</span></bdt></span><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">The information
we collect includes:<bdt class="block-component"></bdt></span></span></span></div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><em>Log and
Usage Data.</em> Log and usage data is service-related, diagnostic, usage, and performance
information our servers automatically collect when you access or use our Services and which we
record in log files. Depending on how you interact with us, this log data may include your IP
address, device information, browser type, and settings and information about your activity in
the
Services<span style="font-size: 15px;"> </span>(such as the date/time stamps associated with
your
usage, pages and files viewed, searches, and other actions you take such as which features you
use), device event information (such as system activity, error reports (sometimes called <bdt
class="block-component"></bdt>"crash dumps"<bdt class="statement-end-if-in-editor"></bdt>),
and
hardware settings).<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></span></span></span></span></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><em>Device
Data.</em> We collect device data such as information about your computer, phone, tablet, or
other device you use to access the Services. Depending on the device used, this device data may
include information such as your IP address (or proxy server), device and application
identification numbers, location, browser type, hardware model, Internet service provider and/or
mobile carrier, operating system, and system configuration information.<span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></span></span></span></span></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></bdt>
</span></span></span></span></span></span></span></span></li>
</ul>
<div>
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
</bdt>
<bdt class="statement-end-if-in-editor"></bdt>
</bdt></span></span></span>
<bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><strong><span
data-custom-class="heading_2">
<h3>Google API</h3>
</span></strong><span data-custom-class="body_text">Our use of information received from Google
APIs
will adhere to </span></span><a data-custom-class="link"
href="https://developers.google.com/terms/api-services-user-data-policy" rel="noopener noreferrer"
target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
data-custom-class="body_text">Google API Services User Data Policy</span></span></a><span
style="font-size: 15px;"><span data-custom-class="body_text">, including the </span></span><a
data-custom-class="link"
href="https://developers.google.com/terms/api-services-user-data-policy#limited-use"
rel="noopener noreferrer" target="_blank"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">Limited Use
requirements</span></span></a><span style="font-size: 15px;"><span
data-custom-class="body_text">.</span><br></span></div>
<div><span style="font-size: 15px;"><br></span></div>
<div style="line-height: 1.5;">
<bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"></span></bdt><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="statement-end-if-in-editor">
<bdt class="block-component"></bdt>
</bdt>
</span></span></span></span></bdt>
</span></span></span></span></span></span></span></span><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</div>
<div style="line-height: 1.5;"><br></div>
<div id="infouse" style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span id="control"
style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_1">
<h2>2. HOW DO WE PROCESS YOUR INFORMATION?</h2>
</span></strong></span></span></span><span data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em>In Short: </em></strong><em>We process your
information to provide, improve, and administer our Services, communicate with you, for
security and fraud prevention, and to comply with law.<bdt class="block-component">
</bdt>
We may also process your information for other purposes <bdt class="block-component">
</bdt>with your<bdt class="statement-end-if-in-editor"></bdt>
consent.</em></span></span></span></span></span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong>We
process your personal information for a variety of reasons, depending on how you interact with
our Services, including:</strong>
<bdt class="block-component"></bdt>
</span></span></span></span></span></span></span></span></span></span></span></span></li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong>To
deliver and facilitate delivery of services to the user. </strong>We may process your
information to provide you with the requested service.<span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong>To respond to user inquiries/offer support to
users. </strong>We may process your information to respond to your inquiries and solve
any
potential issues you might have with the requested service.<span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></span></span></span></span></span></span></span></span></span></span>
</li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
</span></span></span></span></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
</span></span></span></span></span></span></span></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
</span></span></span></span></span></span></span></span></span></span></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</li>
</ul>
<p style="font-size: 15px; line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
</span></span></span></span></span></span></span></span></span></span></span></li>
</ul>
<p style="font-size: 15px; line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
</span></span></span></span></span></span></span></span></span></span></span></li>
</ul>
<p style="font-size: 15px; line-height: 1.5;">
<bdt class="block-component"></bdt>
</span></span></span></span></span></span></span></span></span></span></span></li>
</ul>
<p style="font-size: 15px; line-height: 1.5;">
<bdt class="block-component"></bdt>
</span></span></span></span></span></span></span></span></span></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></bdt></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
</span></span></span>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
</span></span></span></li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px;">
<bdt class="block-component"><span data-custom-class="body_text"></bdt>
</span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></bdt></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><strong>To evaluate and improve our
Services, products, marketing, and your experience.</strong> We
may process your information when we believe it is necessary to
identify usage trends, determine the effectiveness of our
promotional campaigns, and to evaluate and improve our Services,
products, marketing, and your experience.</span></span>
<bdt class="statement-end-if-in-editor"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><strong>To identify usage
trends.</strong>
We may process information about how you use our Services to
better
understand how they are being used so we can improve
them.</span></span>
<bdt class="statement-end-if-in-editor"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></bdt></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></bdt></span></span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;"><span
data-custom-class="body_text"><strong>To comply with our
legal
obligations.</strong> We may process your information to
comply with our legal obligations, respond to legal
requests,
and exercise, establish, or defend our legal rights.<bdt
class="statement-end-if-in-editor"></bdt></span></span>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
<bdt class="block-component"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></bdt></span></span>
<bdt class="block-component"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
<bdt class="block-component"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</div>
<div style="line-height: 1.5;"><br></div>
<div id="whoshare" style="line-height: 1.5;"><span
style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
id="control"
style="color: rgb(0, 0, 0);"><strong><span
data-custom-class="heading_1">
<h2>3. WHEN AND WITH WHOM DO WE SHARE YOUR
PERSONAL
INFORMATION?</h2>
</span></strong></span></span></span></span></span><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em>In
Short:</em></strong><em> We may share information in
specific situations described in this section and/or
with
the following <bdt class="block-component"></bdt>third
parties.</em></span></span></span></div>
<div style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component">
</span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span
style="font-size: 15px;"><span
data-custom-class="body_text">We <bdt
class="block-component">
</bdt>may need to share your personal information in the
following situations:</span></span></div>
<ul>
<li data-custom-class="body_text" style="line-height: 1.5;">
<span style="font-size: 15px;"><span
data-custom-class="body_text"><strong>Business
Transfers.</strong> We may share or transfer your
information in connection with, or during negotiations of,
any merger, sale of company assets, financing, or
acquisition of all or a portion of our business to another
company.</span></span></li>
</ul>
<div style="line-height: 1.5;"><span
style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px;">
<bdt class="block-component"><span
data-custom-class="body_text"></span></bdt>
</span></li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></bdt></span></span>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
<span data-custom-class="body_text"><span
style="font-size: 15px;">
<bdt class="block-component"></bdt>
</span></span>
<bdt class="statement-end-if-in-editor"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></span></span></bdt>
</li>
</ul>
<div style="line-height: 1.5;">
<bdt class="block-component"><span
style="font-size: 15px;"><span
data-custom-class="body_text"></span></span>
</bdt>
<span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"><span
data-custom-class="heading_1">
<bdt class="block-component"></bdt>
</span>
</span></span></span></span></span></span></span></span></span><span
style="font-size: 15px;">
<bdt class="block-component"></bdt>
</span><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component">
</bdt>
</span>
<bdt class="block-component"><span
data-custom-class="body_text">
<bdt class="block-component">
</bdt>
</span>
</span></span></span></span></span></span></span></span></span></span></span></span>
</div>
<div style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"></span></span></span></span></span></span></span></span></span></span></span></span></span><br>
</div>
<div id="inforetain" style="line-height: 1.5;"><span
style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
id="control"
style="color: rgb(0, 0, 0);"><strong><span
data-custom-class="heading_1">
<h2>4. HOW LONG DO WE KEEP YOUR
INFORMATION?</h2>
</span></strong></span></span></span></span></span><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em>In
Short: </em></strong><em>We keep your
information for as long as necessary to <bdt
class="block-component"></bdt>fulfill<bdt
class="statement-end-if-in-editor"></bdt>
the
purposes outlined in this Privacy Notice
unless
otherwise required by
law.</em></span></span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">We will only keep
your personal information for as long as it is
necessary for the purposes set out in this
Privacy
Notice, unless a longer retention period is
required or permitted by law (such as tax,
accounting, or other legal requirements).<bdt
class="block-component"></span></span></span>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">When we have no
ongoing legitimate business need to process your
personal information, we will either delete or
<bdt class="block-component"></bdt>anonymize<bdt
class="statement-end-if-in-editor"></bdt> such
information, or, if this is not possible (for
example, because your personal information has
been stored in backup archives), then we will
securely store your personal information and
isolate it from any further processing until
deletion is possible.<span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span></span></span></div>
<div style="line-height: 1.5;"><br></div>
<div id="infominors" style="line-height: 1.5;"><span
style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
id="control"
style="color: rgb(0, 0, 0);"><strong><span
data-custom-class="heading_1">
<h2>5. DO WE COLLECT INFORMATION FROM
MINORS?</h2>
</span></strong></span></span></span></span></span><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em>In
Short:</em></strong><em> We do not knowingly
collect data from or market to <bdt
class="block-component"></bdt>children under
18 years of age<bdt class="block-component">
</bdt>
<bdt class="else-block"></bdt>.
</em>
<bdt class="block-component"></bdt>
</span></span></span></div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">We do not
knowingly
collect, solicit data from, or market to
children
under 18 years of age<bdt
class="block-component">
</bdt>, nor do we knowingly sell such personal
information. By using the Services, you
represent
that you are at least 18<bdt
class="block-component"></bdt> or that you are
the parent or guardian of such a minor and