-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathprivacy.html
1706 lines (1694 loc) · 193 KB
/
privacy.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
---
layout: acklen
title: Privacy policy
description: "Acklen Avenue Privacy Policy"
---
<header class="page-header page-header--ourwork">
{% include menu.html %}
<h1>Privacy Policy
</h1>
<h2>Last updated July 21, 2020</h2>
</header>
<div style="max-width: 1100px; padding: 70px 20px; margin: 0 auto;">
<div>
<p style="font-size: 15px; line-height: 1.5;"><br></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">Thank you
for choosing to be part of our community at <bdt class="question">Acklen Avenue
Software, LLC</bdt>
<bdt class="block-component"></bdt>, doing business as <bdt class="question">Acklen
Avenue</bdt>
<bdt class="statement-end-if-in-editor"></bdt> (“<bdt class="block-component"></bdt>
<bdt class="question"><strong>Acklen Avenue</strong></bdt>
<bdt class="else-block"></bdt>”, “<strong>we</strong>”, “<strong>us</strong>”, or
“<strong>our</strong>”). We are committed to protecting your personal information and
your right to privacy. If you have any questions or concerns about this privacy notice,
or our practices with regards to your personal information, please contact us at <bdt
class="question">[email protected]</bdt>.
</span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">When you
<bdt class="block-component"></bdt>visit our website <bdt class="question"><a
href="http://acklenavenue.com" target="_blank"
data-custom-class="link">http://acklenavenue.com</a></bdt> (the
"<strong>Website</strong>"), <bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt> and more generally, use any of our services (the
"<strong>Services</strong>", which include the <span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
<bdt class="block-component"></bdt>
</span></span>
</span><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 data-custom-class="body_text">), we appreciate that
you are trusting us with your personal information. We take your privacy very seriously.
In this privacy notice, we seek to explain to you in the clearest way possible what
information we collect, how we use it and what rights you have in relation to it. We
hope you take some time to read through it carefully, as it is important. If there are
any terms in this privacy notice<span style="color: rgb(89, 89, 89);"> </span>that you
do not agree with, please discontinue use of our Services immediately.</span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">This
privacy notice applies to all information collected through our Services (which, as
described above, includes our <bdt class="block-component"></bdt>Website<span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
<bdt class="block-component">
<bdt class="block-component"></bdt>
</span></span></span><span data-custom-class="body_text">), as well as any related services,
sales, marketing or events.</span></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">Please read this privacy notice<span
style="color: rgb(89, 89, 89);"> </span>carefully as it will help you
understand what we do with the information that we
collect.</span></strong></span></p>
<p style="font-size: 15px; line-height: 1.5;"><span style="color: rgb(89, 89, 89);"><br></span></p>
<p style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span style="font-size: 19px;"><span data-custom-class="heading_1">TABLE OF CONTENTS</span></span></strong></span></p>
<ul style="list-style: none;">
<li><a data-custom-class="link" href="#infocollect">1. WHAT INFORMATION DO WE COLLECT?</a></li>
<li><a data-custom-class="link" href="#infouse">2.HOW DO WE USE YOUR INFORMATION?</a></li>
<li><a data-custom-class="link"href="#infoshare">3. WILL YOUR INFORMATION BE SHARED WITH ANYONE?</a></li>
<li><a data-custom-class="link" href="#cookies">4. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?</a></li>
<li><a data-custom-class="link" href="#sociallogins">5. HOW DO WE HANDLE YOUR SOCIAL LOGINS?</a></li>
<li><a data-custom-class="link" href="#intltransfers">6. IS YOUR INFORMATION TRANSFERRED INTERNATIONALLY?</a></li>
<li><a data-custom-class="link" href="#inforetain">7. HOW LONG DO WE KEEP YOUR INFORMATION?</a></li>
<li><a data-custom-class="link" href="#infosafe">8.
HOW DO WE KEEP YOUR INFORMATION SAFE?</a></li>
<li><a data-custom-class="link" href="#infominors">9. DO WE COLLECT INFORMATION FROM MINORS?</a></li>
<li><a data-custom-class="link" href="#privacyrights">10. WHAT ARE YOUR PRIVACY RIGHTS?</span></a></li>
<li><a data-custom-class="link" href="#DNT">11.
CONTROLS FOR DO-NOT-TRACK FEATURES</a></li>
<li><a data-custom-class="link" href="#caresidents">12. DO CALIFORNIA RESIDENTS HAVE SPECIFIC PRIVACY
RIGHTS?</span></a></li>
<li><a data-custom-class="link" href="#policyupdates">13. DO WE MAKE UPDATES TO THIS NOTICE?</a></li>
<li><a data-custom-class="link" href="#contact">14. HOW CAN YOU CONTACT US ABOUT THIS NOTICE?</a></li>
</ul>
</div>
<p style="font-size: 15px;"><strong><span style="font-size: 19px;"><span data-custom-class="heading_2"><strong><span
data-custom-class="heading_2"><br>1. INFORMATION AUTOMATICALLY COLLECTED</span></strong></span></span></strong></p>
<div>
<span data-custom-class="body_text"><em><strong>In Short: </strong>Some information — such as your Internet
Protocol (IP) address and/or browser and device characteristics — is collected automatically
when you visit our <span data-custom-class="body_text"><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span></span>.</em></span>
</div>
<div><span data-custom-class="body_text">We automatically collect certain information when you visit, use or navigate
the <span style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>. 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 who and when you use our <span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span> and other technical information. This information is primarily needed to maintain
the security and operation of our <span style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>, and for our internal analytics and reporting purposes.</span>
<bdt class="block-component"></bdt>
</div>
<div><span data-custom-class="body_text">Like many businesses, we also collect information through cookies and similar
technologies. <bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span>
<bdt class="statement-end-if-in-editor"><span data-custom-class="body_text"></span></bdt>
<bdt class="block-component"></bdt>
</div>
<div><span data-custom-class="body_text">The information we collect includes:</span>
<bdt class="block-component"></bdt>
</div>
<ul>
<li><span style="font-size: 15px;"><span style="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 <span
style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span> 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 <span
style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></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 'crash dumps') and hardware
settings).</span></span></span><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></li>
</ul>
<ul>
<li><span data-custom-class="body_text">
<font color="#595959"><span style="font-size: 15px;"><em>Device Data. </em>We collect device
data such as information about your computer, phone, tablet or other device you
use to access the </span></font><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>
<font color="#595959"><span style="font-size: 15px;">. Depending on the device used, this device
data may include information such as your IP address (or proxy server), device
application identification numbers, location, browser type, hardware model
Internet service provider and/or mobile carrier, operating system
configuration information.</span></font>
</span><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></li>
</ul>
<div>
<bdt class="block-component"></bdt>
</div>
<ul>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><em>Location Data.</em> We collect information
data such as information about your device's location, which can be either
precise or imprecise. How much information we collect depends on the type of
settings of the device you use to access the <span
style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>. For example, we may use GPS and other technologies to
collect geolocation data that tells us your current location (based on your IP
address). You can opt out of allowing us to collect this information either by
refusing access to the information or by disabling your Locations settings on
your device. Note however, if you choose to opt out, you may not be able to use
certain aspects of the Services.</span></span></span><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></li>
</ul>
<div>
<bdt class="block-component"></bdt>
</bdt>
<bdt class="statement-end-if-in-editor"></bdt><span data-custom-class="body_text"><span
style="font-size: 15px;">
<bdt class="statement-end-if-in-editor">
<bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor">
<bdt class="statement-end-if-in-editor">
<bdt class="block-component">
</bdt>
</bdt>
</span></span></span></span><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>
<bdt class="block-component"></bdt>
</p>
<p style="font-size: 15px; line-height: 1.5;"><br></p>
<p id="infouse" style="font-size: 15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">2. HOW DO WE USE
YOUR INFORMATION?</span></span></strong></span></p>
<p style="font-size: 15px;"><span data-custom-class="body_text"><em><strong>In Short: </strong>We process your
information for purposes based on legitimate business interests, the fulfillment of our
contract with you, compliance with our legal obligations, and/or your
consent.</em></span></p>
<p style="font-size: 15px;"><span data-custom-class="body_text">We use personal information collected via our
<span style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span> for a variety of business purposes described below. We process your
personal information for these purposes in reliance on our legitimate business interests, in
order to enter into or perform a contract with you, with your consent, and/or for compliance
with our legal obligations. We indicate the specific processing grounds we rely on next to each
purpose listed below.</span>
<bdt class="block-component"></bdt>
</p>
<p style="font-size: 15px;"><span data-custom-class="body_text">We use the information we collect or
receive:</span>
<bdt class="block-component"></bdt>
</p>
<ul>
<li><span data-custom-class="body_text"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">To facilitate
account creation and logon
process.</span></strong><span
data-custom-class="body_text"> If you choose to link
your account with us to a third-party account (such as
your Google or Facebook account), we use the information
you allowed us to collect from those third parties to
facilitate account creation and logon process for the
performance of the contract. <bdt
class="block-component"></bdt>See the section
below headed "</span></span></span><span
data-custom-class="body_text"><a data-custom-class="link"
href="#sociallogins"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">HOW DO WE HANDLE
YOUR SOCIAL LOGINS</span></span></a></span><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">" for further
information.<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><br><br></span>
</li>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">To post
testimonials.</span></strong><span
data-custom-class="body_text"> We post testimonials on our <span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span></span> that may contain personal
information. Prior to posting a testimonial, we will obtain your consent
to use your name and the consent of the testimonial. If you wish to
update, or delete your testimonial, please contact us at <bdt
class="block-component"></bdt>
<bdt class="question">[email protected]</bdt>
<bdt class="else-block"></bdt> and be sure to include your name,
testimonial location, and contact information.
</span></span></span><span data-custom-class="body_text"><br><br></span></li>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">Request
feedback.</span></strong><span data-custom-class="body_text"> We
may use your information to request feedback and to contact you about
your use of our <span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span></span>.</span></span></span><span
data-custom-class="body_text"><br><br></span></li>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">To enable user-to-user
communications.</span></strong><span
data-custom-class="body_text"> We may use your information in order to
enable user-to-user communications with each user's
consent.</span></span></span><span
data-custom-class="body_text"><br><br></span></li>
<li><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
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><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
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><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
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><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
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"><strong>To
manage
user
accounts</strong>.
We
may
use
your
information
for
the
purposes
of
managing
our
account
and
keeping
it
in
working
order.</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</li>
</ul>
<p style="font-size: 15px;">
<bdt class="block-component"></bdt>
</p>
<ul>
<li><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><strong><span
data-custom-class="body_text">To send administrative information
to you. </span></strong><span data-custom-class="body_text">We
may use your personal information to send you product, service and new
feature information and/or information about changes to our terms,
conditions, and policies.</span></span><br><br></span></li>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">To protect our
Services.</span></strong><span data-custom-class="body_text"> We
may use your information as part of our efforts to keep our <span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span></span> safe and secure (for example, for
fraud monitoring and prevention).</span></span></span><span
data-custom-class="body_text"><br><br></span></li>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">To enforce our terms, conditions
and policies for business purposes, to comply with legal and
regulatory requirements or in connection with our
contract.</span></strong></span></span><span
data-custom-class="body_text"><br><br></span></li>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">To respond to legal requests and
prevent harm. </span></strong><span
data-custom-class="body_text">If we receive a subpoena or other legal
request, we may need to inspect the data we hold to determine how to
respond.</span></span></span>
<bdt class="statement-end-if-in-editor"></bdt>
</li>
</ul>
<p style="font-size: 15px;">
<bdt class="block-component"></bdt>
</li>
</ul>
<p style="font-size: 15px;">
<bdt class="block-component"></bdt>
</li>
</ul>
<p style="font-size: 15px;">
<bdt class="block-component"></bdt>
</li>
</ul>
<p style="font-size: 15px;">
<bdt class="block-component">
<bdt class="statement-end-if-in-editor"></bdt>
</bdt>
</p>
<p style="font-size: 15px;"><br></p>
<p id="infoshare" style="font-size:15px;"><span style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span data-custom-class="heading_1">3. WILL YOUR
INFORMATION BE SHARED WITH ANYONE?</span></span></strong></span></p>
<p style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span data-custom-class="body_text">We only share
information with your consent, to comply with laws, to provide you with
services, to protect your rights, or to fulfill business
obligations.</span></em></span></span></p>
<div><span style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text">We may process
or share your data that we hold based on the following legal basis:</span></span></div>
<ul>
<li><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><strong>Consent:</strong> We
may process your data if you have given us specific consent to use your personal
information in a specific purpose.</span><br><br></span></li>
<li><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><strong>Legitimate
Interests:</strong> We may process your data when it is reasonably
necessary to achieve our legitimate business interests.</span><br><br></span>
</li>
<li><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><strong>Performance of a
Contract: </strong>Where we have entered into a contract with you, we
may process your personal information to fulfill the terms of our
contract.</span><br><br></span></li>
<li><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><strong>Legal
Obligations:</strong> We may disclose your information where we are
legally required to do so in order to comply with applicable law, governmental
requests, a judicial proceeding, court order, or legal process, such as in
response to a court order or a subpoena (including in response to public
authorities to meet national security or law enforcement
requirements).</span><br><br></span></li>
<li><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text"><strong>Vital Interests:</strong> We may disclose
your information where we believe it is necessary to investigate, prevent, or
take action regarding potential violations of our policies, suspected fraud,
situations involving potential threats to the safety of any person and illegal
activities, or as evidence in litigation in which we are involved.</span></span>
</li>
</ul>
<p style="font-size:15px;"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">More specifically, we may need to process your
data or share your personal information in the following
situations:</span></span></span></p>
<ul>
<li><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><strong><span
data-custom-class="body_text">Business
Transfers.</span></strong><span
data-custom-class="body_text"> 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></span></li>
</ul>
<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span></span></li>
</ul>
<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span></span></bdt></span></span></span></span></span>
</li>
</ul>
<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></span></span></span></span></li>
</ul>
<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span></span></li>
</ul>
<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></span></span></span></li>
</ul>
<span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component">
</bdt>
</span></span></span></span></span></li>
</ul>
<div><span style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span><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"></span>
</bdt>
</span></span></span></span></span>
</div>
<p style="font-size:15px;"><br></p>
<div><span id="cookies" style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span
data-custom-class="heading_1">4.
DO WE USE COOKIES AND
OTHER TRACKING
TECHNOLOGIES?</span></span></strong></span>
</div>
<p style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span
data-custom-class="body_text">We
may use cookies and
other tracking
technologies to collect
and store your
information.</span></em></span></span>
</p>
<p style="font-size: 15px;"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">We may use
cookies and similar tracking
technologies (like web beacons and
pixels) to access or store information.
Specific information about how we use
such technologies and how you can refuse
certain cookies is set out in our Cookie
Notice<bdt class="block-component">
</bdt>.</span><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="statement-end-if-in-editor">
</bdt>
</span><span
data-custom-class="body_text">
<bdt
class="block-component">
</bdt>
<bdt
class="block-component">
</bdt>
</span></span></span></span></span></span></span></span>
</p>
<p style="font-size: 15px; line-height: 1.5;"><span
style="color: rgb(89, 89, 89);"><br></span></p>
<p id="sociallogins" style="font-size:15px;"><span
style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span
data-custom-class="heading_1">5.
HOW DO WE HANDLE YOUR
SOCIAL
LOGINS?</span></span></strong></span>
</p>
<p style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span
data-custom-class="body_text">If
you choose to register
or log in to our
services using a social
media account, we may
have access to certain
information about
you.</span></em></span></span>
</p>
<p style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">Our
<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="block-component">
</bdt>
Website
<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt
class="block-component">
</bdt>
<bdt
class="block-component">
</bdt>
</span></span></span></span></span></span>
offers you the ability to
register and login using your
third-party social media account
details (like your Facebook or
Twitter logins). Where you
choose to do this, we will
receive certain profile
information about you from your
social media provider. The
profile Information we receive
may vary depending on the social
media provider concerned, but
will often include your name,
email address, friends list,
profile picture as well as other
information you choose to make
public on such social media
platform. <bdt
class="block-component">
</span></bdt>
</span></span></span></span></p>
<p style="font-size: 15px;"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">We will
use the information we receive only for
the purposes that are described in this
privacy notice<span
style="color: rgb(89, 89, 89);"> </span>or
that are otherwise made clear to you on
the relevant <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="block-component">
</bdt>
Website
<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt
class="block-component">
</bdt>
<bdt
class="block-component">
</bdt>
</span></span></span></span></span></span>.
Please note that we do not control, and
are not responsible for, other uses of
your personal information by your
third-party social media provider. We
recommend that you review their privacy
notice to understand how they collect,
use and share your personal information,
and how you can set your privacy
preferences on their sites and
apps.</span><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="statement-end-if-in-editor">
</bdt>
</span>
<bdt
class="block-component">
<span
data-custom-class="body_text">
<bdt
class="block-component">
</bdt>
</span>
</bdt>
</span></span></span></span></span></span></span></span>
</p>
<p style="font-size: 15px; line-height: 1.5;"><span
style="color: rgb(89, 89, 89);"><br></span></p>
<p id="intltransfers" style="font-size:15px;"><span
style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span
data-custom-class="heading_1">6.
IS YOUR INFORMATION
TRANSFERRED
INTERNATIONALLY?</span></span></strong></span>
</p>
<p style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span
data-custom-class="body_text">We
may transfer, store, and
process your information
in countries other than
your
own.</span></em></span></span>
</p>
<p style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">Our
servers are located in<bdt
class="forloop-component">
</bdt>. If you are accessing our
<span
style="color: rgb(89, 89, 89); font-size: 15px;"><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="block-component">
</bdt>
Website
<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt
class="block-component">
</bdt>
<bdt
class="block-component">
</bdt>
</span></span></span></span></span></span></span></span>
from outside<bdt
class="forloop-component">
</bdt>, please be aware that
your information may be
transferred to, stored, and
processed by us in our
facilities and by those third
parties with whom we may share
your personal information (see
"</span></span></span><span
data-custom-class="body_text"><a
data-custom-class="link"
href="#infoshare"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">WILL
YOUR INFORMATION BE
SHARED WITH
ANYONE?</span></span></a></span><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">"
above), in<bdt
class="forloop-component">
</bdt> and other
countries.</span></span></span>
</p>
<p style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">If
you are a resident in the
European Economic Area, then
these countries may not
necessarily have data protection
laws or other similar laws as
comprehensive as those in your
country. We will however take
all necessary measures to
protect your personal
information in accordance with
this privacy notice<span
style="color: rgb(89, 89, 89);"> </span>and
applicable law.<bdt
class="block-component">
</bdt></span></span></span>
<bdt class="block-component"></bdt></span></span>
<bdt class="block-component"></bdt>
</span></span></span><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">
<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt
class="block-component">
</span>
</bdt>
</span></span></span></span></span></span></span></span>
</p>
<p style="font-size: 15px; line-height: 1.5;"><span
style="color: rgb(89, 89, 89);"><br></span></p>
<p id="inforetain" style="font-size:15px;"><span
style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span
data-custom-class="heading_1">7.
HOW LONG DO WE KEEP YOUR
INFORMATION?</span></span></strong></span>
</p>
<p style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span
data-custom-class="body_text">We
keep your information
for as long as necessary
to fulfill the purposes
outlined in this privacy
notice<span
style="color: rgb(89, 89, 89);"> </span>unless
otherwise required by
law.</span></em></span></span>
</p>
<p style="font-size: 15px;"><span style="font-size: 15px;"><span
style="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). No
purpose in this notice will
require us keeping your personal
information for longer than <bdt
class="block-component">
</bdt></span></span></span><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
<bdt class="question">six (6)</bdt> months past
the termination of the user's account<bdt
class="block-component"></bdt>
</span><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="else-block"></bdt>.
</span></span></span></p>
<p style="font-size: 15px;"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">When we
have no ongoing legitimate business need
to process your personal information, we
will either delete or anonymize 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></span><span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></p>
<p id="infosafe" style="font-size:15px;"><span
style="color: rgb(0, 0, 0);"><strong><span
style="font-size: 19px;"><span
data-custom-class="heading_1">8.
HOW DO WE KEEP YOUR
INFORMATION
SAFE?</span></span></strong></span>
</p>
<p style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><strong><em><span
style="font-size: 15px;"><span
data-custom-class="body_text">In
Short:</span></span> </em> </strong><span
style="font-size: 15px;"><em><span
data-custom-class="body_text">We
aim to protect your
personal information
through a system of
organizational and
technical security
measures.</span></em></span></span>
</p>
<p style="font-size: 15px;"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">We have
implemented appropriate technical and
organizational security measures
designed to protect the security of any
personal information we process.
However, despite our safeguards and
efforts to secure your information, no
electronic transmission over the
Internet or information storage
technology can be guaranteed to be 100%
secure, so we cannot promise or
guarantee that hackers, cybercriminals,
or other unauthorized third parties will
not be able to defeat our security, and
improperly collect, access, steal, or
modify your information. Although we
will do our best to protect your
personal information, transmission of
personal information to and from our
<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="block-component">
</bdt>
Website
<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt
class="block-component">
</bdt>
<bdt
class="block-component">
</bdt>
</span></span></span></span></span></span>
is at your own risk. You should only
access the <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="block-component">
</bdt>
Website
<bdt
class="statement-end-if-in-editor">
</bdt>