-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
1187 lines (1075 loc) · 46.9 KB
/
privacy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<!--====== Required meta tags ======-->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Experience secure, lightning-fast cryptocurrency trading with NightTrader Exchange. Our decentralized multi-signature platform offers unparalleled security, scalability, and affordability. Trade with confidence - your keys, your crypto. Join the future of decentralized finance today.">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--====== Title ======-->
<title>Privacy NightTrader – State-of-the-Art, Secure, Fast, Scalable & Affordable Decentralized Multi Signature Exchange</title>
<!--====== Favicon Icon ======-->
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/png">
<!--====== Bootstrap css ======-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!--====== Fontawesome css ======-->
<link rel="stylesheet" href="assets/css/all.css">
<!--====== nice select css ======-->
<link rel="stylesheet" href="assets/css/nice-select.css">
<!--====== Slick css ======-->
<link rel="stylesheet" href="assets/css/slick.css">
<!--====== Swiper css ======-->
<link rel="stylesheet" href="assets/css/swiper.min.css">
<!--====== Default css ======-->
<link rel="stylesheet" href="assets/css/default.css">
<!--====== Style css ======-->
<link rel="stylesheet" href="assets/css/style.css">
<style>
#character {
position: absolute;
max-width: 45px;
height: 45px;
width: 45px;
top: 10px;
background-image: url('follow-1.png');
background-size: cover;
pointer-events: none; /* Ensure the mouse moves over without blocking */
}
#langSelect {
position: relative;
max-width: 50px;
width: 50px;
background-image: url('language.png');
background-size: cover;
pointer-events: none; /* Ensure the mouse moves over without blocking */
}
#languageDropdown {
background-color: white;
border: 1px solid #ccc;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}
#languageDropdown li {
padding: 8px;
cursor: pointer;
}
#languageDropdown li:hover {
background-color: #f1f1f1;
}
#languageDropdown li a {
color: black; /* Override the default blue color for links */
text-decoration: none; /* Remove underline from links */
}
.swal2-header {
display: flex;
flex-direction: column;
align-items: center;
padding: 0 1.8em; }
.swal2-title {
position: relative;
max-width: 100%;
margin: 0 0 0.4em;
padding: 0;
color: #595959;
font-size: 1.875em;
font-weight: 600;
text-align: center;
text-transform: none;
word-wrap: break-word; }
.swal2-actions {
display: flex;
z-index: 1;
box-sizing: border-box;
flex-wrap: wrap;
align-items: center;
justify-content: center;
width: 100%;
margin: 1.25em auto 0;
padding: 0; }
.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
opacity: .4; }
.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }
.swal2-actions:not(.swal2-loading) .swal2-styled:active {
background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }
.swal2-loader {
display: none;
align-items: center;
justify-content: center;
width: 2.2em;
height: 2.2em;
margin: 0 1.875em;
-webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
border-width: 0.25em;
border-style: solid;
border-radius: 100%;
border-color: #2778c4 transparent #2778c4 transparent; }
.swal2-styled {
margin: 0.3125em;
padding: 0.625em 1.1em;
box-shadow: none;
font-weight: 500; }
.swal2-styled:not([disabled]) {
cursor: pointer; }
.swal2-styled.swal2-confirm {
border: 0;
border-radius: 0;
background: initial;
background-color: #2778c4;
color: #fff;
font-size: 1em; }
.swal2-styled.swal2-deny {
border: 0;
border-radius: 0.25em;
background: initial;
background-color: #d14529;
color: #fff;
font-size: 1em; }
.swal2-styled.swal2-cancel {
border: 0;
border-radius: 0;
background: initial;
background-color: #757575;
color: #fff;
font-size: 1em; }
.swal2-styled:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5); }
.swal2-styled::-moz-focus-inner {
border: 0; }
.swal2-footer {
justify-content: center;
margin: 1.25em 0 0;
padding: 1em 0 0;
border-top: 1px solid #eee;
color: #545454;
font-size: 1em; }
.swal2-timer-progress-bar-container {
position: absolute;
right: 0;
bottom: 0;
left: 0;
height: 0.25em;
overflow: hidden;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
.swal2-timer-progress-bar {
width: 100%;
height: 0.25em;
background: rgba(0, 0, 0, 0.2); }
.swal2-image {
max-width: 100%;
margin: 1.25em auto; }
.swal2-close {
position: absolute;
z-index: 2;
top: 0;
right: 0;
align-items: center;
justify-content: center;
width: 1.2em;
height: 1.2em;
padding: 0;
overflow: hidden;
transition: initial;
border: none;
border-radius: 5px;
background: transparent;
color: #cccccc;
font-family: serif;
font-size: 2.5em;
line-height: 1.2;
cursor: pointer; }
.swal2-close:hover {
transform: none;
background: transparent;
color: #f27474; }
.swal2-close:focus {
outline: none;
box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5); }
.swal2-close::-moz-focus-inner {
border: 0; }
.swal2-content {
z-index: 1;
justify-content: center;
margin: 0;
padding: 0 1.6em;
color: #545454;
font-size: 1.125em;
font-weight: normal;
line-height: normal;
text-align: center;
word-wrap: break-word; }
.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
margin: 1em auto; }
.swal2-input,
.swal2-file,
.swal2-textarea {
box-sizing: border-box;
width: 100%;
transition: initial;
border: 1px solid #d9d9d9;
border-radius: 0;
background: inherit;
box-shadow: none;
color: inherit;
font-size: 1.125em; }
.swal2-input.swal2-inputerror,
.swal2-file.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
border-color: #f27474 !important;
box-shadow: 0 0 2px #f27474 !important; }
.swal2-input:focus,
.swal2-file:focus,
.swal2-textarea:focus {
border: 1px solid #b4dbed;
outline: none;
box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5); }
.swal2-input::-moz-placeholder, .swal2-file::-moz-placeholder, .swal2-textarea::-moz-placeholder {
color: #7e7e7e; }
.swal2-input:-ms-input-placeholder, .swal2-file:-ms-input-placeholder, .swal2-textarea:-ms-input-placeholder {
color: #7e7e7e; }
.swal2-input::placeholder,
.swal2-file::placeholder,
.swal2-textarea::placeholder {
color: #7e7e7e; }
.swal2-range {
margin: 1em auto;
background: #fff; }
.swal2-range input {
width: 80%; }
.swal2-range output {
width: 20%;
color: inherit;
font-weight: 600;
text-align: center; }
.swal2-range input,
.swal2-range output {
height: 2.625em;
padding: 0;
font-size: 1.125em;
line-height: 2.625em; }
.swal2-input {
height: 2.625em;
padding: 0 0.75em; }
.swal2-input[type='number'] {
max-width: 10em; }
.swal2-file {
background: inherit;
font-size: 1.125em; }
.swal2-textarea {
height: 6.75em;
padding: 0.75em; }
.swal2-select {
min-width: 50%;
max-width: 100%;
padding: .375em .625em;
background: inherit;
color: inherit;
font-size: 1.125em; }
.swal2-radio,
.swal2-checkbox {
align-items: center;
justify-content: center;
background: #fff;
color: inherit; }
.swal2-radio label,
.swal2-checkbox label {
margin: 0 .6em;
font-size: 1.125em; }
.swal2-radio input,
.swal2-checkbox input {
margin: 0 .4em; }
.swal2-input-label {
display: flex;
justify-content: center;
margin: 1em auto; }
.swal2-validation-message {
max-width: 90%;
margin: 0; /* Adjusted to avoid overlap issues */
padding: 0.625em;
overflow: hidden;
background: #f0f0f0;
color: #545454;
font-size: 1em;
font-weight: 300;
text-align: center; /* Center content horizontally */
box-sizing: border-box; /* Ensure padding doesn’t cause overflow */
}
.swal2-validation-message::before {
max-width: 90%;
content: '!';
display: inline-block;
width: 1.5em;
height: 1.5em;
margin: 0 0.625em;
border-radius: 50%;
background-color: #f27474;
color: #fff;
font-weight: 600;
line-height: 1.5em;
text-align: center;
}
.swal2-icon {
position: relative;
box-sizing: content-box;
justify-content: center;
width: 5em;
height: 5em;
margin: 1.25em auto 1.875em;
border: 0.25em solid transparent;
border-radius: 50%;
border-color: #000;
font-family: inherit;
line-height: 5em;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.swal2-icon .swal2-icon-content {
display: flex;
align-items: center;
font-size: 3.75em; }
.swal2-icon.swal2-error {
border-color: #f27474;
color: #f27474; }
.swal2-icon.swal2-error .swal2-x-mark {
position: relative;
flex-grow: 1; }
.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
display: block;
position: absolute;
top: 2.3125em;
width: 2.9375em;
height: .3125em;
border-radius: .125em;
background-color: #f27474; }
.swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
left: 1.0625em;
transform: rotate(45deg); }
.swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
right: 1em;
transform: rotate(-45deg); }
.swal2-icon.swal2-warning {
border-color: #facea8;
color: #f8bb86; }
.swal2-icon.swal2-info {
border-color: #9de0f6;
color: #3fc3ee; }
.swal2-icon.swal2-question {
border-color: #c9dae1;
color: #87adbd; }
.swal2-icon.swal2-success {
border-color: #a5dc86;
color: #a5dc86; }
.swal2-icon.swal2-success [class^='swal2-success-circular-line'] {
position: absolute;
width: 3.75em;
height: 7.5em;
transform: rotate(45deg);
border-radius: 50%; }
.swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='left'] {
top: -.4375em;
left: -2.0635em;
transform: rotate(-45deg);
transform-origin: 3.75em 3.75em;
border-radius: 7.5em 0 0 7.5em; }
.swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='right'] {
top: -.6875em;
left: 1.875em;
transform: rotate(-45deg);
transform-origin: 0 3.75em;
border-radius: 0 7.5em 7.5em 0; }
.swal2-icon.swal2-success .swal2-success-ring {
position: absolute;
z-index: 2;
top: -.25em;
left: -.25em;
box-sizing: content-box;
width: 100%;
height: 100%;
border: 0.25em solid rgba(165, 220, 134, 0.3);
border-radius: 50%; }
.swal2-icon.swal2-success .swal2-success-fix {
position: absolute;
z-index: 1;
top: .5em;
left: 1.625em;
width: .4375em;
height: 5.625em;
transform: rotate(-45deg); }
.swal2-icon.swal2-success [class^='swal2-success-line'] {
display: block;
position: absolute;
z-index: 2;
height: .3125em;
border-radius: .125em;
background-color: #a5dc86; }
.swal2-icon.swal2-success [class^='swal2-success-line'][class$='tip'] {
top: 2.875em;
left: .8125em;
width: 1.5625em;
transform: rotate(45deg); }
.swal2-icon.swal2-success [class^='swal2-success-line'][class$='long'] {
top: 2.375em;
right: .5em;
width: 2.9375em;
transform: rotate(-45deg); }
.swal2-progress-steps {
flex-wrap: wrap;
align-items: center;
max-width: 100%;
margin: 0 0 1.25em;
padding: 0;
background: inherit;
font-weight: 600; }
.swal2-progress-steps li {
display: inline-block;
position: relative; }
.swal2-progress-steps .swal2-progress-step {
z-index: 20;
flex-shrink: 0;
width: 2em;
height: 2em;
border-radius: 2em;
background: #2778c4;
color: #fff;
line-height: 2em;
text-align: center; }
.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
background: #2778c4; }
.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
background: #add8e6;
color: #fff; }
.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
background: #add8e6; }
.swal2-progress-steps .swal2-progress-step-line {
z-index: 10;
flex-shrink: 0;
width: 2.5em;
height: .4em;
margin: 0 -1px;
background: #2778c4; }
/* Custom Swal */
.swal2-popup {
position: fixed;
background-color: #ededed; /* Background color */
color: #000000; /* Text color */
border: 2px solid #3d0064; /* Border color */
border-radius: 4px; /* Border radius */
font-size: 11px;
font-family: 'Courier New', monospace; /* Custom font */
font-weight: normal;
z-index: 1000;
transform: none;
transition: none;
animation: none;
padding: 1.25em;
width: 32em;
box-sizing: border-box;
flex-direction: column;
justify-content: center;
}
.swal2-popup:focus {
outline: none; }
.swal2-popup.swal2-loading {
overflow-y: hidden; }
.swal2-title {
color: #3d0064; /* Title text color */
}
.swal2-content {
color: #3d0064; /* Content text color */
}
.swal2-confirm,
.swal2-cancel {
background-color: #ededed; /* Confirm and cancel button background color */
color: #3d0064; /* Button text color */
}
/* Hover effect for buttons */
.swal2-confirm:hover,
.swal2-cancel:hover {
background-color: #0086e3;
}
/* Icon color */
.swal2-icon {
color: #3d0064;
}
.swal2-range {
background-color: #ededed; /* Set your desired background color */
border: 2px solid #3d0064;
}
</style>
</head>
<body>
<!--====== HEADER PART START ======-->
<header class="header-area">
<div class="header-nav">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="navigation">
<nav class="navbar navbar-expand-lg navbar-light ">
<a class="navbar-brand" href="index.html"><img id="character" src="assets/images/follow-1.png"></img></a>
<!-- logo -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button> <!-- navbar toggler -->
<div class="collapse navbar-collapse sub-menu-bar" id="navbarSupportedContent">
<ul class="navbar-nav m-auto" >
<li class="nav-item" id="langSelectLink2" style="display:none">
<img id="langSelect" src="assets/images/language.png"></img>
</li>
<li class="nav-item">
<a class="nav-link active" style="white-space: nowrap;" href="index.html">Home<i
class="fal fa-angle-down"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" style="white-space: nowrap;" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" style="white-space: nowrap;" href="#Benefits">Benefits</a>
</li>
<li class="nav-item">
<a class="nav-link" style="white-space: nowrap;" href="#Downloads">Downloads</a>
</li>
<!--
<li class="nav-item">
<a class="nav-link" href="#Roadmap">Roadmap</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Team">Team</a>
</li>
-->
<li class="nav-item">
<a class="nav-link" style="white-space: nowrap;" href="#FAQs">FAQs</a>
</li>
<li class="nav-item">
<a class="nav-link" style="white-space: nowrap;" href="#blog">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" style="white-space: nowrap;" href="referralprogram.html">Referral Program</a>
</li>
<li class="nav-item">
<a class="nav-link" style="white-space: nowrap;" href="#Contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" style="white-space: nowrap;" href="https://nighttrader.exchange/support/">Support</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="contact-us.html">Pages <i
class="fal fa-angle-down"></i></a>
<ul class="sub-menu">
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-post.html">Blog Post</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="singup.html">Singup</a></li>
<li><a href="404.html">Error</a></li>
</ul>
</li> -->
</ul>
</div> <!-- navbar collapse -->
<div class="navbar-btn d-none d-sm-flex">
<ul style="white-space: nowrap;">
<li id="langSelectLink" style=""><img id="langSelect" src="assets/images/language.png"></img></li>
<ul id="languageDropdown" style="white-space: normal; display: none; position: absolute; list-style-type: none; padding: 0; margin: 0;">
<li><a href="#" onclick="changeLanguage('en')">English</a></li>
<li><a href="#" onclick="changeLanguage('ar')">Arabic</a></li>
<li><a href="#" onclick="changeLanguage('ch')">Chinese</a></li>
<li><a href="#" onclick="changeLanguage('fr')">French</a></li>
<li><a href="#" onclick="changeLanguage('ge')">German</a></li>
<li><a href="#" onclick="changeLanguage('it')">Italian</a></li>
<li><a href="#" onclick="changeLanguage('ja')">Japanese</a></li>
<li><a href="#" onclick="changeLanguage('ko')">Korean</a></li>
<li><a href="#" onclick="changeLanguage('pt')">Portuguese</a></li>
<li><a href="#" onclick="changeLanguage('ru')">Russian</a></li>
<li><a href="#" onclick="changeLanguage('sp')">Spanish</a></li>
</ul>
<li><a class="main-btn" href="https://my.nighttrader.exchange/#login">login</a></li>
<li><a class="main-btn-2 main-btn" href="https://my.nighttrader.exchange/#register-vaJBgtzFBgBaEWLreAc6qRCuKLG">signup</a></li>
</ul>
</div>
</nav>
</div> <!-- navigation -->
</div>
</div>
</div>
</div>
</header>
<!--====== HEADER PART ENDS ======-->
<!--====== PAGE TITLE PART START ======-->
<div class="page-title-area page-title-2-area">
<div class="container">
<div class="row align-items-end">
<div class="col-lg-6">
<div class="page-title-content">
<span>Updated: | October 22, 2024</span>
<h3 class="title">Privacy Policy</h3>
</div>
</div>
<div class="col-lg-6">
<div class="title-social d-flex justify-content-lg-end justify-content-start">
<div class="item">
<span>Share</span>
<ul>
<li><a href="https://www.facebook.com/profile.php?id=100068695556611"><i class="fab fa-facebook-square"></i></a></li>
<li><a href="https://t.me/Nighttrader_org_Chat"><i class="fab fa-telegram"></i></a></li>
<li><a href="https://www.twitter.com/nighttraderO"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/company/11866948/"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/NightTrader/"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.tiktok.com/@nighttradero"><i class="fab fa-tiktok"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="banefits-color-2">
<img src="assets/images/shape/color-bg-4.png" alt="">
</div>
</div>
<!--====== PAGE TITLE PART ENDS ======-->
<!--====== BLOG POST PART START ======-->
<section class="blog-post-area">
<div class="container">
<div class="row justify-content-center">
<div class="blog-post-item">
<div class="blog-post-top-content">
<h3 class="title">Introduction</h3>
<p>NightTrader Exchange is committed to protecting your privacy and ensuring the security of your personal information. This Privacy Policy explains how the nodes collect, use, disclose, and safeguard your information when you use our decentralized multi-signature cryptocurrency exchange platform.</p>
<h3 class="title">Information Collected</h3>
<p> Some nodes may collect the following personal information:<br>
Email address or bitmessage address<br>
Cryptocurrency wallet addresses<br>
Third party KYC information(when applicable)<br>
Transaction data</p>
<h3 class="title">Automatically Collected Information</h3>
<p>NightTrader may automatically collect certain information about your device, including:<br>
IP address<br>
Browser type<br>
Operating system<br>
Access times and dates
</p><h3 class="title">How Your Information Is Used</h3>
<p> We use the collected information for the following purposes:<br>
To provide and maintain the decentralized exchange services<br>
To process transactions and send notices about your transactions<br>
To resolve disputes and troubleshoot problems<br>
To prevent potentially prohibited or illegal activities<br>
To enforce our Terms of Service</p>
<h3 class="title">Data Security</h3>
<p> The exchange implements a variety of security measures to maintain the safety of your personal information:<br>
Information is collected only for basic exchanges functionality<br>
Encryption of sensitive data<br>
However, please note that no method of transmission over the internet or electronic storage is 100% secure.</p>
<h3 class="title">Sharing of Information</h3>
<p> As a decentralized platform, NightTrader would not share your personal information with third parties except:<br>
As required by law or regulation<br>
To protect against fraud or other illegal activities<br>
With your explicit consent</p>
<h3 class="title">Your Rights</h3>
<p> You have the right to:<br>
Access the personal information the exchange holds about you<br>
Correct any inaccuracies in your personal information<br>
Delete your personal information from our systems</p>
<h3 class="title">Changes to This Privacy Policy</h3>
<p> NightTrader may update this Privacy Policy from time to time and that new policy would appear on this page.
</p> <h3 class="title">Contact Us</h3>
<p> If you have any questions about this Privacy Policy, please contact us through social media.<br>
By using NightTrader Exchange, you agree to the collection and use of information in accordance with this Privacy Policy.</p></div>
</div>
</div>
</div>
</div>
</div>
<div class="banefits-color-2">
<img src="assets/images/shape/color-bg-4.png" alt="">
</div>
</section>
<!--====== BLOG POST PART ENDS ======-->
<!--====== FOOTER PART START ======-->
<footer class="footer-area">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="footer-list mt-30">
<h4 class="title">Menu</h4>
<ul>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#Benefits">Benefits</a></li>
<li><a href="https://nighttrader.exchange/support/">Support</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="footer-list mt-30">
<h4 class="title">PAPERS</h4>
<ul>
<li><a href="https://github.com/NightTrader/nighttrader.github.io/blob/4b2ddfd7a2069bf88922832db6e2cde0bc056c57/Nighttrader_A_Decentralized_Multisignature_Electronic_Cash_Wallet.pdf">White Paper</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="footer-list mt-30">
<h4 class="title">legal</h4>
<ul>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="tandc.html">Terms & Conditions</a></li>
<li><a href="cookiepolicy.html">Cookie Policy</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="footer-list mt-30">
<h4 class="title">Newsletter</h4>
<form action="#">
<div class="input-box">
<input type="text" placeholder="Email Address">
<button><i class="fal fa-arrow-right"></i></button>
</div>
</form>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="footer-copyright d-flex justify-content-between align-items-center">
<p class="order-2 order-sm-1">© NIGHTTRADER.EXCHANGE</p>
<ul class="order-1 order-sm-2">
<li><a href="https://www.facebook.com/profile.php?id=100068695556611"><i class="fab fa-facebook-square"></i></a></li>
<li><a href="https://t.me/Nighttrader_org_Chat"><i class="fab fa-telegram"></i></a></li>
<li><a href="https://www.twitter.com/nighttraderO"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/company/11866948/"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/NightTrader/"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.tiktok.com/@nighttradero"><i class="fab fa-tiktok"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="banefits-color-2">
<img src="assets/images/shape/color-bg-4.png" alt="">
</div>
</footer>
<!--====== FOOTER PART ENDS ======-->
<!--====== scroll_up PART START ======-->
<a id="scroll_up"><i class="far fa-angle-up"></i></a>
<!--====== scroll_up PART ENDS ======-->
<!--====== jquery js ======-->
<script src="assets/js/vendor/modernizr-3.6.0.min.js"></script>
<script src="assets/js/vendor/jquery-1.12.4.min.js"></script>
<!--====== Bootstrap js ======-->
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<!--====== Slick js ======-->
<script src="assets/js/slick.min.js"></script>
<!--====== Swiper js ======-->
<script src="assets/js/swiper.min.js"></script>
<!--====== nice select js ======-->
<script src="assets/js/jquery.nice-select.min.js"></script>
<!--====== circle progress js ======-->
<script src="assets/js/circle-progress.min.js"></script>
<!--====== Images Loaded js ======-->
<script src="assets/js/jquery.syotimer.min.js"></script>
<!--====== Main js ======-->
<script src="assets/js/main.js"></script>
<script src="assets/js/translate.js"></script>
<script src="assets/js/sweetalert211.js"></script>
<script>
const character = document.getElementById('character');
function getCharacterCenter() {
const rect = character.getBoundingClientRect();
return {
x: rect.left + rect.width / 2,
y: rect.top + rect.height / 2,
width: rect.width,
height: rect.height
};
}
function getMouseAngle(mouseX, mouseY, centerX, centerY) {
const dx = mouseX - centerX;
const dy = mouseY - centerY;
return Math.atan2(dy, dx) * (180 / Math.PI); // Convert to degrees
}
function isMouseOverCharacter(mouseX, mouseY, rect) {
return (
mouseX >= rect.x - rect.width / 2 &&
mouseX <= rect.x + rect.width / 2 &&
mouseY >= rect.y - rect.height / 2 &&
mouseY <= rect.y + rect.height / 2
);
}
function updateCharacterImage(mouseX, mouseY) {
const rect = getCharacterCenter();
// If the mouse is over the character, reset to center
if (isMouseOverCharacter(mouseX, mouseY, rect)) {
character.src = `./assets/images/follow-1.png`;
return;
}
const angle = getMouseAngle(mouseX, mouseY, rect.x, rect.y);
let imageIndex = 1; // Default to center
// Assign images based on direction
if (angle >= -22.5 && angle < 22.5) {
imageIndex = 2; // Right
} else if (angle >= 22.5 && angle < 67.5) {
imageIndex = 3; // Lower Right
} else if (angle >= 67.5 && angle < 112.5) {
imageIndex = 4; // Down
} else if (angle >= 112.5 && angle < 157.5) {
imageIndex = 5; // Lower Left
} else if (angle >= 157.5 || angle < -157.5) {
imageIndex = 6; // Left
} else if (angle >= -157.5 && angle < -112.5) {
imageIndex = 7; // Upper Left
} else if (angle >= -112.5 && angle < -67.5) {
imageIndex = 8; // Up
} else if (angle >= -67.5 && angle < -22.5) {
imageIndex = 9; // Upper Right
}
// Update the character image
character.src = `./assets/images/follow-${imageIndex}.png`;
}
document.addEventListener('mousemove', function(event) {
updateCharacterImage(event.clientX, event.clientY);
});
var walker;
var setValues = {};
function getVisibleText(lang="ch") {
walker = document.createTreeWalker(
document.body,
NodeFilter.SHOW_TEXT,
{
acceptNode: function(node) {
// Only include text nodes that are not inside hidden elements
const style = window.getComputedStyle(node.parentNode);
if (style.display === 'none' || style.visibility === 'hidden' || style.opacity === '0') {
return NodeFilter.FILTER_REJECT;
}
return NodeFilter.FILTER_ACCEPT;
}
},
false
);
};
function translateVisibleText(lang="ch") {
// Traverse the DOM to collect text nodes
const textNodes = [];
let walker2 = walker;
while (walker2.nextNode()) {
const text = walker2.currentNode.nodeValue.trim();
if (text && text.replace(/[\s\r\n]+/g, '').length > 0) {
textNodes.push(walker2.currentNode.nodeValue);
// Store the original text in a data attribute if not already stored
if (!(walker2.currentNode.nodeValue in setValues)) {
setValues[walker2.currentNode.nodeValue] = 1;
// Create a new invisible child node with the original text
const originalTextNode = document.createElement('span');
originalTextNode.textContent = walker2.currentNode.nodeValue;
originalTextNode.style.display = 'none'; // Make it invisible
walker2.currentNode.parentNode.appendChild(originalTextNode);
}
// When lang is "ch", check if translation exists and replace the text
if (lang === "ch") {
if (walker2.currentNode.nodeValue in translatech) {
// Replace the text content of the node with the translated text from translatech
walker2.currentNode.textContent = translatech[walker2.currentNode.nodeValue];
}
} else if (lang === "en") {
const originalTextNode = walker2.currentNode.parentNode.querySelector('span');
if (originalTextNode) {
walker2.currentNode.textContent = originalTextNode.textContent;
}
} else if (lang === "ar") {
if (walker2.currentNode.nodeValue in translatear) {
// Replace the text content of the node with the translated text from translatech
walker2.currentNode.textContent = translatear[walker2.currentNode.nodeValue];
}
} else if (lang === "fr") {
if (walker2.currentNode.nodeValue in translatefr) {
// Replace the text content of the node with the translated text from translatech
walker2.currentNode.textContent = translatefr[walker2.currentNode.nodeValue];
}
} else if (lang === "ge") {
if (walker2.currentNode.nodeValue in translatege) {
// Replace the text content of the node with the translated text from translatech
walker2.currentNode.textContent = translatege[walker2.currentNode.nodeValue];
}
} else if (lang === "it") {
if (walker2.currentNode.nodeValue in translateit) {
// Replace the text content of the node with the translated text from translatech
walker2.currentNode.textContent = translateit[walker2.currentNode.nodeValue];