From 587cf529355c0dfa0f888c8aecbf741e935b9489 Mon Sep 17 00:00:00 2001 From: blackpanther1881 Date: Wed, 13 Sep 2023 15:37:25 +0530 Subject: [PATCH 1/2] update ibc volume --- src/Containers/Homepage/Banner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Containers/Homepage/Banner.js b/src/Containers/Homepage/Banner.js index a5f4ead6..81b47ef4 100644 --- a/src/Containers/Homepage/Banner.js +++ b/src/Containers/Homepage/Banner.js @@ -74,7 +74,7 @@ const Banner = () => {
Chain TVL
-

$

+

$

IBC volume (30 Days)
From 409ca28368867da18316496442684fc56ac8b0d5 Mon Sep 17 00:00:00 2001 From: blackpanther1881 Date: Thu, 9 Nov 2023 23:35:55 +0530 Subject: [PATCH 2/2] update terms --- src/App.js | 9 + src/Containers/Homepage/Banner.js | 60 +- src/assets/scss/mediaqueries/_hompage.scss | 2 +- src/assets/scss/style.css | 146 ++- src/assets/scss/style.css.map | 4 +- src/assets/scss/style.scss | 5 + src/assets/scss/views/_main.scss | 2 +- src/assets/scss/views/_terms.scss | 84 ++ src/components/layout/Footer/index.js | 44 +- src/pages/Terms.js | 1215 ++++++++++++++++++++ src/pages/privacy.js | 776 +++++++++++++ 11 files changed, 2279 insertions(+), 68 deletions(-) create mode 100644 src/assets/scss/views/_terms.scss create mode 100644 src/pages/Terms.js create mode 100644 src/pages/privacy.js diff --git a/src/App.js b/src/App.js index a6981fae..fd899e3c 100644 --- a/src/App.js +++ b/src/App.js @@ -7,6 +7,8 @@ import AOS from "aos"; import "aos/dist/aos.css"; import Homepage from "./pages/Homepage"; import Ecosystem from "./pages/Ecosystem"; +import Terms from "./pages/Terms"; +import Privacy from "./pages/privacy"; import "react-multi-carousel/lib/styles.css"; import Faq from "./pages/Faq"; import Xprt from "./pages/Xprt"; @@ -51,6 +53,13 @@ const App = () => { component={Summary} layout={LayoutDefault} /> + + ); }; diff --git a/src/Containers/Homepage/Banner.js b/src/Containers/Homepage/Banner.js index 81b47ef4..b41b5aca 100644 --- a/src/Containers/Homepage/Banner.js +++ b/src/Containers/Homepage/Banner.js @@ -1,18 +1,18 @@ -import React, {useEffect, useState} from "react"; -import {fetchChainTVL} from "../../utils/api"; +import React, { useEffect, useState } from "react"; +import { fetchChainTVL } from "../../utils/api"; import dexterLogo from "../../assets/images1/logos/dexter.svg"; import pstakeLogo from "../../assets/images1/pstake-logo-symbol.svg"; import CountUp from "react-countup"; const Banner = () => { - const [chainTvl, setChainTvl] = useState("0") - useEffect(()=>{ - const fetch = async ()=>{ + const [chainTvl, setChainTvl] = useState("0"); + useEffect(() => { + const fetch = async () => { const res = await fetchChainTVL(); setChainTvl(res); - } + }; fetch(); - },[]) + }, []); return (
@@ -23,8 +23,11 @@ const Banner = () => { Liquid Staking Hub

- Persistence is an app chain for Liquid Staking powering an ecosystem
- of DeFi applications focused on unlocking the liquidity of staked assets. + Persistence is an app chain for Liquid Staking powering an + ecosystem +
+ of DeFi applications focused on unlocking the liquidity of staked + assets.

-

${Number(chainTvl) > 0 ? - - : - 0 - }

+

+ $ + {Number(chainTvl) > 0 ? ( + + ) : ( + 0 + )} +

Chain TVL
-

$

+

+ {" "} + $ +

IBC volume (30 Days)
diff --git a/src/assets/scss/mediaqueries/_hompage.scss b/src/assets/scss/mediaqueries/_hompage.scss index 8c528226..3a0344d6 100644 --- a/src/assets/scss/mediaqueries/_hompage.scss +++ b/src/assets/scss/mediaqueries/_hompage.scss @@ -323,7 +323,7 @@ } .footer .copy-rights{ font-weight: 500; - font-size: 12px; + font-size: 14px; line-height: 1.314; color: #70747c; display: block; diff --git a/src/assets/scss/style.css b/src/assets/scss/style.css index 662b1d58..3e427ec4 100644 --- a/src/assets/scss/style.css +++ b/src/assets/scss/style.css @@ -222,33 +222,42 @@ a { flex-direction: column; } .navbar.navbar-custom .bannernav-section { width: 100%; - background: #FFFFFF; + background-image: url(./../../images1/atom_topbar.svg), radial-gradient(100% 57099.62% at 6% 0%, #B8F9FE 0%, #B48FDD 25.4%, #83339D 100%); position: relative; + background-repeat: no-repeat; + background-size: cover; top: 0px; } .navbar.navbar-custom .bannernav-section .alert-dismissible .close { position: absolute; top: 3px; cursor: pointer; right: -25px; - padding: 0.75rem 1.25rem; - color: inherit; - color: #fff; - width: 50px; + padding: 0.25rem; + color: #FCFCFC; opacity: 1; } + .navbar.navbar-custom .bannernav-section .alert-dismissible .close .icon { + fill: #fff; + width: 10px; + height: 10px; } .navbar.navbar-custom .bannernav-section .nav-banner { width: 100%; text-align: center; padding: 10px 0; margin: 0; } + .navbar.navbar-custom .bannernav-section .nav-banner .logo { + width: 32px; + height: 24px; } .navbar.navbar-custom .bannernav-section .nav-banner p { margin: 0; - font-weight: 500; - font-size: 12px; - color: #000; } + font-weight: 400; + font-size: 14px; + color: #FCFCFC; } .navbar.navbar-custom .bannernav-section .nav-banner p a { - color: #000; } + color: #FCFCFC; + font-weight: 500; + text-decoration: underline; } .navbar.navbar-custom .bannernav-section .nav-banner p a:hover { - color: #000; } + color: #FCFCFC; } .navbar.navbar-custom .links a { width: 32px; height: 32px; @@ -593,7 +602,7 @@ a { color: rgba(0, 0, 0, 0.89); } .footer .copy-rights { font-weight: 500; - font-size: 12px; + font-size: 14px; line-height: 1.314; color: #70747c; display: inline-block; } @@ -669,7 +678,8 @@ a { padding-top: 20px; display: flex; padding-bottom: 20px; - align-items: self-end; } + align-items: center; + justify-content: flex-end; } .footer .footer-logo-section .dark-logo { height: 20px; width: 140px; @@ -829,7 +839,7 @@ button:disabled { .container-xl { max-width: 1340px !important; } } .react-multi-carousel-item { - margin-right: 25px; + padding-right: 25px; cursor: pointer; } .footer-item { @@ -846,10 +856,19 @@ button:disabled { background-image: url(./../../images1/animate.gif); background-repeat: no-repeat; background-size: cover; } + .banner-section .on-chain { + margin-top: 40px; } + .banner-section .on-chain h6 { + font-size: 16px; + font-weight: 400; + color: #B0B0B0; } + .banner-section .on-chain img { + margin: 0px 10px; } .banner-section .stats-container { display: flex; position: relative; - margin-top: 64px; + margin-top: 24px; + flex-wrap: wrap; justify-content: space-evenly; padding: 0px 15px; } .banner-section .stats-container .stats-section h2 { @@ -1942,7 +1961,7 @@ button:disabled { align-items: center; justify-content: center; } .xprt-banner-section .content .right img { - max-width: 520px; + max-width: 640px; width: 100%; } .xprt-banner-section .aquire-content .title { font-weight: 700; @@ -2099,6 +2118,7 @@ button:disabled { .stay-updated.xprt { background: #FCFCFC; } .stay-updated.xprt .react-multi-carousel-list { + justify-content: center; padding-bottom: 50px; } .stay-updated.xprt .react-multi-carousel-list .react-multi-carousel-item { height: 235px; } @@ -2153,9 +2173,9 @@ button:disabled { color: #FFFFFF; display: flex; width: 100%; - color: #FFFFFF; align-items: center; - justify-content: space-between; } + justify-content: space-between; + text-align: left; } .ecosystem-faq-section .accordion .card { background: transparent; border: 0px solid; @@ -2258,6 +2278,74 @@ button:disabled { background: #E50913; border: 1px solid #E50913; } +/*-------------------------------------------------------------- +# terms page styles +--------------------------------------------------------------*/ +.terms-section { + padding: 180px 0; } + .terms-section .content .title { + font-weight: 700; + font-size: 26px; + line-height: 1.5; + display: flex; + align-items: center; + color: #FFFFFF; + margin-bottom: 1rem; } + .terms-section .content .last-update { + color: #e50913 !important; } + .terms-section .content .data { + margin-bottom: 2.5rem; } + .terms-section .content .data .data-heading { + font-weight: 600; + font-size: 22px; + line-height: 25px; + letter-spacing: 0.15668px; + color: #FFFFFF; + margin-bottom: 1.25rem; + margin-top: 1.5rem; } + .terms-section .content .data .sub-heading { + font-weight: 500; + font-size: 20px; + line-height: 24px; + color: #FFFFFF; + margin-top: 1.5rem; } + .terms-section .content .data p, .terms-section .content .data ul li, .terms-section .content .data ol li { + font-weight: 300; + font-size: 14px; + line-height: 30px; + color: #A6A6A6; } + .terms-section .content .data ul li b { + color: #FFFFFF; } + .terms-section .content .data .img-section { + margin: auto; + max-width: 500px; } + .terms-section .content .data .img-section .img-box { + margin-bottom: 1rem; + width: 100%; } + .terms-section .content .data a { + color: #007bff; } + .terms-section .content .data .buttons { + margin-bottom: 1.5rem; } + .terms-section .content .data .buttons .primary { + background: transparent; + border-radius: 6px; + padding: 0.5rem 2rem; + font-weight: 600; + transition: all 0.5s ease-in-out; + font-size: 14px; + line-height: 150%; + text-align: center; + text-transform: uppercase; + color: #FCFCFC; + box-shadow: none; + border: 1px solid #303132; + outline: none; + margin-right: 10px; + text-decoration: none; } + .terms-section .content .data .buttons .primary:hover { + background: #E50913; + border: 1px solid #E50913; } + /*-------------------------------------------------------------- # xprt page mediaqueries styles --------------------------------------------------------------*/ @@ -2474,7 +2562,13 @@ button:disabled { padding: 60px 0px 0px 0px; } .navbar.navbar-custom .navbar-nav .dropdown-menu .nav-dropdown-items .nav-dropdown-item .inner-items .links a { - margin: 0px; } } + margin: 0px; } + + .ecosystem-faq-section .info { + padding: 16px 10px; } + + .accordion .card .card-header { + padding: 10px; } } @media (min-width: 768px) and (max-width: 991.8px) { .footer .contact-us { justify-content: flex-start; } @@ -2697,14 +2791,10 @@ button:disabled { .banner-section .banner-heading span, .home-ecosystem-section h3 { font-size: 32px; } - .banner-section .stats-container { - display: grid; - grid-template-columns: 1fr 1fr; - gap: 0; } - .banner-section .stats-container .stats-section { - margin: 10px 0; } - .banner-section .stats-container .home-ecosystem-section { - padding: 70px 0; } + .banner-section .stats-container .stats-section { + margin: 10px 0; } + .banner-section .stats-container .home-ecosystem-section { + padding: 70px 0; } .home-ecosystem-section .card-tiles { display: block; } @@ -2713,7 +2803,7 @@ button:disabled { font-size: 14px; } .banner-section .stats-container .stats-section h2 { - font-size: 32px; } + font-size: 24px; } .home-ecosystem-section .card-tiles .card-group .card .card-section .card-body { padding: 40px 20px 30px 20px; } @@ -2760,7 +2850,7 @@ button:disabled { .footer .copy-rights { font-weight: 500; - font-size: 12px; + font-size: 14px; line-height: 1.314; color: #70747c; display: block; diff --git a/src/assets/scss/style.css.map b/src/assets/scss/style.css.map index e30aeed1..b5b099f1 100644 --- a/src/assets/scss/style.css.map +++ b/src/assets/scss/style.css.map @@ -1,7 +1,7 @@ { "version": 3, -"mappings": "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", -"sources": ["style.scss","views/_main.scss","views/_homepage.scss","views/_xprt.scss","views/_faq.scss","views/_summary.scss","mediaqueries/_xprt.scss","mediaqueries/_main.scss","mediaqueries/_hompage.scss","mediaqueries/_summary.scss"], +"mappings": "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", +"sources": ["style.scss","views/_main.scss","views/_homepage.scss","views/_xprt.scss","views/_faq.scss","views/_summary.scss","views/_terms.scss","mediaqueries/_xprt.scss","mediaqueries/_main.scss","mediaqueries/_hompage.scss","mediaqueries/_summary.scss"], "names": [], "file": "style.css" } diff --git a/src/assets/scss/style.scss b/src/assets/scss/style.scss index 138d3879..20a3544d 100644 --- a/src/assets/scss/style.scss +++ b/src/assets/scss/style.scss @@ -25,6 +25,11 @@ --------------------------------------------------------------*/ @import "views/summary"; +/*-------------------------------------------------------------- +# terms page styles +--------------------------------------------------------------*/ +@import "views/terms"; + /*-------------------------------------------------------------- diff --git a/src/assets/scss/views/_main.scss b/src/assets/scss/views/_main.scss index 39a649e1..1f67c2c5 100644 --- a/src/assets/scss/views/_main.scss +++ b/src/assets/scss/views/_main.scss @@ -809,7 +809,7 @@ a { .copy-rights { font-weight: 500; - font-size: 12px; + font-size: 14px; line-height: 1.314; color: #70747c; display: inline-block; diff --git a/src/assets/scss/views/_terms.scss b/src/assets/scss/views/_terms.scss new file mode 100644 index 00000000..306f6259 --- /dev/null +++ b/src/assets/scss/views/_terms.scss @@ -0,0 +1,84 @@ +.terms-section{ + padding: 180px 0; + .content{ + .title{ + font-weight: 700; + font-size: 26px; + line-height: 1.5; + display: flex; + align-items: center; + color: #FFFFFF; + margin-bottom: 1rem; + } + .last-update{ + color: #e50913 !important; + } + .data{ + margin-bottom: 2.5rem; + .data-heading{ + font-weight: 600; + font-size: 22px; + line-height: 25px; + letter-spacing: 0.15668px; + color: #FFFFFF; + margin-bottom: 1.25rem; + margin-top: 1.5rem; + } + .sub-heading{ + font-weight: 500; + font-size: 20px; + line-height: 24px; + color: #FFFFFF; + margin-top: 1.5rem; + } + p, ul li, ol li{ + font-weight: 300; + font-size: 14px; + line-height: 30px; + color: #A6A6A6; + } + ul li{ + b{ + color: #FFFFFF; + } + } + .img-section{ + margin: auto; + max-width: 500px; + .img-box{ + margin-bottom: 1rem; + width: 100%; + } + } + + a{ + color:#007bff; + } + .buttons{ + margin-bottom: 1.5rem; + + .primary{ + background: transparent; + border-radius: 6px; + padding: 0.5rem 2rem; + font-weight: 600; + transition: all 0.5s ease-in-out; + font-size: 14px; + line-height: 150%; + text-align: center; + text-transform: uppercase; + color: #FCFCFC; + box-shadow: none; + border: 1px solid #303132; + outline: none; + margin-right: 10px; + text-decoration: none; + &:hover{ + background: #E50913; + border:1px solid #E50913 + } + } + } + } + } +} \ No newline at end of file diff --git a/src/components/layout/Footer/index.js b/src/components/layout/Footer/index.js index f339df17..cb0b1d39 100644 --- a/src/components/layout/Footer/index.js +++ b/src/components/layout/Footer/index.js @@ -122,19 +122,37 @@ const Footer = (props) => {
-
- {new Date().getFullYear()} -
-
- Powered by - icon-logo -   -
+
+ + {new Date().getFullYear()} + + + Terms of use + + + Privacy Policy + +
+
+ Powered by + icon-logo +   +
diff --git a/src/pages/Terms.js b/src/pages/Terms.js new file mode 100644 index 00000000..32c59232 --- /dev/null +++ b/src/pages/Terms.js @@ -0,0 +1,1215 @@ +import React from "react"; + +const Terms = () => { + return ( +
+
+
+

Terms of use

+

Last Updated Date: 3 November 2023

+
+

+ Please review these Terms of Use of Persistence products (the “ + Terms”) carefully, as they set forth legally binding terms + and conditions between you and the Company (as defined below) that + govern your access and/or use of: (a) the website located at + https://persistence.one/ and its associated domains (collectively, + the “Website”); (b) the Persistence Supported Products (as + defined below); and (c) the Persistence Chain (as defined below), + including related trademarks, and other intellectual property (all + the products collectively described in the foregoing of this + Paragraph, including the Website and Supported Wallet (as defined + herein), the “Persistence Products”), whether such access + and/or use is via (i) the Website (“Website Access”) or + (ii) command line, locally installed programs, Software + Development Kits (“SDK”), software code and blockchain and smart + contract explorers (collectively “Direct Access”). These + Terms are to be read together with the provisions set forth in our + privacy policy found at{" "} + + https://persistence.one/privacy + {" "} + (“Privacy Policy”). +

+

+ By accessing and/or using any Persistence Product or by receiving + any Communication (as defined herein) related to any Persistence + Product, you (“you” or the “User”) agree to these + Terms on behalf of yourself and any entity you represent, and you + represent and warrant that you have the right and authority to do + so. +

+

+ + The Persistence Products are not intended for (a) access and/or + use by Excluded Persons (as defined below); or (b) access and/or + use by any person or entity in, or accessing or using the + Persistence Products from, an Excluded Jurisdiction. + Accordingly, Excluded Persons (as defined below) should not + access and/or use the Persistence Products. + +

+

+ You are entering into these Terms with Persistence Enterprise + Solutions Pte. Ltd. (“Company”), an entity formed under the laws + of the Republic of Singapore and the Persistence Products are + copyrighted works belonging to the Company and/or its Affiliate(s) + (each of User and Company, a “Party”, and collectively, the + “Parties”). +

+

+ You acknowledge that you shall be deemed to have accepted these + Terms by accessing and/or using Persistence Products–whether by + Website Access or Direct Access. +

+

+ Company reserves the right to change these Terms in its sole + discretion from time to time. The “Date Last Revised” specified on + these Terms indicates the date on which the Terms were last + changed. You will be notified of those changes and given the + opportunity to review and accept the updated Terms when you next + access and/or use Persistence Products. Your acceptance of, and/or + your continued access and/or use of Persistence Products following + notice of, the updated Terms shall indicate your acknowledgement + of, and agreement to be bound by, such updated Terms. +

+

+ By using Persistence Products (which for the purposes hereof + includes but is not limited to accessing the Website), you + acknowledge and agree that you are dealing solely with the Company + as counterparty in respect of your use of Persistence Products, + which shall supersede and replace all prior agreements and + counterparty relationships entered into with any of the Company’s + Affiliates in respect of such use. +

+

+ 1. Overview of Persistence Products +

+
+

+ 1.1 Persistence Chain is a decentralised open-source layer one + blockchain network that is maintained by a network of + decentralised nodes (including validators). +

+

+ 1.2 For purposes hereof, any software, application, integration, + token (including but not limited to Supported Wallet, the + Token(s)) or infrastructure which allows for interaction with + the Persistence Chain that is supported by the Company shall for + the purposes hereof be referred to as a “Persistence Supported + Product” and “Persistence Supported Products” shall be construed + accordingly. +

+

1.3 For purposes of these Terms:

+
    +
  • + “Affiliates” of an entity means the owners, directors, + officers, employees, advisors, and agents of such entity and + companies in which such entity has an interest; +
  • +
  • + “Communication” refers to any communication you may + receive by agreeing or accessing any of the public channels + associated with the Persistence Products, including but not + limited to the Persistence Products’ official Telegram, + Twitter, Discord or other social media channels; +
  • +
  • + “Persistence Chain” means the blockchain known as + Persistence Core-1 chain developed based on the Cosmos SDK; +
  • +
  • + “Persistence Supported Products” has the meaning + ascribed to it in Clause 1.2; +
  • +
  • + “Persistence Documentation” means the document + repository accessible at{" "} + + https://docs.persistence.one + {" "} + and all its associated links; +
  • +
  • + “Persistence Associated Entities” refers to the Company + and its Affiliates and its respective Affiliates; +
  • +
  • + “Token” refers to the proof-of-stake utility and + governance token of Persistence Chain called Persistence token + or XPRT, which purpose and function is to secure the + Persistence Chain network and to facilitate decentralised + decision-making in respect of Persistence Chain; and +
  • +
  • + “Supported Wallet” in relation to XPRT and the + Persistence Chain, means the digital wallet application as + referred to as such in Clause 2.1; +
  • +
+

a reference to:

+
    +
  • + a “person” includes a reference to any individual, body + corporate, unincorporated association or partnership; +
  • +
  • + an agreement or other document is a reference to that + agreement or document as from time to time supplemented or + amended; +
  • +
  • + the masculine gender includes the feminine and neuter genders + and vice versa; +
  • +
  • + the singular includes the plural and vice versa; and +
  • +
  • + any law or regulation is a reference to that law or regulation + as amended from time to time and, where the same has been + repealed, to any re-enactment or replacement of the same. +
  • +
+

1.4 Website Access :

+
    +
  • + The Website (being itself a Persistence Product) is a user + interface designed by Company to facilitate use of the + Persistence Products in general by providing a user-friendly + interface to access, use and/or interact with the Persistence + Chain, although the Persistence Chain is also accessible / can + be used via Direct Access. Company may modify or discontinue + support for the Website at any time, in its sole discretion. +
  • +
  • + You are hereby granted a non-exclusive, non-transferable, + revocable, limited licence to electronically access and use + the Website in the manner described in these Terms. You do not + have the right, and nothing in these Terms shall be construed + as granting you the right, to sub-license any rights in + connection with the access and/or use of the Website. Company + may revoke or terminate this licence at any time if you use, + or attempt to use, the Website in a manner prohibited by these + Terms, or if your rights under these Terms are terminated + pursuant to Section 7. +
  • +
+

+ 1.5 Direct Access. With the necessary technical + expertise, it is possible for a User to generate transaction + messages to interact with the Persistence Chain via Direct + Access directly without use of the Website. Company is not + involved in and has no oversight of any Direct Access and + expressly disclaims all responsibility, and User acknowledges + that Company and its Affiliates shall have no responsibility for + any loss occasioned to a User by or attributable to Direct + Access. +

+

+ 1.6 Persistence Chain. +

+
    +
  • + Apart from Website Access and Direct Access, the Persistence + Chain may also be accessible now or in the future through + other applications or integrations built on the Persistence + Chain. +
  • +
  • + Persistence Chain is an open-source software accessible at the + Github Page, and is maintained and modifiable by the Company + (and/or its Affiliates) subject to Token governance processes + from time to time. You agree that save for the right to access + and/or use the Persistence Products on the terms expressly + provided herein, you shall not acquire and/or own any legal + right, title and/or interest in the Persistence Products or + any intellectual property rights associated thereto, which + shall be wholly owned by the Company (and/or its Affiliates). +
  • +
{" "} +

1.7 Transaction Fees.

+
    +
  • + As the context may apply, Transaction fees (“Transaction + Fees”) in the form of “gas fees” (generally denominated in the + Token) are applicable when certain on-chain transactions are + execution (including but not limited to making Token + transfers, staking Tokens etc.) (each, a “Persistence On-Chain + Transaction”). Please refer to the Website or the Persistence + Documentation for more details. +
  • +
  • + User hereby consents to such fees (if applicable) being + debited from such User’s Persistence Chain-compatible wallet + that such User connects to the Persistence Chain for purposes + of effecting a Persistence On-Chain Transaction, at the time + such Persistence On-Chain Transaction is processed. Similar + transaction fees may also be levied on Users accessing and + using the Persistence Chain via Direct Access. +
  • +
+

+ Non-circumvention. You agree not to do anything, including the + use of any technology such as virtual private networks (VPN) for + the purposes of circumventing these Terms. +

+

+ Sole and exclusive use of IP address: You shall not use another + person’s IP address and neither will you allow another person to + use your IP address associated with your use of Persistence + Products. You hereby declare and represent that the IP address + associated with your use of Persistence Products is unique and + exclusive to you and shall remain as such. +

+
+

+ 2. Using Persistence Products +

+
+

2.1 Persistence Chain

+
    +
  • + Any User can interact with the Persistence Chain for various + purposes, including but not limited to the following, which + shall be non-exhaustive: (i) running a validator node to + participate in the securing the network and participating in + network consensus; (ii) staking Tokens or delegating Tokens + for staking; (iii) integrating software with the Persistence + Chain; (iv) claiming staking rewards; (v) voting on governance + proposals pertaining to Persistence Chain; (vii) accessing the + Persistence Chain using a wallet application (including + + https://wallet.persistence.one + {" "} + (“Supported Wallet”) or other third party wallet solutions + like Keplr), among other things (collectively, the + “Activities”). +
  • +
  • + A User accessing and/or using Persistence Products for any of + the Activities or for any other purpose is deemed to have read + and understood the Persistence Documentation, and acknowledges + and accepts all risks and fees relating to the same, including + but not limited to: +
    + i) all Transaction Fees incurred in connection with use of + Persistence Chain;
    + ii) all risks associated with holding or handling of Tokens, + including the Tokens having no secondary market or liquidity + or any inherent value to others; and
    + iii) technological risks associated with blockchain + technology, smart contracts, on basis of which Persistence + Products is developed, which may be subject of potential + hacks, exploits and compromise (including risks associated + with third-party integrations available for use in association + with Persistence Chain e.g. Keplr, etc.). +
  • +
+

+ + The Company and its Affiliates shall have no responsibility + for any loss occasioned to such User who shall have no claim + against Company and its Affiliates in respect thereof. + +

+
+

+ 3. Representations and Warranties +

+
+

+ 3.1 In accessing and/or using any Persistence Product (including + interacting with the Persistence Chain using Supported Wallet), + User makes the following representations and warranties: +

+
    +
  • + User is at least eighteen (18) years of age, and has the full + right, power and authority to access and/or use Persistence + Products (including the tools made available in respect + thereof), and to enter into and comply with these Terms; +
  • +
  • + User is not prohibited and/or restricted under the laws of any + jurisdiction applicable to User from accessing and/or using + Persistence Products, and/or from using the Supported Wallet + in connection with User’s use of Persistence Products; +
  • +
  • + User is compliant with all laws of any jurisdiction applicable + to User in relation to User’s access and/or use of Persistence + Products and acknowledges and agrees that the Persistence + Associated Entities are not liable for User’s compliance or + non-compliance with any such laws; +
  • +
  • + User’s access and/or use of Persistence Products does not + require the Company or any other entity associated with + Persistence Products to be registered, licensed or granted + approval in order for User to use or continue using + Persistence Products; +
  • +
  • + User is not an Excluded Person (as defined below), and User is + not accessing and/or using Persistence Products from an + Excluded Jurisdiction (as defined below); +
  • +
  • + User has not had User’s access or use of Persistence Products + previously terminated or revoked for any reason whatsoever; +
  • +
  • + User will not, and will not attempt to, authorize anyone other + than User to access and/or use Persistence Products using a + Supported Wallet or Persistence Chain-compatible blockchain + address owned by User, or otherwise engage in Prohibited Use + (as defined below) of such Supported Wallet Persistence + Chain-compatible blockchain address; +
  • +
  • + where User is using Supported Wallet or Token in connection + with Persistence Products, such User is the legal and + beneficial owner of, or is authorized by the owner of such + Supported Wallet or Token (as the case may be) and/or to hold + and/or deploy, the Token; and +
  • +
  • + User is knowledgeable in using and evaluating blockchain + technologies and related blockchain-based digital assets, + including Persistence Products, Tokens and Supported Wallet, + and User has evaluated and understands the use of Persistence + Products and has not relied on any information, statement, + representation, or warranty, express or implied, made by or on + behalf of Persistence Associated Entities with respect to + Persistence Products whether as regards the suitability, + reliability, security or otherwise of Persistence Products + and/or Persistence Chain. +
  • +
+

+ {" "} + Each and all of User’s above representations and warranties are + true, complete, accurate and not misleading from the time of + User’s acceptance of these Terms and are deemed repeated each + time User uses Persistence Products. +

+

+ 3.2{" "} + + By accessing and/or using Persistence Products, User + acknowledges and accepts that the Persistence Associated + Entities shall not be liable to User for the deployment and + maintenance of Persistence Products and/or any malfunction + thereof. + +

+

+ 3.3 Company may, in its sole discretion, modify or discontinue + support (to the extent it is able to or practically able to) for + Persistence Products at any time. +

+

+ 3.4 User shall be responsible for obtaining the data network + access necessary to use and/or access Persistence Products, and + for acquiring compatible hardware or device necessary to access + and use Persistence Products and any updates thereto. +

+

+ 3.5 Use of Persistence Products may be disrupted as a result of + malfunction and/or delays which are inherent to the use of the + internet and electronic communications, and User agrees that the + Persistence Associated Entities shall not be responsible for any + such disruption, malfunction and/or delay, and any loss which + may arise therefrom. +

+

+ 3.6 The Website and its contents are our property or the + property of our licensors and are protected by copyright, + trademark, patent and other applicable laws. User is permitted + to download and print content from the Website solely for such + User’s own personal use to the extent required to access and use + the tools and information made available via the Website. Unless + with our prior written consent, the Website and its contents + must not be reproduced, modified, redistributed or otherwise + used for any other reason.{" "} +

+

+ 3.7 User shall not modify, adapt or hack the Website and/or + Persistence Products, or modify any other website and/or + protocol so as to falsely imply that such other website and/or + protocol is associated with the Website and/or Persistence + Products and/or its Affiliates (as defined below) in any way. + User shall not crawl, scrape, cache or otherwise access any + content from the Website via automated means, and User shall not + use automated data collection, data mining, robots or any other + data gathering methods of any kind on the Website and/or + Persistence Products. +

+

+ 3.8 User may, through hyperlinks displayed on the Website, gain + access to websites operated by persons other than the Company. + Such hyperlinks are displayed only for User’s convenience, and + we assume no responsibility for the use of any third-party + software or other materials on the Website. +

+
+

+ 4. Excluded Person and Excluded Jurisdiction +

+
+

For purposes of these Terms:

+

+ 4.1 “Excluded Jurisdiction” means any of the following + jurisdictions: +

+
    +
  • + the United States of America and its territories and + possessions (collectively “United States”); +
  • +
  • + the People’s Republic of China; +
  • +
  • + a jurisdiction identified by the Financial Action Task Force + (FATF) for strategic AML/CFT deficiencies and included in + FATF’s listing of “High-risk and Other Monitored + Jurisdictions” accessible at{" "} + + https://www.fatf-gafi.org/en/countries/black-and-grey-lists.html + {" "} + (as may be updated from time to time); and/or +
  • +
  • + a jurisdiction in which Persistence Products and the use of + which are prohibited or would be subject of licensing, + permissions or approvals. +
  • +
+

+ 4.2 “Excluded Persons” refers to the following: +

+

4.2.1 a person who is:

+
    +
  • + a citizen of an Excluded Jurisdiction (which for purposes of + this Section 4.2.1(a) shall not include United States); +
  • +
  • + domiciled in, resident of, or physically present / located in + an Excluded Jurisdiction; +
  • +
+

4.2.2 a body corporate:

+
    +
  • + which is incorporated in, or operates out of, an Excluded + Jurisdiction; or +
  • +
  • + which is under the control of one or more individuals who + is/are citizen(s) of, domiciled in, residents of, or + physically present / located in, an Excluded Jurisdiction; +
  • +
+

+ 4.2.3 an individual or body corporate accessing and/or using + Persistence Products from within an Excluded Jurisdiction; +

+

+ 4.2.4 an individual or body corporate included in United Nations + Consolidated List (accessible at + + https://www.un.org/securitycouncil/content/un-sc-consolidated-list); + {" "} +

+

+ 4.2.5 an individual or body corporate which is otherwise + prohibited or ineligible in any way, whether in full or in part, + under any laws applicable to such individual or body corporate + from accessing and/or using Persistence Products; and/or +

+

4.2.6 a U.S. person.

+

4.3 “U.S. person” means:

+
    +
  • + any natural person resident in the United States; +
  • +
  • + any partnership or corporation organized or incorporated under + the laws of the United States; +
  • +
  • + any estate of which any executor or administrator is a U.S. + person; +
  • +
  • + any trust of which any trustee is a U.S. person; +
  • +
  • + any agency or branch of a foreign entity located in the United + States; +
  • +
  • + any non-discretionary account or similar account (other than + an estate or trust) held by a dealer or other fiduciary for + the benefit or account of a U.S. person; +
  • +
  • + any discretionary account or similar account (other than an + estate or trust) held by a dealer or other fiduciary + organized, incorporated, or (if an individual) resident in the + United States; +
  • +
  • + any partnership or corporation if:
    + a) organized or incorporated under the laws of any foreign + jurisdiction; and
    + b) formed by a U.S. person principally for the purpose of + investing in securities not registered under the Act, unless + it is organized or incorporated, and owned, by accredited + investors (as defined in Regulation D of the Securities Act of + 1933 of the United States of America) who are not natural + persons, estates or trusts; and +
  • +
  • + any citizen of United States who is a military personnel of + United States who is not resident in or outside of the United + States, +
  • +

    but does not include :

    +
  • + any discretionary account or similar account (other than an + estate or trust) held for the benefit or account of a non-U.S. + person by a dealer or other professional fiduciary organized, + incorporated, or (if an individual) resident in the United + States; +
  • +
  • + any estate of which any professional fiduciary acting as + executor or administrator is a U.S. person if: +
    + a) an executor or administrator of the estate who is not a + U.S. person has sole or shared investment discretion with + respect to the assets of the estate; and
    + b) the estate is governed by foreign law; +
  • +
  • + any trust of which any professional fiduciary acting as + trustee is a U.S. person, if a trustee who is not a U.S. + person has sole or shared investment discretion with respect + to the trust assets, and no beneficiary of the trust (and no + settlor if the trust is revocable) is a U.S. person; +
  • +
  • + an employee benefit plan established and administered in + accordance with the law of a country other than the United + States and customary practices and documentation of such + country; +
  • +
  • + any agency or branch of a U.S. person located outside the + United States if: +
    + a) agency or branch operates for valid business reasons; and +
    + b) the agency or branch is engaged in the business of + insurance or banking and is subject to substantive insurance + or banking regulation, respectively, in the jurisdiction where + located; and +
  • +
  • + The International Monetary Fund, the International Bank for + Reconstruction and Development, the Inter-American Development + Bank, the Asian Development Bank, the African Development + Bank, the United Nations, and their agencies, affiliates and + pension plans, and any other similar international + organizations, their agencies, affiliates and pension plans. +
  • +
