-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms_cleaned.html
More file actions
1565 lines (1561 loc) · 92.3 KB
/
Copy pathterms_cleaned.html
File metadata and controls
1565 lines (1561 loc) · 92.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<div data-custom-class="body">
<div align="center">
<div data-custom-class="title">
<bdt><span></bdt>
<bdt><strong>
<h1>TERMS AND CONDITIONS</h1>
</strong></bdt>
<bdt></bdt></span>
</div>
<div data-custom-class="subtitle"><strong>Last updated</strong>
<bdt><strong>June 28, 2026</strong></bdt>
</div>
<div><br></div>
<div><br></div>
<div><strong><span data-custom-class="heading_1">
<h2>AGREEMENT TO OUR LEGAL TERMS</h2>
</span></strong></div>
</div>
<div align="center">
<div id="agreement"><a name="_6aa3gkhykvst"></a></div>
</div>
<div align="center">
<div data-custom-class="body_text"><span>We are <bdt
data-id="9d459c4e-c548-e5cb-7729-a118548965d2">The Narcode</bdt>
<bdt></bdt> (<bdt></bdt>"<strong>Company</strong>,"
"<strong>we</strong>," "<strong>us</strong>," "<strong>our</strong>"<bdt
></bdt>)<span><span><span>
<bdt>
<bdt>.</bdt>
</span>
<bdt></bdt>
</span></span>
</span></span></span></span></div>
</div>
<div align="center"><br></div>
<div align="center">
<div data-custom-class="body_text"><span>We operate <bdt></bdt>the
website <span>
<bdt><a target="_blank" data-custom-class="link"
href="https://printf-web.parthesh.workers.dev">https://printf-web.parthesh.workers.dev</a>
</bdt>
</span> (the <bdt></bdt>"<strong>Site</strong>"<bdt
></bdt>)<bdt></bdt>, <bdt
></bdt>
<bdt></bdt>the mobile application <bdt>printf</bdt>
(the <bdt></bdt>"<strong>App</strong>"<bdt>
</bdt>)<bdt></bdt>, as well as any other related products and
services that refer or link to these legal terms (the <bdt></bdt>"<strong>Legal
Terms</strong>"<bdt></bdt>) (collectively, the <bdt
></bdt>"<strong>Services</strong>"<bdt>
</bdt>).<bdt></bdt>
</span></div>
<div><br></div>
<div data-custom-class="body_text"><span>You can contact us by <bdt>email
at <bdt><a target="_blank" data-custom-class="link"
href="mailto:thenarcode@gmail.com">thenarcode@gmail.com</a></bdt>
<bdt></bdt> or by mail to <bdt>__________</bdt>
<bdt></bdt>, <bdt>__________</bdt>
<bdt></bdt>
<bdt></bdt>
<bdt>
<bdt>, </bdt>
<bdt>__________</bdt>
<bdt></bdt>
</bdt>.</span></div>
<div><br></div>
<div data-custom-class="body_text"><span>These Legal Terms constitute a legally binding agreement
made between you, whether personally or on behalf of an entity (<bdt></bdt>
"<strong>you</strong>"<bdt></bdt>), and <bdt
>The Narcode</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></bdt>
</span></div>
<div><br></div>
<div data-custom-class="body_text"><span>Supplemental terms and conditions or documents that may
be posted on the Services from time to time are hereby expressly incorporated herein by reference. We
reserve the right, in our sole discretion, to make changes or modifications to these Legal Terms <bdt
></bdt>at any time and for any reason<bdt>
</bdt>. We will alert you about any changes by updating the <bdt></bdt>"Last
updated"<bdt></bdt> date of these Legal Terms, and you waive any
right to receive specific notice of each such change. It is your responsibility to periodically review
these Legal Terms to stay informed of updates. You will be subject to, and will be deemed to have been
made aware of and to have accepted, the changes in any revised Legal Terms by your continued use of the
Services after the date such revised Legal Terms are posted.<bdt></bdt></span></div>
</div>
<div align="center"><br></div>
<div align="center">
<div data-custom-class="body_text">
<bdt data-type="if" id="a2595956-7028-dbe5-123e-d3d3a93ed076">
<bdt data-type="conditional-block">
<bdt data-type="body"><span>
<bdt></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></bdt>
</bdt>
</div>
<div><br></div>
<div data-custom-class="body_text">We recommend that you print a
copy of these Legal Terms for your records.</div>
<div><br></div>
<div data-custom-class="heading_1"><strong>
<h2>TABLE OF CONTENTS</h2>
</strong></div>
<div><a data-custom-class="link" href="#services"><span
data-custom-class="link"><span><span
data-custom-class="body_text">1. OUR SERVICES</span></span></span></a></div>
<div><a data-custom-class="link" href="#ip"><span
><span data-custom-class="body_text">2. INTELLECTUAL PROPERTY
RIGHTS</span></span></a></div>
<div><a data-custom-class="link" href="#userreps"></a><a
data-custom-class="link" href="#userreps"><span
><span
data-custom-class="body_text">3. USER REPRESENTATIONS</span></span></a></div>
<div><span><span
data-custom-class="body_text">
<bdt></bdt>
</span></span> <a data-custom-class="link" href="#products"></a></div>
<div><a data-custom-class="link" href="#products"><span
><span data-custom-class="body_text">
<bdt></bdt>
</span></span></a> <a data-custom-class="link" href="#purchases"></a></div>
<div><a data-custom-class="link" href="#purchases"><span
><span data-custom-class="body_text">
<bdt></bdt>4. PURCHASES AND PAYMENT<bdt
></bdt>
</span></span></a></div>
<div>
<bdt><span></span></bdt>
</div>
<div><span><span
data-custom-class="body_text">
<bdt></bdt>
</span></span> <a data-custom-class="link" href="#software"></a> <a data-custom-class="link"
href="#software"></a></div>
<div><a data-custom-class="link" href="#software"><span
><span data-custom-class="body_text">
<bdt></bdt>
</span></span></a> <a data-custom-class="link" href="#prohibited"></a></div>
<div><a data-custom-class="link" href="#prohibited"><span
><span data-custom-class="body_text">5. PROHIBITED
ACTIVITIES</span></span></a> <a data-custom-class="link" href="#ugc"></a></div>
<div><a data-custom-class="link" href="#ugc"><span
><span data-custom-class="body_text">6. USER
GENERATED CONTRIBUTIONS</span></span></a> <a data-custom-class="link" href="#license"></a></div>
<div><a data-custom-class="link" href="#license"><span
><span data-custom-class="body_text">7. CONTRIBUTION
<bdt></bdt>LICENSE<bdt></bdt>
</span></span></a> <a data-custom-class="link" href="#reviews"></a></div>
<div><a data-custom-class="link" href="#reviews"><span
><span data-custom-class="body_text">
<bdt></bdt>
</span></span></a> <a data-custom-class="link" href="#mobile"></a></div>
<div><a data-custom-class="link" href="#mobile"><span
><span data-custom-class="body_text">
<bdt></bdt>8. MOBILE APPLICATION <bdt></bdt>
LICENSE<bdt></bdt>
<bdt></bdt>
</span></span></a> <a data-custom-class="link" href="#socialmedia"></a></div>
<div><a data-custom-class="link" href="#socialmedia"><span
><span data-custom-class="body_text">
<bdt></bdt>
</span></span></a> <a data-custom-class="link" href="#thirdparty"></a></div>
<div><a data-custom-class="link" href="#thirdparty"><span
><span data-custom-class="body_text">
<bdt></bdt>
</span></span></a> <a data-custom-class="link" href="#advertisers"></a></div>
<div><a data-custom-class="link" href="#advertisers"><span
><span data-custom-class="body_text">
<bdt></bdt>
</span></span></a> <a data-custom-class="link" href="#sitemanage"></a></div>
<div><a data-custom-class="link" href="#sitemanage"><span
><span data-custom-class="body_text">9. SERVICES
MANAGEMENT</span></span></a> <a data-custom-class="link" href="#ppyes"></a></div>
<div><a data-custom-class="link" href="#ppyes"><span
><span data-custom-class="body_text">
<bdt></bdt>10. PRIVACY POLICY<bdt>
</bdt>
</span></span></a> <a data-custom-class="link" href="#ppno"></a></div>
<div><a data-custom-class="link" href="#ppno"><span
><span data-custom-class="body_text">
<bdt></bdt>
</span></span></a> <a data-custom-class="link" href="#dmca"></a></div>
<div><a data-custom-class="link" href="#dmca"><span
><span data-custom-class="body_text">
<bdt></bdt>
</span></span></a></div>
<div><span><span
data-custom-class="body_text">
<bdt></bdt>
<bdt></bdt>
<bdt></bdt>
</span></span> <a data-custom-class="link" href="#terms"></a></div>
<div><a data-custom-class="link" href="#terms"><span
><span data-custom-class="body_text">11. TERM AND
TERMINATION</span></span></a> <a data-custom-class="link" href="#modifications"></a></div>
<div><a data-custom-class="link" href="#modifications"><span
><span data-custom-class="body_text">12.
MODIFICATIONS AND INTERRUPTIONS</span></span></a> <a data-custom-class="link" href="#law"></a>
</div>
<div><a data-custom-class="link" href="#law"><span
><span data-custom-class="body_text">13. GOVERNING
LAW</span></span></a> <a data-custom-class="link" href="#disputes"></a></div>
<div><a data-custom-class="link" href="#disputes"><span
><span data-custom-class="body_text">14. DISPUTE
RESOLUTION</span></span></a> <a data-custom-class="link" href="#corrections"></a></div>
<div><a data-custom-class="link" href="#corrections"><span
><span data-custom-class="body_text">15.
CORRECTIONS</span></span></a> <a data-custom-class="link" href="#disclaimer"></a></div>
<div><a data-custom-class="link" href="#disclaimer"><span
><span data-custom-class="body_text">16.
DISCLAIMER</span></span></a> <a data-custom-class="link" href="#liability"></a></div>
<div><a data-custom-class="link" href="#liability"><span
><span data-custom-class="body_text">17. LIMITATIONS
OF LIABILITY</span></span></a> <a data-custom-class="link" href="#indemnification"></a></div>
<div><a data-custom-class="link" href="#indemnification"><span
><span data-custom-class="body_text">18.
INDEMNIFICATION</span></span></a> <a data-custom-class="link" href="#userdata"></a></div>
<div><a data-custom-class="link" href="#userdata"><span
><span data-custom-class="body_text">19. USER
DATA</span></span></a> <a data-custom-class="link" href="#electronic"></a></div>
<div><a data-custom-class="link" href="#electronic"><span
><span data-custom-class="body_text">20. ELECTRONIC
COMMUNICATIONS, TRANSACTIONS, AND SIGNATURES</span></span></a> <a data-custom-class="link"
href="#california"></a></div>
<div>
<bdt><span></span></bdt>
</div>
<div><a data-custom-class="link" href="#california"><span
><span data-custom-class="body_text">
<bdt></bdt>
</span></span></a> <a data-custom-class="link" href="#misc"></a></div>
<div><a data-custom-class="link" href="#misc"><span
><span data-custom-class="body_text">21.
MISCELLANEOUS</span></span></a> <a data-custom-class="link" href="#contact"></a></div>
<div>
<bdt></span></bdt>
</div>
<div>
<bdt></bdt>
</div>
<div>
<bdt></bdt>
</div>
<div>
<bdt></bdt>
</div>
<div>
<bdt></bdt>
</div>
<div>
<bdt></bdt>
</div>
<div>
<bdt></bdt>
</div>
<div>
<bdt></bdt>
</div>
<div>
<bdt></bdt>
</div>
<div>
<bdt></bdt>
</div>
<div><a data-custom-class="link" href="#contact"><span
><span data-custom-class="body_text">22. CONTACT
US</span></span></a></div>
</div>
<div align="center">
<div data-custom-class="heading_1"><a name="_b6y29mp52qvx"></a>
</div>
<div><br></div>
<div data-custom-class="heading_1" id="services"><strong><span
>
<h2>1. OUR SERVICES</h2>
</span></strong></div>
<div data-custom-class="body_text"><span
>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></bdt>
</div>
<div><br></div>
</div>
<div align="center" data-custom-class="heading_1"><strong><span id="ip"
>
<h2>2. INTELLECTUAL PROPERTY RIGHTS</h2>
</span></strong></div>
<div align="center">
<div data-custom-class="heading_2"><strong>
<h3>Our intellectual property</h3>
</strong></div>
<div data-custom-class="body_text"><span>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
></bdt>"Content"<bdt></bdt>), as well as
the trademarks, service marks, and logos contained therein (the <bdt></bdt>
"Marks"<bdt></bdt>).</span></div>
<div><br></div>
<div data-custom-class="body_text"><span>Our Content and Marks are protected by copyright and
trademark laws (and various other intellectual property rights and unfair competition laws) and treaties
<bdt></bdt> around the world.</span></div>
<div><br></div>
<div data-custom-class="body_text"><span>The Content and Marks are provided in or through the
Services <bdt></bdt>"AS IS"<bdt></bdt> for
your <bdt></bdt>personal, non-commercial use<bdt></bdt>
only.</span></div>
<div data-custom-class="heading_2"><strong>
<h3>Your use of our Services</h3>
</strong></div>
<div data-custom-class="body_text"><span
>Subject to your compliance with these Legal Terms, including the <bdt
></bdt>"<bdt></bdt></span><a
data-custom-class="link" href="#prohibited"><span
>PROHIBITED ACTIVITIES</span></a><span
>
<bdt></bdt>"<bdt></bdt> section below, we
grant you a non-exclusive, non-transferable, revocable <bdt></bdt>license<bdt
></bdt> to:
</span></div>
<ul>
<li data-custom-class="body_text"><span
>access the Services; and</span></li>
<li data-custom-class="body_text"><span
>download or print a copy of any portion of the Content to which you have
properly gained access,</span></li>
</ul>
<div data-custom-class="body_text"><span>solely for your <bdt></bdt>
personal, non-commercial use<bdt></bdt>.</span></div>
<div><br></div>
<div data-custom-class="body_text"><span>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><br></div>
<div data-custom-class="body_text"><span>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><a target="_blank" data-custom-class="link"
href="mailto:thenarcode@gmail.com">thenarcode@gmail.com</a></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"><br></div>
<div align="center">
<div data-custom-class="body_text"><span>We reserve all rights not expressly granted to you in
and to the Services, Content, and Marks.</span></div>
<div><br></div>
<div data-custom-class="body_text"><span>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 data-custom-class="heading_2"><span><strong>
<h3>Your submissions<bdt>
</strong></bdt></span></div>
<div data-custom-class="body_text"><span
>Please review this section and the <bdt></bdt>"<bdt
></bdt><a data-custom-class="link" href="#prohibited"><span
>PROHIBITED ACTIVITIES</span></a>
<bdt></bdt>"<bdt></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><br></div>
<div data-custom-class="body_text"><span
><strong>Submissions:</strong> By directly sending us any question, comment,
suggestion, idea, feedback, or other information about the Services (<bdt></bdt>
"Submissions"<bdt></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></bdt></span></div>
<div><br></div>
<div data-custom-class="body_text"><span
><strong>You are responsible for what you post or upload:</strong> By sending us
Submissions<bdt></bdt> through any part of the Services<bdt
></bdt> you:</span></div>
<ul>
<li data-custom-class="body_text"><span
>confirm that you have read and agree with our <bdt>
</bdt>"<bdt></bdt></span><a data-custom-class="link"
href="#prohibited"><span>PROHIBITED
ACTIVITIES</span></a><span>
<bdt></bdt>"<bdt></bdt> and will not
post, send, publish, upload, or transmit through the Services any Submission<bdt
></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 data-custom-class="body_text"><span
>to the extent permissible by applicable law, waive any and all moral rights
to any such Submission<bdt></bdt>;</span></li>
<li data-custom-class="body_text"><span
>warrant that any such Submission<bdt></bdt> are
original to you or that you have the necessary rights and <bdt></bdt>
licenses<bdt></bdt> to submit such Submissions<bdt
></bdt> and that you have full authority to grant us the above-mentioned
rights in relation to your Submissions<bdt></bdt>; and</span></li>
<li data-custom-class="body_text"><span
>warrant and represent that your Submissions<bdt>
</bdt> do not constitute confidential information.</span></li>
</ul>
<div data-custom-class="body_text">You are solely responsible for
your Submissions<bdt></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></bdt>
<bdt></bdt>
</div>
<div><br></div>
</div>
<div align="center">
<div data-custom-class="heading_1" id="userreps"><a
name="_5hg7kgyv9l8z"></a><strong><span>
<h2>3. USER REPRESENTATIONS</h2>
</span></strong></div>
</div>
<div align="center">
<div data-custom-class="body_text"><span>By using the Services, you represent and warrant
that:</span>
<bdt data-type="if" id="d2d82ca8-275f-3f86-8149-8a5ef8054af6">
<bdt data-type="conditional-block">
<bdt data-record-question-key="user_account_option" data-type="statement">
</bdt>
</bdt><span>(</span><span
>1</span><span
>) you have the legal capacity and you agree to
comply with these Legal Terms;</span>
<bdt data-type="if" id="8d4c883b-bc2c-f0b4-da3e-6d0ee51aca13">
<bdt data-type="conditional-block">
<bdt data-record-question-key="user_u13_option" data-type="statement">
</bdt>
</bdt><span>(</span><span
>2</span><span
>) you are not a
minor in the jurisdiction in which you reside<bdt data-type="if"
id="76948fab-ec9e-266a-bb91-948929c050c9">
<bdt data-type="conditional-block">
<bdt data-record-question-key="user_o18_option"
data-type="statement"></bdt>
</bdt>; (</span><span>3</span><span
>) you will not access the Services through
automated or non-human means, whether through a bot, script or
otherwise; (</span><span>4</span><span
>) you will not use the Services for any illegal
or <bdt></bdt>unauthorized<bdt></bdt>
purpose; and (</span><span>5</span><span
>) your use of the Services will not violate any
applicable law or regulation.</span><span
></span>
</div>
</div>
<div align="center"><br></div>
<div align="center">
<div>
<div>
<div data-custom-class="body_text"><span
>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>
<bdt></bdt></span>
</div>
</bdt>
</bdt>
<bdt><span></bdt></span>
</div>
<div>
<bdt><span></span></bdt>
</div>
<div><br></div>
</div>
</div>
<div align="center">
<div data-custom-class="heading_1" id="purchases"><a
name="_ynub0jdx8pob"></a><strong><span>
<h2>4. PURCHASES AND PAYMENT</h2>
</span></strong></div>
</div>
<div align="center">
<div>
<bdt><span></span></bdt>
</div>
<div data-custom-class="body_text"><span
>All purchases are non-refundable.</span></div>
<div><span><br></span></div>
<div>
<bdt><span></span></bdt>
</div>
<div data-custom-class="body_text"><span>We accept the following forms of payment:</span></div>
<div>
<div><br></div>
</div>
<div data-custom-class="body_text"><span>
<bdt></bdt>- <bdt>UPI</bdt>
</span></div>
<div data-custom-class="body_text"><span>
<bdt></bdt>
</span></div>
<div><span><br></span></div>
<div data-custom-class="body_text"><span>You agree to provide current, complete, and accurate
purchase and account information for all purchases made via the Services. You further agree to promptly
update account and payment information, including email address, payment method, and payment card
expiration date, so that we can complete your transactions and contact you as needed. Sales tax will be
added to the price of purchases as deemed required by us. We may change prices at any time. All payments
shall be </span><span
>in <bdt
>INR</bdt>.</span></div>
</div>
<div align="center"><br></div>
<div align="center">
<div data-custom-class="body_text"><span>You agree to pay all charges at the prices then in
effect for your purchases and any applicable shipping fees, and you <bdt></bdt>
authorize<bdt></bdt> us to charge your chosen payment provider for
any such amounts upon placing your order. We reserve the right to correct any errors or mistakes in
pricing, even if we have already requested or received payment.</span></div>
</div>
<div align="center"><br></div>
<div align="center">
<div data-custom-class="body_text"><span>We reserve the right to refuse any order placed through
the Services. We may, in our sole discretion, limit or cancel quantities purchased per person, per
household, or per order. These restrictions may include orders placed by or under the same customer
account, the same payment method, and/or orders that use the same billing or shipping address. We
reserve the right to limit or prohibit orders that, in our sole <bdt></bdt>
judgment<bdt></bdt>, appear to be placed by dealers, resellers, or
distributors.</span><span>
<bdt data-type="conditional-block">
<bdt data-record-question-key="return_option" data-type="statement"
></bdt>
</bdt>
</span></div>
<div>
<bdt><span></bdt></span>
<bdt><span></bdt></span>
</div>
<div>
<bdt></bdt>
</div>
<div><span
>
<bdt data-type="conditional-block">
<bdt data-type="body">
<div><br></div>
</bdt>
</bdt>
</span>
<div data-custom-class="heading_1" id="prohibited"
><strong><span>
<h2>5. PROHIBITED ACTIVITIES</h2>
</span></strong></div>
</div>
<div>
<div data-custom-class="body_text"><span
>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></bdt>endeavors<bdt
></bdt> except those that are specifically endorsed or
approved by us.</span></div>
</div>
<div><br></div>
<div>
<div>
<div>
<div>
<div data-custom-class="body_text"
><span
>As a user of
the Services, you agree not to:</span></div>
</div>
<ul>
<li data-custom-class="body_text">
<span><span
>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 data-custom-class="body_text">
<span><span
><span
><span
><span
>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 data-custom-class="body_text">
<span><span
><span
><span
><span
>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 data-custom-class="body_text">
<span><span
><span
><span
><span
>Disparage,
tarnish, or otherwise harm, in our opinion, us and/or the
Services.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Use
any information obtained from the Services in order to harass, abuse, or
harm another person.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Make
improper use of our support services or submit false reports of abuse or
misconduct.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Use
the Services in a manner inconsistent with any applicable laws or
regulations.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Engage
in <bdt></bdt>unauthorized<bdt
></bdt> framing of or linking to
the Services.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>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 data-custom-class="body_text">
<span><span
><span
><span
><span
>Engage
in any automated use of the system, such as using scripts to send
comments or messages, or using any data mining, robots, or similar data
gathering and extraction tools.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Delete
the copyright or other proprietary rights notice from any
Content.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Attempt
to impersonate another user or person or use the username of another
user.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Upload
or transmit (or attempt to upload or to transmit) any material that acts
as a passive or active information collection or transmission mechanism,
including without limitation, clear graphics interchange formats (<bdt
></bdt>"gifs"<bdt
></bdt>), 1×1 pixels, web bugs,
cookies, or other similar devices (sometimes referred to as <bdt
></bdt>"spyware" or "passive collection
mechanisms" or "pcms"<bdt></bdt>
).</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Interfere
with, disrupt, or create an undue burden on the Services or the networks
or services connected to the
Services.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Harass,
annoy, intimidate, or threaten any of our employees or agents engaged in
providing any portion of the Services to
you.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Attempt
to bypass any measures of the Services designed to prevent or restrict
access to the Services, or any portion of the
Services.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Copy
or adapt the Services' software, including but not limited to Flash,
PHP, HTML, JavaScript, or other code.</span></span></span></span></span>
</li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Except
as permitted by applicable law, decipher, decompile, disassemble, or
reverse engineer any of the software comprising or in any way making up
a part of the Services.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Except
as may be the result of standard search engine or Internet browser
usage, use, launch, develop, or distribute any automated system,
including without limitation, any spider, robot, cheat utility, scraper,
or offline reader that accesses the Services, or use or launch any <bdt
></bdt>unauthorized<bdt
></bdt> script or other
software.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Use
a buying agent or purchasing agent to make purchases on the
Services.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Make
any <bdt></bdt>unauthorized<bdt
></bdt> use of the Services,
including collecting usernames and/or email addresses of users by
electronic or other means for the purpose of sending unsolicited email,
or creating user accounts by automated means or under false <bdt
></bdt>pretenses<bdt
></bdt>
.</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span><span
><span
><span
><span
>Use
the Services as part of any effort to compete with us or otherwise use
the Services and/or the Content for any revenue-generating <bdt
></bdt>endeavor<bdt
></bdt> or commercial
enterprise.</span><span
>
<bdt></bdt>
</span></span></span></span></span></li>
<li data-custom-class="body_text">
<span>
<bdt>Use the Services to advertise or offer to sell goods and services.
</bdt>
<bdt></bdt>
</span></li>
</ul>
<div><br></div>
<bdt data-type="if">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div data-custom-class="heading_1" id="ugc">
<strong><span>
<h2>6. USER GENERATED CONTRIBUTIONS</h2>
</span></strong></div>
</bdt>
</bdt>
</bdt>
<bdt data-type="if">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div data-custom-class="body_text"><span
>
<bdt data-type="if"
id="24327c5d-a34f-f7e7-88f1-65a2f788484f">
<bdt data-type="conditional-block">
<bdt
data-record-question-key="user_post_content_option"
data-type="statement"></bdt><span
>The
Services does not offer users to submit or post content.<bdt
></bdt> We may provide you with the
opportunity to create, submit, post, display, transmit, perform,
publish, distribute, or broadcast content and materials to us or on
the Services, including but not limited to text, writings, video,
audio, photographs, graphics, comments, suggestions, or personal
information or other material (collectively, <bdt
></bdt>"Contributions"<bdt
></bdt>). Contributions may be
viewable by other users of the Services and through third-party
websites.<bdt></bdt> As such, any
Contributions you transmit may be treated in accordance with the
Services' Privacy Policy.<bdt>
</bdt> When you create or make available any Contributions, you
thereby represent and warrant that:<span
>
<bdt>
<bdt></bdt>
</bdt>
</span></span>
</span></div>
</bdt>
</bdt>
</bdt>
</div>
</div>
<div>
<ul>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">The creation, distribution, transmission, public
display, or performance, and the accessing, downloading, or copying of your
Contributions do not and will not infringe the proprietary rights, including but not
limited to the copyright, patent, trademark, trade secret, or moral rights of any
third party.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">You are the creator and owner of or have the necessary
<bdt></bdt>licenses<bdt>
</bdt>, rights, consents, releases, and permissions to use and to <bdt
></bdt>authorize<bdt>
</bdt> us, the Services, and other users of the Services to use your Contributions
in any manner contemplated by the Services and these Legal
Terms.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">You have the written consent, release, and/or
permission of each and every identifiable individual person in your Contributions to
use the name or likeness of each and every such identifiable individual person to
enable inclusion and use of your Contributions in any manner contemplated by the
Services and these Legal Terms.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">Your Contributions are not false, inaccurate, or
misleading.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">Your Contributions are not unsolicited or <bdt
></bdt>unauthorized<bdt
></bdt> advertising, promotional materials,
pyramid schemes, chain letters, spam, mass mailings, or other forms of
solicitation.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">Your Contributions are not obscene, lewd, lascivious,
filthy, violent, harassing, <bdt></bdt>libelous<bdt
></bdt>, slanderous, or otherwise
objectionable (as determined by us).</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">Your Contributions do not ridicule, mock, disparage,
intimidate, or abuse anyone.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">Your Contributions are not used to harass or threaten
(in the legal sense of those terms) any other person and to promote violence against
a specific person or class of people.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">Your Contributions do not violate any applicable law,
regulation, or rule.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">Your Contributions do not violate the privacy or
publicity rights of any third party.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">Your Contributions do not violate any applicable law
concerning child pornography, or otherwise intended to protect the health or
well-being of minors.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">Your Contributions do not include any offensive
comments that are connected to race, national origin, gender, sexual preference, or
physical handicap.</span></span></span></li>
<li data-custom-class="body_text"><span
><span><span
data-custom-class="body_text">Your Contributions do not otherwise violate, or link
to material that violates, any provision of these Legal Terms, or any applicable law
or regulation.</span></span></span></li>
</ul>
<bdt data-type="if">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div data-custom-class="body_text"><span
>Any use of
the Services in violation of the foregoing violates these Legal Terms and may result
in, among other things, termination or suspension of your rights to use the
Services.</span></div>
</bdt>
</bdt>
</bdt>
</div>
</div>
<div><br></div>
<div>
<bdt data-type="if">
<bdt data-type="conditional-block">
<bdt data-type="body">
<div data-custom-class="heading_1" id="license">
<strong><span>
<h2>7. CONTRIBUTION <bdt></bdt>LICENSE<bdt
></bdt>
</h2>
</span></strong></div>
</bdt>
</bdt>
</bdt>
</div>
<div>
<bdt data-type="if" id="a088ddfb-d8c1-9e58-6f21-958c3f4f0709"
>
<bdt data-type="conditional-block">
<bdt data-record-question-key="user_post_content_option"
data-type="statement"></bdt></span>
</bdt>
</bdt>
</bdt>
</div>
<div data-custom-class="body_text"><span
><span
>You and Services agree that
we may access, store, process, and use any information and personal data that you provide<bdt
></bdt> following the terms of the Privacy Policy<bdt
></bdt> and your choices (including settings).</span></span>
</div>
<div><br></div>
<div data-custom-class="body_text"><span
>By submitting suggestions or
other feedback regarding the Services, you agree that we can use and share such feedback for any purpose
without compensation to you.<bdt></bdt></span></div>
<div><br></div>
<div data-custom-class="body_text"><span
>We do not assert any ownership
over your Contributions. You retain full ownership of all of your Contributions and any intellectual
property rights or other proprietary rights associated with your Contributions. We are not liable for
any statements or representations in your Contributions provided by you in any area on the Services. You
are solely responsible for your Contributions to the Services and you expressly agree to exonerate us
from any and all responsibility and to refrain from any legal action against us regarding your
Contributions.<bdt></bdt></span></div>
<div data-custom-class="body_text"><br></div>
<div data-custom-class="body_text"><span
><span
><span
>
<bdt data-type="if">
<bdt data-type="close"></bdt>
</bdt>
</span></span></span></div>
<div data-custom-class="body_text">
<bdt data-type="if">
<bdt data-type="conditional-block">
<bdt data-record-question-key="review_option" data-type="statement"></bdt>
</bdt></span></span></span>
</div>
<div>