-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
1748 lines (1664 loc) · 97.9 KB
/
terms.html
File metadata and controls
1748 lines (1664 loc) · 97.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Terms</title>
<link href="css/bootstrap.css" rel="stylesheet">
<!--<link href="css/animate.css" rel="stylesheet">-->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/home_css.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="example3">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar3">
<span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span
class="icon-bar"></span> <span class="icon-bar"></span> </button>
<a class="navbar-brand" href="index.html"><img src="./images/home/logo.jpeg" alt="#"> </a>
</div>
<div id="navbar3" class="navbar-collapse collapse">
<ul class="nav navbar-nav" style="background-color: #ffffff">
<li class=""><a href="index.html">Home</a>
</li>
<li class=""><a href="about.html">About</a>
</li>
<li class="" class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Our Focus Areas <span
class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="./our-focus-areass/legal-framework-analysis.html">Legal Framework
Analysis</a>
</li>
<li><a href="./our-focus-areass/gram-panchayat.html">Gram Panchayat
Organization Development</a>
</li>
<li><a href="./our-focus-areass/technology-for-governance.html">Technology For
Governance</a>
</li>
<li><a href="./our-focus-areass/impact-evalution.html">Impact Evaluation</a>
</li>
</ul>
</li>
<li class=""><a href="gallery.html">Gallery</a>
</li>
<li class="" class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown"
href="#">Resources<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="./resources/media-and-publication.html">Media and Publications</a>
</li>
<li><a href="./resources/case-studies.html">Case Studies</a>
</li>
<li><a href="./resources/reports.html">Reports</a>
</li>
</ul>
</li>
<li class=""><a href="projects.html">Projects</a>
</li>
<li class=""><a href="contact.html">Contact</a>
</li>
<li class=""><a target="_blank" href="http://orgmaptool.anodegovernancelab.in/">Org Map Tool</a>
</li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
<!--/.container-fluid -->
</nav>
</div>
<!-- header end -->
<div class="jumbotron jumbotron-sm">
<div class="container">
<div class="row">
<div class="col-sm-12 col-lg-12 text-center animated pulse">
<h1 style="font-size: 27px; color: #ffffff"> ANODE GOVERNANCE LAB WEBSITE TERMS OF USE </h1>
</div>
</div>
</div>
</div>
<!-- main body -->
<div class="container" style="margin-bottom: 150px">
<div class="row">
<div class="col-md-6 text-left">
<p>
<b>Effective Date:</b> 16-06-2023
</p>
</div>
<div class="col-md-6 text-right">
<p>
<b>Website Covered:</b> <a target="_blank" href="index.html"><code>anodegovernancelab</code></a>
</p>
</div>
<div class="col-md-12 text-justify">
<p>
<font color="#373737">
<font style="">This
document is an electronic record in accordance with the applicable
definition(s) of the Information Technology Act, 2000 and rules
thereunder and the amended provisions pertaining to electronic
records in various statutes as amended by the Information Technology
Act, 2000. This electronic record is generated by a computer system
and does not require any physical or digital signatures.</font>
</font>
</p>
<p>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#373737">
<font style="">This
document is published in accordance with the provisions of Rule 3 (1)
of the Information Technology (Intermediaries guidelines) Rules, 2011
which require publishing the rules and regulations, Privacy Policy
and Terms of Use for access or usage of
</font>
</font><a href="index.html">
<font color="#1155cc">
<font style=""><u>Anode Governance</u></font>
</font>
</a>
<font color="#373737">
<font style="">
website. </font>
</font>
</p>
<p>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#373737">
<font style="">The
domain name </font>
</font><a href="index.html">
<font color="#1155cc">
<font style=""><u>anodegovernancelab</u></font>
</font>
</a>
<font color="#373737">
<font style="">
</font>
</font>
<font color="#192930">
<font style="">(hereinafter
referred to as “Website”) is owned by Anode Governance
Lab (hereinafter referred to as </font>
</font>
<font color="#192930">
<font style=""><b>“Anode”/
“We”/ “Us”</b></font>
</font>
<font color="#192930">
<font style="">),
a governance and management consulting organisation registered under
the Karnataka Shops and Commercial Establishments Act,1961, with its
registered office address at No. 514, Raindrops Apartments, 10-½
Haralur Road, Off Sarjapur Road, Bengaluru, Karnataka, 560102. </font>
</font>
</p>
<p>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#373737">
<font style="">Please
read these terms of use (</font>
</font>
<font color="#373737">
<font style=""><b>"Terms
of Use"/ "Agreement"/ToU/Terms and Conditions</b></font>
</font>
<font color="#373737">
<font style="">)
carefully before using this Website owned and operated by Anode. </font>
</font>
</p>
<p>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#192930">
<font style="">Your use
of this Website, all of its web pages, and services if any, provided
by or on the Website is governed by the following terms and
conditions (“</font>
</font>
<font color="#192930">
<font style=""><b>Terms
of Use</b></font>
</font>
<font color="#192930">
<font style="">”)
as applicable to the Website, including all the applicable policies,
parts and sub-parts which are incorporated herein by way of
reference, hyperlinks, and/or implicitly. </font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.17in; margin-bottom: 0.17in">
<font color="#373737">
<font style="">If you
access the Website, either directly or through a hyperlink, You agree
to be bound by and accept the Terms of Use, </font>
</font>
<font color="#192930">
<font style="">including
those of Anode’s additional terms and conditions and applicable
policies referenced herein or available by hyperlink. You further
agree that this acceptance constitutes Your binding contract with
Anode, with respect to the use of this Website by You. </font>
</font>
</p>
<p>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#373737">
<font style=""><b>DEFINITIONS
</b></font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#373737">
<font style="">The
parties referred to in these Terms of Use shall be defined as
follows:</font>
</font>
</p>
<p>
</p>
<p>
<font color="#373737">
<font style="">i) The
terms “You”, “Yourself ”, “Your”
or “User” shall mean any person, natural or legal, who
visits or uses the Website. </font>
</font>
</p>
<p>
<font color="#373737">
<font style="">ii) The
terms “Anode” “We”, “Us”, “Our”,
“Owner” shall mean</font>
</font>
<font style="">
Anode Governance Lab. </font>
</p>
<p>
<font color="#373737">
<font style="">iii) If
You and the Owner as parties to this Terms of Use need to be referred
to collectively it will be as “Parties”. </font>
</font>
</p>
<p>
</p>
<p>
</p>
<p>
<font color="#373737">
<font style="">Anode
allows the User to visit or use the Website without registering on
the Website, however to use our organisation mapping tool that is
linked on the Website but on a different server, You would require to
log in, if you wish to access the tool. </font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#373737">
<font style=""><b>ASSENT
TO AND ACCEPTANCE OF TERMS OF USE </b></font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#373737">
<font style="">By using
this Website, You certify that you have read, reviewed, and
understood these Terms of Use and that You agree to comply with these
Terms of Use. If You do not want to be bound by the terms of these
Terms of Use, or disagree with any terms, You should not enter the
Website, or You should leave the website accordingly. Anode only
grants use and access of this Website, and its services if any, to
persons, legal or natural, who have accepted its terms of use,
</font>
</font>
<font color="#192930">
<font style="">additional
terms and conditions and applicable policies referenced herein or
available by hyperlink</font>
</font>
<font color="#373737">
<font style="">.
</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.17in; margin-bottom: 0.17in">
<font color="#373737">
<font style="">You
further certify that you will use this Website according to the Terms
of Use, the </font>
</font>
<font color="#192930">
<font style="">additional
terms and conditions and applicable policies referenced herein or
available by hyperlink,</font>
</font>
<font color="#373737">
<font style="">
the laws of the Republic of India, and other applicable international
conventions and regulations. You understand and agree that by
entering the Website, You accept these Terms of Use and the aforesaid
applicable laws.</font>
</font>
</p>
<p>
</p>
<p>
<font style=""><b>USER ELIGIBILITY</b></font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#373737">
<font style="">Anode’s
Website is only meant to be used by persons who can enter into
legally binding contracts as per the provisions of the Indian
Contract Act, 1872. Persons who are “incompetent to contract”
within the meaning of the Indian Contract Act, 1872 including minors,
un-discharged insolvents, etc. are not eligible to use the Website.
If you are a minor i.e., under the age of 18 years, you shall not
register as a user nor shall you use the Website by yourself. As a
minor if you wish to use the website, such use may be made by your
legal guardian or parents on the Website. Anode reserves the right to
terminate your membership and / or refuse to provide you with access
to the Website if it is brought to Anode’s notice or if it is
discovered that you are under the age of 18 years.</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.17in; margin-bottom: 0.17in">
<font color="#192930">
<font style="">By using
this Website, You warrant that You are at least 18 years of age and
You are legally competent to enter into this Agreement. Anode assumes
no responsibility for liabilities related to age and/or competence
misrepresentation.</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.17in; margin-bottom: 0.17in">
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.17in; margin-bottom: 0in">
<font color="#192930">
<font style=""><b>INTELLECTUAL
PROPERTY</b></font>
</font>
<font color="#192930">
<font style="">
</font>
</font>
</p>
<p align="justify" style="line-height: 100%; orphans: 0; widows: 0; margin-bottom: 0.17in">
<font color="#192930">
<font style="">Unless
otherwise indicated, and </font>
</font>
<font color="#373737">
<font style="">excluding
any applicable third party materials,</font>
</font>
<font color="#192930">
<font style="">
all proprietary material including but not limited to all source
code, databases, functionality, software website designs, audio,
video, text, photographs, graphics, any other information, and the
trademarks, service marks and logos contained herein on the Website,
referenced herein or available through hyperlink(s), are either owned
and controlled by Anode or are licensed to Anode and are protected by
copyright and trademark laws and all other applicable intellectual
property rights of Indian law and applicable international
conventions. </font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-bottom: 0.33in; background: #ffffff">
<font color="#192930">
<font style="">In no
event is the disclosure of any/all of the above information to be
interpreted as granting the User a licence or right to use any of it.
In the event of any such use, the same shall be constituted as an
infringement under the applicable laws.</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-bottom: 0.33in; background: #ffffff">
<font color="#192930">
<font style="">Except
as expressly provided in the Terms of Use, no part of the Website and
none of its content may be copied, reproduced, republished, uploaded,
posted, publicly displayed, encoded, translated, transmitted or
distributed in any way (including “mirroring”) to any
other computer, server, website or other medium for publication or
distribution or for any commercial enterprise, without our express
prior written consent. Anode </font>
</font>
<font color="#373737">
<font style="">does
not grant any express or implied rights under any patents,
trademarks, copyrights or trade secret information. </font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-bottom: 0.33in; background: #ffffff">
<font color="#192930">
<font style="">The User
may use information purposely made available on the Website for
downloading, provided that You (1) do not remove any proprietary
notice language in all copies of such documents, (2) use such
information only for personal, non-commercial informational purpose
and does not copy or posts such information on any networked computer
or broadcast it in any media, (3) make no modifications to any such
information, and (4) do not make any additional representations or
warranties relating to such documents. </font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.17in; margin-bottom: 0in">
<font color="#373737">
<font style=""><b>PROHIBITED
USES </b></font>
</font>
<font color="#192930">
<font style="">
</font>
</font>
</p>
<p align="justify" style="line-height: 100%; orphans: 0; widows: 0; margin-bottom: 0.17in">
<font color="#192930">
<font style="">You
agree that in using this Website You shall not</font>
</font>
<font color="#373737">
<font style="">:</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.17in; margin-bottom: 0.17in">
<font color="#373737">
<font style="">1.
Host, display, upload, modify, publish, transmit, update or share any
information which - </font>
</font>
</p>
<ol type="a">
<li>
<p align="justify">
<font color="#373737">
<font style="">belongs
to another person and to which You do not have any right;</font>
</font>
</p>
<li>
<p align="justify">
<font color="#373737">
<font style="">is
grossly harmful, harassing, blasphemous, defamatory, obscene,
pornographic, pedophilic, libellous, invasive of another’s
privacy, hateful, or racially, ethnically objectionable,
disparaging, relating or encouraging money laundering or gambling,
or otherwise unlawful in any manner whatever; or unlawfully
threatening or unlawfully harassing including but not limited to
“indecent representation of women” within the meaning of
the Indecent Representation of Women (Prohibition) Act, 1986;</font>
</font>
</p>
<li>
<p align="justify">
<font color="#373737">
<font style="">is
misleading in any way;</font>
</font>
</p>
<li>
<p align="justify">
<font color="#373737">
<font style="">is
patently offensive to the online community, such as sexually
explicit content, or content that promotes obscenity, pedophilia,
racism, bigotry, hatred or physical/mental harm of any kind against
any group or individual; </font>
</font>
</p>
<li>
<p align="justify">
<font color="#373737">
<font style="">harasses
or advocates harassment of another person; </font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">involves
the transmission of “junk mail”, “chain letters”,
or unsolicited mass mailing or “spamming”;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">promotes
illegal activities or conduct that is abusive, threatening, obscene,
defamatory or libellous; </font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#373737">
<font style="">infringes
upon or violates any third party’s rights [including, but not
limited to, intellectual property rights, rights of privacy
(including without limitation unauthorised disclosure of a person’s
name, email address, physical address or phone number) or rights of
publicity);</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-bottom: 0in">
<font color="#373737">
<font style="">promotes
an illegal or unauthorised copy of another person’s
copyrighted work, such as providing pirated computer programs or
links to them, providing information to circumvent
manufacture-installed copy-protect devices, or providing pirated
music or links to pirated music files; </font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">contains
restricted or password-only access pages, or hidden pages or images
(those not linked to or from another accessible page);</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">provides
material that exploits people in a sexual, violent, or otherwise
inappropriate manner or solicits personal information from anyone; </font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">provides
instructional information about illegal activities such as making or
buying illegal weapons, violating someone’s privacy, or
providing or creating computer viruses;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">contains
video, photographs, or images of another person (with a minor or an
adult); </font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">tries
to gain unauthorised access or exceeds the scope of authorised
access to the Website or to profiles, blogs, communities, account
information, bulletins, friend request, or other areas of the
Website or solicits passwords or personal identifying information
for commercial or unlawful purposes from other users;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">solicits
gambling or engages in any gambling activity which We, in Our sole
discretion, believe is or could be construed as being illegal;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">interferes
with another User’s use and enjoyment of the Website or any
other User’s enjoyment of similar services;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">refers
to any website or URL that, in Our sole discretion, contains
material that is inappropriate for the Website or any other website,
contains content that would be prohibited or violates the letter or
spirit of these Terms of Use;</font>
</font>
</p>
<li>
<p align="justify">
<font color="#373737">
<font style="">harm
minors in any way;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">infringes
any patent, trademark, copyright or other proprietary rights or
third party’s trade secrets or rights of publicity or privacy;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">violates
any law for the time being in force;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">deceives
or misleads the addressee/ users about the origin of such messages
or communicates any information which is grossly offensive or
menacing in nature;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">impersonate
another person;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">contains
software viruses or any other computer code, files or programs
designed to interrupt, destroy or limit the functionality of any
computer resource; or contains any trojan horses, worms, time bombs,
cancelbots, easter eggs or other computer programming routines that
may damage, detrimentally interfere with, diminish value of,
surreptitiously intercept or expropriate any system, data or
personal information;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.13in; margin-bottom: 0in">
<font color="#373737">
<font style="">threatens
the unity, integrity, defence, security or sovereignty of India,
friendly relations with foreign states, or public order or causes
incitement to the commission of any cognizable offence or prevents
investigation of any offence or is insulting any other nation; </font>
</font>
</p>
<li>
<p style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">shall
not be false, inaccurate or misleading;</font>
</font>
</p>
<li>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">shall
not create liability for Us or cause Us to lose (in whole or in
part) the services of Our internet service provider (“ISPs”)
or other suppliers;
</font>
</font>
</p>
</ol>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">2. You
shall not use any “deep-link”, “page-scrape”,
“robot”, “spider” or other automatic device,
program, algorithm or methodology, or any similar or equivalent
manual process, to access, acquire, copy or monitor any portion of
the Website or any Content, or in any way reproduce or circumvent the
navigational structure or presentation of the Website or any Content,
to obtain or attempt to obtain any materials, documents or
information through any means not purposely made available through
the Website. We reserve Our right to bar any such activity.</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">3. You
shall not attempt to gain unauthorised access to any portion or
feature of the Website, or any other systems or networks connected to
the Website or to any server, computer, network, or to any of the
services offered on or through the Website, by hacking, password
“mining” or any other illegitimate means.
</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">4. You
shall not probe, scan or test the vulnerability of the Website or any
network connected to the Website nor breach the security or
authentication measures on the Website or any network connected to
the Website. You may not reverse look-up, trace or seek to trace any
information on any other User of or visitor to Website, or any other
customer, including any account on the Website not owned by You, to
its source, or exploit the Website or any service or information made
available or offered by or through the Website, in any way where the
purpose is to reveal any information, including but not limited to
personal identification or information, other than Your own
information, as provided for by the Website.
</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">5. You
shall not make any negative, denigrating or defamatory statement(s)
or comment(s) about Us or the brand name or domain name used by Us or
otherwise engage in any conduct or action that might tarnish the
image or reputation, of Anode or its associates, partners on the
Website, or otherwise tarnish or dilute any of Anode’s trade or
service marks, trade name and/or goodwill associated with such trade
or service marks, trade name as may be owned or used by us. You agree
that You will not take any action that imposes an unreasonable or
disproportionately large load on the infrastructure of the Website or
Anode’s systems or networks, or any systems or networks
connected to Anode.
</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">6. You
agree not to use any device, software or routine to interfere or
attempt to interfere with the proper working of the Website or any
transaction being conducted on the Website, or with any other
person’s use of the Website.
</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">7. You
may not forge headers or otherwise manipulate identifiers in order to
disguise the origin of any message or transmittal You send to Us on
or through the Website or any service offered on or through the
Website. You may not pretend that You are, or that You represent,
someone else, or impersonate any other individual or entity.
</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">8. You
may not use the Website or any content for any purpose that is
unlawful or prohibited by these Terms of Use, or to solicit the
performance of any illegal activity or other activity which infringes
the rights of Anode and / or others.
</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">9. You
shall at all times ensure full compliance with the applicable
provisions of the Information Technology Act, 2000 and rules
thereunder as applicable and as amended from time to time and also
all applicable Domestic laws, rules and regulations.
</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">10.
Solely to enable Us to use the information You supply Us with, so
that we are not violating any rights You might have in Your
Information, You agree to grant Us a non-exclusive, worldwide,
perpetual, irrevocable, royalty-free, sub-licensable (through
multiple tiers) right to exercise the copyright, publicity, database
rights or any other rights You have in Your Information, in any media
now known or not currently known, with respect to Your Information.
We shall be entitled to, consistent with Our Privacy and Cookies
Policy as adopted in accordance with applicable law, use the content
or any of its elements for any type of use forever, including but not
limited to promotional and educational purposes and in any media
whether now known or hereafter devised, including the creation of
derivative works that may include the content You provide. You agree
that any content You post may be used by us, consistent with Our
Privacy Policy and Rules of Conduct on Site as mentioned herein, and
You are not entitled to any payment or other compensation for such
use.
</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">11. You
shall not engage in advertising to, or solicitation of, other Users
of the Website to buy or sell any products or services, including,
but not limited to, services related to that being displayed on
</font>
</font><a href="https://t4glabs.github.io/anode-website/index.html">
<font color="#1155cc">
<font style=""><u>anodegovernancelab</u></font>
</font>
</a>
<font color="#373737">
<font style="">
or related to us. You may not transmit any chain letters or
unsolicited commercial or junk email to other Users via the Website.
It shall be a violation of these Terms of Use to use any information
obtained from the Website in order to contact, advertise to, solicit,
or sell to another person other than Us without Our prior explicit
consent. Further, it shall also be a violation of these Terms of Use
to use any information obtained from the Website in order to harass,
abuse, or harm another person, physically or mentally. </font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">12. You
understand that We have the right at all times to disclose any
information (including the identity of the persons providing
information or materials on the Website) as necessary to satisfy any
law, regulation or valid governmental request. This may include,
without limitation, disclosure of the information in connection with
investigation of alleged illegal activity or solicitation of illegal
activity or in response to a lawful court order or subpoena. In
addition, We can (and You hereby expressly authorise Us to) disclose
any information about You to law enforcement or other government
officials, as We, in Our sole discretion, believe necessary or
appropriate in connection with the investigation and/or resolution of
possible crimes, especially those that may involve personal injury.</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style="">13. You
</font>
</font>
<font color="#192930">
<font style="">shall
not create liability for Us or cause Us to lose (in whole or in part)
the services of our ISPs or other suppliers. </font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-top: 0.17in; margin-bottom: 0in">
<font color="#192930">
<font style=""><b>PRIVACY
AND COOKIES POLICY </b></font>
</font>
</p>
<p align="justify" style="line-height: 100%; orphans: 0; widows: 0; margin-bottom: 0.17in">
<font color="#192930">
<font style="">Before
You continue using Our Website, we advise You to read our Privacy and
Cookies Policy here<a href="https://bluebanyanllp.org/privacy-policy/">
</a></font>
</font>
<font color="#ff0000">
<font style="">(insert
hyperlink for privacy
policy)
</font>
</font>
<font color="#192930">
<font style="">
regarding our user data collection. It will help you better
understand our practices.</font>
</font>
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
</p>
<p align="justify"
style="line-height: 100%; orphans: 0; widows: 0; margin-right: 0.12in; margin-top: 0in; margin-bottom: 0in">
<font color="#373737">
<font style=""><b>RELIANCE
ON INFORMATION </b></font>
</font>