+
+

+ 5. Prohibited Use +

+
+

+ User shall not, directly or indirectly: +

+

+ 5.1 access and/or use Persistence Products: +

+
    +
  • + in violation of any law, rule, or regulation of any + jurisdiction that is applicable to User; and/or +
  • +
  • + in violation or breach of these Terms and/or any other + document from time-to-time governing User access and/or use of + Persistence Products; +
  • +
+

+ 5.2 apermit others to access Persistence Products through User’s + wallet or a blockchain address User controls or otherwise engage + in transactions using Persistence Products for any person other + than the wallet owner; +

+

+ 5.3 disrupt, interfere with, or otherwise adversely affect the + normal flow or function of Persistence Products or otherwise act + in a manner that may negatively affect other users’ experience + when using Persistence Products, and User shall not take + advantage of software vulnerabilities and any other act that + intentionally abuses or exploits the design and functions of + Persistence Products; +

+

+ 5.4 engage in, or knowingly facilitate, any fraudulent, + deceptive, or manipulative transaction activity in connection + with User’s use of Persistence Products; +

+

+ 5.5 engage in, or knowingly facilitate, any money laundering, + terrorist financing, or other illegal activities using + Persistence Products; +

+

+ 5.6 access or attempt to access non-public systems, programs, + data, or services using Persistence Products; +

