| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486 |
- <style>
- [data-custom-class='body'],
- [data-custom-class='body'] * {
- background: transparent !important;
- }
- [data-custom-class='title'],
- [data-custom-class='title'] * {
- font-family: Arial !important;
- font-size: 26px !important;
- color: #000000 !important;
- }
- [data-custom-class='subtitle'],
- [data-custom-class='subtitle'] * {
- font-family: Arial !important;
- color: #595959 !important;
- font-size: 14px !important;
- }
- [data-custom-class='heading_1'],
- [data-custom-class='heading_1'] * {
- font-family: Arial !important;
- font-size: 19px !important;
- color: #000000 !important;
- }
- [data-custom-class='heading_2'],
- [data-custom-class='heading_2'] * {
- font-family: Arial !important;
- font-size: 17px !important;
- color: #000000 !important;
- }
- [data-custom-class='body_text'],
- [data-custom-class='body_text'] * {
- color: #595959 !important;
- font-size: 14px !important;
- font-family: Arial !important;
- }
- [data-custom-class='link'],
- [data-custom-class='link'] * {
- color: #3030F1 !important;
- font-size: 14px !important;
- font-family: Arial !important;
- word-break: break-word !important;
- }
- </style>
- <span
- style="display: block;margin: 0 auto 3.125rem;width: 11.125rem;height: 2.375rem;background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjIuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxNjBweCIKCSBoZWlnaHQ9IjYwcHgiIHZpZXdCb3g9IjAgMCAxNjAgNjAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2MCA2MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPiAKCS5zdDh7ZmlsbDojRjk0OTM2O30KPC9zdHlsZT4KCjxnIGlkPSLlm77lsYJfNyI+Cgk8Zz4KCQk8Zz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTIyLjUsMzQuOWwtMi4yLTEwLjVjLTAuNy0zLjQtMy43LTUuOS03LjItNS45Yy0zLjUsMC02LjUsMi40LTcuMiw1LjlMMy42LDM0LjljLTAuNSwyLjMsMS4zLDQuNCwzLjYsNC40CgkJCQljMS40LDAsMi42LTAuNywzLjItMS45bDEuMi0yLjNjMC42LTEuMSwyLjItMS4xLDIuOCwwbDEuMSwyLjJjMC42LDEuMiwxLjksMiwzLjMsMmgwLjFDMjEuMywzOS40LDIzLDM3LjIsMjIuNSwzNC45eiBNMTQuNSwzMC4yCgkJCQljLTEuMS0wLjUtMS4yLTItMi4zLTEuNmMtMC45LDAuMy0wLjQsMS4xLTEuMiwxLjJjLTIuMSwwLjItMy00LTEtNmMyLjEtMi4xLDYuNC0xLjUsNy4yLDIuN0MxNy41LDI4LjUsMTUuOSwzMC45LDE0LjUsMzAuMnoiLz4KCQk8L2c+CgkJPGc+CgkJCTxwYXRoIGNsYXNzPSJzdDgiIGQ9Ik0yNS40LDM3LjhjLTAuMywwLTAuNi0wLjItMC44LTAuNWMtMC4yLTAuMy0wLjQtMC43LTAuNS0xLjNjLTAuMS0wLjUtMC4yLTEuMi0wLjItMS44CgkJCQljMC0wLjctMC4xLTEuNC0wLjEtMi4xYzAtMC41LDAtMSwwLTEuNWMwLTAuNSwwLjEtMSwwLjEtMS40YzAuMS0wLjQsMC4yLTAuOCwwLjQtMS4xYzAuMi0wLjMsMC41LTAuNCwwLjktMC40CgkJCQljMC4zLDAsMC41LDAuMSwwLjcsMC4zYzAuMiwwLjIsMC40LDAuNCwwLjQsMC44YzAuMi0wLjMsMC41LTAuNSwwLjktMC42YzAuNC0wLjEsMC43LTAuMiwxLjEtMC4yYzAuMywwLDAuNiwwLjEsMSwwLjMKCQkJCWMwLjMsMC4yLDAuNiwwLjUsMC44LDAuOWMwLjIsMC40LDAuMywwLjgsMC4zLDEuM2MwLDAuNC0wLjEsMC44LTAuMywxLjJjLTAuMiwwLjQtMC41LDAuNi0wLjksMC42Yy0wLjIsMC0wLjMsMC0wLjQtMC4xCgkJCQljLTAuMS0wLjEtMC4yLTAuMS0wLjMtMC4yYy0wLjEtMC4xLTAuMi0wLjEtMC40LTAuMWMtMC40LDAtMC43LDAuMi0xLDAuNnMtMC41LDEtMC41LDEuN2MwLDAuNCwwLDAuOCwwLDEuMgoJCQkJYzAsMC40LTAuMSwwLjgtMC4xLDEuMmMtMC4xLDAuNC0wLjIsMC43LTAuNCwxQzI2LDM3LjcsMjUuOCwzNy44LDI1LjQsMzcuOHoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTM2LDM3LjhjLTAuMywwLTAuNy0wLjEtMS4xLTAuM2MtMC40LTAuMi0wLjctMC41LTEtMC45Yy0wLjMtMC40LTAuNS0wLjgtMC42LTEuNGMtMC4xLTAuNC0wLjItMC44LTAuMi0xLjMKCQkJCWMwLTAuNS0wLjEtMS4xLTAuMS0xLjdjMC0wLjYsMC0xLjIsMC0xLjdjLTAuNCwwLTAuOC0wLjEtMS4xLTAuMWMtMC40LTAuMS0wLjYtMC4yLTAuOS0wLjVjLTAuMi0wLjItMC4zLTAuNi0wLjMtMQoJCQkJYzAtMC42LDAuMS0xLDAuMy0xLjJjMC4yLTAuMywwLjUtMC41LDAuOC0wLjZjMC40LTAuMSwwLjctMC4xLDEuMi0wLjJjMC0wLjQsMC0wLjksMC4xLTEuM2MwLTAuNSwwLjEtMC45LDAuMi0xLjMKCQkJCWMwLjEtMC40LDAuMy0wLjcsMC41LTFjMC4yLTAuMiwwLjUtMC40LDAuOC0wLjRjMC40LDAsMC43LDAuMiwwLjksMC42YzAuMiwwLjQsMC4zLDAuOSwwLjQsMS41YzAsMC42LDAuMSwxLjIsMC4xLDEuOQoJCQkJYzAuNSwwLDEsMCwxLjQsMC4xYzAuNCwwLjEsMC43LDAuMiwwLjksMC41czAuMywwLjYsMC4zLDEuMWMwLDAuNS0wLjEsMC45LTAuNCwxLjJjLTAuMywwLjMtMC42LDAuNC0xLDAuNXMtMC45LDAuMS0xLjMsMC4yCgkJCQljMCwwLjMsMCwwLjUsMCwwLjhjMCwwLjMsMCwwLjYsMCwwLjljMCwwLjgsMCwxLjQsMC4xLDEuN2MwLjEsMC4zLDAuMSwwLjQsMC4yLDAuNWMwLjEsMC4xLDAuMiwwLjEsMC40LDAuMQoJCQkJYzAuMiwwLDAuNCwwLjEsMC42LDAuMWMwLjIsMC4xLDAuNCwwLjIsMC41LDAuNWMwLjEsMC4zLDAuMiwwLjYsMC4yLDEuMWMwLDAuNS0wLjIsMC45LTAuNSwxLjFDMzcsMzcuNywzNi41LDM3LjgsMzYsMzcuOHoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTQ1LjgsMzcuOGMtMC4zLDAtMC42LTAuMi0wLjgtMC41Yy0wLjItMC40LTAuNC0wLjgtMC42LTEuNGMtMC4yLTAuNi0wLjMtMS4yLTAuNC0xLjkKCQkJCWMtMC4xLTAuNy0wLjItMS40LTAuMi0yLjFjMC0wLjctMC4xLTEuMy0wLjEtMS45YzAtMC43LDAtMS41LDAuMS0yLjNjMC4xLTAuOCwwLjItMS42LDAuNC0yLjNjMC4yLTAuNywwLjUtMS4zLDAuOC0xLjgKCQkJCWMwLjMtMC41LDAuOC0wLjcsMS4zLTAuN2MwLjQsMCwwLjcsMC4yLDEsMC41YzAuMywwLjMsMC41LDAuOCwwLjgsMS40YzAuMiwwLjYsMC40LDEuMywwLjcsMi4xYzAuMiwwLjgsMC40LDEuNiwwLjcsMi41CgkJCQljMC0xLjIsMC0yLjMsMC4xLTMuM2MwLjEtMSwwLjMtMS44LDAuNi0yLjRjMC4zLTAuNiwwLjctMC45LDEuMy0wLjljMC41LDAsMC44LDAuMiwxLjEsMC43YzAuMywwLjUsMC41LDEsMC42LDEuOAoJCQkJYzAuMSwwLjcsMC4yLDEuNSwwLjMsMi4zYzAuMSwwLjgsMC4xLDEuNiwwLjEsMi4zYzAsMC42LDAsMS4yLTAuMSwxLjljLTAuMSwwLjctMC4yLDEuNC0wLjMsMi4xYy0wLjEsMC43LTAuMywxLjMtMC42LDEuOQoJCQkJYy0wLjIsMC42LTAuNSwxLTAuOSwxLjRjLTAuMywwLjQtMC44LDAuNS0xLjIsMC41Yy0wLjQsMC0wLjgtMC4yLTEuMS0wLjZjLTAuMy0wLjQtMC42LTAuOS0wLjgtMS41Yy0wLjItMC42LTAuNC0xLjQtMC42LTIuMQoJCQkJYy0wLjItMC44LTAuNC0xLjYtMC42LTIuM2MwLDEsMCwxLjksMCwyLjdzLTAuMSwxLjUtMC4yLDIuMWMtMC4xLDAuNi0wLjMsMS0wLjUsMS4zQzQ2LjYsMzcuNyw0Ni4yLDM3LjgsNDUuOCwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNNTcuNywzNy44Yy0wLjcsMC0xLjQtMC4zLTEuOS0wLjhjLTAuNS0wLjUtMS0xLjItMS4zLTIuMmMtMC4zLTAuOS0wLjQtMi0wLjQtMy4yYzAtMS4yLDAuMS0yLjEsMC40LTIuOAoJCQkJYzAuMy0wLjcsMC42LTEsMS4xLTFjMC4zLDAsMC42LDAuMSwwLjgsMC4zYzAuMiwwLjIsMC4zLDAuNCwwLjQsMC43YzAuMSwwLjMsMC4xLDAuNiwwLjEsMC45YzAsMC40LDAsMC44LTAuMSwxLjIKCQkJCWMwLDAuNC0wLjEsMC44LTAuMSwxLjNjMCwwLjcsMC4xLDEuMiwwLjMsMS41YzAuMiwwLjMsMC40LDAuNSwwLjYsMC41YzAuMiwwLDAuNS0wLjIsMC42LTAuNWMwLjItMC4zLDAuMy0wLjgsMC4zLTEuNQoJCQkJYzAtMC41LDAtMC45LDAtMS4zYzAtMC40LDAtMC44LDAtMS4zYzAtMC41LDAuMS0wLjksMC4zLTEuM2MwLjItMC40LDAuNS0wLjYsMS0wLjZjMC41LDAsMC45LDAuMywxLjEsMWMwLjMsMC43LDAuNCwxLjYsMC40LDIuOAoJCQkJYzAsMS4yLTAuMSwyLjMtMC40LDMuMmMtMC4zLDAuOS0wLjcsMS42LTEuMiwyLjJDNTkuMiwzNy42LDU4LjUsMzcuOCw1Ny43LDM3Ljh6Ii8+CgkJCTxwYXRoIGNsYXNzPSJzdDgiIGQ9Ik02NywzNy44Yy0wLjUsMC0wLjgtMC4yLTEtMC43Yy0wLjItMC41LTAuMi0xLjEtMC4yLTJjMC0wLjcsMC0xLjMsMC0xLjhjMC0wLjUtMC4yLTAuNy0wLjQtMC43CgkJCQljLTAuMiwwLTAuNCwwLjEtMC40LDAuM2MtMC4xLDAuMi0wLjEsMC41LTAuMSwwLjljMCwwLjQsMCwwLjgsMCwxLjNjMCwwLjUsMCwwLjktMC4xLDEuM2MwLDAuNC0wLjEsMC43LTAuMywxCgkJCQljLTAuMiwwLjItMC40LDAuNC0wLjgsMC40Yy0wLjMsMC0wLjYtMC4yLTAuOC0wLjVjLTAuMi0wLjQtMC40LTAuOC0wLjUtMS40Yy0wLjEtMC42LTAuMi0xLjItMC4yLTEuOWMwLTAuNy0wLjEtMS4zLTAuMS0yCgkJCQljMC0xLjIsMC4xLTIuMiwwLjItM2MwLjEtMC44LDAuNS0xLjMsMS0xLjVjMC4zLTAuMSwwLjYtMC4xLDAuOCwwYzAuMywwLjEsMC40LDAuMywwLjUsMC42YzAuMS0wLjEsMC4yLTAuMSwwLjQtMC4yCgkJCQljMC4xLTAuMSwwLjQtMC4xLDAuNy0wLjFjMC4zLDAsMC42LDAuMSwwLjksMC4zYzAuMywwLjIsMC41LDAuNSwwLjYsMC45YzAuMi0wLjQsMC41LTAuNywwLjgtMC45YzAuMy0wLjIsMC42LTAuMywxLjEtMC4zCgkJCQljMC42LDAsMS4yLDAuMywxLjYsMC44YzAuNCwwLjUsMC44LDEuMiwxLDIuMWMwLjIsMC45LDAuNCwxLjksMC40LDIuOWMwLDAuNywwLDEuNC0wLjEsMmMtMC4xLDAuNi0wLjIsMS4xLTAuNSwxLjUKCQkJCWMtMC4yLDAuNC0wLjUsMC42LTAuOSwwLjZjLTAuNCwwLTAuNi0wLjEtMC44LTAuNGMtMC4yLTAuMi0wLjMtMC42LTAuMy0xYzAtMC40LTAuMS0wLjktMC4xLTEuM2MwLTAuNSwwLTAuOSwwLTEuMwoJCQkJYzAtMC40LTAuMS0wLjctMC4xLTAuOWMtMC4xLTAuMi0wLjItMC4zLTAuNC0wLjNjLTAuMiwwLTAuMywwLjEtMC4zLDAuM2MtMC4xLDAuMi0wLjEsMC41LTAuMSwwLjljMCwwLjQsMCwwLjgsMCwxLjMKCQkJCWMwLDAuOC0wLjEsMS41LTAuMywyQzY3LjgsMzcuNiw2Ny41LDM3LjgsNjcsMzcuOHoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTc2LjUsMzcuOGMtMC43LDAtMS4zLTAuMS0xLjgtMC40Yy0wLjUtMC4zLTAuOS0wLjctMS4yLTEuMWMtMC4zLTAuNS0wLjYtMS0wLjctMS41CgkJCQljLTAuMi0wLjYtMC4zLTEuMS0wLjQtMS42Yy0wLjEtMC41LTAuMS0xLTAuMS0xLjVjMC0wLjQsMC0wLjgsMC0xYzAtMC43LDAtMS4zLDAuMS0yYzAtMC43LDAuMS0xLjQsMC4yLTIuMXMwLjMtMS4zLDAuNC0xLjgKCQkJCWMwLjItMC41LDAuNC0xLDAuNy0xLjNjMC4zLTAuMywwLjYtMC41LDAuOS0wLjVjMC4zLDAsMC42LDAuMSwwLjksMC40YzAuMywwLjMsMC40LDAuOCwwLjQsMS40YzAsMC42LTAuMSwxLjItMC4yLDEuOAoJCQkJYy0wLjEsMC42LTAuMiwxLjItMC4zLDEuOGMwLjItMC4yLDAuNS0wLjMsMC43LTAuNGMwLjMtMC4xLDAuNS0wLjEsMC44LTAuMWMwLjUsMCwxLDAuMiwxLjUsMC41YzAuNSwwLjMsMC45LDAuOSwxLjIsMS42CgkJCQljMC4zLDAuNywwLjUsMS42LDAuNSwyLjdjMCwwLjktMC4xLDEuNy0wLjQsMi41Yy0wLjMsMC44LTAuNywxLjQtMS4yLDEuOUM3Ny45LDM3LjYsNzcuMiwzNy44LDc2LjUsMzcuOHogTTc2LjQsMzQuNQoJCQkJYzAuMywwLDAuNS0wLjEsMC43LTAuNGMwLjItMC4zLDAuMy0wLjYsMC4zLTFjMC0wLjQtMC4xLTAuNy0wLjMtMWMtMC4yLTAuMy0wLjQtMC40LTAuNy0wLjRzLTAuNSwwLjEtMC43LDAuNAoJCQkJYy0wLjIsMC4zLTAuMywwLjYtMC4zLDFjMCwwLjQsMC4xLDAuNywwLjMsMUM3NS45LDM0LjMsNzYuMiwzNC41LDc2LjQsMzQuNXoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTg0LjMsMzcuOGMtMC43LDAtMS40LTAuMi0yLTAuNmMtMC42LTAuNC0xLTEtMS4zLTEuN3MtMC41LTEuNi0wLjUtMi41YzAtMC45LDAuMi0xLjgsMC41LTIuNQoJCQkJYzAuMy0wLjgsMC43LTEuNCwxLjMtMS45YzAuNi0wLjUsMS4yLTAuNywxLjktMC43YzAuNywwLDEuMiwwLjIsMS43LDAuNmMwLjUsMC40LDAuOCwwLjksMS4xLDEuNWMwLjMsMC42LDAuNCwxLjIsMC40LDEuOQoJCQkJYzAsMC43LTAuMSwxLjItMC4zLDEuNmMtMC4yLDAuNC0wLjUsMC43LTAuOCwxYy0wLjMsMC4yLTAuNywwLjQtMS4xLDAuNGMtMC40LDAuMS0wLjcsMC4xLTEuMSwwYy0wLjMsMC0wLjYtMC4xLTAuOS0wLjIKCQkJCWMwLjIsMC40LDAuNCwwLjcsMC43LDAuOGMwLjMsMC4xLDAuNiwwLjIsMC45LDAuMmMwLjMsMCwwLjYtMC4xLDAuOC0wLjFjMC4zLTAuMSwwLjYtMC4xLDAuOCwwLjFzMC4zLDAuNCwwLjMsMC43CgkJCQljMCwwLjMtMC4xLDAuNS0wLjIsMC44Yy0wLjEsMC4zLTAuNCwwLjUtMC43LDAuNkM4NS40LDM3LjcsODQuOSwzNy44LDg0LjMsMzcuOHogTTgzLjMsMzEuOWMwLjEsMC4yLDAuMiwwLjQsMC40LDAuNQoJCQkJYzAuMiwwLjEsMC40LDAuMSwwLjYsMC4xYzAuMiwwLDAuNC0wLjEsMC41LTAuMmMwLjEtMC4xLDAuMi0wLjMsMC4yLTAuNWMwLTAuMi0wLjEtMC41LTAuMi0wLjZjLTAuMS0wLjItMC4zLTAuMy0wLjYtMC4zCgkJCQljLTAuMywwLTAuNSwwLjEtMC42LDAuNEM4My4zLDMxLjQsODMuMywzMS43LDgzLjMsMzEuOXoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTg5LjYsMzcuOGMtMC4zLDAtMC42LTAuMi0wLjgtMC41Yy0wLjItMC4zLTAuNC0wLjctMC41LTEuM2MtMC4xLTAuNS0wLjItMS4yLTAuMi0xLjgKCQkJCWMwLTAuNy0wLjEtMS40LTAuMS0yLjFjMC0wLjUsMC0xLDAtMS41YzAtMC41LDAuMS0xLDAuMS0xLjRjMC4xLTAuNCwwLjItMC44LDAuNC0xLjFjMC4yLTAuMywwLjUtMC40LDAuOS0wLjQKCQkJCWMwLjMsMCwwLjUsMC4xLDAuNywwLjNjMC4yLDAuMiwwLjQsMC40LDAuNCwwLjhjMC4yLTAuMywwLjUtMC41LDAuOS0wLjZjMC40LTAuMSwwLjctMC4yLDEuMS0wLjJjMC4zLDAsMC42LDAuMSwxLDAuMwoJCQkJYzAuMywwLjIsMC42LDAuNSwwLjgsMC45YzAuMiwwLjQsMC4zLDAuOCwwLjMsMS4zYzAsMC40LTAuMSwwLjgtMC4zLDEuMmMtMC4yLDAuNC0wLjUsMC42LTAuOSwwLjZjLTAuMiwwLTAuMywwLTAuNC0wLjEKCQkJCWMtMC4xLTAuMS0wLjItMC4xLTAuMy0wLjJjLTAuMS0wLjEtMC4yLTAuMS0wLjQtMC4xYy0wLjQsMC0wLjcsMC4yLTEsMC42cy0wLjUsMS0wLjUsMS43YzAsMC40LDAsMC44LDAsMS4ycy0wLjEsMC44LTAuMSwxLjIKCQkJCWMtMC4xLDAuNC0wLjIsMC43LTAuNCwxQzkwLjIsMzcuNyw4OS45LDM3LjgsODkuNiwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTA1LDM3LjhjLTAuOSwwLTEuOC0wLjMtMi42LTAuOGMtMC44LTAuNS0xLjQtMS40LTEuOC0yLjVjLTAuNS0xLjEtMC43LTIuNS0wLjctNC4xYzAtMSwwLjEtMS45LDAuNC0yLjgKCQkJCWMwLjItMC45LDAuNi0xLjcsMS0yLjRjMC40LTAuNywwLjktMS4yLDEuNS0xLjZjMC42LTAuNCwxLjItMC42LDEuOS0wLjZjMC45LDAsMS43LDAuMiwyLjMsMC43YzAuNywwLjUsMS4yLDEuMSwxLjYsMS45CgkJCQljMC40LDAuOCwwLjYsMS43LDAuNiwyLjdjMCwwLjQtMC4xLDAuNy0wLjIsMS4xYy0wLjEsMC4zLTAuMywwLjYtMC41LDAuOWMtMC4yLDAuMi0wLjUsMC4zLTAuOCwwLjNjLTAuMywwLTAuNi0wLjEtMC44LTAuMgoJCQkJYy0wLjItMC4xLTAuMy0wLjMtMC41LTAuNWMtMC4xLTAuMi0wLjMtMC40LTAuNC0wLjZjLTAuMS0wLjItMC4zLTAuNC0wLjUtMC41Yy0wLjItMC4xLTAuNC0wLjItMC44LTAuMmMtMC4zLDAtMC42LDAuMS0wLjgsMC4zCgkJCQljLTAuMywwLjItMC41LDAuNS0wLjYsMC45cy0wLjIsMC44LTAuMiwxLjNjMCwwLjcsMC4xLDEuNCwwLjQsMS45YzAuMywwLjYsMC43LDAuOCwxLjIsMC44YzAuNCwwLDAuNy0wLjEsMC45LTAuMwoJCQkJczAuNC0wLjQsMC42LTAuNmMwLjItMC4yLDAuMy0wLjQsMC41LTAuNmMwLjItMC4yLDAuNC0wLjMsMC44LTAuM2MwLjQsMCwwLjgsMC4yLDEsMC42YzAuMiwwLjQsMC4zLDAuOSwwLjMsMS41CgkJCQljMCwwLjYtMC4yLDEuMi0wLjYsMS43Yy0wLjMsMC42LTAuOCwxLTEuMywxLjNDMTA2LjQsMzcuNiwxMDUuOCwzNy44LDEwNSwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTEzLjEsMzcuOGMtMC43LDAtMS40LTAuMi0xLjktMC42Yy0wLjYtMC40LTEtMS4xLTEuMy0xLjhjLTAuMy0wLjgtMC41LTEuNi0wLjUtMi42YzAtMSwwLjEtMS44LDAuNS0yLjYKCQkJCWMwLjMtMC43LDAuOC0xLjMsMS4zLTEuOHMxLjItMC43LDEuOS0wLjdjMC43LDAsMS4zLDAuMiwxLjksMC42YzAuNiwwLjQsMSwxLDEuMywxLjhjMC4zLDAuNywwLjUsMS42LDAuNSwyLjYKCQkJCWMwLDAuOS0wLjEsMS44LTAuNSwyLjVjLTAuMywwLjgtMC44LDEuNC0xLjMsMS44QzExNC41LDM3LjYsMTEzLjgsMzcuOCwxMTMuMSwzNy44eiBNMTEzLjEsMzQuOGMwLjMsMCwwLjUtMC4xLDAuNy0wLjQKCQkJCWMwLjItMC4zLDAuMy0wLjYsMC4zLTFjMC0wLjQtMC4xLTAuNy0wLjMtMWMtMC4yLTAuMy0wLjQtMC40LTAuNy0wLjRzLTAuNSwwLjEtMC43LDAuNGMtMC4yLDAuMy0wLjMsMC42LTAuMywxCgkJCQljMCwwLjQsMC4xLDAuNywwLjMsMUMxMTIuNiwzNC42LDExMi44LDM0LjgsMTEzLjEsMzQuOHoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTExOS4zLDM3LjhjLTAuNSwwLTAuOS0wLjMtMS4xLTAuOGMtMC4yLTAuNS0wLjQtMS40LTAuNS0yLjVjLTAuMS0xLjEtMC4xLTIuNS0wLjEtNC4xYzAtMS4xLDAtMi4xLDAtMwoJCQkJYzAtMC45LDAuMS0xLjcsMC4yLTIuM2MwLjEtMC43LDAuMy0xLjIsMC41LTEuNWMwLjItMC40LDAuNi0wLjUsMS0wLjVzMC44LDAuMiwxLDAuNWMwLjIsMC40LDAuNCwwLjksMC41LDEuNQoJCQkJYzAuMSwwLjcsMC4yLDEuNCwwLjIsMi4zYzAsMC45LDAsMS45LDAsM2MwLDIuNS0wLjEsNC4zLTAuNCw1LjZDMTIwLjUsMzcuMiwxMjAsMzcuOCwxMTkuMywzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTI1LjIsMzcuOGMtMC43LDAtMS40LTAuMi0xLjktMC42Yy0wLjYtMC40LTEtMS4xLTEuMy0xLjhjLTAuMy0wLjgtMC41LTEuNi0wLjUtMi42YzAtMSwwLjEtMS44LDAuNS0yLjYKCQkJCXMwLjgtMS4zLDEuMy0xLjhzMS4yLTAuNywxLjktMC43YzAuNywwLDEuMywwLjIsMS45LDAuNmMwLjYsMC40LDEsMSwxLjMsMS44YzAuMywwLjcsMC41LDEuNiwwLjUsMi42YzAsMC45LTAuMSwxLjgtMC41LDIuNQoJCQkJYy0wLjMsMC44LTAuOCwxLjQtMS4zLDEuOEMxMjYuNiwzNy42LDEyNiwzNy44LDEyNS4yLDM3Ljh6IE0xMjUuMywzNC44YzAuMywwLDAuNS0wLjEsMC43LTAuNGMwLjItMC4zLDAuMy0wLjYsMC4zLTEKCQkJCWMwLTAuNC0wLjEtMC43LTAuMy0xYy0wLjItMC4zLTAuNC0wLjQtMC43LTAuNHMtMC41LDAuMS0wLjcsMC40Yy0wLjIsMC4zLTAuMywwLjYtMC4zLDFjMCwwLjQsMC4xLDAuNywwLjMsMQoJCQkJQzEyNC44LDM0LjYsMTI1LDM0LjgsMTI1LjMsMzQuOHoiLz4KCQkJPHBhdGggY2xhc3M9InN0OCIgZD0iTTEzMS4yLDM3LjhjLTAuMywwLTAuNi0wLjItMC44LTAuNWMtMC4yLTAuMy0wLjQtMC43LTAuNS0xLjNjLTAuMS0wLjUtMC4yLTEuMi0wLjItMS44CgkJCQljMC0wLjctMC4xLTEuNC0wLjEtMi4xYzAtMC41LDAtMSwwLTEuNWMwLTAuNSwwLjEtMSwwLjEtMS40YzAuMS0wLjQsMC4yLTAuOCwwLjQtMS4xYzAuMi0wLjMsMC41LTAuNCwwLjktMC40CgkJCQljMC4zLDAsMC41LDAuMSwwLjcsMC4zYzAuMiwwLjIsMC40LDAuNCwwLjQsMC44YzAuMi0wLjMsMC41LTAuNSwwLjktMC42YzAuNC0wLjEsMC43LTAuMiwxLjEtMC4yYzAuMywwLDAuNiwwLjEsMSwwLjMKCQkJCWMwLjMsMC4yLDAuNiwwLjUsMC44LDAuOWMwLjIsMC40LDAuMywwLjgsMC4zLDEuM2MwLDAuNC0wLjEsMC44LTAuMywxLjJjLTAuMiwwLjQtMC41LDAuNi0wLjksMC42Yy0wLjIsMC0wLjMsMC0wLjQtMC4xCgkJCQljLTAuMS0wLjEtMC4yLTAuMS0wLjMtMC4yYy0wLjEtMC4xLTAuMi0wLjEtMC40LTAuMWMtMC40LDAtMC43LDAuMi0xLDAuNmMtMC4zLDAuNC0wLjUsMS0wLjUsMS43YzAsMC40LDAsMC44LDAsMS4yCgkJCQlzLTAuMSwwLjgtMC4xLDEuMmMtMC4xLDAuNC0wLjIsMC43LTAuNCwxQzEzMS44LDM3LjcsMTMxLjUsMzcuOCwxMzEuMiwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTM4LjQsMjcuNWMtMC41LDAtMC45LTAuMy0xLjItMC44Yy0wLjMtMC41LTAuNS0xLjEtMC41LTEuOGMwLTAuNSwwLjEtMC45LDAuMi0xLjMKCQkJCWMwLjItMC40LDAuNC0wLjcsMC42LTAuOWMwLjMtMC4yLDAuNi0wLjQsMC45LTAuNGMwLjMsMCwwLjYsMC4xLDAuOSwwLjRjMC4zLDAuMiwwLjUsMC41LDAuNiwwLjljMC4yLDAuNCwwLjIsMC44LDAuMiwxLjMKCQkJCWMwLDAuNS0wLjEsMC45LTAuMiwxLjNjLTAuMiwwLjQtMC40LDAuNy0wLjYsMC45QzEzOSwyNy40LDEzOC43LDI3LjUsMTM4LjQsMjcuNXogTTEzOC40LDM3LjhjLTAuNCwwLTAuNy0wLjItMC45LTAuNQoJCQkJYy0wLjItMC4zLTAuMy0wLjgtMC40LTEuNWMtMC4xLTAuNy0wLjEtMS41LTAuMS0yLjZjMC0xLjEsMC0xLjksMC4xLTIuNmMwLjEtMC43LDAuMi0xLjIsMC40LTEuNWMwLjItMC4zLDAuNS0wLjUsMC45LTAuNQoJCQkJYzAuNCwwLDAuNywwLjIsMC45LDAuNWMwLjIsMC4zLDAuMywwLjgsMC40LDEuNWMwLjEsMC43LDAuMSwxLjUsMC4xLDIuNmMwLDEuMSwwLDEuOS0wLjEsMi42Yy0wLjEsMC43LTAuMiwxLjItMC40LDEuNQoJCQkJQzEzOS4xLDM3LjcsMTM4LjgsMzcuOCwxMzguNCwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTQ2LjYsMzcuOGMtMC40LDAtMC43LTAuMi0wLjgtMC41Yy0wLjItMC4zLTAuMy0wLjctMC4zLTEuMmMwLTAuNSwwLTEsMC0xLjVjMC0wLjctMC4xLTEuNC0wLjItMS44CgkJCQljLTAuMS0wLjUtMC40LTAuNy0wLjgtMC43Yy0wLjMsMC0wLjYsMC4yLTAuNywwLjdjLTAuMiwwLjUtMC4yLDEuMS0wLjIsMS44YzAsMC41LDAsMSwwLDEuNWMwLDAuNS0wLjEsMC45LTAuMywxLjIKCQkJCWMtMC4yLDAuMy0wLjQsMC41LTAuOSwwLjVjLTAuMywwLTAuNi0wLjItMC44LTAuNWMtMC4yLTAuMy0wLjQtMC43LTAuNS0xLjNjLTAuMS0wLjUtMC4yLTEuMS0wLjItMS43YzAtMC42LTAuMS0xLjItMC4xLTEuOAoJCQkJczAtMS4xLDAuMS0xLjdjMC0wLjYsMC4xLTEuMSwwLjItMS43YzAuMS0wLjUsMC4zLTAuOSwwLjUtMS4yYzAuMi0wLjMsMC41LTAuNSwwLjgtMC41YzAuNiwwLDAuOSwwLjQsMS4xLDEuMQoJCQkJYzAuMS0wLjIsMC4zLTAuNCwwLjYtMC41YzAuMy0wLjIsMC42LTAuMiwwLjktMC4yYzAuOCwwLDEuNCwwLjMsMS45LDAuOGMwLjUsMC42LDAuOCwxLjMsMS4xLDIuM3MwLjMsMi4xLDAuMywzLjQKCQkJCWMwLDAuNywwLDEuMi0wLjEsMS44Yy0wLjEsMC41LTAuMiwxLTAuNCwxLjNDMTQ3LjIsMzcuNywxNDcsMzcuOCwxNDYuNiwzNy44eiIvPgoJCQk8cGF0aCBjbGFzcz0ic3Q4IiBkPSJNMTUxLjcsNDEuNWMtMC42LDAtMS0wLjItMS40LTAuNWMtMC40LTAuMy0wLjYtMC43LTAuNi0xLjJjMC0wLjUsMC4yLTEsMC41LTEuM2MwLjMtMC4zLDAuNy0wLjQsMS4yLTAuMwoJCQkJYzAuNSwwLjEsMSwwLjEsMS41LTAuMWMwLjQtMC4yLDAuNy0wLjUsMC44LTAuOWMtMC4yLDAuMS0wLjQsMC4yLTAuNywwLjNjLTAuMywwLjEtMC42LDAuMS0wLjksMC4xYy0wLjcsMC0xLjItMC4xLTEuNy0wLjQKCQkJCWMtMC41LTAuMy0wLjgtMC43LTEuMS0xLjFjLTAuMy0wLjUtMC41LTAuOS0wLjYtMS41Yy0wLjEtMC41LTAuMi0xLTAuMi0xLjRjMC0xLjIsMC4yLTIuMSwwLjUtMi45YzAuNC0wLjgsMC44LTEuNCwxLjMtMS44CgkJCQljMC41LTAuNCwxLjEtMC42LDEuNy0wLjZjMC4yLDAsMC40LDAsMC43LDAuMWMwLjMsMCwwLjUsMC4xLDAuNywwLjJjMC4xLTAuNCwwLjItMC42LDAuNC0wLjljMC4yLTAuMiwwLjUtMC4zLDAuOS0wLjMKCQkJCWMwLjQsMCwwLjcsMC4yLDAuOSwwLjVjMC4yLDAuMywwLjQsMC44LDAuNiwxLjRjMC4xLDAuNiwwLjIsMS4yLDAuMywyYzAuMSwwLjcsMC4xLDEuNSwwLjEsMi4yYzAsMC44LDAsMS41LTAuMSwyLjEKCQkJCWMtMC4xLDEuMy0wLjQsMi41LTAuOCwzLjRjLTAuNCwxLTAuOSwxLjctMS42LDIuMkMxNTMuNCw0MS4yLDE1Mi42LDQxLjUsMTUxLjcsNDEuNXogTTE1Mi4zLDM0LjRjMC4zLDAsMC42LTAuMiwwLjgtMC41CgkJCQljMC4yLTAuMywwLjMtMC43LDAuMy0xLjFjMC0wLjQtMC4xLTAuOC0wLjMtMS4xYy0wLjItMC4zLTAuNS0wLjUtMC44LTAuNWMtMC4zLDAtMC42LDAuMi0wLjgsMC41Yy0wLjIsMC4zLTAuMywwLjctMC4zLDEuMQoJCQkJYzAsMC40LDAuMSwwLjgsMC4zLDEuMUMxNTEuNywzNC4zLDE1MiwzNC40LDE1Mi4zLDM0LjR6Ii8+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPg==) center no-repeat;"></span>
- <div data-custom-class="body">
- <div><strong><span style="font-size: 26px;"><span data-custom-class="title">
- <bdt class="block-component"></bdt>
- <bdt class="question">
- <h1>PRIVACY POLICY</h1>
- </bdt>
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></strong></div>
- <div><span style="color: rgb(127, 127, 127);"><strong><span style="font-size: 15px;"><span
- data-custom-class="subtitle">Last updated <bdt class="question">February 17, 2025</bdt>
- </span></span></strong></span></div>
- <div><br></div>
- <div><br></div>
- <div><br></div>
- <div style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text">This Privacy Notice for
- <bdt class="question">JCCY Inc.<bdt class="block-component"></bdt>
- </bdt> (<bdt class="block-component"></bdt>"<strong>we</strong>," "<strong>us</strong>," or
- "<strong>our</strong>"<bdt class="statement-end-if-in-editor"></bdt>
- </span><span data-custom-class="body_text">), describes how and why we might access, collect, store, use, and/or
- share (
- <bdt class="block-component"></bdt>"<strong>process</strong>"<bdt class="statement-end-if-in-editor"></bdt>)
- your personal information when you use our services (<bdt class="block-component"></bdt>
- "<strong>Services</strong>"<bdt class="statement-end-if-in-editor"></bdt>), including when
- you:
- </span></span></span><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
- data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Visit our website<bdt class="block-component"></bdt> at <span
- style="color: rgb(0, 58, 250);">
- <bdt class="question"><a href="https://art.pcoloring.com" target="_blank"
- data-custom-class="link">https://art.pcoloring.com</a></bdt>
- </span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
- <bdt class="statement-end-if-in-editor">, or any website of ours that links to this Privacy Notice
- </bdt>
- </span></span></span></span></span></span></span></span></li>
- </ul>
- <div>
- <bdt class="block-component"><span style="font-size: 15px;"><span style="font-size: 15px;"><span
- style="color: rgb(127, 127, 127);"><span data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </bdt></span></span></span></span></span></span></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size: 15px;">Use <bdt
- class="question">Art Number Coloring</bdt>. <bdt class="question">A variety of free coloring pages for both
- adults and kids that can be printed or colored online</bdt></span>
- <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
- data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Engage with us in other related ways, including any sales, marketing, or
- events<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span></span></span></span></span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
- data-custom-class="body_text"><strong>Questions or concerns? </strong>Reading this Privacy Notice will help
- you understand your privacy rights and choices. We are responsible for making decisions about how your
- personal information is processed. If you do not agree with our policies and practices, please do not use
- our Services.<bdt class="block-component"></bdt> If you still have any questions or concerns, please contact
- us at <bdt class="question">guoziyun@jccy-tech.com</bdt>.</span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><strong><span style="font-size: 15px;"><span data-custom-class="heading_1">
- <h2>SUMMARY OF KEY POINTS</h2>
- </span></span></strong></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong><em>This
- summary provides key points from our Privacy Notice, but you can find out more details about any of these
- topics by clicking the link following each key point or by using our </em></strong></span></span><a
- data-custom-class="link" href="#toc"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="body_text"><strong><em>table of contents</em></strong></span></span></a><span
- style="font-size: 15px;"><span data-custom-class="body_text"><strong><em> below to find the section you are
- looking for.</em></strong></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>What
- personal information do we process?</strong> When you visit, use, or navigate our Services, we may process
- personal information depending on how you interact with us and the Services, the choices you make, and the
- products and features you use. Learn more about </span></span><a data-custom-class="link"
- href="#personalinfo"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="body_text">personal information you disclose to us</span></span></a><span
- data-custom-class="body_text">.</span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>Do we
- process any sensitive personal information? </strong>Some of the information may be considered <bdt
- class="block-component"></bdt>"special" or "sensitive"<bdt class="statement-end-if-in-editor"></bdt> in
- certain jurisdictions, for example your racial or ethnic origins, sexual orientation, and religious beliefs.
- <bdt class="block-component"></bdt>We do not process sensitive personal information.<bdt class="else-block">
- </bdt>
- </span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>Do we
- collect any information from third parties?</strong>
- <bdt class="block-component"></bdt>We do not collect any information from third parties.<bdt
- class="else-block"></bdt>
- </span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do we
- process your information?</strong> We process your information to provide, improve, and administer our
- Services, communicate with you, for security and fraud prevention, and to comply with law. We may also process
- your information for other purposes with your consent. We process your information only when we have a valid
- legal reason to do so. Learn more about </span></span><a data-custom-class="link" href="#infouse"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">how we process your
- information</span></span></a><span data-custom-class="body_text">.</span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>In what
- situations and with which <bdt class="block-component"></bdt>parties do we share personal
- information?</strong> We may share information in specific situations and with specific <bdt
- class="block-component"></bdt>third parties. Learn more about </span></span><a data-custom-class="link"
- href="#whoshare"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">when
- and with whom we share your personal information</span></span></a><span style="font-size: 15px;"><span
- data-custom-class="body_text">.<bdt class="block-component"></bdt></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do we
- keep your information safe?</strong> We have adequate <bdt class="block-component"></bdt>organizational<bdt
- class="statement-end-if-in-editor"></bdt> and technical processes and procedures in place to protect your
- personal information. However, no electronic transmission over the internet or information storage technology
- can be guaranteed to be 100% secure, so we cannot promise or guarantee that hackers, cybercriminals, or other
- <bdt class="block-component"></bdt>unauthorized<bdt class="statement-end-if-in-editor"></bdt> third parties
- will not be able to defeat our security and improperly collect, access, steal, or modify your information.
- Learn more about
- </span></span><a data-custom-class="link" href="#infosafe"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">how we keep your
- information safe</span></span></a><span data-custom-class="body_text">.</span><span
- style="font-size: 15px;"><span data-custom-class="body_text">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>What are
- your rights?</strong> Depending on where you are located geographically, the applicable privacy law may mean
- you have certain rights regarding your personal information. Learn more about </span></span><a
- data-custom-class="link" href="#privacyrights"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="body_text">your privacy rights</span></span></a><span
- data-custom-class="body_text">.</span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do you
- exercise your rights?</strong> The easiest way to exercise your rights is by <bdt class="block-component">
- submitting a </bdt></span></span><a data-custom-class="link"
- href="https://app.termly.io/notify/a8656edc-d147-407e-96ee-505826c51831" rel="noopener noreferrer"
- target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">data
- subject access request</span></span></a><span style="font-size: 15px;"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>, or by contacting us. We will consider and act upon any request in
- accordance with applicable data protection laws.
- </span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text">Want to learn more
- about what we do with any information we collect? </span></span><a data-custom-class="link" href="#toc"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">Review the Privacy Notice
- in full</span></span></a><span style="font-size: 15px;"><span data-custom-class="body_text">.</span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><br></div>
- <div id="toc" style="line-height: 1.5;"><span style="font-size: 15px;"><span
- style="color: rgb(127, 127, 127);"><span style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>TABLE OF CONTENTS</h2>
- </span></strong></span></span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infocollect"><span
- style="color: rgb(0, 58, 250);">1. WHAT INFORMATION DO WE COLLECT?</span></a></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infouse"><span
- style="color: rgb(0, 58, 250);">2. HOW DO WE PROCESS YOUR INFORMATION?<bdt class="block-component"></bdt>
- </span></a></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#legalbases"><span
- style="color: rgb(0, 58, 250);">3. <span style="font-size: 15px;"><span style="color: rgb(0, 58, 250);">WHAT
- LEGAL BASES DO WE RELY ON TO PROCESS YOUR PERSONAL INFORMATION?</span></span>
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></a></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(0, 58, 250);"><a
- data-custom-class="link" href="#whoshare">4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL
- INFORMATION?</a></span><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <div style="line-height: 1.5;"><span style="color: rgb(0, 58, 250); font-size: 15px;"><a data-custom-class="link"
- href="#3pwebsites">5. WHAT IS OUR STANCE ON THIRD-PARTY WEBSITES?<bdt class="statement-end-if-in-editor">
- </bdt></a><span style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#cookies"><span
- style="color: rgb(0, 58, 250);">6. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?</span></a><span
- style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span></span>
- <bdt class="block-component"></bdt>
- </span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);"><span
- style="color: rgb(89, 89, 89);">
- <bdt class="block-component"></bdt>
- </span></span>
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#inforetain"><span
- style="color: rgb(0, 58, 250);">7. HOW LONG DO WE KEEP YOUR INFORMATION?</span></a><span
- style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infosafe"><span
- style="color: rgb(0, 58, 250);">8. HOW DO WE KEEP YOUR INFORMATION SAFE?</span></a><span
- style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
- <bdt class="statement-end-if-in-editor"></bdt>
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infominors"><span
- style="color: rgb(0, 58, 250);">9. DO WE COLLECT INFORMATION FROM MINORS?</span></a><span
- style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span></span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(0, 58, 250);"><a
- data-custom-class="link" href="#privacyrights">10. WHAT ARE YOUR PRIVACY RIGHTS?</a></span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#DNT"><span
- style="color: rgb(0, 58, 250);">11. CONTROLS FOR DO-NOT-TRACK FEATURES<bdt class="block-component"></bdt>
- </span></a></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#uslaws"><span
- style="color: rgb(0, 58, 250);">12. DO UNITED STATES RESIDENTS HAVE SPECIFIC PRIVACY
- RIGHTS?</span></a></span>
- <bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></span></span>
- </bdt>
- </div>
- <div style="line-height: 1.5;"><a data-custom-class="link" href="#otherlaws"><span
- style="color: rgb(0, 58, 250); font-size: 15px;">13. DO OTHER REGIONS HAVE SPECIFIC PRIVACY
- RIGHTS?</span></a><span style="font-size: 15px;">
- <bdt class="statement-end-if-in-editor"><span data-custom-class="body_text"></span></bdt>
- </span></div>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"></bdt>
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></span></bdt>
- </div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link"
- href="#policyupdates"><span style="color: rgb(0, 58, 250);">14. DO WE MAKE UPDATES TO THIS
- NOTICE?</span></a></span></div>
- <div style="line-height: 1.5;"><a data-custom-class="link" href="#contact"><span
- style="color: rgb(0, 58, 250); font-size: 15px;">15. HOW CAN YOU CONTACT US ABOUT THIS NOTICE?</span></a>
- </div>
- <div style="line-height: 1.5;"><a data-custom-class="link" href="#request"><span style="color: rgb(0, 58, 250);">16.
- HOW CAN YOU REVIEW, UPDATE, OR DELETE THE DATA WE COLLECT FROM YOU?</span></a></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><br></div>
- <div id="infocollect" style="line-height: 1.5;"><span style="color: rgb(0, 0, 0);"><span
- style="color: rgb(0, 0, 0); font-size: 15px;"><span style="font-size: 15px; color: rgb(0, 0, 0);"><span
- style="font-size: 15px; color: rgb(0, 0, 0);"><span id="control"
- style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_1">
- <h2>1. WHAT INFORMATION DO WE COLLECT?</h2>
- </span></strong></span></span></span></span></span><span data-custom-class="heading_2"
- id="personalinfo" style="color: rgb(0, 0, 0);"><span style="font-size: 15px;"><strong>
- <h3>Personal information you disclose to us</h3>
- </strong></span></span><span style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong><em>In
- Short:</em></strong></span></span></span></span><span data-custom-class="body_text"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><em> </em></strong><em>We collect personal information that you
- provide to us.</em></span></span></span></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">We collect personal
- information that you voluntarily provide to us when you <span style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span><span data-custom-class="body_text">express an interest in obtaining information about us or
- our products and Services, when you participate in activities on the Services, or otherwise when you contact
- us.</span></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></div>
- <div id="sensitiveinfo" style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text"><strong>Sensitive Information.</strong>
- <bdt class="block-component"></bdt>We do not process sensitive information.
- </span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text">
- <bdt class="else-block"></bdt>
- </span></span><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
- style="font-size: 15px;"><span data-custom-class="body_text">
- <bdt class="block-component">
- <bdt class="block-component"></bdt>
- </bdt>
- </span></span></span></span>
- <bdt class="block-component">
- </span></span></bdt>
- </div>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">All personal information
- that you provide to us must be true, complete, and accurate, and you must notify us of any changes to such
- personal information.</span></span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span><span data-custom-class="heading_2" style="color: rgb(0, 0, 0);"><span
- style="font-size: 15px;"><strong>
- <h3>Information automatically collected</h3>
- </strong></span></span><span style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong><em>In
- Short:</em></strong></span></span></span></span><span data-custom-class="body_text"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><em> </em></strong><em>Some information — such as your Internet
- Protocol (IP) address and/or browser and device characteristics — is collected automatically when
- you visit our Services.</em></span></span></span></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">We automatically collect
- certain information when you visit, use, or navigate the Services. This information does not reveal your
- specific identity (like your name or contact information) but may include device and usage information, such
- as your IP address, browser and device characteristics, operating system, language preferences, referring
- URLs, device name, country, location, information about how and when you use our Services, and other
- technical information. This information is primarily needed to maintain the security and operation of our
- Services, and for our internal analytics and reporting purposes.</span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">Like many businesses, we
- also collect information through cookies and similar technologies. <bdt class="block-component"></bdt>You
- can find out more about this in our Cookie Notice: <bdt class="statement-end-if-in-editor"></bdt>
- <bdt class="block-component"></bdt><span style="color: rgb(0, 58, 250);">
- <bdt class="question"><a href="https://art.pcoloring.com/cookies" target="_blank"
- data-custom-class="link">https://art.pcoloring.com/cookies</a></bdt>
- </span>.<bdt class="block-component"></bdt>
- </span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="statement-end-if-in-editor"><span data-custom-class="body_text"></span></bdt>
- </span><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">The information we
- collect includes:<bdt class="block-component"></bdt></span></span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><em>Log and Usage Data.</em> Log and usage data is service-related,
- diagnostic, usage, and performance information our servers automatically collect when you access or use
- our Services and which we record in log files. Depending on how you interact with us, this log data may
- include your IP address, device information, browser type, and settings and information about your
- activity in the Services<span style="font-size: 15px;"> </span>(such as the date/time stamps associated
- with your usage, pages and files viewed, searches, and other actions you take such as which features you
- use), device event information (such as system activity, error reports (sometimes called <bdt
- class="block-component"></bdt>"crash dumps"<bdt class="statement-end-if-in-editor"></bdt>), and hardware
- settings).<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span></span></span></span></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></span></span>
- </bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><em>Device Data.</em> We collect device data such as information about your
- computer, phone, tablet, or other device you use to access the Services. Depending on the device used,
- this device data may include information such as your IP address (or proxy server), device and application
- identification numbers, location, browser type, hardware model, Internet service provider and/or mobile
- carrier, operating system, and system configuration information.<span style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
- style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span></span></span></span></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></span></span>
- </bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><em>Location Data.</em> We collect location data such as information about
- your device's location, which can be either precise or imprecise. How much information we collect depends
- on the type and settings of the device you use to access the Services. For example, we may use GPS and
- other technologies to collect geolocation data that tells us your current location (based on your IP
- address). You can opt out of allowing us to collect this information either by refusing access to the
- information or by disabling your Location setting on your device. However, if you choose to opt out, you
- may not be able to use certain aspects of the Services.<span style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
- style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span></span></span></span></span></span></li>
- </ul>
- <div>
- <bdt class="block-component"><span style="font-size: 15px;"></bdt>
- </bdt>
- <bdt class="statement-end-if-in-editor"></bdt>
- </bdt></span></span></span>
- <bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
- </div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><strong><span data-custom-class="heading_2">
- <h3>Google API</h3>
- </span></strong><span data-custom-class="body_text">Our use of information received from Google APIs will
- adhere to </span></span><a data-custom-class="link"
- href="https://developers.google.com/terms/api-services-user-data-policy" rel="noopener noreferrer"
- target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="body_text">Google API Services User Data Policy</span></span></a><span
- style="font-size: 15px;"><span data-custom-class="body_text">, including the </span></span><a
- data-custom-class="link" href="https://developers.google.com/terms/api-services-user-data-policy#limited-use"
- rel="noopener noreferrer" target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="body_text">Limited Use requirements</span></span></a><span style="font-size: 15px;"><span
- data-custom-class="body_text">.</span><br></span></div>
- <div><span style="font-size: 15px;"><br></span></div>
- <div style="line-height: 1.5;">
- <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"></span></bdt><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="statement-end-if-in-editor">
- <bdt class="block-component"></bdt>
- </bdt>
- </span></span></span></span></bdt></span></span></span></span></span></span></span></span><span
- style="font-size: 15px;"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div id="infouse" style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span id="control"
- style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_1">
- <h2>2. HOW DO WE PROCESS YOUR INFORMATION?</h2>
- </span></strong></span></span></span></span><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong><em>In
- Short: </em></strong><em>We process your information to provide, improve, and administer our
- Services, communicate with you, for security and fraud prevention, and to comply with law. We may
- also process your information for other purposes with your
- consent.</em></span></span></span></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong>We process your
- personal information for a variety of reasons, depending on how you interact with our Services,
- including:</strong>
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></span></span></span></span></span></span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
- </li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
- </li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></span></span></span></span></span></span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"></bdt>
- </span></span></span></span></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"></bdt>
- </span></span></span></span></span></span></span></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"></bdt>
- </span></span></span></span></span></span></span></span></span></span></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <p style="font-size: 15px; line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"></bdt>
- </span></span></span></span></span></span></span></span></span></span></span></li>
- </ul>
- <p style="font-size: 15px; line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"></bdt>
- </span></span></span></span></span></span></span></span></span></span></span></li>
- </ul>
- <p style="font-size: 15px; line-height: 1.5;">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></span></span></span></span></span></span></li>
- </ul>
- <p style="font-size: 15px; line-height: 1.5;">
- <bdt class="block-component"></bdt>
- </p>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong>To request feedback. </strong>We may process
- your information when necessary to request feedback and to contact you about your use
- of our Services.<span style="color: rgb(89, 89, 89);"><span
- style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span></span></span></span></span></span></span></span></span>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></bdt></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong>To send you marketing and promotional
- communications. </strong>We may process the personal information you send to us for
- our marketing purposes, if this is in accordance with your marketing preferences. You
- can opt out of our marketing emails at any time. For more information, see <bdt
- class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span><a data-custom-class="link" href="#privacyrights"><span
- style="font-size: 15px; color: rgb(0, 58, 250);"><span
- style="font-size: 15px; color: rgb(0, 58, 250);"><span
- data-custom-class="body_text">WHAT ARE YOUR PRIVACY
- RIGHTS?</span></span></span></a><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt>
- below.
- </span><span data-custom-class="body_text">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"></bdt></span></span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px;">
- <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px;"><span data-custom-class="body_text"><strong>To deliver targeted
- advertising to you.</strong> We may process your information to develop and display
- <bdt class="block-component"></bdt>personalized<bdt
- class="statement-end-if-in-editor"></bdt> content and advertising tailored to your
- interests, location, and more.<bdt class="block-component"></bdt> For more information
- see our Cookie Notice: <bdt class="block-component"></bdt><span
- style="color: rgb(0, 58, 250);">
- <bdt class="question"><a href="https://art.pcoloring.com/cookies" target="_blank"
- data-custom-class="link">https://art.pcoloring.com/cookies</a></bdt>
- </span>
- <bdt class="block-component"></bdt>.<bdt class="statement-end-if-in-editor"></bdt>
- </span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;"><strong>To protect our
- Services.</strong> We may process your information as part of our efforts to
- keep our Services safe and secure, including fraud monitoring and
- prevention.</span></span>
- <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;"><strong>To
- identify usage trends.</strong> We may process information about how you
- use our Services to better understand how they are being used so we can
- improve them.</span></span>
- <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px;"><span data-custom-class="body_text"><strong>To
- determine the effectiveness of our marketing and promotional
- campaigns.</strong> We may process your information to better understand
- how to provide marketing and promotional campaigns that are most relevant
- to you.<bdt class="statement-end-if-in-editor"></bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;"><strong>To
- save or protect an individual's vital interest.</strong> We may
- process your information when necessary to save or protect an
- individual’s vital interest, such as to prevent harm.</span></span>
- <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></bdt></span></span>
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div id="legalbases" style="line-height: 1.5;"><strong><span
- style="font-size: 15px;"><span data-custom-class="heading_1">
- <h2>3. WHAT LEGAL BASES DO WE RELY ON TO PROCESS YOUR INFORMATION?</h2>
- </span></span></strong><em><span style="font-size: 15px;"><span
- data-custom-class="body_text"><strong>In Short: </strong>We only process
- your personal information when we believe it is necessary and we have a
- valid legal reason (i.e.<bdt class="block-component"></bdt>,<bdt
- class="statement-end-if-in-editor"></bdt> legal basis) to do so under
- applicable law, like with your consent, to comply with laws, to provide
- you with services to enter into or <bdt class="block-component"></bdt>
- fulfill<bdt class="statement-end-if-in-editor"></bdt> our contractual
- obligations, to protect your rights, or to <bdt class="block-component">
- </bdt>fulfill<bdt class="statement-end-if-in-editor"></bdt> our
- legitimate business interests.</span></span></em></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <div style="line-height: 1.5;"><em><span style="font-size: 15px;"><span
- data-custom-class="body_text"><strong><u>If you are located in the EU or
- UK, this section applies to you.</u></strong></span></span></em>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">The General Data Protection Regulation
- (GDPR) and UK GDPR require us to explain the valid legal bases we rely on
- in order to process your personal information. As such, we may rely on the
- following legal bases to process your personal information:</span></span>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><strong>Consent. </strong>We may process
- your information if you have given us permission (i.e.<bdt
- class="block-component"></bdt>,<bdt
- class="statement-end-if-in-editor"></bdt> consent) to use your
- personal information for a specific purpose. You can withdraw your
- consent at any time. Learn more about </span></span><a
- data-custom-class="link" href="#withdrawconsent"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="body_text">withdrawing your
- consent</span></span></a><span data-custom-class="body_text">.</span>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span
- style="font-size: 15px;"><strong>Legitimate Interests.</strong> We may
- process your information when we believe it is reasonably necessary to
- achieve our legitimate business interests and those interests do not
- outweigh your interests and fundamental rights and freedoms. For
- example, we may process your personal information for some of the
- purposes described in order to:</span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul style="margin-left: 40px;">
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">Send users
- information about special offers and discounts on our products and
- services<bdt class="statement-end-if-in-editor"></bdt></span></span>
- </li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul style="margin-left: 40px;">
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">Develop and
- display <bdt class="block-component"></bdt>personalized<bdt
- class="statement-end-if-in-editor"></bdt> and relevant advertising
- content for our users<bdt class="statement-end-if-in-editor"></bdt>
- </span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul style="margin-left: 40px;">
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">
- <bdt class="block-component"></bdt>Analyze<bdt
- class="statement-end-if-in-editor"></bdt> how our Services are used
- so we can improve them to engage and retain users<bdt
- class="statement-end-if-in-editor"></bdt>
- </span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul style="margin-left: 40px;">
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">Support our
- marketing activities<bdt class="statement-end-if-in-editor"></bdt>
- </span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul style="margin-left: 40px;">
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">Diagnose
- problems and/or prevent fraudulent activities<bdt
- class="statement-end-if-in-editor"></bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul style="margin-left: 40px;">
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">Understand
- how our users use our products and services so we can improve user
- experience<bdt class="statement-end-if-in-editor"></bdt></span></span>
- </li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span>
- <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span
- style="font-size: 15px;"><strong>Legal Obligations.</strong> We may
- process your information where we believe it is necessary for
- compliance with our legal obligations, such as to cooperate with a law
- enforcement body or regulatory agency, exercise or defend our legal
- rights, or disclose your information as evidence in litigation in
- which we are involved.<bdt class="statement-end-if-in-editor"></bdt>
- <br></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span
- style="font-size: 15px;"><strong>Vital Interests.</strong> We may
- process your information where we believe it is necessary to protect
- your vital interests or the vital interests of a third party, such as
- situations involving potential threats to the safety of any
- person.</span></span>
- <bdt class="statement-end-if-in-editor"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt><span
- data-custom-class="body_text"><span style="font-size: 15px;">
- <bdt class="block-component">
- <bdt class="block-component"></bdt>
- </bdt>
- </span></span>
- </div>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;"><strong><u><em>If you are located in Canada,
- this section applies to you.</em></u></strong></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></div>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">We may process your information if you have
- given us specific permission (i.e.<bdt class="block-component"></bdt>,
- <bdt class="statement-end-if-in-editor"></bdt> express consent) to use
- your personal information for a specific purpose, or in situations where
- your permission can be inferred (i.e.<bdt class="block-component"></bdt>
- ,<bdt class="statement-end-if-in-editor"></bdt> implied consent). You
- can
- </span></span><a data-custom-class="link" href="#withdrawconsent"><span
- data-custom-class="body_text"><span
- style="color: rgb(0, 58, 250); font-size: 15px;">withdraw your
- consent</span></span></a><span data-custom-class="body_text"><span
- style="font-size: 15px;"> at any time.</span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">In some exceptional cases, we may be legally
- permitted under applicable law to process your information without your
- consent, including, for example:</span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">If
- collection is clearly in the interests of an individual and consent
- cannot be obtained in a timely way</span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">For
- investigations and fraud detection and prevention<bdt
- class="statement-end-if-in-editor"></bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">For
- business transactions provided certain conditions are
- met</span></span>
- <bdt class="statement-end-if-in-editor"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">If it is
- contained in a witness statement and the collection is necessary to
- assess, process, or settle an insurance claim</span></span>
- <bdt class="statement-end-if-in-editor"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">For
- identifying injured, ill, or deceased persons and communicating with
- next of kin</span></span>
- <bdt class="statement-end-if-in-editor"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">If we have
- reasonable grounds to believe an individual has been, is, or may be
- victim of financial abuse<bdt class="statement-end-if-in-editor">
- </bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">If it is
- reasonable to expect collection and use with consent would compromise
- the availability or the accuracy of the information and the collection
- is reasonable for purposes related to investigating a breach of an
- agreement or a contravention of the laws of Canada or a province<bdt
- class="statement-end-if-in-editor"></bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">If
- disclosure is required to comply with a subpoena, warrant, court
- order, or rules of the court relating to the production of records<bdt
- class="statement-end-if-in-editor"></bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px;"><span data-custom-class="body_text">If it was
- produced by an individual in the course of their employment, business,
- or profession and the collection is consistent with the purposes for
- which the information was produced<bdt
- class="statement-end-if-in-editor"></bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px;"><span data-custom-class="body_text">If the
- collection is solely for journalistic, artistic, or literary purposes
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px;"><span data-custom-class="body_text">If the
- information is publicly available and is specified by the
- regulations</span>
- <bdt class="statement-end-if-in-editor"><span
- data-custom-class="body_text"></span></bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div id="whoshare" style="line-height: 1.5;"><span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span id="control"
- style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL
- INFORMATION?</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><em>In
- Short:</em></strong><em> We may share information in specific
- situations described in this section and/or with the following <bdt
- class="block-component"></bdt>third
- parties.</em></span></span></span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component">
- </span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">We <bdt class="block-component"></bdt>may
- need to share your personal information in the following
- situations:</span></span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><strong>Business Transfers.</strong> We
- may share or transfer your information in connection with, or during
- negotiations of, any merger, sale of company assets, financing, or
- acquisition of all or a portion of our business to another
- company.</span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></li>
- </ul>
- <div style="line-height: 1.5;"><span style="font-size: 15px;">
- <bdt class="block-component"><span data-custom-class="body_text"></span>
- </bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></bdt></span></span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><strong><span id="3pwebsites"
- style="font-size: 15px;"><span data-custom-class="heading_1">
- <h2>5. WHAT IS OUR STANCE ON THIRD-PARTY WEBSITES?</h2>
- </span></span></strong><span style="font-size: 15px;"><span
- data-custom-class="body_text"><strong><em>In
- Short:</em></strong><em> We are not responsible for the
- safety of any information that you share with third parties
- that we may link to or who advertise on our Services, but
- are not affiliated with, our Services.</em></span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">The Services<bdt
- class="block-component"></bdt> may link to third-party
- websites, online services, or mobile applications and/or
- contain advertisements from third parties that are not
- affiliated with us and which may link to other websites,
- services, or applications. Accordingly, we do not make any
- guarantee regarding any such third parties, and we will not be
- liable for any loss or damage caused by the use of such
- third-party websites, services, or applications. The inclusion
- of a link towards a third-party website, service, or
- application does not imply an endorsement by us. We cannot
- guarantee the safety and privacy of data you provide to any
- third-party websites. Any data collected by third parties is
- not covered by this Privacy Notice. We are not responsible for
- the content or privacy and security practices and policies of
- any third parties, including other websites, services, or
- applications that may be linked to or from the Services. You
- should review the policies of such third parties and contact
- them directly to respond to your questions.</span></span>
- <bdt class="statement-end-if-in-editor"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);">
- <bdt class="block-component"><span
- data-custom-class="heading_1">
- <bdt class="block-component"></bdt>
- </span></bdt>
- </span></span></span></span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div id="cookies" style="line-height: 1.5;"><span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- id="control" style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>6. DO WE USE COOKIES AND OTHER TRACKING
- TECHNOLOGIES?</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><em>In
- Short:</em></strong><em> We may use cookies and other
- tracking technologies to collect and store your
- information.</em></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We may use cookies and similar
- tracking technologies (like web beacons and pixels) to
- gather information when you interact with our Services. Some
- online tracking technologies help us maintain the security
- of our Services<bdt class="block-component"></bdt>, prevent
- crashes, fix bugs, save your preferences, and assist with
- basic site functions.</span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We also permit third parties
- and service providers to use online tracking technologies on
- our Services for analytics and advertising, including to
- help manage and display advertisements, to tailor
- advertisements to your interests, or to send abandoned
- shopping cart reminders (depending on your communication
- preferences). The third parties and service providers use
- their technology to provide advertising about products and
- services tailored to your interests which may appear either
- on our Services or on other websites.</span></span></span>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- </div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><br></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">To the extent these online
- tracking technologies are deemed to be a <bdt
- class="block-component"></bdt>"sale"/"sharing"<bdt
- class="statement-end-if-in-editor"></bdt> (which includes
- targeted advertising, as defined under the applicable laws)
- under applicable US state laws, you can opt out of these
- online tracking technologies by submitting a request as
- described below under section <bdt class="block-component">
- </bdt>"<bdt class="statement-end-if-in-editor"></bdt>
- </span></span><span data-custom-class="body_text"><a
- data-custom-class="link" href="#uslaws"><span
- style="color: rgb(0, 58, 250); font-size: 15px;">DO UNITED
- STATES RESIDENTS HAVE SPECIFIC PRIVACY
- RIGHTS?</span></a></span><span
- style="font-size: 15px;"><span data-custom-class="body_text">
- <bdt class="block-component"></bdt>"<bdt
- class="statement-end-if-in-editor"></bdt>
- </span>
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Specific information about how
- we use such technologies and how you can refuse certain
- cookies is set out in our Cookie Notice<span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span>: <span
- style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="question"><a
- href="https://art.pcoloring.com/cookies"
- target="_blank"
- data-custom-class="link">https://art.pcoloring.com/cookies</a>
- </bdt>
- </span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);">
- <bdt class="block-component"></bdt>.
- </span></span></span></span></span>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt><span
- style="font-size: 15px;"><strong><span
- data-custom-class="heading_2">
- <h3>Google Analytics</h3>
- </span></strong> <span data-custom-class="body_text">We may
- share your information with Google Analytics to track and <bdt
- class="block-component"></bdt>analyze<bdt
- class="statement-end-if-in-editor"></bdt> the use of the
- Services.<bdt class="block-component"></bdt> The Google
- Analytics Advertising Features that we may use include: <bdt
- class="forloop-component"></bdt>
- <bdt class="block-component"></bdt>
- <bdt class="question">Remarketing with Google Analytics</bdt>
- <bdt class="block-component"></bdt>
- <bdt class="forloop-component"></bdt>
- <bdt class="block-component"></bdt>, <bdt class="question">
- Google Display Network Impressions Reporting</bdt>
- <bdt class="else-block"></bdt>
- <bdt class="forloop-component"></bdt>
- <bdt class="block-component"></bdt> and <bdt class="question">
- Google Analytics Demographics and Interests Reporting</bdt>
- <bdt class="statement-end-if-in-editor"></bdt>
- <bdt class="forloop-component"></bdt>.<bdt
- class="statement-end-if-in-editor"></bdt> To opt out of
- being tracked by Google Analytics across the Services, visit
- <span style="color: rgb(0, 58, 250);"><a
- data-custom-class="link"
- href="https://tools.google.com/dlpage/gaoptout"
- rel="noopener noreferrer"
- target="_blank">https://tools.google.com/dlpage/gaoptout</a>.</span>
- <bdt class="block-component"></bdt> You can opt out of Google
- Analytics Advertising Features through <span
- style="color: rgb(0, 58, 250);"><a data-custom-class="link"
- href="https://adssettings.google.com/"
- rel="noopener noreferrer" target="_blank">Ads
- Settings</a></span> and Ad Settings for mobile apps. Other
- opt out means include <span
- style="color: rgb(0, 58, 250);"><span
- style="color: rbg(0, 58, 250);"><a
- data-custom-class="link"
- href="http://optout.networkadvertising.org/"
- rel="noopener noreferrer"
- target="_blank">http://optout.networkadvertising.org/</a></span></span>
- and <span style="color: rgb(0, 58, 250);"><a
- data-custom-class="link"
- href="http://www.networkadvertising.org/mobile-choice"
- rel="noopener noreferrer"
- target="_blank">http://www.networkadvertising.org/mobile-choice</a></span>.
- <bdt class="statement-end-if-in-editor"></bdt> For more
- information on the privacy practices of Google, please visit
- the <span style="color: rgb(0, 58, 250);"><a
- data-custom-class="link"
- href="https://policies.google.com/privacy"
- rel="noopener noreferrer" target="_blank">Google Privacy &
- Terms page</a></span>.
- </span></span>
- <bdt class="statement-end-if-in-editor"><span
- style="font-size: 15px;"></span></bdt><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span></span></span></span></span></span></span></span><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span>
- <bdt class="block-component"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span>
- </span></span></span></span></span></span></span></span></span></span></span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div id="inforetain" style="line-height: 1.5;"><span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- id="control" style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>7. HOW LONG DO WE KEEP YOUR INFORMATION?</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><em>In
- Short: </em></strong><em>We keep your information for as
- long as necessary to <bdt class="block-component"></bdt>
- fulfill<bdt class="statement-end-if-in-editor"></bdt> the
- purposes outlined in this Privacy Notice unless otherwise
- required by law.</em></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We will only keep your
- personal information for as long as it is necessary for the
- purposes set out in this Privacy Notice, unless a longer
- retention period is required or permitted by law (such as
- tax, accounting, or other legal requirements).<bdt
- class="block-component"></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">When we have no ongoing
- legitimate business need to process your personal
- information, we will either delete or <bdt
- class="block-component"></bdt>anonymize<bdt
- class="statement-end-if-in-editor"></bdt> such
- information, or, if this is not possible (for example,
- because your personal information has been stored in backup
- archives), then we will securely store your personal
- information and isolate it from any further processing until
- deletion is possible.<span style="color: rgb(89, 89, 89);">
- <bdt class="block-component"></bdt>
- </span></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div id="infosafe" style="line-height: 1.5;"><span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- id="control" style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>8. HOW DO WE KEEP YOUR INFORMATION SAFE?</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><em>In
- Short: </em></strong><em>We aim to protect your personal
- information through a system of <bdt
- class="block-component"></bdt>organizational<bdt
- class="statement-end-if-in-editor"></bdt> and technical
- security measures.</em></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We have implemented
- appropriate and reasonable technical and <bdt
- class="block-component"></bdt>organizational<bdt
- class="statement-end-if-in-editor"></bdt> security
- measures designed to protect the security of any personal
- information we process. However, despite our safeguards and
- efforts to secure your information, no electronic
- transmission over the Internet or information storage
- technology can be guaranteed to be 100% secure, so we cannot
- promise or guarantee that hackers, cybercriminals, or other
- <bdt class="block-component"></bdt>unauthorized<bdt
- class="statement-end-if-in-editor"></bdt> third parties
- will not be able to defeat our security and improperly
- collect, access, steal, or modify your information. Although
- we will do our best to protect your personal information,
- transmission of personal information to and from our
- Services is at your own risk. You should only access the
- Services within a secure environment.<span
- style="color: rgb(89, 89, 89);">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span>
- </span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div id="infominors" style="line-height: 1.5;"><span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- id="control" style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>9. DO WE COLLECT INFORMATION FROM MINORS?</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><em>In
- Short:</em></strong><em> We do not knowingly collect
- data from or market to <bdt class="block-component"></bdt>
- children under 18 years of age<bdt class="else-block">
- </bdt>.</em>
- <bdt class="block-component"></bdt>
- </span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We do not knowingly collect,
- solicit data from, or market to children under 18 years of
- age, nor do we knowingly sell such personal information. By
- using the Services, you represent that you are at least 18
- or that you are the parent or guardian of such a minor and
- consent to such minor dependent’s use of the Services. If we
- learn that personal information from users less than 18
- years of age has been collected, we will deactivate the
- account and take reasonable measures to promptly delete such
- data from our records. If you become aware of any data we
- may have collected from children under age 18, please
- contact us at <span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- <bdt class="question">icolor_support@jccy-tech.com</bdt>
- <bdt class="else-block"></bdt>
- </span></span>.</span><span data-custom-class="body_text">
- <bdt class="else-block">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div id="privacyrights" style="line-height: 1.5;"><span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- id="control" style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>10. WHAT ARE YOUR PRIVACY RIGHTS?</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><em>In
- Short:</em></strong><em> <span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><em>
- <bdt class="block-component"></bdt>
- </em></span></span></span>
- <bdt class="block-component"></bdt>Depending on your state
- of residence in the US or in <bdt class="else-block">
- </bdt>some regions, such as <bdt class="block-component">
- </bdt>the European Economic Area (EEA), United Kingdom
- (UK), Switzerland, and Canada<bdt class="block-component">
- </bdt>, you have rights that allow you greater access to
- and control over your personal information.<span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><em>
- <bdt class="statement-end-if-in-editor"></bdt>
- </em></span></span> </span>You may review, change,
- or terminate your account at any time, depending on your
- country, province, or state of residence.
- </em><span style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">In some regions (like <bdt
- class="block-component"></bdt>the EEA, UK, Switzerland,
- and Canada<bdt class="block-component"></bdt>), you have
- certain rights under applicable data protection laws. These
- may include the right (i) to request access and obtain a
- copy of your personal information, (ii) to request
- rectification or erasure; (iii) to restrict the processing
- of your personal information; (iv) if applicable, to data
- portability; and (v) not to be subject to automated
- decision-making. In certain circumstances, you may also have
- the right to object to the processing of your personal
- information. You can make such a request by contacting us by
- using the contact details provided in the section <bdt
- class="block-component"></bdt>"<bdt
- class="statement-end-if-in-editor"></bdt>
- </span></span></span><a data-custom-class="link"
- href="#contact"><span
- style="font-size: 15px; color: rgb(0, 58, 250);"><span
- style="font-size: 15px; color: rgb(0, 58, 250);"><span
- data-custom-class="body_text">HOW CAN YOU CONTACT US ABOUT
- THIS NOTICE?</span></span></span></a><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>"<bdt
- class="statement-end-if-in-editor"></bdt> below.
- </span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We will consider and act upon
- any request in accordance with applicable data protection
- laws.<bdt class="block-component"></bdt>
- </span></span></span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"> </span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">If you are located in the EEA
- or UK and you believe we are unlawfully processing your
- personal information, you also have the right to complain to
- your <span style="font-size: 15px;"><span
- style="color: rgb(0, 58, 250);"><span
- data-custom-class="body_text"><span
- style="color: rgb(0, 58, 250);"><span
- data-custom-class="body_text"><a
- data-custom-class="link"
- href="https://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm"
- rel="noopener noreferrer" target="_blank"><span
- style="font-size: 15px;">Member State data
- protection
- authority</span></a></span></span></span></span></span>
- or </span></span></span><a data-custom-class="link"
- href="https://ico.org.uk/make-a-complaint/data-protection-complaints/data-protection-complaints/"
- rel="noopener noreferrer" target="_blank"><span
- style="font-size: 15px; color: rgb(0, 58, 250);"><span
- style="font-size: 15px; color: rgb(0, 58, 250);"><span
- data-custom-class="body_text">UK data protection
- authority</span></span></span></a><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">.</span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">If you are located in
- Switzerland, you may contact the <span
- style="font-size: 15px;"><span
- style="color: rgb(0, 58, 250);"><span
- data-custom-class="body_text"><span
- style="color: rgb(0, 58, 250);"><span
- data-custom-class="body_text"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><a
- data-custom-class="link"
- href="https://www.edoeb.admin.ch/edoeb/en/home.html"
- rel="noopener noreferrer"
- target="_blank">Federal Data Protection and
- Information
- Commissioner</a></span></span></span></span></span></span>.</span></span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div id="withdrawconsent" style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><u>Withdrawing your
- consent:</u></strong> If we are relying on your consent
- to process your personal information,<bdt
- class="block-component"></bdt> which may be express and/or
- implied consent depending on the applicable law,<bdt
- class="statement-end-if-in-editor"></bdt> you have the
- right to withdraw your consent at any time. You can withdraw
- your consent at any time by contacting us by using the
- contact details provided in the section <bdt
- class="block-component"></bdt>"<bdt
- class="statement-end-if-in-editor"></bdt>
- </span></span></span><a data-custom-class="link"
- href="#contact"><span
- style="font-size: 15px; color: rgb(0, 58, 250);"><span
- style="font-size: 15px; color: rgb(0, 58, 250);"><span
- data-custom-class="body_text">HOW CAN YOU CONTACT US ABOUT
- THIS NOTICE?</span></span></span></a><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>"<bdt
- class="statement-end-if-in-editor"></bdt> below<bdt
- class="block-component"></bdt>.
- </span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">However, please note that this
- will not affect the lawfulness of the processing before its
- withdrawal nor,<bdt class="block-component"></bdt> when
- applicable law allows,<bdt class="statement-end-if-in-editor">
- </bdt> will it affect the processing of your personal
- information conducted in reliance on lawful processing grounds
- other than consent.<bdt class="block-component"></bdt>
- </span></span>
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span></span></span></span></span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><u>Cookies and similar
- technologies:</u></strong> Most Web browsers are set to
- accept cookies by default. If you prefer, you can usually
- choose to set your browser to remove cookies and to reject
- cookies. If you choose to remove cookies or reject cookies,
- this could affect certain features or services of our
- Services. <bdt class="block-component"></bdt>You may also
- <span style="color: rgb(0, 58, 250);"><span
- data-custom-class="body_text"><a
- data-custom-class="link"
- href="http://www.aboutads.info/choices/"
- rel="noopener noreferrer" target="_blank"><span
- style="color: rgb(0, 58, 250); font-size: 15px;">opt
- out of interest-based advertising by
- advertisers</span></a></span></span> on our
- Services. <span style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span>For further information, please see
- our Cookie Notice: <span style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span
- style="color: rgb(0, 58, 250);">
- <bdt class="question"><a
- href="https://art.pcoloring.com/cookies"
- target="_blank"
- data-custom-class="link">https://art.pcoloring.com/cookies</a>
- </bdt>
- </span>.<bdt class="block-component"></bdt><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);">
- <bdt class="statement-end-if-in-editor">
- </bdt>
- </span></span></span></span></span></span></span></span></span></span></span></span>
- <bdt class="block-component"><span style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text"><span style="font-size: 15px;">If
- you have questions or comments about your privacy rights, you
- may email us at <bdt class="question">guoziyun@jccy-tech.com
- </bdt>.</span></span>
- <bdt class="statement-end-if-in-editor"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"></span></span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div id="DNT" style="line-height: 1.5;"><span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- id="control" style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>11. CONTROLS FOR DO-NOT-TRACK FEATURES</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Most web browsers and some
- mobile operating systems and mobile applications include a
- Do-Not-Track (<bdt class="block-component"></bdt>"DNT"<bdt
- class="statement-end-if-in-editor"></bdt>) feature or
- setting you can activate to signal your privacy preference
- not to have data about your online browsing activities
- monitored and collected. At this stage, no uniform
- technology standard for <bdt class="block-component"></bdt>
- recognizing<bdt class="statement-end-if-in-editor"></bdt>
- and implementing DNT signals has been <bdt
- class="block-component"></bdt>finalized<bdt
- class="statement-end-if-in-editor"></bdt>. As such, we do
- not currently respond to DNT browser signals or any other
- mechanism that automatically communicates your choice not to
- be tracked online. If a standard for online tracking is
- adopted that we must follow in the future, we will inform
- you about that practice in a revised version of this Privacy
- Notice.</span></span></span>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- </div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><br></span></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">California law requires us to
- let you know how we respond to web browser DNT signals.
- Because there currently is not an industry or legal standard
- for <bdt class="block-component"></bdt>recognizing<bdt
- class="statement-end-if-in-editor"></bdt> or <bdt
- class="block-component"></bdt>honoring<bdt
- class="statement-end-if-in-editor"></bdt> DNT signals, we do
- not respond to them at this time.</span></span>
- <bdt class="statement-end-if-in-editor"><span
- style="font-size: 15px;"></span></bdt>
- </div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div id="uslaws" style="line-height: 1.5;"><span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- id="control" style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>12. DO UNITED STATES RESIDENTS HAVE SPECIFIC
- PRIVACY RIGHTS?</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong><em>In
- Short: </em></strong><em>If you are a resident of<bdt
- class="block-component"></bdt> California, Colorado,
- Connecticut, Delaware, Florida, Indiana, Iowa, Kentucky,
- Minnesota, Montana, Nebraska, New Hampshire, New Jersey,
- Oregon, Tennessee, Texas, Utah, or Virginia<bdt
- class="else-block"></bdt>, you may have the right to
- request access to and receive details about the personal
- information we maintain about you and how we have
- processed it, correct inaccuracies, get a copy of, or
- delete your personal information. You may also have the
- right to withdraw your consent to our processing of your
- personal information. These rights may be limited in some
- circumstances by applicable law. More information is
- provided below.</em></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><strong><span
- data-custom-class="heading_2">
- <h3>Categories of Personal Information We Collect</h3>
- </span></strong></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We have collected the
- following categories of personal information in the past
- twelve (12) months:</span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <table style="width: 100%;">
- <tbody>
- <tr>
- <td
- style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
- <span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong>Category</strong></span></span></span>
- </td>
- <td
- style="width: 51.4385%; border-top: 1px solid black; border-right: 1px solid black;">
- <span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong>Examples</strong></span></span></span>
- </td>
- <td
- style="width: 14.9084%; border-right: 1px solid black; border-top: 1px solid black; text-align: center;">
- <span style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong>Collected</strong></span></span></span>
- </td>
- </tr>
- <tr>
- <td
- style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">A.
- Identifiers</span></span></span></div>
- </td>
- <td
- style="width: 51.4385%; border-top: 1px solid black; border-right: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Contact details, such
- as real name, alias, postal address, telephone or
- mobile contact number, unique personal identifier,
- online identifier, Internet Protocol address, email
- address, and account name</span></span></span></div>
- </td>
- <td
- style="width: 14.9084%; text-align: center; vertical-align: middle; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component">
- <bdt class="block-component"></bdt>
- </bdt>NO<bdt class="statement-end-if-in-editor">
- <bdt class="block-component"></bdt>
- </span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- </tbody>
- </table>
- <div style="line-height: 1.5;">
- <bdt class="block-component"></bdt>
- </div>
- <table style="width: 100%;">
- <tbody>
- <tr>
- <td
- style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">B. Personal
- information as defined in the California Customer
- Records statute</span></span></span></div>
- </td>
- <td
- style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Name, contact
- information, education, employment, employment
- history, and financial
- information</span></span></span></div>
- </td>
- <td
- style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="forloop-component">
- <bdt class="block-component">
- <bdt class="block-component">NO<bdt
- class="statement-end-if-in-editor">
- <bdt class="block-component"></bdt>
- </bdt>
- </span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- </tbody>
- </table>
- <div style="line-height: 1.5;">
- <bdt class="block-component"></bdt>
- </div>
- <table style="width: 100%;">
- <tbody>
- <tr>
- <td
- style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>C<bdt
- class="else-block"></bdt>. Protected
- classification characteristics under state or
- federal law
- </span></span></span></div>
- </td>
- <td
- style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Gender, age, date of
- birth, race and ethnicity, national origin, marital
- status, and other demographic
- data</span></span></span></div>
- </td>
- <td
- style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><br></div>
- <div data-custom-class="body_text"
- style="line-height: 1.5;">
- <bdt class="forloop-component"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>NO<bdt
- class="statement-end-if-in-editor"></bdt>
- <bdt class="block-component">
- </span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- <tr>
- <td
- style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>D<bdt
- class="else-block"></bdt>. Commercial information
- </span></span></span></div>
- </td>
- <td
- style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Transaction
- information, purchase history, financial details,
- and payment information</span></span></span></div>
- </td>
- <td
- style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><br></div>
- <div data-custom-class="body_text"
- style="line-height: 1.5;">
- <bdt class="forloop-component"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>NO<bdt
- class="statement-end-if-in-editor">
- <bdt class="block-component">
- </span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- <tr>
- <td
- style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>E<bdt
- class="else-block"></bdt>. Biometric information
- </span></span></span></div>
- </td>
- <td
- style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Fingerprints and
- voiceprints</span></span></span></div>
- </td>
- <td
- style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><br></div>
- <div data-custom-class="body_text"
- style="line-height: 1.5;">
- <bdt class="forloop-component"><span
- data-custom-class="body_text">
- <bdt class="block-component">
- <bdt class="block-component">NO</bdt>
- <bdt class="statement-end-if-in-editor"></bdt>
- <bdt class="block-component">
- </span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- <tr>
- <td
- style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>F<bdt
- class="else-block"></bdt>. Internet or other
- similar network activity
- </span></span></span></div>
- </td>
- <td
- style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Browsing history,
- search history, online <bdt class="block-component">
- </bdt>behavior<bdt
- class="statement-end-if-in-editor"></bdt>,
- interest data, and interactions with our and other
- websites, applications, systems, and
- advertisements</span></span></span></div>
- </td>
- <td
- style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><br></div>
- <div data-custom-class="body_text"
- style="line-height: 1.5;">
- <bdt class="forloop-component"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>NO<bdt
- class="statement-end-if-in-editor"></bdt>
- <bdt class="block-component">
- </span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- <tr>
- <td
- style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>G<bdt
- class="else-block"></bdt>. Geolocation data
- </span></span></span></div>
- </td>
- <td
- style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Device
- location</span></span></span></div>
- </td>
- <td
- style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><br></div>
- <div data-custom-class="body_text"
- style="line-height: 1.5;">
- <bdt class="forloop-component"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>NO<bdt
- class="statement-end-if-in-editor"></bdt>
- <bdt class="block-component">
- </span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- <tr>
- <td
- style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>H<bdt
- class="else-block"></bdt>. Audio, electronic,
- sensory, or similar information
- </span></span></span></div>
- </td>
- <td
- style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Images and audio,
- video or call recordings created in connection with
- our business activities</span></span></span></div>
- </td>
- <td
- style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><br></div>
- <div data-custom-class="body_text"
- style="line-height: 1.5;">
- <bdt class="forloop-component"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>NO<bdt
- class="statement-end-if-in-editor"></bdt>
- <bdt class="block-component">
- </span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- <tr>
- <td
- style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>I<bdt
- class="else-block"></bdt>. Professional or
- employment-related information
- </span></span></span></div>
- </td>
- <td
- style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Business contact
- details in order to provide you our Services at a
- business level or job title, work history, and
- professional qualifications if you apply for a job
- with us</span></span></span></div>
- </td>
- <td
- style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
- <div style="line-height: 1.5;"><br></div>
- <div data-custom-class="body_text"
- style="line-height: 1.5;">
- <bdt class="forloop-component"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>NO<bdt
- class="statement-end-if-in-editor"></bdt>
- <bdt class="block-component">
- </span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- <tr>
- <td
- style="border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black; width: 33.8274%;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>J<bdt
- class="else-block"></bdt>. Education Information
- </span></span></span></div>
- </td>
- <td
- style="border-right: 1px solid black; border-top: 1px solid black; width: 51.4385%;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Student records and
- directory information</span></span></span></div>
- </td>
- <td
- style="text-align: center; border-right: 1px solid black; border-top: 1px solid black; width: 14.9084%;">
- <div style="line-height: 1.5;"><br></div>
- <div data-custom-class="body_text"
- style="line-height: 1.5;">
- <bdt class="forloop-component"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>NO<bdt
- class="statement-end-if-in-editor"></bdt>
- <bdt class="block-component">
- </span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- <tr>
- <td
- style="border-width: 1px; border-color: black; border-style: solid; width: 33.8274%;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>K<bdt
- class="else-block"></bdt>. Inferences drawn from
- collected personal information
- </span></span></span></div>
- </td>
- <td
- style="border-bottom: 1px solid black; border-top: 1px solid black; border-right: 1px solid black; width: 51.4385%;">
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">Inferences drawn from
- any of the collected personal information listed
- above to create a profile or summary about, for
- example, an individual’s preferences and
- characteristics</span></span></span></div>
- </td>
- <td
- style="text-align: center; border-right: 1px solid black; border-bottom: 1px solid black; border-top: 1px solid black; width: 14.9084%;">
- <div style="line-height: 1.5;"><br></div>
- <div data-custom-class="body_text"
- style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>NO<span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></span></span></span></span>
- </span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- </td>
- </tr>
- <tr>
- <td
- style="border-left: 1px solid black; border-right: 1px solid black; border-bottom: 1px solid black; line-height: 1.5;">
- <span data-custom-class="body_text">
- <bdt class="block-component"></bdt>L<bdt
- class="else-block"></bdt>. Sensitive personal
- Information
- </span>
- </td>
- <td
- style="border-right: 1px solid black; border-bottom: 1px solid black; line-height: 1.5;">
- <bdt class="block-component"><span
- data-custom-class="body_text"></span></bdt>
- </td>
- <td
- style="border-right: 1px solid black; border-bottom: 1px solid black;">
- <div data-empty="true" style="text-align: center;"><br>
- </div>
- <div data-custom-class="body_text" data-empty="true"
- style="text-align: center; line-height: 1.5;">
- <bdt class="block-component"><span
- data-custom-class="body_text"></bdt>NO</span>
- <bdt class="statement-end-if-in-editor"><span
- data-custom-class="body_text"></span></bdt>
- </div>
- <div data-empty="true" style="text-align: center;"><br>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span style="font-size: 15px;"></bdt>
- </span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
- data-custom-class="body_text">We may also collect other
- personal information outside of these categories through
- instances where you interact with us in person, online, or by
- phone or mail in the context of:</span>
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text" style="line-height: 1.5;"><span
- style="font-size: 15px;">Receiving help through our customer
- support channels;<bdt class="statement-end-if-in-editor">
- </bdt></span></li>
- </ul>
- <div><span style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"><span
- style="font-size: 15px;">Participation in customer surveys or
- contests; and<bdt class="statement-end-if-in-editor"></bdt>
- </span></li>
- </ul>
- <div><span style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"><span
- style="font-size: 15px;">Facilitation in the delivery of our
- Services and to respond to your inquiries.</span>
- <bdt class="statement-end-if-in-editor"><span
- style="font-size: 15px;"></span></bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span
- data-custom-class="body_text"></span></bdt><span
- data-custom-class="body_text">We will use and retain the
- collected personal information as needed to provide the Services
- or for:<bdt class="block-component"></bdt></span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component">
- <bdt class="block-component"></bdt>
- </bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- data-custom-class="body_text">Category <bdt
- class="block-component"></bdt>H<bdt
- class="else-block"></bdt> - <bdt
- class="question">never</bdt>
- <bdt class="statement-end-if-in-editor"></bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span>
- <bdt class="statement-end-if-in-editor"><span
- data-custom-class="body_text"></span>
- </bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;"><strong><span
- style="font-size: 15px;"><span
- data-custom-class="heading_2">
- <h3>Sources of Personal Information
- </h3>
- </span></span></strong><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">Learn more
- about the sources of personal
- information we collect in <bdt
- class="block-component"></bdt>"<bdt
- class="statement-end-if-in-editor">
- </bdt></span></span><span
- data-custom-class="body_text"><a
- data-custom-class="link"
- href="#infocollect"><span
- style="color: rgb (0, 58, 250); font-size: 15px;">WHAT
- INFORMATION DO WE
- COLLECT?</span></a></span><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>"
- </span>
- <bdt class="statement-end-if-in-editor">
- <span
- data-custom-class="body_text"></span>
- </bdt>
- </span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><strong><span
- data-custom-class="heading_2">
- <h3>How We Use and Share Personal
- Information</h3>
- </span></strong></span></span><span
- data-custom-class="body_text"
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>Learn
- more about how we use your personal
- information in the section, <bdt
- class="block-component"></bdt>"<bdt
- class="statement-end-if-in-editor">
- </bdt>
- </span><a data-custom-class="link"
- href="#infouse"><span
- style="color: rgb(0, 58, 250); font-size: 15px;">HOW
- DO WE PROCESS YOUR
- INFORMATION?</span></a><span
- data-custom-class="body_text"
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>"
- </span>
- <bdt class="statement-end-if-in-editor">
- <span data-custom-class="body_text"
- style="font-size: 15px;"></span>
- </bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component">
- </bdt>
- </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
- </bdt>
- </bdt></span></span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><strong>Will
- your information be shared with
- anyone
- else?</strong></span></span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We may
- disclose your personal information
- with our service providers pursuant to
- a written contract between us and each
- service provider. Learn more about how
- we disclose personal information to in
- the section, <bdt
- class="block-component"></bdt>"<bdt
- class="statement-end-if-in-editor">
- </bdt></span></span></span><a
- data-custom-class="link"
- href="#whoshare"><span
- style="font-size: 15px; color: rgb(0, 58, 250);"><span
- style="font-size: 15px; color: rgb(0, 58, 250);">WHEN
- AND WITH WHOM DO WE SHARE YOUR
- PERSONAL
- INFORMATION?</span></span></a><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>"
- <bdt
- class="statement-end-if-in-editor">
- </bdt>
- </span></span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We may
- use your personal information for our
- own business purposes, such as for
- undertaking internal research for
- technological development and
- demonstration. This is not considered
- to be <bdt class="block-component">
- </bdt>"selling"<bdt
- class="statement-end-if-in-editor">
- </bdt> of your personal
- information.<span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component">
- </bdt>
- </span></span></span></span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We have
- not disclosed, sold, or shared any
- personal information to third parties
- for a business or commercial purpose
- in the preceding twelve (12) months.
- We<span
- style="color: rgb(89, 89, 89);"> </span>will
- not sell or share personal information
- in the future belonging to website
- visitors, users, and other
- consumers.<span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt
- class="statement-end-if-in-editor">
- </bdt>
- </span></span></span></span>
- <bdt class="block-component">
- </bdt>
- </span></span></span></span></span></span></span></span></span>
- </bdt>
- </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span><span
- data-custom-class="body_text"><span
- style="color: rgb(0, 0, 0);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- </span></span></span></span></span><span
- style="font-size: 15px;"><strong><span
- data-custom-class="heading_2">
- <h3>Your Rights</h3>
- </span></strong><span
- data-custom-class="body_text">You have
- rights under certain US state data
- protection laws. However, these rights
- are not absolute, and in certain cases,
- we may decline your request as permitted
- by law. These rights include:</span>
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;"><strong>Right
- to know</strong> whether or not we are
- processing your personal data<bdt
- class="statement-end-if-in-editor">
- </bdt></span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;"><strong>Right
- to access </strong>your personal data
- <bdt class="statement-end-if-in-editor">
- </bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;"><strong>Right
- to correct </strong>inaccuracies in
- your personal data<bdt
- class="statement-end-if-in-editor">
- </bdt></span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;"><strong>Right
- to request</strong> the deletion of
- your personal data<bdt
- class="statement-end-if-in-editor">
- </bdt></span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;"><strong>Right
- to obtain a copy </strong>of the
- personal data you previously shared with
- us<bdt
- class="statement-end-if-in-editor">
- </bdt></span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;"><strong>Right
- to non-discrimination</strong> for
- exercising your rights<bdt
- class="statement-end-if-in-editor">
- </bdt></span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;"><strong>Right
- to opt out</strong> of the processing
- of your personal data if it is used for
- targeted advertising<bdt
- class="block-component"></bdt> (or
- sharing as defined under California’s
- privacy law)<bdt
- class="statement-end-if-in-editor">
- </bdt>, the sale of personal data, or
- profiling in furtherance of decisions
- that produce legal or similarly
- significant effects (<bdt
- class="block-component"></bdt>
- "profiling"<bdt
- class="statement-end-if-in-editor">
- </bdt>)<bdt
- class="statement-end-if-in-editor">
- </bdt></span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">Depending
- upon the state where you live, you may
- also have the following rights:</span>
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;">Right to access
- the categories of personal data being
- processed (as permitted by applicable
- law, including Minnesota’s privacy law)
- <bdt class="statement-end-if-in-editor">
- </bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;">Right to obtain
- a list of the categories of third
- parties to which we have disclosed
- personal data (as permitted by
- applicable law, including<bdt
- class="block-component"></bdt>
- California's and Delaware's<bdt
- class="else-block"></bdt> privacy law)
- <bdt class="statement-end-if-in-editor">
- </bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;">Right to obtain
- a list of specific third parties to
- which we have disclosed personal data
- (as permitted by applicable law,
- including<bdt class="block-component">
- </bdt> Minnesota's and Oregon's<bdt
- class="else-block"></bdt> privacy
- law)</span>
- <bdt class="statement-end-if-in-editor">
- <span style="font-size: 15px;"></span>
- </bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;">Right to
- review, understand, question, and
- correct how personal data has been
- profiled (as permitted by applicable
- law, including Minnesota’s privacy law)
- <bdt class="statement-end-if-in-editor">
- </bdt>
- </span></li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;">Right to limit
- use and disclosure of sensitive personal
- data (as permitted by applicable law,
- including California’s privacy
- law)</span>
- <bdt class="statement-end-if-in-editor">
- <span style="font-size: 15px;"></span>
- </bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;">
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- </div>
- <ul>
- <li data-custom-class="body_text"
- style="line-height: 1.5;"><span
- style="font-size: 15px;">Right to opt
- out of the collection of sensitive data
- and personal data collected through the
- operation of a voice or facial
- recognition feature (as permitted by
- applicable law, including Florida’s
- privacy law)</span>
- <bdt class="statement-end-if-in-editor">
- <span style="font-size: 15px;"></span>
- </bdt>
- </li>
- </ul>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;">
- <bdt class="statement-end-if-in-editor">
- </bdt>
- </span><strong><span
- style="font-size: 15px;"><span
- data-custom-class="heading_2">
- <h3>How to Exercise Your Rights</h3>
- </span></span></strong><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">To
- exercise these rights, you can contact
- us <bdt class="block-component"></bdt>
- by submitting
- a </span></span></span><a
- data-custom-class="link"
- href="https://app.termly.io/notify/a8656edc-d147-407e-96ee-505826c51831"
- rel="noopener noreferrer"
- target="_blank"><span
- style="font-size: 15px; color: rgb(0, 58, 250);"><span
- style="font-size: 15px; color: rgb(0, 58, 250);">data
- subject access
- request</span></span></a><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">, <bdt
- class="block-component"></bdt>
- </span><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component">
- </bdt>by emailing us at <bdt
- class="question">
- icolor_support@jccy-tech.com
- </bdt>, <bdt
- class="statement-end-if-in-editor">
- </bdt>
- <bdt class="block-component">
- </bdt>
- </span><span
- data-custom-class="body_text">
- <bdt class="block-component">
- </bdt>
- <bdt class="block-component">
- <span
- data-custom-class="body_text">
- <bdt
- class="block-component">
- </bdt>
- </bdt>
- </span></span></span></span></span></span></span></span></span></span></span></span><span
- data-custom-class="body_text">or by
- referring to the contact details at the
- bottom of this
- document.</span></span></span>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- </div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><br></span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">We will
- <bdt class="block-component"></bdt>honor
- <bdt class="statement-end-if-in-editor">
- </bdt> your opt-out preferences if you
- enact the
- </span></span><span
- data-custom-class="body_text"><a
- data-custom-class="link"
- href="https://globalprivacycontrol.org/"
- rel="noopener noreferrer"
- target="_blank"><span
- style="color: rgb(0, 58, 250); font-size: 15px;">Global
- Privacy Control</span></a></span><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"> (GPC)
- opt-out signal on your
- browser.</span></span>
- <bdt class="statement-end-if-in-editor">
- <span style="font-size: 15px;"></span>
- </bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">Under
- certain US state data protection laws,
- you can designate an <bdt
- class="block-component"></bdt>
- authorized<bdt
- class="statement-end-if-in-editor">
- </bdt> agent to make a request on your
- behalf. We may deny a request from an
- <bdt class="block-component"></bdt>
- authorized<bdt
- class="statement-end-if-in-editor">
- </bdt> agent that does not submit proof
- that they have been validly <bdt
- class="block-component"></bdt>
- authorized<bdt
- class="statement-end-if-in-editor">
- </bdt> to act on your behalf in
- accordance with applicable
- laws.
- </span><br><strong><span
- data-custom-class="heading_2">
- <h3>Request Verification</h3>
- </span></strong><span
- data-custom-class="body_text">Upon
- receiving your request, we will need to
- verify your identity to determine you
- are the same person about whom we have
- the information in our system. We will
- only use personal information provided
- in your request to verify your identity
- or authority to make the request.
- However, if we cannot verify your
- identity from the information already
- maintained by us, we may request that
- you provide additional information for
- the purposes of verifying your identity
- and for security or fraud-prevention
- purposes.</span></span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><br></span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">If you
- submit the request through an <bdt
- class="block-component"></bdt>
- authorized<bdt
- class="statement-end-if-in-editor">
- </bdt> agent, we may need to collect
- additional information to verify your
- identity before processing your request
- and the agent will need to provide a
- written and signed permission from you
- to submit such request on your
- behalf.</span></span>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- <span style="font-size: 15px;"><span
- data-custom-class="heading_2"><strong>
- <h3>Appeals</h3>
- </strong></span><span
- data-custom-class="body_text">Under
- certain US state data protection laws,
- if we decline to take action regarding
- your request, you may appeal our
- decision by emailing us at <bdt
- class="block-component"></bdt>
- <bdt class="question">
- guoziyun@jccy-tech.com</bdt>
- <bdt class="else-block"></bdt>. We will
- inform you in writing of any action
- taken or not taken in response to the
- appeal, including a written explanation
- of the reasons for the decisions. If
- your appeal is denied, you may submit a
- complaint to your state attorney
- general.
- </span>
- <bdt class="statement-end-if-in-editor">
- </bdt>
- </span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component">
- <bdt class="block-component">
- </span></bdt>
- </span></span></span></span></span></span></span></span></span></span>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- <span style="font-size: 15px;"><strong><span
- data-custom-class="heading_2">
- <h3>California <bdt
- class="block-component"></bdt>
- "Shine The Light"<bdt
- class="statement-end-if-in-editor">
- </bdt> Law</h3>
- </span></strong><span
- data-custom-class="body_text">California
- Civil Code Section 1798.83, also known
- as the <bdt class="block-component">
- </bdt>"Shine The Light"<bdt
- class="statement-end-if-in-editor">
- </bdt> law, permits our users who are
- California residents to request and
- obtain from us, once a year and free of
- charge, information about categories of
- personal information (if any) we
- disclosed to third parties for direct
- marketing purposes and the names and
- addresses of all third parties with
- which we shared personal information in
- the immediately preceding calendar year.
- If you are a California resident and
- would like to make such a request,
- please submit your request in writing to
- us by using the contact details provided
- in the section <bdt
- class="block-component"></bdt>"<bdt
- class="statement-end-if-in-editor">
- </bdt></span></span><span
- data-custom-class="body_text"><a
- data-custom-class="link"
- href="#contact"><span
- style="color: rgb(0, 58, 250); font-size: 15px;">HOW
- CAN YOU CONTACT US ABOUT THIS
- NOTICE?</span></a></span><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>"
- </span>
- <bdt class="statement-end-if-in-editor">
- <span
- data-custom-class="body_text"></span>
- </bdt>
- </span>
- <bdt class="statement-end-if-in-editor">
- <span style="font-size: 15px;"></span>
- </bdt><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt
- class="statement-end-if-in-editor">
- <span
- data-custom-class="body_text"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt
- class="statement-end-if-in-editor">
- <bdt
- class="statement-end-if-in-editor">
- </bdt>
- </bdt>
- </span></span></span></span></span></span></span></span></span></span></span>
- </bdt>
- </span></span></span></span></span></span></span></span></span></span>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- </div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><br></span></div>
- <div style="line-height: 1.5;"><span
- id="otherlaws"
- style="font-size: 15px;"><strong><span
- data-custom-class="heading_1">
- <h2>13. DO OTHER REGIONS HAVE SPECIFIC
- PRIVACY RIGHTS?</h2>
- </span></strong></span><span
- style="font-size: 15px;"><em><strong><span
- data-custom-class="body_text">In
- Short:</span></strong><span
- data-custom-class="body_text"> You may
- have additional rights based on the
- country you reside in.</span></em>
- <bdt class="block-component"></bdt>
- </span>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- <span style="font-size: 15px;"><strong><span
- data-custom-class="heading_2">
- <h3>Republic of South Africa</h3>
- </span></strong><span
- data-custom-class="body_text">At any
- time, you have the right to request
- access to or correction of your personal
- information. You can make such a request
- by contacting us by using the contact
- details provided in the section <bdt
- class="block-component"></bdt>"<bdt
- class="statement-end-if-in-editor">
- </bdt></span></span><span
- data-custom-class="link"><a
- href="#request"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="link">HOW CAN YOU
- REVIEW, UPDATE, OR DELETE THE DATA
- WE COLLECT FROM
- YOU?</span></span></a></span><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>"
- </span>
- <bdt class="statement-end-if-in-editor">
- <span
- data-custom-class="body_text"></span>
- </bdt>
- </span>
- </div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><br></span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">If you are
- unsatisfied with the manner in which we
- address any complaint with regard to our
- processing of personal information, you
- can contact the office of the regulator,
- the details of which are:</span></span>
- </div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><br></span></div>
- <div style="line-height: 1.5;"><a
- data-custom-class="link"
- href="https://inforegulator.org.za/"
- rel="noopener noreferrer"
- target="_blank"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="body_text"><span
- data-custom-class="link">The
- Information Regulator (South
- Africa)</span></span></span></a>
- </div>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text"><span
- style="font-size: 15px;">General
- enquiries: </span><a
- data-custom-class="link"
- href="mailto:enquiries@inforegulator.org.za"
- rel="noopener noreferrer"
- target="_blank"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="link">enquiries@inforegulator.org.za</span></span></a></span>
- </div>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text"><span
- style="font-size: 15px;">Complaints
- (complete POPIA/PAIA form 5): </span><a
- data-custom-class="link"
- href="mailto:PAIAComplaints@inforegulator.org.za"
- rel="noopener noreferrer"
- target="_blank"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="link">PAIAComplaints@inforegulator.org.za</span></span></a><span
- style="font-size: 15px;"> & </span></span><a
- data-custom-class="link"
- href="mailto:POPIAComplaints@inforegulator.org.za"
- rel="noopener noreferrer"
- target="_blank"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><span
- data-custom-class="body_text"><span
- data-custom-class="link">POPIAComplaints@inforegulator.org.za</span></span></span></a><span
- style="font-size: 15px;">
- <bdt class="statement-end-if-in-editor">
- </bdt>
- <bdt class="statement-end-if-in-editor">
- </bdt>
- </span>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span></bdt>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div id="policyupdates"
- style="line-height: 1.5;"><span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- id="control"
- style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>14. DO WE MAKE UPDATES TO
- THIS NOTICE?</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><em><strong>In
- Short: </strong>Yes, we will
- update this notice as necessary to
- stay compliant with relevant
- laws.</em></span></span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">We may
- update this Privacy Notice from time
- to time. The updated version will be
- indicated by an updated <bdt
- class="block-component"></bdt>
- "Revised"<bdt
- class="statement-end-if-in-editor">
- </bdt> date at the top of this Privacy
- Notice. If we make material changes to
- this Privacy Notice, we may notify you
- either by prominently posting a notice
- of such changes or by directly sending
- you a notification. We encourage you
- to review this Privacy Notice
- frequently to be informed of how we
- are protecting your
- information.</span></span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div id="contact" style="line-height: 1.5;">
- <span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- id="control"
- style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>15. HOW CAN YOU CONTACT US
- ABOUT THIS NOTICE?</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">If you
- have questions or comments about this
- notice, you may <span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="block-component">
- <bdt class="block-component">
- </bdt>
- </bdt>email us at <bdt
- class="question">
- icolor_support@jccy-tech.com or
- </bdt>
- <bdt
- class="statement-end-if-in-editor">
- <bdt class="block-component">
- </bdt>
- </bdt>
- </span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">contact
- us by post
- at:</span></span></span></span></span></span>
- </div>
- <div style="line-height: 1.5;"><br></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text"><span
- style="font-size: 15px;"><span
- style="color: rgb(89, 89, 89);"><span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="question">JCCY
- Inc.</bdt>
- </span></span></span></span></span><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component">
- </bdt>
- </bdt>
- </span></span></span></span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="question">Shining Building
- 17 floor</bdt><span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- </span></span>
- </span></span></div>
- <div style="line-height: 1.5;"><span
- data-custom-class="body_text"
- style="font-size: 15px;">
- <bdt class="question">Haidian street<span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;">
- <bdt
- class="statement-end-if-in-editor">
- </bdt>
- </span></span></span></bdt>
- </span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt class="question">Beijing</bdt><span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;">
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>
- <bdt class="question">100080</bdt>
- <bdt
- class="statement-end-if-in-editor">
- </bdt>
- <bdt class="block-component"></bdt>
- <bdt class="block-component"></bdt>
- </span></span>
- </span></bdt></span></div>
- <div style="line-height: 1.5;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);">
- <bdt class="block-component">
- </bdt>
- </span></span></span>
- <bdt class="question">China</bdt><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);">
- <bdt
- class="statement-end-if-in-editor">
- <span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);">
- <bdt
- class="statement-end-if-in-editor">
- <span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);">
- <bdt
- class="statement-end-if-in-editor">
- </bdt>
- </span></span></span>
- </bdt>
- <bdt
- class="statement-end-if-in-editor">
- </bdt>
- </span></span></span><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;">
- <bdt
- class="statement-end-if-in-editor">
- </bdt>
- </span></span></span>
- </bdt>
- </span></span></span>
- </span><span
- data-custom-class="body_text"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89);">
- <bdt
- class="statement-end-if-in-editor">
- <span
- style="color: rgb(89, 89, 89);"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt
- class="block-component">
- <bdt
- class="block-component">
- </bdt>
- </span></span></span>
- </span></span></span>
- <bdt class="block-component"><span
- style="font-size: 15px;"></span>
- </bdt><span
- style="font-size: 15px;"><span
- data-custom-class="body_text"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px;"><span
- data-custom-class="body_text">
- <bdt
- class="statement-end-if-in-editor">
- <bdt
- class="block-component">
- </bdt>
- </span></span></div>
- <div style="line-height: 1.5;"><br></div>
- <div id="request" style="line-height: 1.5;">
- <span
- style="color: rgb(127, 127, 127);"><span
- style="color: rgb(89, 89, 89); font-size: 15px;"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- id="control"
- style="color: rgb(0, 0, 0);"><strong><span
- data-custom-class="heading_1">
- <h2>16. HOW CAN YOU REVIEW,
- UPDATE, OR DELETE THE DATA
- WE COLLECT FROM YOU?</h2>
- </span></strong></span></span></span></span></span><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- style="font-size: 15px; color: rgb(89, 89, 89);"><span
- data-custom-class="body_text">
- <bdt class="block-component"></bdt>
- Based on the applicable laws of your
- country<bdt class="block-component">
- </bdt> or state of residence in the US
- <bdt
- class="statement-end-if-in-editor">
- </bdt>, you may<bdt
- class="else-block">
- <bdt class="block-component"> have
- the right to request access to the
- personal information we collect
- from you, details about how we
- have processed it, correct
- inaccuracies, or delete your
- personal information. You may also
- have the right to <bdt
- class="block-component"></bdt>
- withdraw your consent to our
- processing of your personal
- information. These rights may be
- limited in some circumstances by
- applicable law. To request to
- review, update, or delete your
- personal information, please <bdt
- class="block-component"></bdt>
- fill out and submit a
- </span><span
- style="color: rgb(0, 58, 250);"><span
- data-custom-class="body_text"><span
- style="color: rgb(0, 58, 250); font-size: 15px;"><a
- data-custom-class="link"
- href="https://app.termly.io/notify/a8656edc-d147-407e-96ee-505826c51831"
- rel="noopener noreferrer"
- target="_blank">data subject
- access
- request</a></span></span></span>
- <bdt class="block-component"><span
- data-custom-class="body_text"></bdt>
- </span></span><span
- data-custom-class="body_text">.</span></span></span>
- </div>
- <style>
- ul {
- list-style-type: square;
- }
- ul>li>ul {
- list-style-type: circle;
- }
- ul>li>ul>li>ul {
- list-style-type: square;
- }
- ol li {
- font-family: Arial;
- }
- </style>
- </div>
|