-
Notifications
You must be signed in to change notification settings - Fork 0
/
terms.html
2648 lines (2636 loc) · 219 KB
/
terms.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
<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>
<div data-custom-class="body">
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="title" style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 19px;"></bdt>
<bdt class="question"><strong>TERMS AND CONDITIONS</strong></bdt>
<bdt class="statement-end-if-in-editor"></bdt></span>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="subtitle" style="line-height: 1.5;"><strong>Last
updated</strong>
<bdt class="question"><strong>May 05, 2023</strong></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.1;"><br></div>
<div class="MsoNormal" style="line-height: 115%;"><br></div>
<div class="MsoNormal" style="line-height: 115%;"><br></div>
<div style="line-height: 1.5;"><strong><span data-custom-class="heading_1">AGREEMENT TO OUR LEGAL
TERMS</span></strong></div>
</div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" id="agreement" style="line-height: 1.5;"><a name="_6aa3gkhykvst"></a></div>
</div>
<div align="center" style="line-height: 1;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">We are <bdt
class="block-container question question-in-editor" data-id="9d459c4e-c548-e5cb-7729-a118548965d2"
data-type="question">Hazel
Mollusk Consulting Group, LLC</bdt>
<bdt class="block-component"></bdt> (<bdt class="block-component"></bdt>
"<strong>Company</strong>," "<strong>we</strong>," "<strong>us</strong>,"
"<strong>our</strong>"<bdt class="statement-end-if-in-editor"></bdt>)<span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">
<bdt class="question">
<bdt class="block-component"></bdt>
</bdt><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">
<bdt class="block-component"></bdt>
</span>, a company registered in<bdt class="block-component">
</bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt> <span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">
<bdt class="question">Massachusetts</bdt>, <bdt class="question">United States</bdt>
</span></span>
<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
</span></span></bdt></span>
</span> at <bdt class="question">29 Chelmsford St.</bdt>
<bdt class="block-component"></bdt></span></span>, <bdt class="question">Boston</bdt>
</span></span><span style="font-size: 15px;"><span data-custom-class="body_text"><span
style="font-size: 15px;"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>, <bdt class="question">MA</bdt>
<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="question">02122</bdt>
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></span></span></span><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;"><span style="font-size:11.0pt;line-height:115%;
Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
mso-themetint:166;">
<bdt class="else-block"></bdt>
</bdt>
</span></bdt></span>
<bdt class="statement-end-if-in-editor">.</bdt></span>
<bdt class="block-component"></bdt></span></span></span></span></span></span>
</div>
</div>
<div align="center" style="line-height: 1;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">We operate <bdt class="block-component"></bdt>the
website <span style="color: rgb(0, 58, 250);">
<bdt class="question"><a href="https://mattbarry.me" target="_blank"
data-custom-class="link">https://mattbarry.me</a></bdt>
</span> (the <bdt class="block-component"></bdt>"<strong>Site</strong>"<bdt
class="statement-end-if-in-editor"></bdt>)<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>, as well as any other related products and services
that refer or link to these legal terms (the <bdt class="block-component"></bdt>
"<strong>Legal Terms</strong>"<bdt class="statement-end-if-in-editor"></bdt>)
(collectively, the <bdt class="block-component"></bdt>"<strong>Services</strong>"<bdt
class="statement-end-if-in-editor"></bdt>).<bdt class="block-component"></bdt>
</span></div>
<div class="MsoNormal" style="line-height: 1;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">You can contact us by <bdt class="block-component">
</bdt>phone at <bdt class="question">8574530334</bdt>, email at <bdt class="question">
[email protected]</bdt>
<bdt class="block-component"></bdt>,<bdt class="statement-end-if-in-editor"></bdt> or by
mail to <bdt class="question">29 Chelmsford St.</bdt>
<bdt class="block-component"></bdt>, <bdt class="question">Boston</bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>, <bdt class="question">MA</bdt>
<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="question">02122</bdt>
<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component">, </bdt>
<bdt class="question">United States</bdt>
<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>.
</span></div>
<div class="MsoNormal" style="line-height: 1;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">These Legal Terms constitute a legally binding agreement
made between you, whether personally or on behalf of an entity (<bdt class="block-component"></bdt>
"<strong>you</strong>"<bdt class="statement-end-if-in-editor"></bdt>), and <bdt class="question">Hazel
Mollusk Consulting Group, LLC</bdt>, concerning your access to and use of the
Services. You agree that by accessing the Services, you have read, understood, and
agreed to be bound by all of these Legal Terms. IF YOU DO NOT AGREE WITH ALL OF THESE
LEGAL TERMS, THEN YOU ARE EXPRESSLY PROHIBITED FROM USING THE SERVICES AND YOU MUST
DISCONTINUE USE IMMEDIATELY.<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></div>
<div class="MsoNormal" style="line-height: 1;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">We will provide you with prior notice of any scheduled
changes to the Services you are using. The modified Legal Terms will become effective
upon posting or notifying you by <bdt class="question">[email protected]</bdt>,
as stated in the email message. By continuing to use the Services after the effective
date of any changes, you agree to be bound by the modified terms.<bdt class="block-component"></bdt>
<bdt class="statement-end-if-in-editor"></bdt>
</span></div>
</div>
<div align="center" style="line-height: 1;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;">
<bdt class="block-container if" data-type="if" id="a2595956-7028-dbe5-123e-d3d3a93ed076">
<bdt data-type="conditional-block">
<bdt data-type="body"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">
<bdt class="block-component"></bdt>The
Services are intended for users who are at least 18 years old.
Persons under the age
of 18 are not permitted to use or register for the Services.
</span></bdt>
</bdt>
<bdt data-type="conditional-block">
<bdt class="block-component"></bdt>
</bdt>
</div>
<div class="MsoNormal" style="line-height: 1;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;">We recommend that you
print a copy of these Legal Terms for your records.</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><strong>TABLE OF
CONTENTS</strong></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="line-height: 1.5;"><a href="#services"><span data-custom-class="link"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">1. OUR
SERVICES</span></span></span></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#ip"><span
style="color: rgb(0, 58, 250);"><span data-custom-class="body_text">2.
INTELLECTUAL PROPERTY RIGHTS</span></span></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#userreps"></a><a
data-custom-class="link" href="#userreps"><span style="color: rbg(0, 58, 250); font-size: 15px;"><span
data-custom-class="body_text">3. USER REPRESENTATIONS</span></span></a>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span><a data-custom-class="link" href="#userreg"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">4. USER
REGISTRATION</span></span></a><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span> <a data-custom-class="link" href="#products"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#products"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></a> <a data-custom-class="link" href="#purchases"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#purchases"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></div>
<div class="MsoNormal" style="line-height: 1.5;"><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span> <a data-custom-class="link" href="#software"></a> <a data-custom-class="link"
href="#software"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#software"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></a> <a data-custom-class="link" href="#prohibited"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#prohibited"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">5. PROHIBITED
ACTIVITIES</span></span></a>
<a data-custom-class="link" href="#ugc"></a>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#ugc"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">6. USER
GENERATED
CONTRIBUTIONS</span></span></a> <a data-custom-class="link" href="#license"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#license"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">7. CONTRIBUTION
<bdt class="block-component"></bdt>LICENSE<bdt class="statement-end-if-in-editor"></bdt>
</span></span></a> <a data-custom-class="link" href="#reviews"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#reviews"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>8. GUIDELINES FOR REVIEWS<bdt
class="statement-end-if-in-editor"></bdt>
</span></span></a> <a data-custom-class="link" href="#mobile"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#mobile"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></a> <a data-custom-class="link" href="#socialmedia"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#socialmedia"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>9. SOCIAL MEDIA<bdt class="statement-end-if-in-editor"></bdt>
</span></span></a> <a data-custom-class="link" href="#thirdparty"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#thirdparty"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>10. THIRD-PARTY WEBSITES AND CONTENT
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></a> <a data-custom-class="link" href="#advertisers"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#advertisers"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></a> <a data-custom-class="link" href="#sitemanage"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#sitemanage"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">11. SERVICES
MANAGEMENT</span></span></a>
<a data-custom-class="link" href="#ppyes"></a>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#ppyes"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>12. PRIVACY POLICY<bdt class="statement-end-if-in-editor">
</bdt>
</span></span></a> <a data-custom-class="link" href="#ppno"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#ppno"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span></a> <a data-custom-class="link" href="#dmca"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#dmca"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span><a data-custom-class="link" href="#copyrightyes"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">13. COPYRIGHT
INFRINGEMENTS</span></span></a><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
</span></span> <a data-custom-class="link" href="#terms"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#terms"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">14. TERM AND
TERMINATION</span></span></a>
<a data-custom-class="link" href="#modifications"></a>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#modifications"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">15.
MODIFICATIONS AND
INTERRUPTIONS</span></span></a> <a data-custom-class="link" href="#law"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#law"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">16. GOVERNING
LAW</span></span></a> <a data-custom-class="link" href="#disputes"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#disputes"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">17. DISPUTE
RESOLUTION</span></span></a>
<a data-custom-class="link" href="#corrections"></a>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#corrections"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">18.
CORRECTIONS</span></span></a> <a data-custom-class="link" href="#disclaimer"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#disclaimer"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">19.
DISCLAIMER</span></span></a> <a data-custom-class="link" href="#liability"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#liability"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">20. LIMITATIONS
OF
LIABILITY</span></span></a> <a data-custom-class="link" href="#indemnification"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#indemnification"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">21.
INDEMNIFICATION</span></span></a> <a data-custom-class="link" href="#userdata"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#userdata"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">22. USER
DATA</span></span></a> <a data-custom-class="link" href="#electronic"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#electronic"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">23. ELECTRONIC
COMMUNICATIONS,
TRANSACTIONS, AND SIGNATURES</span></span></a> <a data-custom-class="link"
href="#california"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#california"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>24. CALIFORNIA USERS AND RESIDENTS
<bdt class="statement-end-if-in-editor"></bdt>
</span></span></a> <a data-custom-class="link" href="#misc"></a></div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#misc"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">25.
MISCELLANEOUS</span></span></a> <a data-custom-class="link" href="#contact"></a></div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></span></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><a data-custom-class="link" href="#contact"><span
style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">26. CONTACT
US</span></span></a></div>
</div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="heading_1" style="line-height: 1.5;"><a name="_b6y29mp52qvx"></a>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="heading_1" id="services" style="line-height: 1.5;">
<strong><span style="font-size: 19px;">1. OUR SERVICES</span></strong>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">The information provided when using the Services is not
intended for distribution to or use by any person or entity in any jurisdiction or
country where such distribution or use would be contrary to law or regulation or which
would subject us to any registration requirement within such jurisdiction or country.
Accordingly, those persons who choose to access the Services from other locations do so
on their own initiative and are solely responsible for compliance with local laws, if
and to the extent local laws are applicable.<bdt class="block-component"></bdt></span>
<bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">The Services are not tailored to comply with industry-specific
regulations (Health Insurance Portability and Accountability Act (HIPAA), Federal
Information Security Management Act (FISMA), etc.), so if your interactions would be
subjected to such laws, you may not use the Services. You may not use the Services in a
way that would violate the Gramm-Leach-Bliley Act (GLBA).<bdt class="block-component">
</bdt>
<bdt class="statement-end-if-in-editor"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
</div>
<div align="center" data-custom-class="heading_1" style="text-align: left; line-height: 1.5;"><strong><span id="ip"
style="font-size: 19px;">2. INTELLECTUAL PROPERTY RIGHTS</span></strong></div>
<div align="center" style="line-height: 1.5;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="heading_2" style="line-height: 1.5;"><strong>Our intellectual
property</strong></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">We are the owner or the licensee of all intellectual
property rights in our Services, including all source code, databases, functionality,
software, website designs, audio, video, text, photographs, and graphics in the Services
(collectively, the <bdt class="block-component"></bdt>"Content"<bdt class="statement-end-if-in-editor">
</bdt>), as well as the trademarks, service
marks, and logos contained therein (the <bdt class="block-component"></bdt>"Marks"<bdt
class="statement-end-if-in-editor"></bdt>).</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">Our Content and Marks are protected by copyright and
trademark laws (and various
other intellectual property rights and unfair competition laws) and treaties in the
United
States and around the world.</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">The Content and Marks are provided in or through the
Services <bdt class="block-component"></bdt>"AS IS"<bdt class="statement-end-if-in-editor"></bdt> for
your <bdt class="block-component">
</bdt>personal, non-commercial use or internal business purpose<bdt class="statement-end-if-in-editor">
</bdt> only.</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="heading_2" style="line-height: 1.5;"><strong>Your use of our
Services</strong></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">Subject to your compliance with these Legal Terms, including
the <bdt class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt>
</span><a data-custom-class="link" href="#prohibited"><span
style="color: rgb(0, 58, 250); font-size: 15px;">PROHIBITED
ACTIVITIES</span></a><span style="font-size: 15px;">
<bdt class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt>
section below, we grant you a non-exclusive, non-transferable, revocable <bdt class="block-component">
</bdt>license<bdt class="statement-end-if-in-editor">
</bdt> to:
</span></div>
<ul>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">access the Services; and</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">download or print a copy of any portion of the Content
to which you have properly gained access.</span></li>
</ul>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">solely for your <bdt class="block-component"></bdt>
personal, non-commercial use or internal business purpose<bdt class="statement-end-if-in-editor"></bdt>
.</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">Except as set out in this section or elsewhere in our
Legal Terms, no part of the Services and no Content or Marks may be copied, reproduced,
aggregated, republished, uploaded, posted, publicly displayed, encoded,
translated, transmitted, distributed, sold, licensed, or otherwise exploited
for any commercial purpose whatsoever, without our express prior written
permission.</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">If you wish to make any use of the Services, Content, or
Marks other than as set out in this section or elsewhere in our Legal Terms, please
address your request to: <bdt class="question">[email protected]</bdt>. If we
ever grant you the permission to post, reproduce, or publicly display any part of our
Services or Content, you must identify us as the owners or licensors of the Services,
Content, or Marks and ensure that any copyright or proprietary notice appears or is
visible on posting, reproducing, or displaying our Content.</span></div>
</div>
<div align="center" style="line-height: 1.5;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">We reserve all rights not expressly granted to you in
and to the Services, Content, and Marks.</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">Any breach of these Intellectual Property Rights will
constitute a material breach of our Legal Terms and your right to use our Services will
terminate immediately.</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="heading_2" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;"><strong>Your submissions<bdt class="block-component">
</bdt> and contributions</strong>
<bdt class="statement-end-if-in-editor"><strong></strong></bdt>
</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">Please review this section and the <bdt class="block-component"></bdt>"<bdt
class="statement-end-if-in-editor"></bdt><a data-custom-class="link" href="#prohibited"><span
style="color: rgb(0, 58, 250);">PROHIBITED ACTIVITIES</span></a>
<bdt class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt>
section carefully prior to using our Services to understand the (a) rights you give us
and (b) obligations you have when you post or upload any content through the Services.
</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;"><strong>Submissions:</strong> By directly sending us any
question, comment, suggestion, idea, feedback, or other information about the Services (
<bdt class="block-component"></bdt>"Submissions"<bdt class="statement-end-if-in-editor">
</bdt>), you agree to assign to us all intellectual property rights in such Submission.
You agree that we shall own this Submission and be entitled to its unrestricted use and
dissemination for any lawful purpose, commercial or otherwise, without acknowledgment or
compensation to you.<bdt class="block-component"></bdt>
</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;"><strong>Contributions:</strong> The Services may invite you to
chat, contribute to, or participate in blogs, message boards, online forums, and other
functionality during which you may create, submit, post, display, transmit, publish,
distribute, or broadcast content and materials to us or through the Services, including
but not limited to text, writings, video, audio, photographs, music, graphics, comments,
reviews, rating suggestions, personal information, or other material (<bdt class="block-component">
</bdt>"Contributions"<bdt class="statement-end-if-in-editor"></bdt>). Any Submission that is publicly
posted shall also be treated as a Contribution.</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">You understand that Contributions may be viewable by other
users of the Services<bdt class="block-component"></bdt> and possibly through
third-party websites<bdt class="statement-end-if-in-editor"></bdt>.</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;"><strong>When you post Contributions, you grant us a <bdt
class="block-component"></bdt>license<bdt class="statement-end-if-in-editor"></bdt> (including
use of your name,
trademarks, and logos): </strong>By posting any Contributions, you grant us an
unrestricted, unlimited, irrevocable, perpetual, non-exclusive, transferable,
royalty-free, fully-paid, worldwide right, and <bdt class="block-component"></bdt>
license<bdt class="statement-end-if-in-editor"></bdt> to: use, copy, reproduce,
distribute, sell, resell, publish, broadcast, retitle, store, publicly perform, publicly
display, reformat, translate, excerpt (in whole or in part), and exploit your
Contributions (including, without limitation, your image, name, and voice) for any
purpose, commercial, advertising, or otherwise, to prepare derivative works of, or
incorporate into other works, your Contributions, and to <bdt class="block-component">
</bdt>sublicense the licenses<bdt class="statement-end-if-in-editor"></bdt> granted in
this section. Our use and distribution may occur in any media formats and through any
media channels.</span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">This <bdt class="block-component"></bdt>license<bdt
class="statement-end-if-in-editor"></bdt> includes our use of your name, company
name, and franchise name, as applicable, and any of the trademarks, service marks, trade
names, logos, and personal and commercial images you provide.<bdt class="statement-end-if-in-editor">
</bdt></span></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;"><strong>You are responsible for what you post or
upload:</strong> By sending us Submissions<bdt class="block-component"></bdt>
and/or posting Contributions<bdt class="statement-end-if-in-editor"></bdt> through any
part of the Services<bdt class="block-component"></bdt> or making Contributions
accessible through the Services by linking your account through the Services to any of
your social networking accounts,<bdt class="statement-end-if-in-editor"></bdt>
you:</span></div>
<ul>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">confirm that you have read and agree with our <bdt class="block-component">
</bdt>"<bdt class="statement-end-if-in-editor">
</bdt></span><a data-custom-class="link" href="#prohibited"><span
style="color: rgb(0, 58, 250); font-size: 15px;">PROHIBITED
ACTIVITIES</span></a><span style="font-size: 15px;">
<bdt class="block-component"></bdt>"<bdt class="statement-end-if-in-editor">
</bdt> and will not post, send, publish, upload, or transmit through the
Services any Submission<bdt class="block-component"></bdt> nor post any
Contribution<bdt class="statement-end-if-in-editor"></bdt> that is illegal,
harassing, hateful, harmful, defamatory, obscene, bullying, abusive,
discriminatory, threatening to any person or group, sexually explicit, false,
inaccurate, deceitful, or misleading;
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">to the extent permissible by applicable law, waive any
and all moral rights to any such Submission<bdt class="block-component"></bdt>
and/or Contribution<bdt class="statement-end-if-in-editor"></bdt>;</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">warrant that any such Submission<bdt class="block-component"></bdt> and/or
Contributions<bdt class="statement-end-if-in-editor"></bdt> are original to you or that
you have the necessary rights and <bdt class="block-component"></bdt>licenses
<bdt class="statement-end-if-in-editor"></bdt> to submit such Submissions<bdt
class="block-component"></bdt> and/or Contributions<bdt class="statement-end-if-in-editor">
</bdt> and that you have full
authority to grant us the above-mentioned rights in relation to your Submissions
<bdt class="block-component"></bdt> and/or Contributions<bdt class="statement-end-if-in-editor">
</bdt>; and
</span></li>
<li class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span
style="font-size: 15px;">warrant and represent that your Submissions<bdt class="block-component">
</bdt> and/or Contributions<bdt class="statement-end-if-in-editor"></bdt> do not constitute
confidential
information.</span></li>
</ul>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;">You are solely
responsible for your Submissions<bdt class="block-component"></bdt> and/or Contributions<bdt
class="statement-end-if-in-editor"></bdt> and you expressly agree to reimburse us for
any and all losses that we may suffer because of your breach of (a) this section, (b) any third
party’s intellectual property rights, or (c) applicable law.<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><strong>We may remove or
edit your Content:</strong> Although we have no obligation to monitor any Contributions,
we shall have the right to remove or edit any Contributions at any time without notice if in our
reasonable opinion we consider such Contributions harmful or in breach of these Legal Terms. If
we remove or edit any such Contributions, we may also suspend or disable your account and report
you to the authorities.<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="heading_2" style="line-height: 1.5;"><strong>Copyright
infringement</strong></div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;">We respect the
intellectual property rights of others. If you believe that any material available on or through
the Services infringes upon any copyright you own or control, please immediately refer to the
<bdt class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt><a
data-custom-class="link" href="#dmca"><span style="color: rgb(0, 58, 250);">
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span>
<bdt class="statement-end-if-in-editor"></bdt>
</a>
<bdt class="block-component"></bdt><a data-custom-class="link" href="#copyrightyes"><span
style="color: rgb(0, 58, 250);">
<bdt class="block-component"></bdt>COPYRIGHT INFRINGEMENTS<bdt class="statement-end-if-in-editor">
</bdt>
</span></a>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt> section
below.<bdt class="statement-end-if-in-editor"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
</div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="heading_1" id="userreps" style="line-height: 1.5;"><a
name="_5hg7kgyv9l8z"></a><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">3.</span></strong></span> </strong></span></strong>USER
REPRESENTATIONS</span></strong></div>
</div>
<div align="center" style="line-height: 1.5;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size:11.0pt;line-height:115%;font-family:Arial;
Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;">By using the Services, you represent and warrant
that:</span>
<bdt class="block-container if" data-type="if" id="d2d82ca8-275f-3f86-8149-8a5ef8054af6">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_account_option" data-type="statement">
</bdt>
<bdt data-type="body"><span style="color: rgb(89, 89, 89); font-size: 11pt;">(</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">1</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) all
registration information you submit
will be true, accurate, current, and complete; (</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">2</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you will
maintain the accuracy of such information and promptly update
such registration information as necessary;</span></bdt>
</bdt>
<bdt class="statement-end-if-in-editor" data-type="close"></bdt>
</bdt><span style="color: rgb(89, 89, 89); font-size: 11pt;">(</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">3</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you have the legal capacity and you
agree to comply with these Legal Terms;</span>
<bdt class="block-container if" data-type="if" id="8d4c883b-bc2c-f0b4-da3e-6d0ee51aca13">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_u13_option" data-type="statement"></bdt>
</bdt><span style="color: rgb(89, 89, 89); font-size: 11pt;">(</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">4</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you are not a
minor in the jurisdiction in which you reside<bdt class="block-container if" data-type="if"
id="76948fab-ec9e-266a-bb91-948929c050c9">
<bdt data-type="conditional-block">
<bdt class="block-component" data-record-question-key="user_o18_option"
data-type="statement"></bdt>
</bdt>; (</span><span style="color: rgb(89, 89, 89); font-size: 14.6667px;">5</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you will not access the
Services through automated or non-human means, whether through a bot, script or
otherwise; (</span><span style="color: rgb(89, 89, 89); font-size: 14.6667px;">6</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) you will not use the Services
for any illegal or <bdt class="block-component"></bdt>unauthorized<bdt
class="statement-end-if-in-editor"></bdt> purpose; and (</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;">7</span><span
style="color: rgb(89, 89, 89); font-size: 11pt;">) your use of the Services will
not violate any applicable law or regulation.</span><span
style="color: rgb(89, 89, 89); font-size: 14.6667px;"></span>
</div>
</div>
<div align="center" style="line-height: 1.5;"><br></div>
<div align="center" style="text-align: left;">
<div class="MsoNormal" style="text-align: justify; line-height: 115%;">
<div class="MsoNormal" style="line-height: 17.25px;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">If
you provide any information that is untrue, inaccurate, not current, or
incomplete, we have the right to suspend or terminate your account and
refuse any and all current or future use of the Services (or any portion
thereof).</span></div>
<div class="MsoNormal" style="line-height: 1.1; text-align: left;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><br></div>
</div>
<div class="MsoNormal" style="line-height: 1;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="heading_1" id="userreg"
style="line-height: 1.5; text-align: left;"><strong><span
style="line-height: 24.5333px; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">4.</span></strong></span> </strong></span></strong>USER
REGISTRATION</span></strong></div>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;"><br></div>
<div class="MsoNormal" style="line-height: 1;">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div class="MsoNormal" data-custom-class="body_text"
style="text-align: left; line-height: 1.5;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">You
may be required to register to use the Services. You
agree to keep your password confidential and will be
responsible for all use of your account and password. We
reserve the right to remove, reclaim, or change a
username you select if we determine, in our sole
discretion, that such username is inappropriate,
obscene, or otherwise objectionable.<bdt class="statement-end-if-in-editor"
data-type="close"></bdt></span></div>
</bdt>
</bdt>
</div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;">
<bdt class="block-component"><span style="font-size: 15px;"></span></bdt><span style="font-size: 15px;">
<bdt class="block-component"></bdt>
<bdt class="statement-end-if-in-editor"></bdt>
</span>
</div>
<div class="MsoNormal" style="line-height: 1.5; text-align: left;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
</bdt></span>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt></span>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"><span style="font-size: 15px;"></bdt></span>
</div>
<div class="MsoNormal" style="line-height: 1.5;">
<bdt class="block-component"></bdt>
</div>
<div class="MsoNormal" style="text-align: justify; line-height: 1.5;"><span
style="line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);">
<bdt data-type="conditional-block" style="color: rgb(10, 54, 90); text-align: left;">
<bdt data-type="body">
<div class="MsoNormal" style="font-size: 15px; line-height: 1.5;"><br></div>
</bdt>
</bdt>
</span>
<div class="MsoNormal" data-custom-class="heading_1" id="prohibited"
style="text-align: left; line-height: 1.5;"><strong><span
style="line-height: 24.5333px; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;"><strong><span
style="line-height: 115%; font-family: Arial; font-size: 19px;">5.</span></strong></span></strong></span> </strong>PROHIBITED
ACTIVITIES</span></strong></div>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;">
<div class="MsoNormal" data-custom-class="body_text" style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">You
may not access or use the Services for any purpose other than that for
which we make the Services available. The Services may not be used in
connection with any commercial <bdt class="block-component"></bdt>
endeavors<bdt class="statement-end-if-in-editor"></bdt> except those
that are specifically endorsed or approved by us.</span></div>
</div>
<div class="MsoNormal" style="line-height: 1.5;"><br></div>
<div class="MsoNormal" style="text-align: justify; line-height: 1;">
<div class="MsoNormal" style="line-height: 17.25px;">
<div class="MsoNormal" style="line-height: 1.1;">
<div class="MsoNormal" style="line-height: 17.25px;">
<div class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);">As
a user of the Services, you agree not to:</span>
</div>
</div>
<ul>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span
style="font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Systematically
retrieve data or other content from the
Services to create or compile, directly
or indirectly, a collection,
compilation, database, or directory
without written permission from
us.</span></span></li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Trick,
defraud, or
mislead us and
other users,
especially in
any attempt to
learn sensitive
account
information such
as user
passwords.</span></span></span></span></span>
</li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Circumvent,
disable, or
otherwise
interfere with
security-related
features of the
Services,
including
features that
prevent or
restrict the use
or copying of
any Content or
enforce
limitations on
the use of the
Services and/or
the Content
contained
therein.</span></span></span></span></span>
</li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Disparage,
tarnish, or
otherwise harm,
in our opinion,
us and/or the
Services.</span></span></span></span></span>
</li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Use
any information
obtained from
the Services in
order to harass,
abuse, or harm
another
person.</span></span></span></span></span>
</li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Make
improper use of
our support
services or
submit false
reports of abuse
or
misconduct.</span></span></span></span></span>
</li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Use
the Services in
a manner
inconsistent
with any
applicable laws
or
regulations.</span></span></span></span></span>
</li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Engage
in <bdt class="block-component">
</bdt>
unauthorized<bdt class="statement-end-if-in-editor">
</bdt> framing
of or linking to
the
Services.</span></span></span></span></span>
</li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Upload
or transmit (or
attempt to
upload or to
transmit)
viruses, Trojan
horses, or other
material,
including
excessive use of
capital letters
and spamming
(continuous
posting of
repetitive
text), that
interferes with
any party’s
uninterrupted
use and
enjoyment of the
Services or
modifies,
impairs,
disrupts,
alters, or
interferes with
the use,
features,
functions,
operation, or
maintenance of
the
Services.</span></span></span></span></span>
</li>
<li class="MsoNormal" data-custom-class="body_text"
style="line-height: 1.5; text-align: left;"><span style="font-size: 15px;"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);"><span
style="line-height: 16.8667px; color: rgb(89, 89, 89);"><span
style="font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);">Engage
in any automated
use of the
system, such as
using scripts to
send comments or
messages, or
using any data