+

+ 5.7 copy, reproduce, republish, upload, post, transmit, resell, + or distribute in any way, any data, content, or any part of + Persistence Products except as expressly permitted by applicable + laws; and +

+

+ 5.8 reverse engineer or attempt to reverse engineer Persistence + Products except as expressly permitted by applicable law, + (collectively, “Prohibited Uses”). +

+
+

+ 6. Waivers +

+
+

+ 6.1 User agrees and acknowledges that neither the Company nor + any of our Affiliates (as defined below) shall be liable to User + for any direct, indirect, special, incidental, consequential or + other losses of any kind, in tort, contract or otherwise + (including but not limited to loss of revenue, income or + profits, and loss of use or data), arising out of or in + connection with User’s access and/or use of Persistence + Products. +

+

+ 6.2 User undertakes not to initiate or participate, and waives + the right to participate in, any class action lawsuit or a + class-wide arbitration against Company and/or our Affiliates in + relation to User’s access and/or use of Persistence Products. +

+

+ 6.3 By accepting these Terms, User waives all rights, claims + and/or causes of action (present or future) under law (including + any tortious claims) or contract against the Persistence + Associated Entities and its Affiliates in connection with User’s + access and/or use of Persistence Products. +

+
+

+ 7. Termination +

+
+

+ 7.1 These Terms shall remain in full force and effect and be + legally binding on User for so long as User accesses and/or uses + Persistence Products. +

+

+ 7.2 The Persistence Associated Entities may restrict, suspend + and/or terminate User’s access and/or use of Persistence + Products at any time for any reason and to such extent at + Persistence Associated Entities’ sole discretion. +

+

+ 7.3 Neither the Company nor any of our Affiliates will have any + liability whatsoever to User for any such restriction, + suspension and/or termination or for any action taken by the + Company and/or any of our Affiliates to implement such + restriction, suspension and/or termination which can include + blacklisting User’s Supported Wallet which User uses to access + and/or use Persistence Products. +

+

+ 7.4 Sections 3 to 10 of these Terms shall remain in effect in + favour of the Company and its Affiliates (as the case may be) + notwithstanding any such restriction, suspension and/or + termination. +

+
+

+ 8. Disclaimer +

+
+

+ 8.1 In accessing and/or using Persistence Products, User + acknowledges and agrees that: +

+
    +
  • + PERSISTENCE PRODUCTS ARE PROVIDED ON AN “AS-IS” AND “AS + AVAILABLE” BASIS BY THE COMPANY, AND THE PERSISTENCE + ASSOCIATED ENTITIES EXPRESSLY DISCLAIMS ANY AND ALL + REPRESENTATIONS, WARRANTIES AND/OR CONDITIONS OF ANY KIND, + WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING ALL + WARRANTIES OR CONDITIONS OF MERCHANTABILITY, MERCHANTABLE + QUALITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, QUIET + ENJOYMENT, ACCURACY, OR NON-INFRINGEMENT. +
  • +
  • + THE PERSISTENCE ASSOCIATED ENTITIES HAS NOT MADE AND MAKES NO + REPRESENTATION, WARRANTY AND/OR CONDITION OF ANY KIND THAT + PERSISTENCE PRODUCTS WILL MEET USER’S REQUIREMENTS, WILL BE + AVAILABLE ON AN UNINTERRUPTED, TIMELY, SECURE, OR ERROR-FREE + BASIS, OR WILL BE ACCURATE, RELIABLE, FREE OF VIRUSES OR OTHER + HARMFUL CODE, COMPLETE, LEGAL, OR SAFE. +
  • +
  • + NEITHER THE COMPANY NOR ANY OF ITS AFFILIATES IS USER’S + BROKER, AGENT, TAX OR LEGAL ADVISOR, AND HAS NO FIDUCIARY + RELATIONSHIP WITH OR OBLIGATION TO USER. NO COMMUNICATION OR + INFORMATION PROVIDED BY PERSISTENCE ASSOCIATED ENTITIES OR ANY + OF ITS AFFILIATES IS INTENDED AS OR SHALL BE CONSTRUED AS + INVESTMENT, FINANCIAL, TAX, LEGAL OR ANY OTHER KIND OF ADVICE. + THE PERSISTENCE ASSOCIATED ENTITIES SHALL NOT BE LIABLE FOR + ANY DECISIONS USER MAKES TO ACCESS AND/OR USE PERSISTENCE + PRODUCTS. +
  • +
  • + TO THE EXTENT THAT APPLICABLE LAW REQUIRES OR IMPOSES ANY + REPRESENTATION, WARRANTY AND/OR CONDITION WITH RESPECT TO + USER’S ACCESS AND/OR USE OF PERSISTENCE PRODUCTS, ALL SUCH + REPRESENTATION, WARRANTY AND/OR CONDITION ARE LIMITED IN + DURATION TO NINETY (90) DAYS FROM THE DATE OF FIRST ACCESS + AND/USE BY USER OF PERSISTENCE PRODUCTS. +
  • +
+

+ 8.2 THE PERSISTENCE ASSOCIATED ENTITIES DOES NOT ENDORSE ANY + THIRD PARTY AND SHALL NOT BE RESPONSIBLE IN ANY WAY FOR ANY + TRANSACTIONS YOU ENTER INTO WITH ANY OTHER THIRD PARTY. +

+

+ 8.3 YOU ACKNOWLEDGE AND AGREE THAT NEITHER THE COMPANY NOR ANY + OF ITS AFFILIATES WILL BE LIABLE TO YOU FOR ANY LOSS OR DAMAGES + OF ANY SORT INCURRED AS THE RESULT OF ANY INTERACTIONS BETWEEN + YOU AND ANY THIRD PARTY. +

+
+

+ 9. Limitation of Liability +

+
+

+ 9.1 TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL + THE COMPANY AND/OR ANY OF OUR AFFILIATES BE LIABLE TO USER OR + ANY THIRD PARTY FOR ANY LOST PROFITS, LOST DATA, OR ANY + INDIRECT, CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, SPECIAL OR + PUNITIVE DAMAGES ARISING OUT OF USER’S ACCESS AND/OR USE OF + PERSISTENCE PRODUCTS, EVEN IF THE COMPANY AND/OR ANY OF ITS + AFFILIATES HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +

+

+ 9.2 USER’S ACCESS TO AND/OR USE OF PERSISTENCE PRODUCTS IS AT + USER’S OWN DISCRETION AND RISK, AND USER WILL BE SOLELY + RESPONSIBLE FOR ANY DAMAGE TO USER’S DEVICE OR COMPUTER SYSTEM, + OR LOSS OF DATA RESULTING THEREFROM. +

+

+ 9.3 NEITHER THE COMPANY NOR ANY OF ITS AFFILIATES SHALL BE + LIABLE TO USER FOR ANY LOSS OR DAMAGE ARISING OUT OF USER’S + FAILURE TO KEEP USER’S PRIVATE KEYS OR LOGIN CREDENTIALS TO + USER’S WALLET SECURE OR ANY OTHER UNAUTHORIZED ACCESS TO OR + TRANSACTIONS INVOLVING USER’S WALLET. +

+

+ 9.4 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, + NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED HEREIN, THE + LIABILITY OF THE COMPANY AND/OR ANY OF OUR AFFILIATES TO USER + FOR ANY CLAIM BY USER FOR DAMAGES ARISING FROM OR RELATED TO + USER’S ACCESS AND/OR USE OF PERSISTENCE PRODUCTS: +

{" "} +
    +
  • + WHETHER PURSUANT TO THESE TERMS; AND/OR +
  • +
  • + WHETHER FOR ANY CAUSE WHATSOEVER AND REGARDLESS OF THE FORM OF + THE ACTION, +
  • +
+

+ {" "} + WILL AT ALL TIMES BE LIMITED TO A MAXIMUM OF USD100. THE + EXISTENCE OF MORE THAN ONE CLAIM BY USER WILL NOT ENLARGE THIS + LIMIT. +

+
+

+ 10. Indemnification +

+
+

+ 10.1 User shall indemnify and hold the Company and/or any of our + Affiliates, each of their respective employees, officers, + directors and representatives (collectively, “Indemnified + Party”), harmless, including costs and attorneys’ fees, from any + loss, claim or demand made due to or arising out of: +

+
    +
  • + User’s access and/or use of Persistence Products; +
  • +
  • + User’s violation of these Terms; +
  • +
  • + acquisition, holding or disposal of Tokens and or the use of + Tokens; and +
  • +
  • + User’s violation of laws or regulations applicable to User’s + access and/or use of Tokens. +
  • +
+

+ 10.2 The relevant Indemnified Party reserves the right, at + User’s expense, to assume the exclusive defence and control of + any matter for which User is required to provide + indemnification, and User agrees to cooperate in the defence of + these claims. User shall not settle any matter without the prior + written consent of the relevant Indemnified Party. The relevant + Indemnified Party will use reasonable efforts to notify User of + any such claim, action or proceeding upon becoming aware of it. +

+
+

+ 11. Tax Implications +

+
+

+ User is solely responsible for determining the tax implications + and tax reporting requirements associated with transactions User + engages in using Persistence Products, and for paying any + applicable taxes in each applicable jurisdiction. Neither the + Company nor any of our Affiliates shall be responsible for + determining whether there are tax implications in connection + with transactions involving User’s use of Persistence Products, + for reporting any such transactions, or for paying any + applicable taxes. +

+
+

+ + 12. Potential Risks Associated with Use of Persistence Products + +

+
+

+ User acknowledges and agrees to the following: +

+

+ 12.1 Persistence Products allows User access to the Persistence + Chain to engage in aforementioned activities on User’s own + account and at User’s own risk. +

+

+ 12.2 Using digital assets, staking, running nodes, providing + liquidity and/or other forms of interfacing with digital assets + entails a high financial risk. User has necessary experience and + knowledge to understand the risks involved. User should + carefully assess User’s financial circumstances and risk + tolerance and where appropriate, seek third party financial + advice before engaging in the aforementioned activities. +

+

+ 12.3 Nothing in these Terms or the Website shall be construed + as: +

+
    +
  • + financial or investment advice. We do not provide any view on + the merits of any particular investment. Any information + provided is for educational purposes and to keep investors + informed of prices, ranges, and volatility of digital assets + and derivatives thereof. No person in the Persistence + Associated Entities acts as your broker, intermediary, agent + or advisor in any capacity; and +
  • +
  • + any marketing, promotion or offer for any product or + investment to User or any third party. User shall be solely + responsible for any losses, damages or costs resulting from + User’s reliance on any data or information on the Website or + otherwise. User shall be responsible for User’s decisions + relating to Persistence Products which are User’s own. +
  • +
+

+ 12.4 Like all software, Persistence Products may be subject to + exploits, accordingly, neither the Company nor any of its + Affiliates shall be responsible to User any such exploits or + loss to User as a result of such exploits, whether foreseeable + or not. +

+

+ 12.5 While the Company has taken a number of precautions to + ensure the security of Persistence Products including obtaining + or procuring the obtaining of third-party security audits, the + technology constituting Persistence Products, and their + interaction, is relatively new and it is not possible to + guarantee that the code is completely free from bugs or errors. +

+

+ 12.6 User accepts all risks that arise from User’s access and/or + use of Persistence Products, including and not limited to, the + risk of any of Tokens being lost due to a failure or exploit of + Persistence Products. +

+

+ 12.7 User is solely responsible for securing the private keys + associated with any Supported Wallet which User uses when + accessing and/or using Persistence Products. +

+

+ 12.8 User understands that anyone who obtains User’s private + keys to User’s Supported Wallet and/or access to User’s device + containing such private keys, may access User’s Supported Wallet + controlled with those private keys with or without User’s + authorisation and may transfer any Tokens accessible through + User’s Supported Wallet. +

+

+ 12.9 In choosing to access and/or use Persistence Products, User + does so on User’s own initiative and at User’s own risk, and + User is responsible for complying with all applicable local + laws, rules and regulations relating to User’s access and/or use + of Persistence Products. +

+

+ 12.10 Support for the Persistence Products may be modified or + discontinued at any time in Persistence Associated Entities’ + sole discretion. +

+

+ 12.11 In the event of a change in the operating rules or other + features of the relevant code (“Fork”) that may result in more + than one version of a network (“Forked Network”) and more than + one version of a digital asset (“Forked Asset”), Persistence + Products may not support activity related to any Forked Assets. + Forked Networks and the available supply of any Forked Assets + are wholly outside Persistence Associated Entities’ control. In + the event of a Fork, Persistence Associated Entities may + temporarily suspend certain services on the Website (with or + without advance notice to User) while it is determined which + Forked Network(s) to support. Persistence Associated Entities + shall not be responsible for a lack of support for any Forked + Asset. +

+

+ 12.12 By using Persistence Products, User is using Persistence + Products “as is” and “as available” with no representations or + warranties whatsoever. To the maximum extent permitted by law, + neither the Company nor any of its Affiliates makes any express + or implied representations and warranties, including implied + representations or warranties of accuracy, merchantability, + fitness for a particular purpose and non-infringement in + relation to Persistence Products. Neither the Company nor any of + its Affiliates is responsible or liable for any error, delay or + interruption in or lack of access to Persistence Products or for + any loss of digital assets (including but not limited to Tokens) + occasioned by or attributable to Persistence Products. +

+

+ 12.13 Any acquisition, holding or disposal by you of Tokens is + solely in relation to your participation in governance of + Persistence Chain and not for any other purpose, including + investments. You further acknowledge and agree not to acquire, + hold, and/or dispose Tokens if doing so is prohibited or subject + of compliance in the relevant jurisdiction applicable including + circumstances where your interaction in Tokens results in Tokens + and/or your activities associated with Tokens be construed by + applicable laws and regulations (including but not limited to + securities laws) as a regulated activity, whether or not such + regulations require the Company and/or its Affiliates be + registered, licensed or approved in connection with the + activities described in the foregoing of this Section 12.13 or + the Activities. +

+

+ 12.14 There are inherent risks associated with distributed + ledger technologies and blockchain-based networks which are + experimental in nature. Transactions based on such technologies + are generally immutable, which means that any error may result + in transactions being irreversible. +

+

+ 12.15 Support for the Activities whether provided by the Company + or otherwise, may be impacted by regulatory actions which may + disrupt, limit or cease the provision of such support. +

+

+ 12.16 The disclaimers and warnings contained in these Terms do + not constitute all possible risks associated with the use of + Persistence Products. They also do not represent an on-going + obligation to alert you to all the potential risks associated + with the Activities. +

+

+ 12.17 While the intent is to provide timely and accurate + information, you acknowledge that the Website and any other + web-landing page or interface associated with Persistence + Products, including the Persistence Documentation may not always + be accurate, complete, or up to date. You acknowledge that it is + your responsibility to verify all information before relying on + it. No representation in respect of such information is made as + to the constant accuracy, completeness or appropriateness for + any particular purpose. +

+
+

+ 13. Electronic Communications +

+
+

+ 13.1 The communications between User and the Company shall be + via electronic means, either through the Website or electronic + mail. +

+

+ 13.2 For contractual purposes, User: +

+
    +
  • + consents to receive communications from the Company in any + electronic form; and +
  • +
  • + acknowledges and agrees that all terms and conditions, + agreements, notices, disclosures, and other communications + that the Company provides to User electronically satisfy any + legal requirement that would also be satisfied if such + communications were to be in a hardcopy writing. +
  • +
+
+

+ 14. General +

+
+

+ 14.1 Entire Terms These Terms (read together with our + Privacy Policy) constitute the entire agreement between User and + the Company regarding User’s access and/use of Persistence + Products. +

+

+ 14.2 Relationship of Parties: Nothing contained in these + Terms will be deemed to be construed as creating a partnership + or an agency relationship or joint venture between User, the + Company and/or any of our Affiliates. +

+

+ 14.3 Assignment: These Terms, and User’s rights + thereunder, may not be assigned, without the Company’s prior + written consent, and any attempted assignment, subcontract, + delegation, or transfer in violation of the foregoing will be + null and void. The Company may freely assign these Terms and our + respective rights thereunder. +

+

+ 14.4 Waiver: A waiver by the Company of any right or + remedy under these Terms shall only be effective if it is in + writing, executed by a duly authorized representative of the + Company and shall apply only to the circumstances for which it + is given. Failure of the Company to exercise or enforce any + right or remedy under these Terms shall not operate as a waiver + of such right or remedy, nor shall it prevent any future + exercise or enforcement of such right or remedy, and no single + or partial exercise of any right or remedy shall preclude or + restrict the further exercise of any such right or remedy or + other rights or remedies. +

+

+ 14.5 No Third-Party Rights: Save for the Company’s + Affiliates who shall have the rights and benefits to the extent + accorded thereto under these Terms, any person who is not a + Party shall have no right under the Contracts (Rights of Third + Parties) Act 2001 of Singapore to enforce any of these Terms. +

+

+ 14.6 Governing Law and Jurisdiction: The agreement as + shall be constituted by User’s acceptance of these Terms, and + any dispute or claim arising out of or in connection with the + subject matter or formation (including non-contractual disputes + or claims) of such agreement, shall be governed by and construed + in accordance with the law of Singapore. The Parties agree that + any dispute or claim arising out of or in connection with the + subject matter or formation (including non-contractual disputes + or claims) of these Terms shall be by arbitration, and judgment + upon the award may be entered by any court having jurisdiction + thereof or having jurisdiction over the relevant Party or its + assets. The arbitration shall be conducted under the rules of + the Singapore International Arbitration Centre (“SIAC”). The + arbitral tribunal shall consist of a sole arbitrator to be + appointed by the President of the SIAC. The seat of the + arbitration shall be Singapore. The language of the arbitration + shall be English. The arbitration agreement shall be governed by + Singapore law. +

+

+ 14.7 Severability: If any provisions of these Terms are + found by any court or tribunal of competent jurisdiction to be + invalid, void, unlawful or unenforceable under any applicable + law, such unenforceability or invalidity shall not render these + Terms unenforceable or invalid as a whole, and such provisions + shall be deleted without affecting the remaining provisions + herein. +

+
+
+
+
+
+ ); +}; + +export default Terms; diff --git a/src/pages/privacy.js b/src/pages/privacy.js new file mode 100644 index 00000000..4edf5b8f --- /dev/null +++ b/src/pages/privacy.js @@ -0,0 +1,776 @@ +import React from "react"; + +const Privacy = () => { + return ( +
+
+
+

Privacy Policy

+

Last Updated Date: 26 October 2023

+
+

+ 1. ABOUT THIS POLICY +

+
+

+ 1.1 This is the Privacy Policy for Persistence Enterprise + Solutions Pte. Ltd. (collectively referred to herein as “ + PESPL”, “us”, “we” or “our”). +

+

+ 1.2 This Privacy Policy describes how we may collect, use, + disclose and process your personal data when you: +

+
    +
  • + access or use our websites and applications (including mobile + and web-based applications) (collectively, “ + Applications”), and services; and/or +
  • +
  • + provide us with your personal data. +
  • +
+

+ 1.3 We will only use your personal data where you have given us + your consent or where we have other lawful basis for doing so, + and in the manner set out in this Privacy Policy. +

+

+ 1.4 By providing us with personal data, you acknowledge that our + collection, use, disclosure and processing of personal data will + be in accordance with this Policy, including, for the avoidance + of doubt, the cross-jurisdictional transfer of your data. DO NOT + provide any personal data to us if you do not accept this + Privacy Policy. +

+

+ 1.5 This Privacy Policy supplements but does not supersede or + replace any consents you may have provided to us, or any other + agreements or arrangements that you may have with us, in respect + of your personal data. +

+

+ 1.6 Our Applications may contain links to other websites that + are not owned or maintained by us. These links are provided only + for your convenience. You may also be accessing our Applications + through third party websites and/or platforms. This Privacy + Policy only applies to our Applications. When visiting these + third party websites, their privacy policies apply. +

+

+ 1.7 If you have any feedback or issues in relation to your + personal data, or about this Privacy Policy, or wish to make a + complaint to us, you may contact our Data Protection Officer at + : Email : hello@persistence.one This does not affected your + statutory rights. For example, if the GDPR applies to you, you + may also have a right to lodge a complaint with a European + supervisory authority, in particular in the Member State in the + European Union where you are habitually resident, where you work + or where an alleged infringement of Data Protection law has + taken place. When you contact us, we may require that you submit + certain forms or provide certain information, including + verification of your identity, before we are able to respond. +

+
+

+ 2. AMENDMENTS TO THIS PRIVACY POLICY +

+
+

+ We may amend this Privacy Policy from time to time without + notice to you, in compliance with applicable laws or as we + update our data usage and handling processes. The updated policy + will supersede earlier versions and will apply to personal data + provided to us. The updated Privacy Policy will take effect when + made available on{" "} + + https://persistence.one/privacy + {" "} + (“Privacy Policy”). +

+
+

+ 3. WHAT PERSONAL DATA WE COLLECT +

+
+

+ 3.1 What is personal data. “Personal data” is data that + can be used to identify a natural person. Examples of personal + data include wallet addresses, and user-specific information for + analytical purposes, email addresses and any other information + of a personal nature. +

+

+ 3.2 Voluntary provision of personal data. We may collect + personal data (1) that you voluntarily provide to us; or (2) + from third parties; or (3) through your use of our (or our + services provider’s) digital technologies and services (Please + see Section 4 How We Collect Personal Data for further details). + What personal data we collect depends on the purposes for which + the personal data is collected and what you have chosen to + provide. When our collection is based on consent, you can choose + not to provide us with personal data. You also have the right to + withdraw your consent for us to continue collecting, using, + disclosing and processing your personal data, by contacting us + in accordance with paragraph 1.7. However, if you do so, it may + not be possible for us to fulfil the purposes for which we + require the personal data, including processing your + transactions or providing you with the products and services + that you require. +

+

+ 3.3 Providing personal data belonging to others. In + certain circumstances, you may also provide us with personal + data of persons other than yourself (such as your team members, + family members and next-of-kin). If you do so, you represent and + warrant that you have brought this Privacy Policy to his/her + attention, informed him/her of the purposes for which we are + collecting his/her personal data and that he/she has consented + to your disclosure of his/her personal data to us for those + purposes and accepts this Privacy Policy. You agree to indemnify + and hold us harmless from and against any and all claims by such + individuals relating to our collection, use and disclosure of + such personal data in accordance with the terms of this Privacy + Policy. +

+

+ 3.4 Accuracy and completeness of personal data. You are + responsible for ensuring that all personal data that you provide + to us is true, accurate and complete. You are responsible for + informing us of any changes to your personal data. +

+

+ 3.5 Minors. Our Applications and/or services are not + intended to be accessed or used by children, minors or persons + who are not of legal age. If you are a parent or guardian and + you have reason to believe your child or ward has provided us + with their personal data without your consent, please contact + us. +

+

+ 3.6 Excluded Persons and Excluded Jurisdictions. Our + Applications and/or services are also not intended for Excluded + Persons, and/or access and/or use in Excluded Jurisdictions. + Please refer to the relevant terms (including the Foundation + Delegation Program Terms and Conditions) for the specific + excluded persons and jurisdictions. +

+
+

+ 4. HOW WE COLLECT PERSONAL DATA +

+
+

+ 4.1 Personal data you provide. We collect personal data that is + relevant to our relationship with you. We may collect your + personal data directly or indirectly through various channels, + such as when: +

+
    +
  • + you download, access or use our Applications and services; +
  • +
  • + you authorise us to obtain your personal data from a third + party; +
  • +
  • + you enter into agreements with us; +
  • +
  • + you transact with us, contact us or request that we contact + you through various communication channels, for example, + through social media platforms (such as Discord), messenger + platforms (such as Telegram and Slack), face-to-face meetings, + telephone calls, emails, fax and letters; +
  • +
  • + your request to be included in an e-mail or our mailing list; +
  • +
  • + we seek information about you and receive your personal data + in connection with your relationship with us; and/or +
  • +
  • + when you submit your personal data to us for any other reason. +
  • +
+

+ 4.2 Personal data provided by others. Depending on your + relationship with us, we may also collect your personal data + from third party sources, for example, from: +

+
    +
  • + any third parties whom you have authorised us to obtain your + personal data from; +
  • +
  • + entities in which you (or a party connected to you) have an + interest; +
  • +
  • + our business partners such as third parties providing services + to us; +
  • +
  • + your family members or friends who provide your personal data + to us on your behalf; and/or +
  • +
  • + public agencies or other public sources. +
  • +
+
+

+ 5. WHAT WE DO WITH YOUR PERSONAL DATA +

+
+

+ 5.1 What we do. We collect, use, disclose and process your + personal data where: +

+
    +
  • you have given us consent;
  • +
  • + necessary to comply with our legal or regulatory obligations, + e.g. responding to valid requests from public authorities; +
  • +
  • + necessary to support our legitimate business interests, + provided that this does not override your interests or rights; + and +
  • +
  • + necessary to perform a transaction you have entered into with + us, or provide a service that you have requested or require + from us. +
  • +
+

+ 5.2 General purposes. We collect, use, disclose and + process your personal data for purposes connected or relevant to + our business, to manage your relationship with us. Such purposes + would include: +

+
    +
  • + carrying out your transactions with us and our business + partners, taking steps as may be directed by you, or to + provide products and/or services to you; +
  • +
  • + facilitating your use of our Applications, including verifying + and establishing your identity, and authenticating, operating + and maintaining user accounts; +
  • +
  • + facilitating business asset transactions; +
  • +
  • + communicating with you, and assisting you with your queries, + requests, applications, complaints, and feedback; +
  • +
  • + resolving any disputes, investigating any complaint, claim or + dispute or any actual or suspected illegal or unlawful + conduct; +
  • +
  • + administrative purposes, including finance, IT and HR + purposes, quality assurance and staff training, and compliance + with internal policies and procedures, including audit, + accounting, risk management and record keeping; +
  • +
  • + carrying out research and statistical analysis, including + development of new products and services or evaluation and + improvement of our existing products and services; +
  • +
  • + security purposes, e.g. protecting our Applications and + services from unauthorised access or usage and to monitor for + security threats; +
  • +
  • + compliance with any legal or regulatory obligations, + applicable laws, regulations, codes of practices, guidelines, + or rules (including anti-money laundering and countering the + financing of terrorism laws), or to assist in law enforcement + and investigations conducted by any governmental and/or + regulatory authority; +
  • +
  • + performing data analytics and related technologies on data, to + enable us to deliver relevant content and information to you, + and to improve our Applications and services; +
  • +
  • + managing and engaging third parties or data processors that + provide services to us, e.g. IT services, technological + services, delivery services, and other professional services; +
  • +
  • + carrying out our legitimate business interests; +
  • +
  • + such purposes that may be informed to you when your personal + data is collected; and/or +
  • +
  • + any other reasonable purposes related to the aforesaid. +
  • +
+

+ Where personal data is used for a new purpose and where required + under applicable law, we shall obtain your consent. +

+

+ 5.3 Legitimate business interests. We may also collect, use, + disclose and process your personal data for the following + purposes to support our legitimate business interests, provided + that this does not override your interests or rights, which + include: +

+
    +
  • + managing our business and relationship with you, and providing + services to our customers; +
  • +
  • + assistance of carrying out corporate restructuring plans; +
  • +
  • + complying with internal policies, and procedures; +
  • +
  • + protecting our rights and interests, and those of our + customers; +
  • +
  • + enforcing our terms and conditions, and obligations owed to + us, or protecting ourselves from legal liability; +
  • +
  • + managing our investor and shareholder relations; and +
  • +
  • + process or share your personal data to facilitate + acquisitions, mergers, or transfers of our business. +
  • +
+

+ 5.4 Marketing purposes. In order for us to market + products, updates, events and services which are of specific + interest and relevance to you, we may analyse and rely on your + personal data provided to us, or data collected from your + interactions with us However, no marketing, using your personal + data in non-aggregated and/or identifiable form would be carried + out unless you have provided us with your consent to use your + personal data for such marketing purposes. If you do not want us + to use your personal data for the purposes of marketing you can + withdraw your consent at any time by contacting us in accordance + with paragraph 1.7. +

+

+ 5.5 Use permitted under applicable laws. We may also + collect, use, disclose and process your personal data for other + purposes, without your knowledge or consent, where this is + required or permitted by law. Your personal data may be + processed if it is necessary on reasonable request by a law + enforcement or regulatory authority, body or agency or in the + defence of a legal claim. We will not delete personal data if + relevant to an investigation or a dispute. It will continue to + be stored until those issues are fully resolved. +

+

+ 5.6 Contacting you. When we contact or send you + information for the above purposes and purposes for which you + have consented, we may do so by post, e-mail, SMS, telephone or + such other means provided by you. If you do not wish to receive + any communication or information from us, or wish to restrict + the manner by which we may contact or send you information, you + may contact us in accordance with paragraph 1.7 above. +

+
+

+ 6. USE OF AUTOMATED DATA COLLECTION TECHNOLOGIES +

+
+

+ 6.1 Cookies. In order to improve our products or + services, we collect data by way of “cookies”. A cookie is a + small file of letters and numbers that we store via your browser + on the hard drive of your computer or mobile device. There are + three main types of cookies: +

+
    +
  • + Session cookies: specific to a particular visit and + limited to sending session identifiers (random numbers + generated by the server) so you don't have to re-enter + information when you navigate to a new page or check out. + Session cookies are not permanently stored on your device and + are deleted when the browser closes; +
  • +
  • + Persistent cookies: record information about your + preferences and are stored in your browser cache or mobile + device (if applicable); and +
  • +
  • + Third party cookies: placed by someone other than us + which may gather data across multiple websites or sessions. +
  • +
+

+ 6.2 How we use cookies. We use cookies for the following + purposes: +

+
    +
  • + Strictly necessary: These cookies are essential for you + to browse our Applications and use its features. The + information collected relates to the operation of the + Applications (e.g. website scripting language and security + tokens) and enables us to provide you with the service you + have requested. +
  • +
  • + Functionality: These cookies remember the choices you + have made, for example the country you visit our Website from, + your language and any changes you have made to text size and + other parts of the web pages that you can customise to improve + your user experience and to make your visits more tailored and + enjoyable. +
  • +
  • + Performance/analytics: These cookies collect + information on how users use our Website, for example which + pages you visit most often, whether you receive any error + messages and how you arrived at our Applications. Information + collected by these cookies is used only to improve your use of + our Applications. These cookies are sometimes placed by third + party providers of web traffic and analysis services. We use + Google Analytics. For information on how Google processes and + collects your information and how you can opt out, please + click here. +
  • +
+

+ We may also automatically collect and store certain information + about your interaction with our Applications including IP + address, browser type, internet service provider, referring/exit + pages, operating system, date/time stamps and related data. +

+

+ 6.3 Other technologies. In addition to cookies, we may + use some other similar technologies as follows (as and where + applicable): +

+
    +
  • + Web Beacons: small graphic images included on our + Applications or emails or those of third parties to provide + analytics information. +
  • +
  • + Social widgets: buttons or icons provided by third + party social media networks which may collect browsing data + and will be received by the third party and are controlled by + the third party. +
  • +
  • + SDKs: these are mobile application third party + software development kits used in our apps. They enable us to + collect information about app activity and the device it runs + on. +
  • +
  • + Local shared objects: these are sometimes called flash + cookies and can be stored on your browser. They are used to + maintain preferences and usage records. +
  • +
+

+ 6.4 Refusing or deleting cookies. Most internet browsers + are set up by default to accept cookies. However if you want to + refuse or delete them (or similar technologies) please refer to + the help and support area on your browser for instructions on + how to block or delete cookies (for example: Internet Explorer, + Google Chrome, Mozilla Firefox and Safari). Please note you may + not be able to take advantage of all the features of our + Applications, including certain personalised features, if you + delete or refuse cookies. +

+

+ 6.5 Mobile Opt-out. Where applicable if we do support a + mobile version of our product - If you access our Applications + through mobile devices, you can enable a "do not track" feature + so as to control interest-based advertising on an iOS or Android + mobile device by selecting the Limit Add Tracking option in the + privacy section of your Settings on iOS or via advertising + preferences on Android devices (e.g. in Google Settings). This + will not prevent the display of advertisements but will mean + that they will no longer be personalised to your interests. +

+ +

+ 6.6 If you are a resident in the EU. For more information + on managing cookies, please visit{" "} + + www.youronlinechoices.eu + {" "} + and{" "} + + www.allaboutcookies.org + + . The above links have further information about behavioural + advertising and online privacy. +

+

+ 6.7 Changes to our uses of Cookies. If we change anything + important about this Paragraph 6 on cookies, we will notify you + through a pop-up on the website for a reasonable length of time + prior to and following the change. You may review this Paragraph + by visiting the sites and clicking on the “Privacy Policy” link. +

+
+

+ 7. DISCLOSURE OF PERSONAL DATA +

+
+

+ 7.1 Disclosure to related parties. We may disclose or + share your personal data with our related parties in order to + provide our services to you, manage our shareholder and investor + returns, for management and compliance purposes, and to utilise + shared group IT functions. +

+

+ 7.2 Disclosure to third parties. We may also disclose + your personal data to third parties in connection with purposes + described in paragraph 5, including without limitation the + following circumstances: +

+
    +
  • + disclosing your personal data to third parties who provide + services to us (including, but not limited to, data providers, + technology providers, insurance providers, and other + professional services (including accountants, lawyers and + auditors)); +
  • +
  • + disclosing your personal data to third parties in order to + fulfil such third party products and/or services as may be + requested or directed by you; +
  • +
  • + disclosing your personal data to third parties that we conduct + marketing and cross promotions with; +
  • +
  • + disclosing your personal data to authorities, governments, law + enforcement agencies or public agencies; +
  • +
  • + If we are discussing selling or transferring part or all of + our business – the information may be transferred to + prospective purchasers under suitable terms as to + confidentiality; +
  • +
  • + If we are reorganised or sold, information may be transferred + to a buyer who can continue to provide continued relationship + with you; and +
  • +
  • + If we are defending a legal claim your information may be + transferred as required in connection with defending such + claim. +
  • +
+

+ When disclosing personal data to third parties, we will (where + appropriate and permissible) enter into contracts with these + third parties to protect your personal data in a manner that is + consistent with all applicable laws and/or ensure that they only + process your personal data in accordance with our instructions. +

+
+

+ 8. TRANSFER OF PERSONAL DATA TO OTHER COUNTRIES +

+
+

+ Transfers. We may transfer your personal data to different + jurisdictions in connection with the purposes described in + paragraph 5: +

+
    +
  • + from the jurisdiction where it is collected (or where you are + located) to any other jurisdictions that we operate in; and +
  • +
  • + to third parties in other jurisdictions. +
  • +
+

+ Safeguards. Where we transfer your personal data across + jurisdictions, we will ensure that your personal data is + protected in accordance with this policy and applicable laws + regardless of the jurisdictions they are transferred to, but in + any event to a level that is no less stringent than the + jurisdiction from which the personal data is transferred. When + we transfer your personal data internationally and where + required by applicable law we put in place appropriate + safeguards including EU Model Clauses or rely on EU Commission + adequacy decisions. You may obtain details of these safeguards + by contacting us. +

+
+

+ 9. SECURITY AND RETENTION OF PERSONAL DATA +

+
+

+ 9.1 Unauthorised access. While we take reasonable + precautions to safeguard your personal data in our possession or + under our control, you agree not to hold us liable or + responsible for any loss or damage resulting from unauthorised + or unintended access that is beyond our control, such as hacking + or cybercrimes. +

+

+ 9.2 Vulnerabilities. We do not make any warranty, + guarantee, or representation that your use of our systems or + applications is safe and protected from malware, and other + vulnerabilities. We also do not guarantee the security of data + that you choose to send us electronically. Sending such data is + entirely at your own risk. +

+

+ 9.3 Period of retention. We retain your personal data + only for as long as is necessary to fulfil the purposes we + collected it for, and to satisfy our business and/or legal + purposes, including data analytics, audit, accounting or + reporting purposes. How long we keep your personal data depends + on the nature of the data, e.g. we keep personal data for at + least the duration of the limitation period for bringing claims + if the personal data may be required to commence or defend legal + proceedings. Some information may also be retained for longer, + e.g. where we are required to do so by law. +

+

+ 9.4 Anonymised data. In some circumstances we may + anonymise your personal data so that it can no longer be + associated with you, in which case we are entitled to retain and + use such data without restriction. +

+
+

+ 10. YOUR RIGHTS +

+
+

+ 10.1 Rights you may enjoy. Depending on the jurisdiction + that you are in or where we operate, you may enjoy certain + rights under applicable law in relation to our collection, use, + disclosure and processing of your personal data. Such rights may + include: +

+
    +
  • + Access: you may ask us if we hold your personal data + and, if we are, you can request access to your personal data. + This enables you to receive a copy of and information on the + personal data we hold about you. +
  • +
  • + Correction: you may request that any incomplete or + inaccurate personal data we hold about you is corrected. +
  • +
  • + Erasure: you may ask us to delete or remove personal + data that we hold about you in certain circumstances. +
  • +
  • + Restriction: you may withdraw consent for our use of + your personal data, or ask us to suspend the processing of + certain of your personal data about you, for example if you + want us to establish its accuracy. +
  • +
  • + Portability: you may request the transfer of certain of + your personal data to another party under certain conditions. +
  • +
  • + Objection: where we are processing your personal data + based on a legitimate interest (or those of a third party) you + may object to processing on this ground. +
  • +
+

+ If you wish to exercise any of your rights, you may contact us + in accordance with paragraph 1.7. We may require that you submit + certain forms or provide certain information to process your + request. Where permitted by law, we may also charge you a fee to + process your request. +

+

+ 10.2 Limitations. We may be permitted under applicable + laws to refuse a request, for example, we may refuse (a) a + request for erasure where the personal data is required for in + connection with claims; or (b) an objection request and continue + processing your personal data based on compelling legitimate + grounds for the processing. +

+
+
+
+
+
+ ); +}; +export default Privacy;