policy.html 375 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link rel="icon" href="/assets/icon/favicon.ico" type="image/x-icon">
  7. <title>Policy</title>
  8. <meta name="description" content="art.pcoloring.com Policy | JCCY | Art Number Coloring">
  9. <style>
  10. [data-custom-class='body'],
  11. [data-custom-class='body'] * {
  12. background: transparent !important;
  13. }
  14. [data-custom-class='title'],
  15. [data-custom-class='title'] * {
  16. font-family: Arial !important;
  17. font-size: 26px !important;
  18. color: #000000 !important;
  19. }
  20. [data-custom-class='subtitle'],
  21. [data-custom-class='subtitle'] * {
  22. font-family: Arial !important;
  23. color: #595959 !important;
  24. font-size: 14px !important;
  25. }
  26. [data-custom-class='heading_1'],
  27. [data-custom-class='heading_1'] * {
  28. font-family: Arial !important;
  29. font-size: 19px !important;
  30. color: #000000 !important;
  31. }
  32. [data-custom-class='heading_2'],
  33. [data-custom-class='heading_2'] * {
  34. font-family: Arial !important;
  35. font-size: 17px !important;
  36. color: #000000 !important;
  37. }
  38. [data-custom-class='body_text'],
  39. [data-custom-class='body_text'] * {
  40. color: #595959 !important;
  41. font-size: 14px !important;
  42. font-family: Arial !important;
  43. }
  44. [data-custom-class='link'],
  45. [data-custom-class='link'] * {
  46. color: #3030F1 !important;
  47. font-size: 14px !important;
  48. font-family: Arial !important;
  49. word-break: break-word !important;
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <span
  55. 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>
  56. <div data-custom-class="body">
  57. <div><strong><span style="font-size: 26px;"><span data-custom-class="title">
  58. <bdt class="block-component"></bdt>
  59. <bdt class="question">
  60. <h1>PRIVACY POLICY</h1>
  61. </bdt>
  62. <bdt class="statement-end-if-in-editor"></bdt>
  63. </span></span></strong></div>
  64. <div><span style="color: rgb(127, 127, 127);"><strong><span style="font-size: 15px;"><span
  65. data-custom-class="subtitle">Last updated <bdt class="question">February 17, 2025</bdt>
  66. </span></span></strong></span></div>
  67. <div><br></div>
  68. <div><br></div>
  69. <div><br></div>
  70. <div style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
  71. style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text">This Privacy Notice for
  72. <bdt class="question">JCCY Inc.<bdt class="block-component"></bdt>
  73. </bdt> (<bdt class="block-component"></bdt>"<strong>we</strong>," "<strong>us</strong>," or
  74. "<strong>our</strong>"<bdt class="statement-end-if-in-editor"></bdt>
  75. </span><span data-custom-class="body_text">), describes how and why we might access, collect, store, use,
  76. and/or
  77. share (
  78. <bdt class="block-component"></bdt>"<strong>process</strong>"<bdt class="statement-end-if-in-editor"></bdt>)
  79. your personal information when you use our services (<bdt class="block-component"></bdt>
  80. "<strong>Services</strong>"<bdt class="statement-end-if-in-editor"></bdt>), including when
  81. you:
  82. </span></span></span><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
  83. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  84. <bdt class="block-component"></bdt>
  85. </span></span></span></span></span></div>
  86. <ul>
  87. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  88. style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  89. data-custom-class="body_text">Visit our website<bdt class="block-component"></bdt> at <span
  90. style="color: rgb(0, 58, 250);">
  91. <bdt class="question"><a href="https://art.pcoloring.com" target="_blank"
  92. data-custom-class="link">https://art.pcoloring.com</a></bdt>
  93. </span><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
  94. data-custom-class="body_text"><span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
  95. <bdt class="statement-end-if-in-editor">, or any website of ours that links to this Privacy
  96. Notice
  97. </bdt>
  98. </span></span></span></span></span></span></span></span></li>
  99. </ul>
  100. <div>
  101. <bdt class="block-component"><span style="font-size: 15px;"><span style="font-size: 15px;"><span
  102. style="color: rgb(127, 127, 127);"><span data-custom-class="body_text"><span
  103. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  104. <bdt class="block-component"></bdt>
  105. </bdt></span></span></span></span></span></span></span></span></li>
  106. </ul>
  107. <div style="line-height: 1.5;">
  108. <bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
  109. </div>
  110. <ul>
  111. <li data-custom-class="body_text" style="line-height: 1.5;"><span style="font-size: 15px;">Use <bdt
  112. class="question">Art Number Coloring</bdt>. <bdt class="question">A variety of free coloring pages for
  113. both
  114. adults and kids that can be printed or colored online</bdt></span>
  115. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"></span></bdt>
  116. </li>
  117. </ul>
  118. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
  119. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  120. <bdt class="block-component"></bdt>
  121. </span></span></span></span></span></div>
  122. <ul>
  123. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  124. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  125. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">Engage with us in
  126. other related ways, including any sales, marketing, or
  127. events<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
  128. data-custom-class="body_text"><span style="font-size: 15px;"><span
  129. style="color: rgb(89, 89, 89);">
  130. <bdt class="statement-end-if-in-editor"></bdt>
  131. </span></span></span></span></span></span></span></span></li>
  132. </ul>
  133. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
  134. data-custom-class="body_text"><strong>Questions or concerns? </strong>Reading this Privacy Notice will
  135. help
  136. you understand your privacy rights and choices. We are responsible for making decisions about how your
  137. personal information is processed. If you do not agree with our policies and practices, please do not use
  138. our Services.<bdt class="block-component"></bdt> If you still have any questions or concerns, please
  139. contact
  140. us at <bdt class="question">guoziyun@jccy-tech.com</bdt>.</span></span></span></div>
  141. <div style="line-height: 1.5;"><br></div>
  142. <div style="line-height: 1.5;"><br></div>
  143. <div style="line-height: 1.5;"><strong><span style="font-size: 15px;"><span data-custom-class="heading_1">
  144. <h2>SUMMARY OF KEY POINTS</h2>
  145. </span></span></strong></div>
  146. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong><em>This
  147. summary provides key points from our Privacy Notice, but you can find out more details about any of
  148. these
  149. topics by clicking the link following each key point or by using our </em></strong></span></span><a
  150. data-custom-class="link" href="#toc"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  151. data-custom-class="body_text"><strong><em>table of contents</em></strong></span></span></a><span
  152. style="font-size: 15px;"><span data-custom-class="body_text"><strong><em> below to find the section you are
  153. looking for.</em></strong></span></span></div>
  154. <div style="line-height: 1.5;"><br></div>
  155. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>What
  156. personal information do we process?</strong> When you visit, use, or navigate our Services, we may process
  157. personal information depending on how you interact with us and the Services, the choices you make, and the
  158. products and features you use. Learn more about </span></span><a data-custom-class="link"
  159. href="#personalinfo"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  160. data-custom-class="body_text">personal information you disclose to us</span></span></a><span
  161. data-custom-class="body_text">.</span></div>
  162. <div style="line-height: 1.5;"><br></div>
  163. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>Do we
  164. process any sensitive personal information? </strong>Some of the information may be considered <bdt
  165. class="block-component"></bdt>"special" or "sensitive"<bdt class="statement-end-if-in-editor"></bdt> in
  166. certain jurisdictions, for example your racial or ethnic origins, sexual orientation, and religious beliefs.
  167. <bdt class="block-component"></bdt>We do not process sensitive personal information.<bdt class="else-block">
  168. </bdt>
  169. </span></span></div>
  170. <div style="line-height: 1.5;"><br></div>
  171. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>Do we
  172. collect any information from third parties?</strong>
  173. <bdt class="block-component"></bdt>We do not collect any information from third parties.<bdt
  174. class="else-block"></bdt>
  175. </span></span></div>
  176. <div style="line-height: 1.5;"><br></div>
  177. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do
  178. we
  179. process your information?</strong> We process your information to provide, improve, and administer our
  180. Services, communicate with you, for security and fraud prevention, and to comply with law. We may also
  181. process
  182. your information for other purposes with your consent. We process your information only when we have a valid
  183. legal reason to do so. Learn more about </span></span><a data-custom-class="link" href="#infouse"><span
  184. style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">how we process your
  185. information</span></span></a><span data-custom-class="body_text">.</span></div>
  186. <div style="line-height: 1.5;"><br></div>
  187. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>In what
  188. situations and with which <bdt class="block-component"></bdt>parties do we share personal
  189. information?</strong> We may share information in specific situations and with specific <bdt
  190. class="block-component"></bdt>third parties. Learn more about </span></span><a data-custom-class="link"
  191. href="#whoshare"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  192. data-custom-class="body_text">when
  193. and with whom we share your personal information</span></span></a><span style="font-size: 15px;"><span
  194. data-custom-class="body_text">.<bdt class="block-component"></bdt></span></span></div>
  195. <div style="line-height: 1.5;"><br></div>
  196. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do
  197. we
  198. keep your information safe?</strong> We have adequate <bdt class="block-component"></bdt>organizational
  199. <bdt class="statement-end-if-in-editor"></bdt> and technical processes and procedures in place to protect
  200. your
  201. personal information. However, no electronic transmission over the internet or information storage
  202. technology
  203. can be guaranteed to be 100% secure, so we cannot promise or guarantee that hackers, cybercriminals, or
  204. other
  205. <bdt class="block-component"></bdt>unauthorized<bdt class="statement-end-if-in-editor"></bdt> third parties
  206. will not be able to defeat our security and improperly collect, access, steal, or modify your information.
  207. Learn more about 
  208. </span></span><a data-custom-class="link" href="#infosafe"><span
  209. style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">how we keep your
  210. information safe</span></span></a><span data-custom-class="body_text">.</span><span
  211. style="font-size: 15px;"><span data-custom-class="body_text">
  212. <bdt class="statement-end-if-in-editor"></bdt>
  213. </span></span></div>
  214. <div style="line-height: 1.5;"><br></div>
  215. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>What are
  216. your rights?</strong> Depending on where you are located geographically, the applicable privacy law may
  217. mean
  218. you have certain rights regarding your personal information. Learn more about </span></span><a
  219. data-custom-class="link" href="#privacyrights"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  220. data-custom-class="body_text">your privacy rights</span></span></a><span
  221. data-custom-class="body_text">.</span></div>
  222. <div style="line-height: 1.5;"><br></div>
  223. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text"><strong>How do
  224. you
  225. exercise your rights?</strong> The easiest way to exercise your rights is by <bdt class="block-component">
  226. submitting a </bdt></span></span><a data-custom-class="link"
  227. href="https://app.termly.io/notify/a8656edc-d147-407e-96ee-505826c51831" rel="noopener noreferrer"
  228. target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  229. data-custom-class="body_text">data
  230. subject access request</span></span></a><span style="font-size: 15px;"><span
  231. data-custom-class="body_text">
  232. <bdt class="block-component"></bdt>, or by contacting us. We will consider and act upon any request in
  233. accordance with applicable data protection laws.
  234. </span></span></div>
  235. <div style="line-height: 1.5;"><br></div>
  236. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text">Want to learn
  237. more
  238. about what we do with any information we collect? </span></span><a data-custom-class="link"
  239. href="#toc"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span data-custom-class="body_text">Review
  240. the Privacy Notice
  241. in full</span></span></a><span style="font-size: 15px;"><span
  242. data-custom-class="body_text">.</span></span>
  243. </div>
  244. <div style="line-height: 1.5;"><br></div>
  245. <div style="line-height: 1.5;"><br></div>
  246. <div id="toc" style="line-height: 1.5;"><span style="font-size: 15px;"><span
  247. style="color: rgb(127, 127, 127);"><span style="color: rgb(0, 0, 0);"><strong><span
  248. data-custom-class="heading_1">
  249. <h2>TABLE OF CONTENTS</h2>
  250. </span></strong></span></span></span></div>
  251. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link"
  252. href="#infocollect"><span style="color: rgb(0, 58, 250);">1. WHAT INFORMATION DO WE
  253. COLLECT?</span></a></span></div>
  254. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infouse"><span
  255. style="color: rgb(0, 58, 250);">2. HOW DO WE PROCESS YOUR INFORMATION?<bdt class="block-component"></bdt>
  256. </span></a></span></div>
  257. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#legalbases"><span
  258. style="color: rgb(0, 58, 250);">3. <span style="font-size: 15px;"><span
  259. style="color: rgb(0, 58, 250);">WHAT
  260. LEGAL BASES DO WE RELY ON TO PROCESS YOUR PERSONAL INFORMATION?</span></span>
  261. <bdt class="statement-end-if-in-editor"></bdt>
  262. </span></a></span></div>
  263. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(0, 58, 250);"><a
  264. data-custom-class="link" href="#whoshare">4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL
  265. INFORMATION?</a></span><span data-custom-class="body_text">
  266. <bdt class="block-component"></bdt>
  267. </span></span></div>
  268. <div style="line-height: 1.5;"><span style="color: rgb(0, 58, 250); font-size: 15px;"><a data-custom-class="link"
  269. href="#3pwebsites">5. WHAT IS OUR STANCE ON THIRD-PARTY WEBSITES?<bdt class="statement-end-if-in-editor">
  270. </bdt></a><span style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
  271. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
  272. <bdt class="block-component"></bdt>
  273. </span></span></span></span></span></div>
  274. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#cookies"><span
  275. style="color: rgb(0, 58, 250);">6. DO WE USE COOKIES AND OTHER TRACKING TECHNOLOGIES?</span></a><span
  276. style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
  277. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
  278. <bdt class="statement-end-if-in-editor"></bdt>
  279. </span></span></span></span>
  280. <bdt class="block-component"></bdt>
  281. </span></div>
  282. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
  283. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  284. style="color: rgb(89, 89, 89);"><span style="color: rgb(89, 89, 89);"><span
  285. style="color: rgb(89, 89, 89);">
  286. <bdt class="block-component"></bdt>
  287. </span></span>
  288. <bdt class="block-component"></bdt>
  289. </span></span></span></span></span></div>
  290. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#inforetain"><span
  291. style="color: rgb(0, 58, 250);">7. HOW LONG DO WE KEEP YOUR INFORMATION?</span></a><span
  292. style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
  293. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span
  294. style="color: rgb(89, 89, 89);">
  295. <bdt class="block-component"></bdt>
  296. </span></span></span></span></span></span></div>
  297. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infosafe"><span
  298. style="color: rgb(0, 58, 250);">8. HOW DO WE KEEP YOUR INFORMATION SAFE?</span></a><span
  299. style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
  300. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
  301. <bdt class="statement-end-if-in-editor"></bdt>
  302. <bdt class="block-component"></bdt>
  303. </span></span></span></span></span></div>
  304. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#infominors"><span
  305. style="color: rgb(0, 58, 250);">9. DO WE COLLECT INFORMATION FROM MINORS?</span></a><span
  306. style="color: rgb(127, 127, 127);"><span style="color: rgb(89, 89, 89);"><span
  307. data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
  308. <bdt class="statement-end-if-in-editor"></bdt>
  309. </span></span></span></span></span></div>
  310. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(0, 58, 250);"><a
  311. data-custom-class="link" href="#privacyrights">10. WHAT ARE YOUR PRIVACY RIGHTS?</a></span></span></div>
  312. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#DNT"><span
  313. style="color: rgb(0, 58, 250);">11. CONTROLS FOR DO-NOT-TRACK FEATURES<bdt class="block-component"></bdt>
  314. </span></a></span></div>
  315. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link" href="#uslaws"><span
  316. style="color: rgb(0, 58, 250);">12. DO UNITED STATES RESIDENTS HAVE SPECIFIC PRIVACY
  317. RIGHTS?</span></a></span>
  318. <bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></span></span>
  319. </bdt>
  320. </div>
  321. <div style="line-height: 1.5;"><a data-custom-class="link" href="#otherlaws"><span
  322. style="color: rgb(0, 58, 250); font-size: 15px;">13. DO OTHER REGIONS HAVE SPECIFIC PRIVACY
  323. RIGHTS?</span></a><span style="font-size: 15px;">
  324. <bdt class="statement-end-if-in-editor"><span data-custom-class="body_text"></span></bdt>
  325. </span></div>
  326. <div style="line-height: 1.5;">
  327. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  328. <bdt class="block-component"></bdt>
  329. <bdt class="block-component"></bdt>
  330. <bdt class="block-component"></bdt>
  331. <bdt class="block-component"></bdt>
  332. <bdt class="block-component"></bdt>
  333. <bdt class="block-component"></bdt>
  334. <bdt class="block-component"></bdt>
  335. <bdt class="block-component"></bdt>
  336. <bdt class="block-component"></span></bdt>
  337. </div>
  338. <div style="line-height: 1.5;"><span style="font-size: 15px;"><a data-custom-class="link"
  339. href="#policyupdates"><span style="color: rgb(0, 58, 250);">14. DO WE MAKE UPDATES TO THIS
  340. NOTICE?</span></a></span></div>
  341. <div style="line-height: 1.5;"><a data-custom-class="link" href="#contact"><span
  342. style="color: rgb(0, 58, 250); font-size: 15px;">15. HOW CAN YOU CONTACT US ABOUT THIS NOTICE?</span></a>
  343. </div>
  344. <div style="line-height: 1.5;"><a data-custom-class="link" href="#request"><span
  345. style="color: rgb(0, 58, 250);">16.
  346. HOW CAN YOU REVIEW, UPDATE, OR DELETE THE DATA WE COLLECT FROM YOU?</span></a></div>
  347. <div style="line-height: 1.5;"><br></div>
  348. <div style="line-height: 1.5;"><br></div>
  349. <div id="infocollect" style="line-height: 1.5;"><span style="color: rgb(0, 0, 0);"><span
  350. style="color: rgb(0, 0, 0); font-size: 15px;"><span style="font-size: 15px; color: rgb(0, 0, 0);"><span
  351. style="font-size: 15px; color: rgb(0, 0, 0);"><span id="control"
  352. style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_1">
  353. <h2>1. WHAT INFORMATION DO WE COLLECT?</h2>
  354. </span></strong></span></span></span></span></span><span data-custom-class="heading_2"
  355. id="personalinfo" style="color: rgb(0, 0, 0);"><span style="font-size: 15px;"><strong>
  356. <h3>Personal information you disclose to us</h3>
  357. </strong></span></span><span style="color: rgb(127, 127, 127);"><span
  358. style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
  359. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  360. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong><em>In
  361. Short:</em></strong></span></span></span></span><span data-custom-class="body_text"><span
  362. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  363. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  364. data-custom-class="body_text"><strong><em> </em></strong><em>We collect personal information that
  365. you
  366. provide to us.</em></span></span></span></span></span></span></div>
  367. <div style="line-height: 1.5;"><br></div>
  368. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  369. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">We collect personal
  370. information that you voluntarily provide to us when you <span style="font-size: 15px;">
  371. <bdt class="block-component"></bdt>
  372. </span></span><span data-custom-class="body_text">express an interest in obtaining information about us or
  373. our products and Services, when you participate in activities on the Services, or otherwise when you
  374. contact
  375. us.</span></span></span></span></div>
  376. <div style="line-height: 1.5;"><br></div>
  377. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  378. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  379. style="font-size: 15px;">
  380. <bdt class="block-component"></bdt>
  381. </span></span></span></span></span></div>
  382. <div id="sensitiveinfo" style="line-height: 1.5;"><span style="font-size: 15px;"><span
  383. data-custom-class="body_text"><strong>Sensitive Information.</strong>
  384. <bdt class="block-component"></bdt>We do not process sensitive information.
  385. </span></span></div>
  386. <div style="line-height: 1.5;"><br></div>
  387. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span data-custom-class="body_text">
  388. <bdt class="else-block"></bdt>
  389. </span></span><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  390. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  391. style="font-size: 15px;"><span data-custom-class="body_text">
  392. <bdt class="block-component">
  393. <bdt class="block-component"></bdt>
  394. </bdt>
  395. </span></span></span></span>
  396. <bdt class="block-component">
  397. </span></span></bdt>
  398. </div>
  399. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  400. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">All personal
  401. information
  402. that you provide to us must be true, complete, and accurate, and you must notify us of any changes to such
  403. personal information.</span></span></span></div>
  404. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  405. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  406. <bdt class="block-component"></bdt>
  407. </span></span></span><span data-custom-class="heading_2" style="color: rgb(0, 0, 0);"><span
  408. style="font-size: 15px;"><strong>
  409. <h3>Information automatically collected</h3>
  410. </strong></span></span><span style="color: rgb(127, 127, 127);"><span
  411. style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
  412. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  413. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong><em>In
  414. Short:</em></strong></span></span></span></span><span data-custom-class="body_text"><span
  415. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  416. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  417. data-custom-class="body_text"><strong><em> </em></strong><em>Some information — such as your
  418. Internet
  419. Protocol (IP) address and/or browser and device characteristics — is collected automatically when
  420. you visit our Services.</em></span></span></span></span></span></span></div>
  421. <div style="line-height: 1.5;"><br></div>
  422. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  423. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">We automatically
  424. collect
  425. certain information when you visit, use, or navigate the Services. This information does not reveal your
  426. specific identity (like your name or contact information) but may include device and usage information,
  427. such
  428. as your IP address, browser and device characteristics, operating system, language preferences, referring
  429. URLs, device name, country, location, information about how and when you use our Services, and other
  430. technical information. This information is primarily needed to maintain the security and operation of our
  431. Services, and for our internal analytics and reporting purposes.</span></span></span></div>
  432. <div style="line-height: 1.5;"><br></div>
  433. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  434. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  435. <bdt class="block-component"></bdt>
  436. </span></span></span></div>
  437. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  438. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">Like many businesses,
  439. we
  440. also collect information through cookies and similar technologies. <bdt class="block-component"></bdt>You
  441. can find out more about this in our Cookie Notice: <bdt class="statement-end-if-in-editor"></bdt>
  442. <bdt class="block-component"></bdt><span style="color: rgb(0, 58, 250);">
  443. <bdt class="question"><a href="https://art.pcoloring.com/cookies" target="_blank"
  444. data-custom-class="link">https://art.pcoloring.com/cookies</a></bdt>
  445. </span>.<bdt class="block-component"></bdt>
  446. </span></span></span></div>
  447. <div style="line-height: 1.5;"><br></div>
  448. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  449. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  450. <bdt class="statement-end-if-in-editor"><span data-custom-class="body_text"></span></bdt>
  451. </span><span data-custom-class="body_text">
  452. <bdt class="block-component"></bdt>
  453. </span></span></span></div>
  454. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  455. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">The information we
  456. collect includes:<bdt class="block-component"></bdt></span></span></span></div>
  457. <ul>
  458. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  459. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  460. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><em>Log and Usage
  461. Data.</em> Log and usage data is service-related,
  462. diagnostic, usage, and performance information our servers automatically collect when you access or use
  463. our Services and which we record in log files. Depending on how you interact with us, this log data may
  464. include your IP address, device information, browser type, and settings and information about your
  465. activity in the Services<span style="font-size: 15px;"> </span>(such as the date/time stamps associated
  466. with your usage, pages and files viewed, searches, and other actions you take such as which features you
  467. use), device event information (such as system activity, error reports (sometimes called <bdt
  468. class="block-component"></bdt>"crash dumps"<bdt class="statement-end-if-in-editor"></bdt>), and
  469. hardware
  470. settings).<span style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
  471. data-custom-class="body_text"><span style="font-size: 15px;"><span
  472. style="color: rgb(89, 89, 89);">
  473. <bdt class="statement-end-if-in-editor"></bdt>
  474. </span></span></span></span></span></span></span></span></li>
  475. </ul>
  476. <div style="line-height: 1.5;">
  477. <bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></span></span>
  478. </bdt>
  479. </div>
  480. <ul>
  481. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  482. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  483. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><em>Device Data.</em>
  484. We collect device data such as information about your
  485. computer, phone, tablet, or other device you use to access the Services. Depending on the device used,
  486. this device data may include information such as your IP address (or proxy server), device and
  487. application
  488. identification numbers, location, browser type, hardware model, Internet service provider and/or mobile
  489. carrier, operating system, and system configuration information.<span style="font-size: 15px;"><span
  490. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  491. style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
  492. <bdt class="statement-end-if-in-editor"></bdt>
  493. </span></span></span></span></span></span></span></span></li>
  494. </ul>
  495. <div style="line-height: 1.5;">
  496. <bdt class="block-component"><span style="font-size: 15px;"><span data-custom-class="body_text"></span></span>
  497. </bdt>
  498. </div>
  499. <ul>
  500. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  501. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  502. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><em>Location
  503. Data.</em> We collect location data such as information about
  504. your device's location, which can be either precise or imprecise. How much information we collect
  505. depends
  506. on the type and settings of the device you use to access the Services. For example, we may use GPS and
  507. other technologies to collect geolocation data that tells us your current location (based on your IP
  508. address). You can opt out of allowing us to collect this information either by refusing access to the
  509. information or by disabling your Location setting on your device. However, if you choose to opt out, you
  510. may not be able to use certain aspects of the Services.<span style="font-size: 15px;"><span
  511. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  512. style="font-size: 15px;"><span style="color: rgb(89, 89, 89);">
  513. <bdt class="statement-end-if-in-editor"></bdt>
  514. </span></span></span></span></span></span></span></span></li>
  515. </ul>
  516. <div>
  517. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  518. </bdt>
  519. <bdt class="statement-end-if-in-editor"></bdt>
  520. </bdt></span></span></span>
  521. <bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
  522. </div>
  523. <div style="line-height: 1.5;"><span style="font-size: 15px;"><strong><span data-custom-class="heading_2">
  524. <h3>Google API</h3>
  525. </span></strong><span data-custom-class="body_text">Our use of information received from Google APIs will
  526. adhere to </span></span><a data-custom-class="link"
  527. href="https://developers.google.com/terms/api-services-user-data-policy" rel="noopener noreferrer"
  528. target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  529. data-custom-class="body_text">Google API Services User Data Policy</span></span></a><span
  530. style="font-size: 15px;"><span data-custom-class="body_text">, including the </span></span><a
  531. data-custom-class="link" href="https://developers.google.com/terms/api-services-user-data-policy#limited-use"
  532. rel="noopener noreferrer" target="_blank"><span style="color: rgb(0, 58, 250); font-size: 15px;"><span
  533. data-custom-class="body_text">Limited Use requirements</span></span></a><span
  534. style="font-size: 15px;"><span data-custom-class="body_text">.</span><br></span></div>
  535. <div><span style="font-size: 15px;"><br></span></div>
  536. <div style="line-height: 1.5;">
  537. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"></span></bdt><span
  538. style="font-size: 15px; color: rgb(89, 89, 89);"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  539. data-custom-class="body_text"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
  540. data-custom-class="body_text"><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
  541. data-custom-class="body_text">
  542. <bdt class="statement-end-if-in-editor">
  543. <bdt class="block-component"></bdt>
  544. </bdt>
  545. </span></span></span></span></bdt></span></span></span></span></span></span></span></span><span
  546. style="font-size: 15px;"><span data-custom-class="body_text">
  547. <bdt class="block-component"></bdt>
  548. </span></span>
  549. </div>
  550. <div style="line-height: 1.5;"><br></div>
  551. <div id="infouse" style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
  552. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  553. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  554. style="font-size: 15px; color: rgb(89, 89, 89);"><span id="control"
  555. style="color: rgb(0, 0, 0);"><strong><span data-custom-class="heading_1">
  556. <h2>2. HOW DO WE PROCESS YOUR INFORMATION?</h2>
  557. </span></strong></span></span></span></span><span
  558. style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text"><span
  559. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  560. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong><em>In
  561. Short: </em></strong><em>We process your information to provide, improve, and administer our
  562. Services, communicate with you, for security and fraud prevention, and to comply with law. We may
  563. also process your information for other purposes with your
  564. consent.</em></span></span></span></span></span></span></div>
  565. <div style="line-height: 1.5;"><br></div>
  566. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  567. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong>We process your
  568. personal information for a variety of reasons, depending on how you interact with our Services,
  569. including:</strong>
  570. <bdt class="block-component"></bdt>
  571. </span></span></span></span></span></span></span></span></span></span></span></span></li>
  572. </ul>
  573. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  574. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  575. <bdt class="block-component"></bdt>
  576. </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
  577. </li>
  578. </ul>
  579. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  580. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  581. <bdt class="block-component"></bdt>
  582. </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
  583. </li>
  584. </ul>
  585. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  586. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  587. <bdt class="block-component"></bdt>
  588. </span></span></span></span></span></span></span></span></span></span></span></span></li>
  589. </ul>
  590. <div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
  591. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  592. <bdt class="block-component"></bdt>
  593. </span></span></span></li>
  594. </ul>
  595. <div style="line-height: 1.5;">
  596. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  597. </span></span></span></span></span></span></li>
  598. </ul>
  599. <div style="line-height: 1.5;">
  600. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  601. </span></span></span></span></span></span></span></span></span></li>
  602. </ul>
  603. <div style="line-height: 1.5;">
  604. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  605. </span></span></span></span></span></span></span></span></span></span></span></span></li>
  606. </ul>
  607. <div style="line-height: 1.5;">
  608. <bdt class="block-component"><span style="font-size: 15px;"><span
  609. data-custom-class="body_text"></span></span></bdt>
  610. </li>
  611. </ul>
  612. <p style="font-size: 15px; line-height: 1.5;">
  613. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  614. </span></span></span></span></span></span></span></span></span></span></span></li>
  615. </ul>
  616. <p style="font-size: 15px; line-height: 1.5;">
  617. <bdt class="block-component"><span style="font-size: 15px;"></bdt>
  618. </span></span></span></span></span></span></span></span></span></span></span></li>
  619. </ul>
  620. <p style="font-size: 15px; line-height: 1.5;">
  621. <bdt class="block-component"></bdt>
  622. </span></span></span></span></span></span></span></span></span></span></span></li>
  623. </ul>
  624. <p style="font-size: 15px; line-height: 1.5;">
  625. <bdt class="block-component"></bdt>
  626. </p>
  627. <ul>
  628. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  629. style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
  630. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><strong>To request
  631. feedback. </strong>We may process
  632. your information when necessary to request feedback and to contact you about your
  633. use
  634. of our Services.<span style="color: rgb(89, 89, 89);"><span
  635. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  636. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
  637. style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  638. <bdt class="statement-end-if-in-editor"></bdt>
  639. </span></span></span></span></span></span></span></span></span></span></span>
  640. </li>
  641. </ul>
  642. <div style="line-height: 1.5;">
  643. <bdt class="block-component"><span style="font-size: 15px;"><span
  644. data-custom-class="body_text"></span></bdt></span></li>
  645. </ul>
  646. <div style="line-height: 1.5;">
  647. <bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
  648. </div>
  649. <ul>
  650. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  651. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  652. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  653. data-custom-class="body_text"><strong>To send you marketing and promotional
  654. communications. </strong>We may process the personal information you send to us
  655. for
  656. our marketing purposes, if this is in accordance with your marketing preferences.
  657. You
  658. can opt out of our marketing emails at any time. For more information, see <bdt
  659. class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt>
  660. </span></span></span><a data-custom-class="link" href="#privacyrights"><span
  661. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  662. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  663. data-custom-class="body_text">WHAT ARE YOUR PRIVACY
  664. RIGHTS?</span></span></span></a><span
  665. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  666. style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">
  667. <bdt class="block-component"></bdt>"<bdt class="statement-end-if-in-editor"></bdt>
  668. below.
  669. </span><span data-custom-class="body_text">
  670. <bdt class="statement-end-if-in-editor"></bdt>
  671. </span></span></span></li>
  672. </ul>
  673. <div style="line-height: 1.5;">
  674. <bdt class="block-component"><span style="font-size: 15px;"></bdt></span></span></span></li>
  675. </ul>
  676. <div style="line-height: 1.5;"><span style="font-size: 15px;">
  677. <bdt class="block-component"><span data-custom-class="body_text"></span></bdt>
  678. </span></div>
  679. <ul>
  680. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  681. style="font-size: 15px;"><span data-custom-class="body_text"><strong>To deliver
  682. targeted
  683. advertising to you.</strong> We may process your information to develop and
  684. display
  685. <bdt class="block-component"></bdt>personalized<bdt
  686. class="statement-end-if-in-editor"></bdt> content and advertising tailored to your
  687. interests, location, and more.<bdt class="block-component"></bdt> For more
  688. information
  689. see our Cookie Notice: <bdt class="block-component"></bdt><span
  690. style="color: rgb(0, 58, 250);">
  691. <bdt class="question"><a href="https://art.pcoloring.com/cookies" target="_blank"
  692. data-custom-class="link">https://art.pcoloring.com/cookies</a></bdt>
  693. </span>
  694. <bdt class="block-component"></bdt>.<bdt class="statement-end-if-in-editor"></bdt>
  695. </span></span></li>
  696. </ul>
  697. <div style="line-height: 1.5;">
  698. <bdt class="block-component"><span style="font-size: 15px;"><span
  699. data-custom-class="body_text"></bdt></span></span></li>
  700. </ul>
  701. <div style="line-height: 1.5;">
  702. <bdt class="block-component"><span style="font-size: 15px;"><span
  703. data-custom-class="body_text"></span></span></bdt>
  704. </li>
  705. </ul>
  706. <div style="line-height: 1.5;">
  707. <bdt class="block-component"><span style="font-size: 15px;"><span
  708. data-custom-class="body_text"></span></span></bdt>
  709. </div>
  710. <ul>
  711. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  712. data-custom-class="body_text"><span style="font-size: 15px;"><strong>To protect
  713. our
  714. Services.</strong> We may process your information as part of our efforts to
  715. keep our Services safe and secure, including fraud monitoring and
  716. prevention.</span></span>
  717. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
  718. data-custom-class="body_text"></span></span></bdt>
  719. </li>
  720. </ul>
  721. <div style="line-height: 1.5;">
  722. <bdt class="block-component"><span style="font-size: 15px;"><span
  723. data-custom-class="body_text"></span></span></bdt>
  724. </li>
  725. </ul>
  726. <div style="line-height: 1.5;">
  727. <bdt class="block-component"><span style="font-size: 15px;"><span
  728. data-custom-class="body_text"></span></span></bdt>
  729. </li>
  730. </ul>
  731. <div style="line-height: 1.5;">
  732. <bdt class="block-component"><span style="font-size: 15px;"><span
  733. data-custom-class="body_text"></span></span></bdt>
  734. </li>
  735. </ul>
  736. <div style="line-height: 1.5;">
  737. <bdt class="block-component"><span style="font-size: 15px;"><span
  738. data-custom-class="body_text"></span></span></bdt>
  739. </div>
  740. <ul>
  741. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  742. data-custom-class="body_text"><span style="font-size: 15px;"><strong>To
  743. identify usage trends.</strong> We may process information about how you
  744. use our Services to better understand how they are being used so we can
  745. improve them.</span></span>
  746. <bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
  747. data-custom-class="body_text"></span></span></bdt>
  748. </li>
  749. </ul>
  750. <div style="line-height: 1.5;">
  751. <bdt class="block-component"><span style="font-size: 15px;"><span
  752. data-custom-class="body_text"></bdt></span></span></li>
  753. </ul>
  754. <div style="line-height: 1.5;">
  755. <bdt class="block-component"><span style="font-size: 15px;"><span
  756. data-custom-class="body_text"></span></span></bdt>
  757. </div>
  758. <ul>
  759. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  760. style="font-size: 15px;"><span data-custom-class="body_text"><strong>To
  761. determine the effectiveness of our marketing and promotional
  762. campaigns.</strong> We may process your information to better
  763. understand
  764. how to provide marketing and promotional campaigns that are most
  765. relevant
  766. to you.<bdt class="statement-end-if-in-editor"></bdt></span></span></li>
  767. </ul>
  768. <div style="line-height: 1.5;">
  769. <bdt class="block-component"><span style="font-size: 15px;"><span
  770. data-custom-class="body_text"></bdt></span></span></li>
  771. </ul>
  772. <div style="line-height: 1.5;">
  773. <bdt class="block-component"><span style="font-size: 15px;"><span
  774. data-custom-class="body_text"></span></span></bdt>
  775. </div>
  776. <ul>
  777. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  778. data-custom-class="body_text"><span style="font-size: 15px;"><strong>To
  779. save or protect an individual's vital interest.</strong> We may
  780. process your information when necessary to save or protect an
  781. individual’s vital interest, such as to prevent harm.</span></span>
  782. <bdt class="statement-end-if-in-editor"><span
  783. style="font-size: 15px;"><span
  784. data-custom-class="body_text"></span></span></bdt>
  785. </li>
  786. </ul>
  787. <div style="line-height: 1.5;">
  788. <bdt class="block-component"><span style="font-size: 15px;"><span
  789. data-custom-class="body_text"></span></span></bdt>
  790. <bdt class="block-component"><span style="font-size: 15px;"><span
  791. data-custom-class="body_text"></bdt></span></span>
  792. <bdt class="block-component"><span style="font-size: 15px;"><span
  793. data-custom-class="body_text"></span></span></bdt>
  794. <bdt class="block-component"><span style="font-size: 15px;"><span
  795. data-custom-class="body_text"></span></span></bdt>
  796. </div>
  797. <div style="line-height: 1.5;"><br></div>
  798. <div id="legalbases" style="line-height: 1.5;"><strong><span
  799. style="font-size: 15px;"><span data-custom-class="heading_1">
  800. <h2>3. WHAT LEGAL BASES DO WE RELY ON TO PROCESS YOUR INFORMATION?
  801. </h2>
  802. </span></span></strong><em><span style="font-size: 15px;"><span
  803. data-custom-class="body_text"><strong>In Short: </strong>We only
  804. process
  805. your personal information when we believe it is necessary and we have
  806. a
  807. valid legal reason (i.e.<bdt class="block-component"></bdt>,<bdt
  808. class="statement-end-if-in-editor"></bdt> legal basis) to do so
  809. under
  810. applicable law, like with your consent, to comply with laws, to
  811. provide
  812. you with services to enter into or <bdt class="block-component"></bdt>
  813. fulfill<bdt class="statement-end-if-in-editor"></bdt> our contractual
  814. obligations, to protect your rights, or to <bdt
  815. class="block-component">
  816. </bdt>fulfill<bdt class="statement-end-if-in-editor"></bdt> our
  817. legitimate business interests.</span></span></em></div>
  818. <div style="line-height: 1.5;"><br></div>
  819. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  820. data-custom-class="body_text">
  821. <bdt class="block-component"></bdt>
  822. </span><span data-custom-class="body_text">
  823. <bdt class="block-component"></bdt>
  824. </span></span></div>
  825. <div style="line-height: 1.5;"><em><span style="font-size: 15px;"><span
  826. data-custom-class="body_text"><strong><u>If you are located in the EU
  827. or
  828. UK, this section applies to you.</u></strong></span></span></em>
  829. </div>
  830. <div style="line-height: 1.5;"><br></div>
  831. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  832. data-custom-class="body_text">
  833. <bdt class="statement-end-if-in-editor"></bdt>
  834. </span></span></div>
  835. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  836. data-custom-class="body_text">The General Data Protection Regulation
  837. (GDPR) and UK GDPR require us to explain the valid legal bases we rely
  838. on
  839. in order to process your personal information. As such, we may rely on
  840. the
  841. following legal bases to process your personal
  842. information:</span></span>
  843. </div>
  844. <ul>
  845. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  846. style="font-size: 15px;"><span
  847. data-custom-class="body_text"><strong>Consent. </strong>We may process
  848. your information if you have given us permission (i.e.<bdt
  849. class="block-component"></bdt>,<bdt
  850. class="statement-end-if-in-editor"></bdt> consent) to use your
  851. personal information for a specific purpose. You can withdraw your
  852. consent at any time. Learn more about </span></span><a
  853. data-custom-class="link" href="#withdrawconsent"><span
  854. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  855. data-custom-class="body_text">withdrawing your
  856. consent</span></span></a><span
  857. data-custom-class="body_text">.</span>
  858. </li>
  859. </ul>
  860. <div style="line-height: 1.5;">
  861. <bdt class="block-component"><span style="font-size: 15px;"><span
  862. data-custom-class="body_text"></span></span></bdt>
  863. </li>
  864. </ul>
  865. <div style="line-height: 1.5;">
  866. <bdt class="block-component"><span style="font-size: 15px;"><span
  867. data-custom-class="body_text"></span></span></bdt>
  868. </div>
  869. <ul>
  870. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  871. data-custom-class="body_text"><span
  872. style="font-size: 15px;"><strong>Legitimate Interests.</strong> We
  873. may
  874. process your information when we believe it is reasonably necessary
  875. to
  876. achieve our legitimate business interests and those interests do not
  877. outweigh your interests and fundamental rights and freedoms. For
  878. example, we may process your personal information for some of the
  879. purposes described in order to:</span></span></li>
  880. </ul>
  881. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  882. style="font-size: 15px;">
  883. <bdt class="block-component"></bdt>
  884. </span></span></div>
  885. <ul style="margin-left: 40px;">
  886. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  887. data-custom-class="body_text"><span style="font-size: 15px;">Send
  888. users
  889. information about special offers and discounts on our products and
  890. services<bdt class="statement-end-if-in-editor"></bdt></span></span>
  891. </li>
  892. </ul>
  893. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  894. style="font-size: 15px;">
  895. <bdt class="block-component"></bdt>
  896. </span></span></div>
  897. <ul style="margin-left: 40px;">
  898. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  899. data-custom-class="body_text"><span style="font-size: 15px;">Develop
  900. and
  901. display <bdt class="block-component"></bdt>personalized<bdt
  902. class="statement-end-if-in-editor"></bdt> and relevant advertising
  903. content for our users<bdt class="statement-end-if-in-editor"></bdt>
  904. </span></span></li>
  905. </ul>
  906. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  907. style="font-size: 15px;">
  908. <bdt class="block-component"></bdt>
  909. </span></span></div>
  910. <ul style="margin-left: 40px;">
  911. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  912. data-custom-class="body_text"><span style="font-size: 15px;">
  913. <bdt class="block-component"></bdt>Analyze<bdt
  914. class="statement-end-if-in-editor"></bdt> how our Services are
  915. used
  916. so we can improve them to engage and retain users<bdt
  917. class="statement-end-if-in-editor"></bdt>
  918. </span></span></li>
  919. </ul>
  920. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  921. style="font-size: 15px;">
  922. <bdt class="block-component"></bdt>
  923. </span></span></div>
  924. <ul style="margin-left: 40px;">
  925. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  926. data-custom-class="body_text"><span style="font-size: 15px;">Support
  927. our
  928. marketing activities<bdt class="statement-end-if-in-editor"></bdt>
  929. </span></span></li>
  930. </ul>
  931. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  932. style="font-size: 15px;">
  933. <bdt class="block-component"></bdt>
  934. </span></span></div>
  935. <ul style="margin-left: 40px;">
  936. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  937. data-custom-class="body_text"><span style="font-size: 15px;">Diagnose
  938. problems and/or prevent fraudulent activities<bdt
  939. class="statement-end-if-in-editor"></bdt></span></span></li>
  940. </ul>
  941. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  942. style="font-size: 15px;">
  943. <bdt class="block-component"></bdt>
  944. </span></span></div>
  945. <ul style="margin-left: 40px;">
  946. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  947. data-custom-class="body_text"><span
  948. style="font-size: 15px;">Understand
  949. how our users use our products and services so we can improve user
  950. experience<bdt class="statement-end-if-in-editor"></bdt>
  951. </span></span>
  952. </li>
  953. </ul>
  954. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  955. style="font-size: 15px;">
  956. <bdt class="block-component"></bdt>
  957. </span></span>
  958. <bdt class="statement-end-if-in-editor"><span
  959. style="font-size: 15px;"><span
  960. data-custom-class="body_text"></span></span></bdt>
  961. <bdt class="block-component"><span style="font-size: 15px;"><span
  962. data-custom-class="body_text"></span></span></bdt>
  963. </div>
  964. <ul>
  965. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  966. data-custom-class="body_text"><span
  967. style="font-size: 15px;"><strong>Legal Obligations.</strong> We may
  968. process your information where we believe it is necessary for
  969. compliance with our legal obligations, such as to cooperate with a
  970. law
  971. enforcement body or regulatory agency, exercise or defend our legal
  972. rights, or disclose your information as evidence in litigation in
  973. which we are involved.<bdt class="statement-end-if-in-editor"></bdt>
  974. <br></span></span></li>
  975. </ul>
  976. <div style="line-height: 1.5;">
  977. <bdt class="block-component"><span style="font-size: 15px;"><span
  978. data-custom-class="body_text"></span></span></bdt>
  979. </div>
  980. <ul>
  981. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  982. data-custom-class="body_text"><span
  983. style="font-size: 15px;"><strong>Vital Interests.</strong> We may
  984. process your information where we believe it is necessary to protect
  985. your vital interests or the vital interests of a third party, such
  986. as
  987. situations involving potential threats to the safety of any
  988. person.</span></span>
  989. <bdt class="statement-end-if-in-editor"><span
  990. style="font-size: 15px;"><span
  991. data-custom-class="body_text"></span></span></bdt>
  992. </li>
  993. </ul>
  994. <div style="line-height: 1.5;">
  995. <bdt class="block-component"><span style="font-size: 15px;"><span
  996. data-custom-class="body_text"></span></span></bdt><span
  997. data-custom-class="body_text"><span style="font-size: 15px;">
  998. <bdt class="block-component">
  999. <bdt class="block-component"></bdt>
  1000. </bdt>
  1001. </span></span>
  1002. </div>
  1003. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1004. style="font-size: 15px;"><strong><u><em>If you are located in Canada,
  1005. this section applies to you.</em></u></strong></span></span>
  1006. </div>
  1007. <div style="line-height: 1.5;"><br></div>
  1008. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1009. style="font-size: 15px;">
  1010. <bdt class="statement-end-if-in-editor"></bdt>
  1011. </span></span></div>
  1012. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1013. style="font-size: 15px;">We may process your information if you have
  1014. given us specific permission (i.e.<bdt class="block-component"></bdt>,
  1015. <bdt class="statement-end-if-in-editor"></bdt> express consent) to use
  1016. your personal information for a specific purpose, or in situations
  1017. where
  1018. your permission can be inferred (i.e.<bdt class="block-component">
  1019. </bdt>
  1020. ,<bdt class="statement-end-if-in-editor"></bdt> implied consent). You
  1021. can 
  1022. </span></span><a data-custom-class="link" href="#withdrawconsent"><span
  1023. data-custom-class="body_text"><span
  1024. style="color: rgb(0, 58, 250); font-size: 15px;">withdraw your
  1025. consent</span></span></a><span data-custom-class="body_text"><span
  1026. style="font-size: 15px;"> at any time.</span></span></div>
  1027. <div style="line-height: 1.5;"><br></div>
  1028. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1029. style="font-size: 15px;">In some exceptional cases, we may be legally
  1030. permitted under applicable law to process your information without
  1031. your
  1032. consent, including, for example:</span></span></div>
  1033. <ul>
  1034. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1035. data-custom-class="body_text"><span style="font-size: 15px;">If
  1036. collection is clearly in the interests of an individual and consent
  1037. cannot be obtained in a timely way</span></span></li>
  1038. </ul>
  1039. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1040. style="font-size: 15px;">
  1041. <bdt class="block-component"></bdt>
  1042. </span></span></div>
  1043. <ul>
  1044. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1045. data-custom-class="body_text"><span style="font-size: 15px;">For
  1046. investigations and fraud detection and prevention<bdt
  1047. class="statement-end-if-in-editor"></bdt></span></span></li>
  1048. </ul>
  1049. <div style="line-height: 1.5;">
  1050. <bdt class="block-component"><span style="font-size: 15px;"><span
  1051. data-custom-class="body_text"></span></span></bdt>
  1052. </div>
  1053. <ul>
  1054. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1055. data-custom-class="body_text"><span style="font-size: 15px;">For
  1056. business transactions provided certain conditions are
  1057. met</span></span>
  1058. <bdt class="statement-end-if-in-editor"><span
  1059. style="font-size: 15px;"><span
  1060. data-custom-class="body_text"></span></span></bdt>
  1061. </li>
  1062. </ul>
  1063. <div style="line-height: 1.5;">
  1064. <bdt class="block-component"><span style="font-size: 15px;"><span
  1065. data-custom-class="body_text"></span></span></bdt>
  1066. </div>
  1067. <ul>
  1068. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1069. data-custom-class="body_text"><span style="font-size: 15px;">If it is
  1070. contained in a witness statement and the collection is necessary to
  1071. assess, process, or settle an insurance claim</span></span>
  1072. <bdt class="statement-end-if-in-editor"><span
  1073. style="font-size: 15px;"><span
  1074. data-custom-class="body_text"></span></span></bdt>
  1075. </li>
  1076. </ul>
  1077. <div style="line-height: 1.5;">
  1078. <bdt class="block-component"><span style="font-size: 15px;"><span
  1079. data-custom-class="body_text"></span></span></bdt>
  1080. </div>
  1081. <ul>
  1082. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1083. data-custom-class="body_text"><span style="font-size: 15px;">For
  1084. identifying injured, ill, or deceased persons and communicating with
  1085. next of kin</span></span>
  1086. <bdt class="statement-end-if-in-editor"><span
  1087. style="font-size: 15px;"><span
  1088. data-custom-class="body_text"></span></span></bdt>
  1089. </li>
  1090. </ul>
  1091. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1092. style="font-size: 15px;">
  1093. <bdt class="block-component"></bdt>
  1094. </span></span></div>
  1095. <ul>
  1096. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1097. data-custom-class="body_text"><span style="font-size: 15px;">If we
  1098. have
  1099. reasonable grounds to believe an individual has been, is, or may be
  1100. victim of financial abuse<bdt class="statement-end-if-in-editor">
  1101. </bdt></span></span></li>
  1102. </ul>
  1103. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1104. style="font-size: 15px;">
  1105. <bdt class="block-component"></bdt>
  1106. </span></span></div>
  1107. <ul>
  1108. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1109. data-custom-class="body_text"><span style="font-size: 15px;">If it is
  1110. reasonable to expect collection and use with consent would
  1111. compromise
  1112. the availability or the accuracy of the information and the
  1113. collection
  1114. is reasonable for purposes related to investigating a breach of an
  1115. agreement or a contravention of the laws of Canada or a province<bdt
  1116. class="statement-end-if-in-editor"></bdt></span></span></li>
  1117. </ul>
  1118. <div style="line-height: 1.5;"><span data-custom-class="body_text"><span
  1119. style="font-size: 15px;">
  1120. <bdt class="block-component"></bdt>
  1121. </span></span></div>
  1122. <ul>
  1123. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1124. data-custom-class="body_text"><span style="font-size: 15px;">If
  1125. disclosure is required to comply with a subpoena, warrant, court
  1126. order, or rules of the court relating to the production of records
  1127. <bdt class="statement-end-if-in-editor"></bdt></span></span></li>
  1128. </ul>
  1129. <div style="line-height: 1.5;">
  1130. <bdt class="block-component"><span style="font-size: 15px;"><span
  1131. data-custom-class="body_text"></span></span></bdt>
  1132. </div>
  1133. <ul>
  1134. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1135. style="font-size: 15px;"><span data-custom-class="body_text">If it was
  1136. produced by an individual in the course of their employment,
  1137. business,
  1138. or profession and the collection is consistent with the purposes for
  1139. which the information was produced<bdt
  1140. class="statement-end-if-in-editor"></bdt></span></span></li>
  1141. </ul>
  1142. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1143. data-custom-class="body_text">
  1144. <bdt class="block-component"></bdt>
  1145. </span></span></div>
  1146. <ul>
  1147. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1148. style="font-size: 15px;"><span data-custom-class="body_text">If the
  1149. collection is solely for journalistic, artistic, or literary
  1150. purposes
  1151. <bdt class="statement-end-if-in-editor"></bdt>
  1152. </span></span></li>
  1153. </ul>
  1154. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1155. data-custom-class="body_text">
  1156. <bdt class="block-component"></bdt>
  1157. </span></span></div>
  1158. <ul>
  1159. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1160. style="font-size: 15px;"><span data-custom-class="body_text">If the
  1161. information is publicly available and is specified by the
  1162. regulations</span>
  1163. <bdt class="statement-end-if-in-editor"><span
  1164. data-custom-class="body_text"></span></bdt>
  1165. </span></li>
  1166. </ul>
  1167. <div style="line-height: 1.5;">
  1168. <bdt class="statement-end-if-in-editor"><span
  1169. style="font-size: 15px;"><span
  1170. data-custom-class="body_text"></span></span></bdt>
  1171. <bdt class="statement-end-if-in-editor"><span
  1172. style="font-size: 15px;"><span
  1173. data-custom-class="body_text"></span></span></bdt>
  1174. </div>
  1175. <div style="line-height: 1.5;"><br></div>
  1176. <div id="whoshare" style="line-height: 1.5;"><span
  1177. style="color: rgb(127, 127, 127);"><span
  1178. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1179. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1180. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1181. id="control" style="color: rgb(0, 0, 0);"><strong><span
  1182. data-custom-class="heading_1">
  1183. <h2>4. WHEN AND WITH WHOM DO WE SHARE YOUR PERSONAL
  1184. INFORMATION?</h2>
  1185. </span></strong></span></span></span></span></span><span
  1186. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1187. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1188. data-custom-class="body_text"><strong><em>In
  1189. Short:</em></strong><em> We may share information in specific
  1190. situations described in this section and/or with the following
  1191. <bdt class="block-component"></bdt>third
  1192. parties.</em></span></span></span></div>
  1193. <div style="line-height: 1.5;"><span
  1194. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1195. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1196. data-custom-class="body_text">
  1197. <bdt class="block-component">
  1198. </span></div>
  1199. <div style="line-height: 1.5;"><br></div>
  1200. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1201. data-custom-class="body_text">We <bdt class="block-component"></bdt>
  1202. may
  1203. need to share your personal information in the following
  1204. situations:</span></span></div>
  1205. <ul>
  1206. <li data-custom-class="body_text" style="line-height: 1.5;"><span
  1207. style="font-size: 15px;"><span
  1208. data-custom-class="body_text"><strong>Business Transfers.</strong>
  1209. We
  1210. may share or transfer your information in connection with, or during
  1211. negotiations of, any merger, sale of company assets, financing, or
  1212. acquisition of all or a portion of our business to another
  1213. company.</span></span></li>
  1214. </ul>
  1215. <div style="line-height: 1.5;"><span style="font-size: 15px;"><span
  1216. data-custom-class="body_text">
  1217. <bdt class="block-component"></bdt>
  1218. </span></span></li>
  1219. </ul>
  1220. <div style="line-height: 1.5;"><span style="font-size: 15px;">
  1221. <bdt class="block-component"><span
  1222. data-custom-class="body_text"></span>
  1223. </bdt>
  1224. </span></li>
  1225. </ul>
  1226. <div style="line-height: 1.5;">
  1227. <bdt class="block-component"><span style="font-size: 15px;"><span
  1228. data-custom-class="body_text"></span></span></bdt>
  1229. </li>
  1230. </ul>
  1231. <div style="line-height: 1.5;">
  1232. <bdt class="block-component"><span style="font-size: 15px;"><span
  1233. data-custom-class="body_text"></bdt></span></span></li>
  1234. </ul>
  1235. <div style="line-height: 1.5;">
  1236. <bdt class="block-component"><span style="font-size: 15px;"><span
  1237. data-custom-class="body_text"></span></span></bdt>
  1238. </li>
  1239. </ul>
  1240. <div style="line-height: 1.5;">
  1241. <bdt class="block-component"><span
  1242. style="font-size: 15px;"><span
  1243. data-custom-class="body_text"></span></span></bdt>
  1244. </div>
  1245. <div style="line-height: 1.5;"><br></div>
  1246. <div style="line-height: 1.5;"><strong><span id="3pwebsites"
  1247. style="font-size: 15px;"><span
  1248. data-custom-class="heading_1">
  1249. <h2>5. WHAT IS OUR STANCE ON THIRD-PARTY WEBSITES?</h2>
  1250. </span></span></strong><span style="font-size: 15px;"><span
  1251. data-custom-class="body_text"><strong><em>In
  1252. Short:</em></strong><em> We are not responsible for the
  1253. safety of any information that you share with third
  1254. parties
  1255. that we may link to or who advertise on our Services, but
  1256. are not affiliated with, our Services.</em></span></span>
  1257. </div>
  1258. <div style="line-height: 1.5;"><br></div>
  1259. <div style="line-height: 1.5;"><span
  1260. style="font-size: 15px;"><span
  1261. data-custom-class="body_text">The Services<bdt
  1262. class="block-component"></bdt> may link to third-party
  1263. websites, online services, or mobile applications and/or
  1264. contain advertisements from third parties that are not
  1265. affiliated with us and which may link to other websites,
  1266. services, or applications. Accordingly, we do not make any
  1267. guarantee regarding any such third parties, and we will not
  1268. be
  1269. liable for any loss or damage caused by the use of such
  1270. third-party websites, services, or applications. The
  1271. inclusion
  1272. of a link towards a third-party website, service, or
  1273. application does not imply an endorsement by us. We cannot
  1274. guarantee the safety and privacy of data you provide to any
  1275. third-party websites. Any data collected by third parties is
  1276. not covered by this Privacy Notice. We are not responsible
  1277. for
  1278. the content or privacy and security practices and policies
  1279. of
  1280. any third parties, including other websites, services, or
  1281. applications that may be linked to or from the Services. You
  1282. should review the policies of such third parties and contact
  1283. them directly to respond to your questions.</span></span>
  1284. <bdt class="statement-end-if-in-editor"><span
  1285. style="font-size: 15px;"><span
  1286. data-custom-class="body_text"></span></span></bdt><span
  1287. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1288. style="font-size: 15px;"><span
  1289. style="color: rgb(89, 89, 89);"><span
  1290. style="font-size: 15px;"><span
  1291. style="color: rgb(89, 89, 89);">
  1292. <bdt class="block-component"><span
  1293. data-custom-class="heading_1">
  1294. <bdt class="block-component"></bdt>
  1295. </span></bdt>
  1296. </span></span></span></span></span>
  1297. </div>
  1298. <div style="line-height: 1.5;"><br></div>
  1299. <div id="cookies" style="line-height: 1.5;"><span
  1300. style="color: rgb(127, 127, 127);"><span
  1301. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1302. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1303. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1304. id="control"
  1305. style="color: rgb(0, 0, 0);"><strong><span
  1306. data-custom-class="heading_1">
  1307. <h2>6. DO WE USE COOKIES AND OTHER TRACKING
  1308. TECHNOLOGIES?</h2>
  1309. </span></strong></span></span></span></span></span><span
  1310. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1311. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1312. data-custom-class="body_text"><strong><em>In
  1313. Short:</em></strong><em> We may use cookies and other
  1314. tracking technologies to collect and store your
  1315. information.</em></span></span></span></div>
  1316. <div style="line-height: 1.5;"><br></div>
  1317. <div style="line-height: 1.5;"><span
  1318. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1319. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1320. data-custom-class="body_text">We may use cookies and
  1321. similar
  1322. tracking technologies (like web beacons and pixels) to
  1323. gather information when you interact with our Services.
  1324. Some
  1325. online tracking technologies help us maintain the security
  1326. of our Services<bdt class="block-component"></bdt>,
  1327. prevent
  1328. crashes, fix bugs, save your preferences, and assist with
  1329. basic site functions.</span></span></span></div>
  1330. <div style="line-height: 1.5;"><br></div>
  1331. <div style="line-height: 1.5;"><span
  1332. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1333. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1334. data-custom-class="body_text">We also permit third parties
  1335. and service providers to use online tracking technologies
  1336. on
  1337. our Services for analytics and advertising, including to
  1338. help manage and display advertisements, to tailor
  1339. advertisements to your interests, or to send abandoned
  1340. shopping cart reminders (depending on your communication
  1341. preferences). The third parties and service providers use
  1342. their technology to provide advertising about products and
  1343. services tailored to your interests which may appear
  1344. either
  1345. on our Services or on other websites.</span></span></span>
  1346. <bdt class="block-component"><span
  1347. style="font-size: 15px;"></span></bdt>
  1348. </div>
  1349. <div style="line-height: 1.5;"><span
  1350. style="font-size: 15px;"><br></span></div>
  1351. <div style="line-height: 1.5;"><span
  1352. style="font-size: 15px;"><span
  1353. data-custom-class="body_text">To the extent these online
  1354. tracking technologies are deemed to be a <bdt
  1355. class="block-component"></bdt>"sale"/"sharing"<bdt
  1356. class="statement-end-if-in-editor"></bdt> (which includes
  1357. targeted advertising, as defined under the applicable laws)
  1358. under applicable US state laws, you can opt out of these
  1359. online tracking technologies by submitting a request as
  1360. described below under section <bdt class="block-component">
  1361. </bdt>"<bdt class="statement-end-if-in-editor"></bdt>
  1362. </span></span><span data-custom-class="body_text"><a
  1363. data-custom-class="link" href="#uslaws"><span
  1364. style="color: rgb(0, 58, 250); font-size: 15px;">DO UNITED
  1365. STATES RESIDENTS HAVE SPECIFIC PRIVACY
  1366. RIGHTS?</span></a></span><span
  1367. style="font-size: 15px;"><span data-custom-class="body_text">
  1368. <bdt class="block-component"></bdt>"<bdt
  1369. class="statement-end-if-in-editor"></bdt>
  1370. </span>
  1371. <bdt class="statement-end-if-in-editor"></bdt>
  1372. </span></div>
  1373. <div style="line-height: 1.5;"><br></div>
  1374. <div style="line-height: 1.5;"><span
  1375. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1376. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1377. data-custom-class="body_text">Specific information about
  1378. how
  1379. we use such technologies and how you can refuse certain
  1380. cookies is set out in our Cookie Notice<span
  1381. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1382. data-custom-class="body_text">
  1383. <bdt class="block-component"></bdt>
  1384. </span></span>: <span
  1385. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  1386. data-custom-class="body_text">
  1387. <bdt class="question"><a
  1388. href="https://art.pcoloring.com/cookies"
  1389. target="_blank"
  1390. data-custom-class="link">https://art.pcoloring.com/cookies</a>
  1391. </bdt>
  1392. </span></span><span
  1393. style="font-size: 15px; color: rgb(89, 89, 89);">
  1394. <bdt class="block-component"></bdt>.
  1395. </span></span></span></span></span>
  1396. <bdt class="block-component"><span
  1397. style="font-size: 15px;"></span></bdt><span
  1398. style="font-size: 15px;"><strong><span
  1399. data-custom-class="heading_2">
  1400. <h3>Google Analytics</h3>
  1401. </span></strong> <span data-custom-class="body_text">We may
  1402. share your information with Google Analytics to track and
  1403. <bdt class="block-component"></bdt>analyze<bdt
  1404. class="statement-end-if-in-editor"></bdt> the use of the
  1405. Services.<bdt class="block-component"></bdt> The Google
  1406. Analytics Advertising Features that we may use include: <bdt
  1407. class="forloop-component"></bdt>
  1408. <bdt class="block-component"></bdt>
  1409. <bdt class="question">Remarketing with Google Analytics
  1410. </bdt>
  1411. <bdt class="block-component"></bdt>
  1412. <bdt class="forloop-component"></bdt>
  1413. <bdt class="block-component"></bdt>, <bdt class="question">
  1414. Google Display Network Impressions Reporting</bdt>
  1415. <bdt class="else-block"></bdt>
  1416. <bdt class="forloop-component"></bdt>
  1417. <bdt class="block-component"></bdt> and <bdt
  1418. class="question">
  1419. Google Analytics Demographics and Interests Reporting
  1420. </bdt>
  1421. <bdt class="statement-end-if-in-editor"></bdt>
  1422. <bdt class="forloop-component"></bdt>.<bdt
  1423. class="statement-end-if-in-editor"></bdt> To opt out of
  1424. being tracked by Google Analytics across the Services, visit
  1425. <span style="color: rgb(0, 58, 250);"><a
  1426. data-custom-class="link"
  1427. href="https://tools.google.com/dlpage/gaoptout"
  1428. rel="noopener noreferrer"
  1429. target="_blank">https://tools.google.com/dlpage/gaoptout</a>.</span>
  1430. <bdt class="block-component"></bdt> You can opt out of
  1431. Google
  1432. Analytics Advertising Features through <span
  1433. style="color: rgb(0, 58, 250);"><a
  1434. data-custom-class="link"
  1435. href="https://adssettings.google.com/"
  1436. rel="noopener noreferrer" target="_blank">Ads
  1437. Settings</a></span> and Ad Settings for mobile apps.
  1438. Other
  1439. opt out means include <span
  1440. style="color: rgb(0, 58, 250);"><span
  1441. style="color: rbg(0, 58, 250);"><a
  1442. data-custom-class="link"
  1443. href="http://optout.networkadvertising.org/"
  1444. rel="noopener noreferrer"
  1445. target="_blank">http://optout.networkadvertising.org/</a></span></span>
  1446. and <span style="color: rgb(0, 58, 250);"><a
  1447. data-custom-class="link"
  1448. href="http://www.networkadvertising.org/mobile-choice"
  1449. rel="noopener noreferrer"
  1450. target="_blank">http://www.networkadvertising.org/mobile-choice</a></span>.
  1451. <bdt class="statement-end-if-in-editor"></bdt> For more
  1452. information on the privacy practices of Google, please visit
  1453. the <span style="color: rgb(0, 58, 250);"><a
  1454. data-custom-class="link"
  1455. href="https://policies.google.com/privacy"
  1456. rel="noopener noreferrer" target="_blank">Google Privacy
  1457. &
  1458. Terms page</a></span>.
  1459. </span></span>
  1460. <bdt class="statement-end-if-in-editor"><span
  1461. style="font-size: 15px;"></span></bdt><span
  1462. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1463. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1464. data-custom-class="body_text"><span
  1465. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1466. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1467. style="font-size: 15px;"><span
  1468. style="color: rgb(89, 89, 89);"><span
  1469. style="font-size: 15px;"><span
  1470. style="color: rgb(89, 89, 89);"><span
  1471. data-custom-class="body_text">
  1472. <bdt class="statement-end-if-in-editor">
  1473. </bdt>
  1474. </span></span></span></span></span></span></span></span></span></span><span
  1475. style="font-size: 15px;">
  1476. <bdt class="block-component"></bdt>
  1477. </span><span
  1478. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1479. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1480. data-custom-class="body_text"><span
  1481. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1482. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1483. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1484. style="font-size: 15px;"><span
  1485. style="color: rgb(89, 89, 89);"><span
  1486. style="font-size: 15px;"><span
  1487. style="color: rgb(89, 89, 89);"><span
  1488. data-custom-class="body_text">
  1489. <bdt class="block-component"></bdt>
  1490. </span>
  1491. <bdt class="block-component"><span
  1492. data-custom-class="body_text">
  1493. <bdt class="block-component"></bdt>
  1494. </span>
  1495. </span></span></span></span></span></span></span></span></span></span></span></span>
  1496. </div>
  1497. <div style="line-height: 1.5;"><br></div>
  1498. <div id="inforetain" style="line-height: 1.5;"><span
  1499. style="color: rgb(127, 127, 127);"><span
  1500. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1501. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1502. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1503. id="control"
  1504. style="color: rgb(0, 0, 0);"><strong><span
  1505. data-custom-class="heading_1">
  1506. <h2>7. HOW LONG DO WE KEEP YOUR INFORMATION?</h2>
  1507. </span></strong></span></span></span></span></span><span
  1508. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1509. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1510. data-custom-class="body_text"><strong><em>In
  1511. Short: </em></strong><em>We keep your information for
  1512. as
  1513. long as necessary to <bdt class="block-component"></bdt>
  1514. fulfill<bdt class="statement-end-if-in-editor"></bdt>
  1515. the
  1516. purposes outlined in this Privacy Notice unless
  1517. otherwise
  1518. required by law.</em></span></span></span></div>
  1519. <div style="line-height: 1.5;"><br></div>
  1520. <div style="line-height: 1.5;"><span
  1521. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1522. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1523. data-custom-class="body_text">We will only keep your
  1524. personal information for as long as it is necessary for
  1525. the
  1526. purposes set out in this Privacy Notice, unless a longer
  1527. retention period is required or permitted by law (such as
  1528. tax, accounting, or other legal requirements).<bdt
  1529. class="block-component"></span></span></span></div>
  1530. <div style="line-height: 1.5;"><br></div>
  1531. <div style="line-height: 1.5;"><span
  1532. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1533. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1534. data-custom-class="body_text">When we have no ongoing
  1535. legitimate business need to process your personal
  1536. information, we will either delete or <bdt
  1537. class="block-component"></bdt>anonymize<bdt
  1538. class="statement-end-if-in-editor"></bdt> such
  1539. information, or, if this is not possible (for example,
  1540. because your personal information has been stored in
  1541. backup
  1542. archives), then we will securely store your personal
  1543. information and isolate it from any further processing
  1544. until
  1545. deletion is possible.<span
  1546. style="color: rgb(89, 89, 89);">
  1547. <bdt class="block-component"></bdt>
  1548. </span></span></span></span></div>
  1549. <div style="line-height: 1.5;"><br></div>
  1550. <div id="infosafe" style="line-height: 1.5;"><span
  1551. style="color: rgb(127, 127, 127);"><span
  1552. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1553. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1554. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1555. id="control"
  1556. style="color: rgb(0, 0, 0);"><strong><span
  1557. data-custom-class="heading_1">
  1558. <h2>8. HOW DO WE KEEP YOUR INFORMATION SAFE?</h2>
  1559. </span></strong></span></span></span></span></span><span
  1560. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1561. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1562. data-custom-class="body_text"><strong><em>In
  1563. Short: </em></strong><em>We aim to protect your
  1564. personal
  1565. information through a system of <bdt
  1566. class="block-component"></bdt>organizational<bdt
  1567. class="statement-end-if-in-editor"></bdt> and
  1568. technical
  1569. security measures.</em></span></span></span></div>
  1570. <div style="line-height: 1.5;"><br></div>
  1571. <div style="line-height: 1.5;"><span
  1572. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1573. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1574. data-custom-class="body_text">We have implemented
  1575. appropriate and reasonable technical and <bdt
  1576. class="block-component"></bdt>organizational<bdt
  1577. class="statement-end-if-in-editor"></bdt> security
  1578. measures designed to protect the security of any personal
  1579. information we process. However, despite our safeguards
  1580. and
  1581. efforts to secure your information, no electronic
  1582. transmission over the Internet or information storage
  1583. technology can be guaranteed to be 100% secure, so we
  1584. cannot
  1585. promise or guarantee that hackers, cybercriminals, or
  1586. other
  1587. <bdt class="block-component"></bdt>unauthorized<bdt
  1588. class="statement-end-if-in-editor"></bdt> third parties
  1589. will not be able to defeat our security and improperly
  1590. collect, access, steal, or modify your information.
  1591. Although
  1592. we will do our best to protect your personal information,
  1593. transmission of personal information to and from our
  1594. Services is at your own risk. You should only access the
  1595. Services within a secure environment.<span
  1596. style="color: rgb(89, 89, 89);">
  1597. <bdt class="statement-end-if-in-editor"></bdt>
  1598. </span><span
  1599. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1600. data-custom-class="body_text">
  1601. <bdt class="block-component"></bdt>
  1602. </span></span>
  1603. </span></span></span></div>
  1604. <div style="line-height: 1.5;"><br></div>
  1605. <div id="infominors" style="line-height: 1.5;"><span
  1606. style="color: rgb(127, 127, 127);"><span
  1607. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1608. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1609. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1610. id="control"
  1611. style="color: rgb(0, 0, 0);"><strong><span
  1612. data-custom-class="heading_1">
  1613. <h2>9. DO WE COLLECT INFORMATION FROM MINORS?</h2>
  1614. </span></strong></span></span></span></span></span><span
  1615. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1616. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1617. data-custom-class="body_text"><strong><em>In
  1618. Short:</em></strong><em> We do not knowingly collect
  1619. data from or market to <bdt class="block-component">
  1620. </bdt>
  1621. children under 18 years of age<bdt class="else-block">
  1622. </bdt>.</em>
  1623. <bdt class="block-component"></bdt>
  1624. </span></span></span></div>
  1625. <div style="line-height: 1.5;"><br></div>
  1626. <div style="line-height: 1.5;"><span
  1627. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1628. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1629. data-custom-class="body_text">We do not knowingly collect,
  1630. solicit data from, or market to children under 18 years of
  1631. age, nor do we knowingly sell such personal information.
  1632. By
  1633. using the Services, you represent that you are at least 18
  1634. or that you are the parent or guardian of such a minor and
  1635. consent to such minor dependent’s use of the Services. If
  1636. we
  1637. learn that personal information from users less than 18
  1638. years of age has been collected, we will deactivate the
  1639. account and take reasonable measures to promptly delete
  1640. such
  1641. data from our records. If you become aware of any data we
  1642. may have collected from children under age 18, please
  1643. contact us at <span
  1644. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1645. data-custom-class="body_text">
  1646. <bdt class="block-component"></bdt>
  1647. <bdt class="question">icolor_support@jccy-tech.com
  1648. </bdt>
  1649. <bdt class="else-block"></bdt>
  1650. </span></span>.</span><span
  1651. data-custom-class="body_text">
  1652. <bdt class="else-block">
  1653. <bdt class="block-component"></bdt>
  1654. </span></span></span></span></span></span></div>
  1655. <div style="line-height: 1.5;"><br></div>
  1656. <div id="privacyrights" style="line-height: 1.5;"><span
  1657. style="color: rgb(127, 127, 127);"><span
  1658. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1659. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1660. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1661. id="control"
  1662. style="color: rgb(0, 0, 0);"><strong><span
  1663. data-custom-class="heading_1">
  1664. <h2>10. WHAT ARE YOUR PRIVACY RIGHTS?</h2>
  1665. </span></strong></span></span></span></span></span><span
  1666. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1667. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1668. data-custom-class="body_text"><strong><em>In
  1669. Short:</em></strong><em> <span
  1670. style="color: rgb(89, 89, 89);"><span
  1671. style="font-size: 15px;"><span
  1672. data-custom-class="body_text"><em>
  1673. <bdt class="block-component"></bdt>
  1674. </em></span></span></span>
  1675. <bdt class="block-component"></bdt>Depending on your
  1676. state
  1677. of residence in the US or in <bdt class="else-block">
  1678. </bdt>some regions, such as <bdt
  1679. class="block-component">
  1680. </bdt>the European Economic Area (EEA), United Kingdom
  1681. (UK), Switzerland, and Canada<bdt
  1682. class="block-component">
  1683. </bdt>, you have rights that allow you greater access to
  1684. and control over your personal information.<span
  1685. style="color: rgb(89, 89, 89);"><span
  1686. style="font-size: 15px;"><span
  1687. data-custom-class="body_text"><em>
  1688. <bdt class="statement-end-if-in-editor"></bdt>
  1689. </em></span></span> </span>You may review, change,
  1690. or terminate your account at any time, depending on your
  1691. country, province, or state of residence.
  1692. </em><span style="color: rgb(89, 89, 89);"><span
  1693. style="font-size: 15px;">
  1694. <bdt class="block-component"></bdt>
  1695. </span></span></span></span></span></div>
  1696. <div style="line-height: 1.5;"><br></div>
  1697. <div style="line-height: 1.5;"><span
  1698. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1699. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1700. data-custom-class="body_text">In some regions (like <bdt
  1701. class="block-component"></bdt>the EEA, UK, Switzerland,
  1702. and Canada<bdt class="block-component"></bdt>), you have
  1703. certain rights under applicable data protection laws.
  1704. These
  1705. may include the right (i) to request access and obtain a
  1706. copy of your personal information, (ii) to request
  1707. rectification or erasure; (iii) to restrict the processing
  1708. of your personal information; (iv) if applicable, to data
  1709. portability; and (v) not to be subject to automated
  1710. decision-making. In certain circumstances, you may also
  1711. have
  1712. the right to object to the processing of your personal
  1713. information. You can make such a request by contacting us
  1714. by
  1715. using the contact details provided in the section <bdt
  1716. class="block-component"></bdt>"<bdt
  1717. class="statement-end-if-in-editor"></bdt>
  1718. </span></span></span><a data-custom-class="link"
  1719. href="#contact"><span
  1720. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1721. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1722. data-custom-class="body_text">HOW CAN YOU CONTACT US
  1723. ABOUT
  1724. THIS NOTICE?</span></span></span></a><span
  1725. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1726. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1727. data-custom-class="body_text">
  1728. <bdt class="block-component"></bdt>"<bdt
  1729. class="statement-end-if-in-editor"></bdt> below.
  1730. </span></span></span></div>
  1731. <div style="line-height: 1.5;"><br></div>
  1732. <div style="line-height: 1.5;"><span
  1733. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1734. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1735. data-custom-class="body_text">We will consider and act
  1736. upon
  1737. any request in accordance with applicable data protection
  1738. laws.<bdt class="block-component"></bdt>
  1739. </span></span></span></div>
  1740. <div style="line-height: 1.5;"><span
  1741. style="font-size: 15px; color: rgb(89, 89, 89);"> </span>
  1742. </div>
  1743. <div style="line-height: 1.5;"><span
  1744. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1745. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1746. data-custom-class="body_text">If you are located in the
  1747. EEA
  1748. or UK and you believe we are unlawfully processing your
  1749. personal information, you also have the right to complain
  1750. to
  1751. your <span style="font-size: 15px;"><span
  1752. style="color: rgb(0, 58, 250);"><span
  1753. data-custom-class="body_text"><span
  1754. style="color: rgb(0, 58, 250);"><span
  1755. data-custom-class="body_text"><a
  1756. data-custom-class="link"
  1757. href="https://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm"
  1758. rel="noopener noreferrer"
  1759. target="_blank"><span
  1760. style="font-size: 15px;">Member State data
  1761. protection
  1762. authority</span></a></span></span></span></span></span>
  1763. or </span></span></span><a data-custom-class="link"
  1764. href="https://ico.org.uk/make-a-complaint/data-protection-complaints/data-protection-complaints/"
  1765. rel="noopener noreferrer" target="_blank"><span
  1766. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1767. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1768. data-custom-class="body_text">UK data protection
  1769. authority</span></span></span></a><span
  1770. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1771. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1772. data-custom-class="body_text">.</span></span></span></div>
  1773. <div style="line-height: 1.5;"><br></div>
  1774. <div style="line-height: 1.5;"><span
  1775. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1776. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1777. data-custom-class="body_text">If you are located in
  1778. Switzerland, you may contact the <span
  1779. style="font-size: 15px;"><span
  1780. style="color: rgb(0, 58, 250);"><span
  1781. data-custom-class="body_text"><span
  1782. style="color: rgb(0, 58, 250);"><span
  1783. data-custom-class="body_text"><span
  1784. style="color: rgb(0, 58, 250); font-size: 15px;"><a
  1785. data-custom-class="link"
  1786. href="https://www.edoeb.admin.ch/edoeb/en/home.html"
  1787. rel="noopener noreferrer"
  1788. target="_blank">Federal Data Protection and
  1789. Information
  1790. Commissioner</a></span></span></span></span></span></span>.</span></span></span>
  1791. </div>
  1792. <div style="line-height: 1.5;"><br></div>
  1793. <div id="withdrawconsent" style="line-height: 1.5;"><span
  1794. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1795. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1796. data-custom-class="body_text"><strong><u>Withdrawing your
  1797. consent:</u></strong> If we are relying on your
  1798. consent
  1799. to process your personal information,<bdt
  1800. class="block-component"></bdt> which may be express
  1801. and/or
  1802. implied consent depending on the applicable law,<bdt
  1803. class="statement-end-if-in-editor"></bdt> you have the
  1804. right to withdraw your consent at any time. You can
  1805. withdraw
  1806. your consent at any time by contacting us by using the
  1807. contact details provided in the section <bdt
  1808. class="block-component"></bdt>"<bdt
  1809. class="statement-end-if-in-editor"></bdt>
  1810. </span></span></span><a data-custom-class="link"
  1811. href="#contact"><span
  1812. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1813. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  1814. data-custom-class="body_text">HOW CAN YOU CONTACT US
  1815. ABOUT
  1816. THIS NOTICE?</span></span></span></a><span
  1817. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1818. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1819. data-custom-class="body_text">
  1820. <bdt class="block-component"></bdt>"<bdt
  1821. class="statement-end-if-in-editor"></bdt> below<bdt
  1822. class="block-component"></bdt>.
  1823. </span></span></span></div>
  1824. <div style="line-height: 1.5;"><br></div>
  1825. <div style="line-height: 1.5;"><span
  1826. style="font-size: 15px;"><span
  1827. data-custom-class="body_text">However, please note that this
  1828. will not affect the lawfulness of the processing before its
  1829. withdrawal nor,<bdt class="block-component"></bdt> when
  1830. applicable law allows,<bdt
  1831. class="statement-end-if-in-editor">
  1832. </bdt> will it affect the processing of your personal
  1833. information conducted in reliance on lawful processing
  1834. grounds
  1835. other than consent.<bdt class="block-component"></bdt>
  1836. </span></span>
  1837. <bdt class="block-component"><span
  1838. style="font-size: 15px;"><span
  1839. data-custom-class="body_text"></span></span></bdt><span
  1840. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1841. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1842. data-custom-class="body_text"><span
  1843. style="font-size: 15px;"><span
  1844. style="color: rgb(89, 89, 89);"><span
  1845. style="font-size: 15px;"><span
  1846. style="color: rgb(89, 89, 89);"><span
  1847. data-custom-class="body_text"><span
  1848. style="font-size: 15px;"><span
  1849. style="color: rgb(89, 89, 89);">
  1850. <bdt class="block-component"></bdt>
  1851. </span></span></span></span></span></span></span></span></span></span>
  1852. </div>
  1853. <div style="line-height: 1.5;"><br></div>
  1854. <div style="line-height: 1.5;"><span
  1855. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1856. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1857. data-custom-class="body_text"><strong><u>Cookies and
  1858. similar
  1859. technologies:</u></strong> Most Web browsers are set
  1860. to
  1861. accept cookies by default. If you prefer, you can usually
  1862. choose to set your browser to remove cookies and to reject
  1863. cookies. If you choose to remove cookies or reject
  1864. cookies,
  1865. this could affect certain features or services of our
  1866. Services. <bdt class="block-component"></bdt>You may also
  1867. <span style="color: rgb(0, 58, 250);"><span
  1868. data-custom-class="body_text"><a
  1869. data-custom-class="link"
  1870. href="http://www.aboutads.info/choices/"
  1871. rel="noopener noreferrer" target="_blank"><span
  1872. style="color: rgb(0, 58, 250); font-size: 15px;">opt
  1873. out of interest-based advertising by
  1874. advertisers</span></a></span></span> on our
  1875. Services. <span style="font-size: 15px;"><span
  1876. style="color: rgb(89, 89, 89);"><span
  1877. data-custom-class="body_text">
  1878. <bdt class="block-component"></bdt>
  1879. </span></span></span>For further information, please
  1880. see
  1881. our Cookie Notice: <span style="font-size: 15px;"><span
  1882. style="color: rgb(89, 89, 89);"><span
  1883. data-custom-class="body_text"><span
  1884. style="color: rgb(0, 58, 250);">
  1885. <bdt class="question"><a
  1886. href="https://art.pcoloring.com/cookies"
  1887. target="_blank"
  1888. data-custom-class="link">https://art.pcoloring.com/cookies</a>
  1889. </bdt>
  1890. </span>.<bdt class="block-component"></bdt><span
  1891. style="font-size: 15px;"><span
  1892. style="color: rgb(89, 89, 89);"><span
  1893. style="font-size: 15px;"><span
  1894. style="color: rgb(89, 89, 89);"><span
  1895. style="font-size: 15px;"><span
  1896. style="color: rgb(89, 89, 89);">
  1897. <bdt class="statement-end-if-in-editor">
  1898. </bdt>
  1899. </span></span></span></span></span></span></span></span></span></span></span></span>
  1900. <bdt class="block-component"><span
  1901. style="font-size: 15px;"><span
  1902. data-custom-class="body_text"></span></span></bdt>
  1903. </div>
  1904. <div style="line-height: 1.5;"><br></div>
  1905. <div style="line-height: 1.5;"><span
  1906. data-custom-class="body_text"><span
  1907. style="font-size: 15px;">If
  1908. you have questions or comments about your privacy rights,
  1909. you
  1910. may email us at <bdt class="question">guoziyun@jccy-tech.com
  1911. </bdt>.</span></span>
  1912. <bdt class="statement-end-if-in-editor"><span
  1913. style="font-size: 15px;"><span
  1914. data-custom-class="body_text"></span></span></bdt>
  1915. </div>
  1916. <div style="line-height: 1.5;"><br></div>
  1917. <div id="DNT" style="line-height: 1.5;"><span
  1918. style="color: rgb(127, 127, 127);"><span
  1919. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1920. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1921. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1922. id="control"
  1923. style="color: rgb(0, 0, 0);"><strong><span
  1924. data-custom-class="heading_1">
  1925. <h2>11. CONTROLS FOR DO-NOT-TRACK FEATURES</h2>
  1926. </span></strong></span></span></span></span></span><span
  1927. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1928. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1929. data-custom-class="body_text">Most web browsers and some
  1930. mobile operating systems and mobile applications include a
  1931. Do-Not-Track (<bdt class="block-component"></bdt>"DNT"<bdt
  1932. class="statement-end-if-in-editor"></bdt>) feature or
  1933. setting you can activate to signal your privacy preference
  1934. not to have data about your online browsing activities
  1935. monitored and collected. At this stage, no uniform
  1936. technology standard for <bdt class="block-component">
  1937. </bdt>
  1938. recognizing<bdt class="statement-end-if-in-editor"></bdt>
  1939. and implementing DNT signals has been <bdt
  1940. class="block-component"></bdt>finalized<bdt
  1941. class="statement-end-if-in-editor"></bdt>. As such, we
  1942. do
  1943. not currently respond to DNT browser signals or any other
  1944. mechanism that automatically communicates your choice not
  1945. to
  1946. be tracked online. If a standard for online tracking is
  1947. adopted that we must follow in the future, we will inform
  1948. you about that practice in a revised version of this
  1949. Privacy
  1950. Notice.</span></span></span>
  1951. <bdt class="block-component"><span
  1952. style="font-size: 15px;"></span></bdt>
  1953. </div>
  1954. <div style="line-height: 1.5;"><span
  1955. style="font-size: 15px;"><br></span></div>
  1956. <div style="line-height: 1.5;"><span
  1957. style="font-size: 15px;"><span
  1958. data-custom-class="body_text">California law requires us to
  1959. let you know how we respond to web browser DNT signals.
  1960. Because there currently is not an industry or legal standard
  1961. for <bdt class="block-component"></bdt>recognizing<bdt
  1962. class="statement-end-if-in-editor"></bdt> or <bdt
  1963. class="block-component"></bdt>honoring<bdt
  1964. class="statement-end-if-in-editor"></bdt> DNT signals, we
  1965. do
  1966. not respond to them at this time.</span></span>
  1967. <bdt class="statement-end-if-in-editor"><span
  1968. style="font-size: 15px;"></span></bdt>
  1969. </div>
  1970. <div style="line-height: 1.5;"><span
  1971. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1972. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1973. data-custom-class="body_text">
  1974. <bdt class="block-component"></bdt>
  1975. </span></span></span></div>
  1976. <div style="line-height: 1.5;"><br></div>
  1977. <div id="uslaws" style="line-height: 1.5;"><span
  1978. style="color: rgb(127, 127, 127);"><span
  1979. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  1980. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1981. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1982. id="control"
  1983. style="color: rgb(0, 0, 0);"><strong><span
  1984. data-custom-class="heading_1">
  1985. <h2>12. DO UNITED STATES RESIDENTS HAVE SPECIFIC
  1986. PRIVACY RIGHTS?</h2>
  1987. </span></strong></span></span></span></span></span><span
  1988. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1989. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  1990. data-custom-class="body_text"><strong><em>In
  1991. Short: </em></strong><em>If you are a resident of<bdt
  1992. class="block-component"></bdt> California, Colorado,
  1993. Connecticut, Delaware, Florida, Indiana, Iowa, Kentucky,
  1994. Minnesota, Montana, Nebraska, New Hampshire, New Jersey,
  1995. Oregon, Tennessee, Texas, Utah, or Virginia<bdt
  1996. class="else-block"></bdt>, you may have the right to
  1997. request access to and receive details about the personal
  1998. information we maintain about you and how we have
  1999. processed it, correct inaccuracies, get a copy of, or
  2000. delete your personal information. You may also have the
  2001. right to withdraw your consent to our processing of your
  2002. personal information. These rights may be limited in
  2003. some
  2004. circumstances by applicable law. More information is
  2005. provided below.</em></span></span><span
  2006. style="font-size: 15px; color: rgb(89, 89, 89);"><strong><span
  2007. data-custom-class="heading_2">
  2008. <h3>Categories of Personal Information We Collect</h3>
  2009. </span></strong></span><span
  2010. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2011. data-custom-class="body_text">We have collected the
  2012. following categories of personal information in the past
  2013. twelve (12) months:</span></span></span></div>
  2014. <div style="line-height: 1.5;"><br></div>
  2015. <table style="width: 100%;">
  2016. <tbody>
  2017. <tr>
  2018. <td
  2019. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2020. <span
  2021. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2022. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2023. data-custom-class="body_text"><strong>Category</strong></span></span></span>
  2024. </td>
  2025. <td
  2026. style="width: 51.4385%; border-top: 1px solid black; border-right: 1px solid black;">
  2027. <span
  2028. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2029. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2030. data-custom-class="body_text"><strong>Examples</strong></span></span></span>
  2031. </td>
  2032. <td
  2033. style="width: 14.9084%; border-right: 1px solid black; border-top: 1px solid black; text-align: center;">
  2034. <span
  2035. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2036. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2037. data-custom-class="body_text"><strong>Collected</strong></span></span></span>
  2038. </td>
  2039. </tr>
  2040. <tr>
  2041. <td
  2042. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2043. <div style="line-height: 1.5;"><span
  2044. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2045. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2046. data-custom-class="body_text">A.
  2047. Identifiers</span></span></span></div>
  2048. </td>
  2049. <td
  2050. style="width: 51.4385%; border-top: 1px solid black; border-right: 1px solid black;">
  2051. <div style="line-height: 1.5;"><span
  2052. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2053. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2054. data-custom-class="body_text">Contact details,
  2055. such
  2056. as real name, alias, postal address, telephone or
  2057. mobile contact number, unique personal identifier,
  2058. online identifier, Internet Protocol address,
  2059. email
  2060. address, and account name</span></span></span>
  2061. </div>
  2062. </td>
  2063. <td
  2064. style="width: 14.9084%; text-align: center; vertical-align: middle; border-right: 1px solid black; border-top: 1px solid black;">
  2065. <div style="line-height: 1.5;"><br></div>
  2066. <div style="line-height: 1.5;"><span
  2067. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2068. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2069. data-custom-class="body_text">
  2070. <bdt class="block-component">
  2071. <bdt class="block-component"></bdt>
  2072. </bdt>NO<bdt class="statement-end-if-in-editor">
  2073. <bdt class="block-component"></bdt>
  2074. </span></span></span></div>
  2075. <div style="line-height: 1.5;"><br></div>
  2076. </td>
  2077. </tr>
  2078. </tbody>
  2079. </table>
  2080. <div style="line-height: 1.5;">
  2081. <bdt class="block-component"></bdt>
  2082. </div>
  2083. <table style="width: 100%;">
  2084. <tbody>
  2085. <tr>
  2086. <td
  2087. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2088. <div style="line-height: 1.5;"><span
  2089. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2090. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2091. data-custom-class="body_text">B. Personal
  2092. information as defined in the California Customer
  2093. Records statute</span></span></span></div>
  2094. </td>
  2095. <td
  2096. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2097. <div style="line-height: 1.5;"><span
  2098. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2099. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2100. data-custom-class="body_text">Name, contact
  2101. information, education, employment, employment
  2102. history, and financial
  2103. information</span></span></span></div>
  2104. </td>
  2105. <td
  2106. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2107. <div style="line-height: 1.5;"><br></div>
  2108. <div style="line-height: 1.5;"><span
  2109. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2110. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2111. data-custom-class="body_text">
  2112. <bdt class="forloop-component">
  2113. <bdt class="block-component">
  2114. <bdt class="block-component">NO<bdt
  2115. class="statement-end-if-in-editor">
  2116. <bdt class="block-component"></bdt>
  2117. </bdt>
  2118. </span></span></span></div>
  2119. <div style="line-height: 1.5;"><br></div>
  2120. </td>
  2121. </tr>
  2122. </tbody>
  2123. </table>
  2124. <div style="line-height: 1.5;">
  2125. <bdt class="block-component"></bdt>
  2126. </div>
  2127. <table style="width: 100%;">
  2128. <tbody>
  2129. <tr>
  2130. <td
  2131. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2132. <div style="line-height: 1.5;"><span
  2133. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2134. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2135. data-custom-class="body_text">
  2136. <bdt class="block-component"></bdt>C<bdt
  2137. class="else-block"></bdt>. Protected
  2138. classification characteristics under state or
  2139. federal law
  2140. </span></span></span></div>
  2141. </td>
  2142. <td
  2143. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2144. <div style="line-height: 1.5;"><span
  2145. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2146. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2147. data-custom-class="body_text">Gender, age, date of
  2148. birth, race and ethnicity, national origin,
  2149. marital
  2150. status, and other demographic
  2151. data</span></span></span></div>
  2152. </td>
  2153. <td
  2154. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2155. <div style="line-height: 1.5;"><br></div>
  2156. <div data-custom-class="body_text"
  2157. style="line-height: 1.5;">
  2158. <bdt class="forloop-component"><span
  2159. data-custom-class="body_text">
  2160. <bdt class="block-component"></bdt>
  2161. <bdt class="block-component"></bdt>NO<bdt
  2162. class="statement-end-if-in-editor"></bdt>
  2163. <bdt class="block-component">
  2164. </span></bdt>
  2165. </div>
  2166. <div style="line-height: 1.5;"><br></div>
  2167. </td>
  2168. </tr>
  2169. <tr>
  2170. <td
  2171. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2172. <div style="line-height: 1.5;"><span
  2173. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2174. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2175. data-custom-class="body_text">
  2176. <bdt class="block-component"></bdt>D<bdt
  2177. class="else-block"></bdt>. Commercial
  2178. information
  2179. </span></span></span></div>
  2180. </td>
  2181. <td
  2182. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2183. <div style="line-height: 1.5;"><span
  2184. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2185. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2186. data-custom-class="body_text">Transaction
  2187. information, purchase history, financial details,
  2188. and payment information</span></span></span></div>
  2189. </td>
  2190. <td
  2191. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2192. <div style="line-height: 1.5;"><br></div>
  2193. <div data-custom-class="body_text"
  2194. style="line-height: 1.5;">
  2195. <bdt class="forloop-component"><span
  2196. data-custom-class="body_text">
  2197. <bdt class="block-component"></bdt>
  2198. <bdt class="block-component"></bdt>NO<bdt
  2199. class="statement-end-if-in-editor">
  2200. <bdt class="block-component">
  2201. </span></bdt>
  2202. </div>
  2203. <div style="line-height: 1.5;"><br></div>
  2204. </td>
  2205. </tr>
  2206. <tr>
  2207. <td
  2208. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2209. <div style="line-height: 1.5;"><span
  2210. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2211. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2212. data-custom-class="body_text">
  2213. <bdt class="block-component"></bdt>E<bdt
  2214. class="else-block"></bdt>. Biometric information
  2215. </span></span></span></div>
  2216. </td>
  2217. <td
  2218. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2219. <div style="line-height: 1.5;"><span
  2220. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2221. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2222. data-custom-class="body_text">Fingerprints and
  2223. voiceprints</span></span></span></div>
  2224. </td>
  2225. <td
  2226. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2227. <div style="line-height: 1.5;"><br></div>
  2228. <div data-custom-class="body_text"
  2229. style="line-height: 1.5;">
  2230. <bdt class="forloop-component"><span
  2231. data-custom-class="body_text">
  2232. <bdt class="block-component">
  2233. <bdt class="block-component">NO</bdt>
  2234. <bdt class="statement-end-if-in-editor"></bdt>
  2235. <bdt class="block-component">
  2236. </span></bdt>
  2237. </div>
  2238. <div style="line-height: 1.5;"><br></div>
  2239. </td>
  2240. </tr>
  2241. <tr>
  2242. <td
  2243. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2244. <div style="line-height: 1.5;"><span
  2245. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2246. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2247. data-custom-class="body_text">
  2248. <bdt class="block-component"></bdt>F<bdt
  2249. class="else-block"></bdt>. Internet or other
  2250. similar network activity
  2251. </span></span></span></div>
  2252. </td>
  2253. <td
  2254. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2255. <div style="line-height: 1.5;"><span
  2256. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2257. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2258. data-custom-class="body_text">Browsing history,
  2259. search history, online <bdt
  2260. class="block-component">
  2261. </bdt>behavior<bdt
  2262. class="statement-end-if-in-editor"></bdt>,
  2263. interest data, and interactions with our and other
  2264. websites, applications, systems, and
  2265. advertisements</span></span></span></div>
  2266. </td>
  2267. <td
  2268. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2269. <div style="line-height: 1.5;"><br></div>
  2270. <div data-custom-class="body_text"
  2271. style="line-height: 1.5;">
  2272. <bdt class="forloop-component"><span
  2273. data-custom-class="body_text">
  2274. <bdt class="block-component"></bdt>
  2275. <bdt class="block-component"></bdt>NO<bdt
  2276. class="statement-end-if-in-editor"></bdt>
  2277. <bdt class="block-component">
  2278. </span></bdt>
  2279. </div>
  2280. <div style="line-height: 1.5;"><br></div>
  2281. </td>
  2282. </tr>
  2283. <tr>
  2284. <td
  2285. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2286. <div style="line-height: 1.5;"><span
  2287. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2288. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2289. data-custom-class="body_text">
  2290. <bdt class="block-component"></bdt>G<bdt
  2291. class="else-block"></bdt>. Geolocation data
  2292. </span></span></span></div>
  2293. </td>
  2294. <td
  2295. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2296. <div style="line-height: 1.5;"><span
  2297. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2298. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2299. data-custom-class="body_text">Device
  2300. location</span></span></span></div>
  2301. </td>
  2302. <td
  2303. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2304. <div style="line-height: 1.5;"><br></div>
  2305. <div data-custom-class="body_text"
  2306. style="line-height: 1.5;">
  2307. <bdt class="forloop-component"><span
  2308. data-custom-class="body_text">
  2309. <bdt class="block-component"></bdt>
  2310. <bdt class="block-component"></bdt>NO<bdt
  2311. class="statement-end-if-in-editor"></bdt>
  2312. <bdt class="block-component">
  2313. </span></bdt>
  2314. </div>
  2315. <div style="line-height: 1.5;"><br></div>
  2316. </td>
  2317. </tr>
  2318. <tr>
  2319. <td
  2320. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2321. <div style="line-height: 1.5;"><span
  2322. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2323. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2324. data-custom-class="body_text">
  2325. <bdt class="block-component"></bdt>H<bdt
  2326. class="else-block"></bdt>. Audio, electronic,
  2327. sensory, or similar information
  2328. </span></span></span></div>
  2329. </td>
  2330. <td
  2331. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2332. <div style="line-height: 1.5;"><span
  2333. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2334. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2335. data-custom-class="body_text">Images and audio,
  2336. video or call recordings created in connection
  2337. with
  2338. our business activities</span></span></span></div>
  2339. </td>
  2340. <td
  2341. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2342. <div style="line-height: 1.5;"><br></div>
  2343. <div data-custom-class="body_text"
  2344. style="line-height: 1.5;">
  2345. <bdt class="forloop-component"><span
  2346. data-custom-class="body_text">
  2347. <bdt class="block-component"></bdt>
  2348. <bdt class="block-component"></bdt>NO<bdt
  2349. class="statement-end-if-in-editor"></bdt>
  2350. <bdt class="block-component">
  2351. </span></bdt>
  2352. </div>
  2353. <div style="line-height: 1.5;"><br></div>
  2354. </td>
  2355. </tr>
  2356. <tr>
  2357. <td
  2358. style="width: 33.8274%; border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black;">
  2359. <div style="line-height: 1.5;"><span
  2360. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2361. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2362. data-custom-class="body_text">
  2363. <bdt class="block-component"></bdt>I<bdt
  2364. class="else-block"></bdt>. Professional or
  2365. employment-related information
  2366. </span></span></span></div>
  2367. </td>
  2368. <td
  2369. style="width: 51.4385%; border-right: 1px solid black; border-top: 1px solid black;">
  2370. <div style="line-height: 1.5;"><span
  2371. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2372. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2373. data-custom-class="body_text">Business contact
  2374. details in order to provide you our Services at a
  2375. business level or job title, work history, and
  2376. professional qualifications if you apply for a job
  2377. with us</span></span></span></div>
  2378. </td>
  2379. <td
  2380. style="width: 14.9084%; text-align: center; border-right: 1px solid black; border-top: 1px solid black;">
  2381. <div style="line-height: 1.5;"><br></div>
  2382. <div data-custom-class="body_text"
  2383. style="line-height: 1.5;">
  2384. <bdt class="forloop-component"><span
  2385. data-custom-class="body_text">
  2386. <bdt class="block-component"></bdt>
  2387. <bdt class="block-component"></bdt>NO<bdt
  2388. class="statement-end-if-in-editor"></bdt>
  2389. <bdt class="block-component">
  2390. </span></bdt>
  2391. </div>
  2392. <div style="line-height: 1.5;"><br></div>
  2393. </td>
  2394. </tr>
  2395. <tr>
  2396. <td
  2397. style="border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black; width: 33.8274%;">
  2398. <div style="line-height: 1.5;"><span
  2399. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2400. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2401. data-custom-class="body_text">
  2402. <bdt class="block-component"></bdt>J<bdt
  2403. class="else-block"></bdt>. Education Information
  2404. </span></span></span></div>
  2405. </td>
  2406. <td
  2407. style="border-right: 1px solid black; border-top: 1px solid black; width: 51.4385%;">
  2408. <div style="line-height: 1.5;"><span
  2409. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2410. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2411. data-custom-class="body_text">Student records and
  2412. directory information</span></span></span></div>
  2413. </td>
  2414. <td
  2415. style="text-align: center; border-right: 1px solid black; border-top: 1px solid black; width: 14.9084%;">
  2416. <div style="line-height: 1.5;"><br></div>
  2417. <div data-custom-class="body_text"
  2418. style="line-height: 1.5;">
  2419. <bdt class="forloop-component"><span
  2420. data-custom-class="body_text">
  2421. <bdt class="block-component"></bdt>
  2422. <bdt class="block-component"></bdt>NO<bdt
  2423. class="statement-end-if-in-editor"></bdt>
  2424. <bdt class="block-component">
  2425. </span></bdt>
  2426. </div>
  2427. <div style="line-height: 1.5;"><br></div>
  2428. </td>
  2429. </tr>
  2430. <tr>
  2431. <td
  2432. style="border-width: 1px; border-color: black; border-style: solid; width: 33.8274%;">
  2433. <div style="line-height: 1.5;"><span
  2434. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2435. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2436. data-custom-class="body_text">
  2437. <bdt class="block-component"></bdt>K<bdt
  2438. class="else-block"></bdt>. Inferences drawn from
  2439. collected personal information
  2440. </span></span></span></div>
  2441. </td>
  2442. <td
  2443. style="border-bottom: 1px solid black; border-top: 1px solid black; border-right: 1px solid black; width: 51.4385%;">
  2444. <div style="line-height: 1.5;"><span
  2445. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2446. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2447. data-custom-class="body_text">Inferences drawn
  2448. from
  2449. any of the collected personal information listed
  2450. above to create a profile or summary about, for
  2451. example, an individual’s preferences and
  2452. characteristics</span></span></span></div>
  2453. </td>
  2454. <td
  2455. style="text-align: center; border-right: 1px solid black; border-bottom: 1px solid black; border-top: 1px solid black; width: 14.9084%;">
  2456. <div style="line-height: 1.5;"><br></div>
  2457. <div data-custom-class="body_text"
  2458. style="line-height: 1.5;"><span
  2459. data-custom-class="body_text">
  2460. <bdt class="block-component"></bdt>NO<span
  2461. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2462. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2463. data-custom-class="body_text"><span
  2464. style="color: rgb(89, 89, 89);"><span
  2465. data-custom-class="body_text">
  2466. <bdt class="statement-end-if-in-editor">
  2467. </bdt>
  2468. </span></span></span></span></span>
  2469. </span></span></span></div>
  2470. <div style="line-height: 1.5;"><br></div>
  2471. </td>
  2472. </tr>
  2473. <tr>
  2474. <td
  2475. style="border-left: 1px solid black; border-right: 1px solid black; border-bottom: 1px solid black; line-height: 1.5;">
  2476. <span data-custom-class="body_text">
  2477. <bdt class="block-component"></bdt>L<bdt
  2478. class="else-block"></bdt>. Sensitive personal
  2479. Information
  2480. </span>
  2481. </td>
  2482. <td
  2483. style="border-right: 1px solid black; border-bottom: 1px solid black; line-height: 1.5;">
  2484. <bdt class="block-component"><span
  2485. data-custom-class="body_text"></span></bdt>
  2486. </td>
  2487. <td
  2488. style="border-right: 1px solid black; border-bottom: 1px solid black;">
  2489. <div data-empty="true" style="text-align: center;"><br>
  2490. </div>
  2491. <div data-custom-class="body_text" data-empty="true"
  2492. style="text-align: center; line-height: 1.5;">
  2493. <bdt class="block-component"><span
  2494. data-custom-class="body_text"></bdt>NO</span>
  2495. <bdt class="statement-end-if-in-editor"><span
  2496. data-custom-class="body_text"></span></bdt>
  2497. </div>
  2498. <div data-empty="true" style="text-align: center;"><br>
  2499. </div>
  2500. </td>
  2501. </tr>
  2502. </tbody>
  2503. </table>
  2504. <div style="line-height: 1.5;">
  2505. <bdt class="block-component"><span style="font-size: 15px;">
  2506. </bdt>
  2507. </span>
  2508. </div>
  2509. <div style="line-height: 1.5;"><br></div>
  2510. <div style="line-height: 1.5;"><span
  2511. style="font-size: 15px;"><span
  2512. data-custom-class="body_text">We may also collect other
  2513. personal information outside of these categories through
  2514. instances where you interact with us in person, online, or
  2515. by
  2516. phone or mail in the context of:</span>
  2517. <bdt class="block-component"></bdt>
  2518. </span></div>
  2519. <ul>
  2520. <li data-custom-class="body_text" style="line-height: 1.5;">
  2521. <span style="font-size: 15px;">Receiving help through our
  2522. customer
  2523. support channels;<bdt class="statement-end-if-in-editor">
  2524. </bdt></span></li>
  2525. </ul>
  2526. <div><span style="font-size: 15px;">
  2527. <bdt class="block-component"></bdt>
  2528. </span></div>
  2529. <ul>
  2530. <li data-custom-class="body_text"><span
  2531. style="font-size: 15px;">Participation in customer surveys
  2532. or
  2533. contests; and<bdt class="statement-end-if-in-editor"></bdt>
  2534. </span></li>
  2535. </ul>
  2536. <div><span style="font-size: 15px;">
  2537. <bdt class="block-component"></bdt>
  2538. </span></div>
  2539. <ul>
  2540. <li data-custom-class="body_text"><span
  2541. style="font-size: 15px;">Facilitation in the delivery of our
  2542. Services and to respond to your inquiries.</span>
  2543. <bdt class="statement-end-if-in-editor"><span
  2544. style="font-size: 15px;"></span></bdt>
  2545. </li>
  2546. </ul>
  2547. <div style="line-height: 1.5;">
  2548. <bdt class="block-component"><span
  2549. data-custom-class="body_text"></span></bdt><span
  2550. data-custom-class="body_text">We will use and retain the
  2551. collected personal information as needed to provide the
  2552. Services
  2553. or for:<bdt class="block-component"></bdt></span></li>
  2554. </ul>
  2555. <div style="line-height: 1.5;"><span
  2556. data-custom-class="body_text">
  2557. <bdt class="block-component">
  2558. <bdt class="block-component"></bdt>
  2559. </bdt>
  2560. </span></li>
  2561. </ul>
  2562. <div style="line-height: 1.5;"><span
  2563. data-custom-class="body_text">
  2564. <bdt class="block-component"></bdt>
  2565. </span></li>
  2566. </ul>
  2567. <div style="line-height: 1.5;"><span
  2568. data-custom-class="body_text">
  2569. <bdt class="block-component"></bdt>
  2570. </span></li>
  2571. </ul>
  2572. <div style="line-height: 1.5;"><span
  2573. data-custom-class="body_text">
  2574. <bdt class="block-component"></bdt>
  2575. </span></li>
  2576. </ul>
  2577. <div style="line-height: 1.5;"><span
  2578. data-custom-class="body_text">
  2579. <bdt class="block-component"></bdt>
  2580. </span></li>
  2581. </ul>
  2582. <div style="line-height: 1.5;"><span
  2583. data-custom-class="body_text">
  2584. <bdt class="block-component"></bdt>
  2585. </span></li>
  2586. </ul>
  2587. <div style="line-height: 1.5;"><span
  2588. data-custom-class="body_text">
  2589. <bdt class="block-component"></bdt>
  2590. </span></div>
  2591. <ul>
  2592. <li data-custom-class="body_text"
  2593. style="line-height: 1.5;"><span
  2594. data-custom-class="body_text">Category <bdt
  2595. class="block-component"></bdt>H<bdt
  2596. class="else-block"></bdt> - <bdt
  2597. class="question">never</bdt>
  2598. <bdt class="statement-end-if-in-editor"></bdt>
  2599. </span></li>
  2600. </ul>
  2601. <div style="line-height: 1.5;"><span
  2602. data-custom-class="body_text">
  2603. <bdt class="block-component"></bdt>
  2604. </span></li>
  2605. </ul>
  2606. <div style="line-height: 1.5;"><span
  2607. data-custom-class="body_text">
  2608. <bdt class="block-component"></bdt>
  2609. </span></li>
  2610. </ul>
  2611. <div style="line-height: 1.5;"><span
  2612. data-custom-class="body_text">
  2613. <bdt class="block-component"></bdt>
  2614. </span></li>
  2615. </ul>
  2616. <div style="line-height: 1.5;"><span
  2617. data-custom-class="body_text">
  2618. <bdt class="block-component"></bdt>
  2619. </span>
  2620. <bdt class="statement-end-if-in-editor">
  2621. <span
  2622. data-custom-class="body_text"></span>
  2623. </bdt>
  2624. </li>
  2625. </ul>
  2626. <div style="line-height: 1.5;"><strong><span
  2627. style="font-size: 15px;"><span
  2628. data-custom-class="heading_2">
  2629. <h3>Sources of Personal Information
  2630. </h3>
  2631. </span></span></strong><span
  2632. style="font-size: 15px;"><span
  2633. data-custom-class="body_text">Learn
  2634. more
  2635. about the sources of personal
  2636. information we collect in <bdt
  2637. class="block-component"></bdt>"<bdt
  2638. class="statement-end-if-in-editor">
  2639. </bdt></span></span><span
  2640. data-custom-class="body_text"><a
  2641. data-custom-class="link"
  2642. href="#infocollect"><span
  2643. style="color: rgb (0, 58, 250); font-size: 15px;">WHAT
  2644. INFORMATION DO WE
  2645. COLLECT?</span></a></span><span
  2646. style="font-size: 15px;"><span
  2647. data-custom-class="body_text">
  2648. <bdt class="block-component"></bdt>"
  2649. </span>
  2650. <bdt class="statement-end-if-in-editor">
  2651. <span
  2652. data-custom-class="body_text"></span>
  2653. </bdt>
  2654. </span><span
  2655. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2656. style="font-size: 15px; color: rgb(89, 89, 89);"><strong><span
  2657. data-custom-class="heading_2">
  2658. <h3>How We Use and Share Personal
  2659. Information</h3>
  2660. </span></strong></span></span><span
  2661. data-custom-class="body_text"
  2662. style="font-size: 15px;">
  2663. <bdt class="block-component"></bdt>Learn
  2664. more about how we use your personal
  2665. information in the section, <bdt
  2666. class="block-component"></bdt>"<bdt
  2667. class="statement-end-if-in-editor">
  2668. </bdt>
  2669. </span><a data-custom-class="link"
  2670. href="#infouse"><span
  2671. style="color: rgb(0, 58, 250); font-size: 15px;">HOW
  2672. DO WE PROCESS YOUR
  2673. INFORMATION?</span></a><span
  2674. data-custom-class="body_text"
  2675. style="font-size: 15px;">
  2676. <bdt class="block-component"></bdt>"
  2677. </span>
  2678. <bdt class="statement-end-if-in-editor">
  2679. <span data-custom-class="body_text"
  2680. style="font-size: 15px;"></span>
  2681. </bdt>
  2682. </div>
  2683. <div style="line-height: 1.5;"><br></div>
  2684. <div style="line-height: 1.5;"><span
  2685. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2686. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2687. data-custom-class="body_text"><span
  2688. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  2689. data-custom-class="body_text">
  2690. <bdt class="block-component">
  2691. </bdt>
  2692. </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
  2693. </bdt>
  2694. </bdt></span></span></div>
  2695. <div style="line-height: 1.5;"><span
  2696. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2697. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2698. data-custom-class="body_text"><strong>Will
  2699. your information be shared with
  2700. anyone
  2701. else?</strong></span></span></span>
  2702. </div>
  2703. <div style="line-height: 1.5;"><br></div>
  2704. <div style="line-height: 1.5;"><span
  2705. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2706. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2707. data-custom-class="body_text">We may
  2708. disclose your personal information
  2709. with our service providers pursuant
  2710. to
  2711. a written contract between us and
  2712. each
  2713. service provider. Learn more about
  2714. how
  2715. we disclose personal information to
  2716. in
  2717. the section, <bdt
  2718. class="block-component"></bdt>"
  2719. <bdt
  2720. class="statement-end-if-in-editor">
  2721. </bdt></span></span></span><a
  2722. data-custom-class="link"
  2723. href="#whoshare"><span
  2724. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  2725. style="font-size: 15px; color: rgb(0, 58, 250);">WHEN
  2726. AND WITH WHOM DO WE SHARE YOUR
  2727. PERSONAL
  2728. INFORMATION?</span></span></a><span
  2729. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2730. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2731. data-custom-class="body_text">
  2732. <bdt class="block-component"></bdt>"
  2733. <bdt
  2734. class="statement-end-if-in-editor">
  2735. </bdt>
  2736. </span></span></span></div>
  2737. <div style="line-height: 1.5;"><br></div>
  2738. <div style="line-height: 1.5;"><span
  2739. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2740. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2741. data-custom-class="body_text">We may
  2742. use your personal information for
  2743. our
  2744. own business purposes, such as for
  2745. undertaking internal research for
  2746. technological development and
  2747. demonstration. This is not
  2748. considered
  2749. to be <bdt class="block-component">
  2750. </bdt>"selling"<bdt
  2751. class="statement-end-if-in-editor">
  2752. </bdt> of your personal
  2753. information.<span
  2754. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  2755. data-custom-class="body_text">
  2756. <bdt class="block-component">
  2757. </bdt>
  2758. </span></span></span></span></span>
  2759. </div>
  2760. <div style="line-height: 1.5;"><br></div>
  2761. <div style="line-height: 1.5;"><span
  2762. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2763. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  2764. data-custom-class="body_text">We
  2765. have
  2766. not disclosed, sold, or shared any
  2767. personal information to third
  2768. parties
  2769. for a business or commercial purpose
  2770. in the preceding twelve (12) months.
  2771. We<span
  2772. style="color: rgb(89, 89, 89);"> </span>will
  2773. not sell or share personal
  2774. information
  2775. in the future belonging to website
  2776. visitors, users, and other
  2777. consumers.<span
  2778. style="color: rgb(89, 89, 89);"><span
  2779. data-custom-class="body_text"><span
  2780. style="color: rgb(89, 89, 89);"><span
  2781. data-custom-class="body_text"><span
  2782. style="color: rgb(89, 89, 89);"><span
  2783. data-custom-class="body_text">
  2784. <bdt
  2785. class="statement-end-if-in-editor">
  2786. </bdt>
  2787. </span></span></span></span>
  2788. <bdt class="block-component">
  2789. </bdt>
  2790. </span></span></span></span></span></span></span></span></span>
  2791. </bdt>
  2792. </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span><span
  2793. data-custom-class="body_text"><span
  2794. style="color: rgb(0, 0, 0);"><span
  2795. data-custom-class="body_text">
  2796. <bdt class="block-component"></bdt>
  2797. </span></span></span></span></span><span
  2798. style="font-size: 15px;"><strong><span
  2799. data-custom-class="heading_2">
  2800. <h3>Your Rights</h3>
  2801. </span></strong><span
  2802. data-custom-class="body_text">You have
  2803. rights under certain US state data
  2804. protection laws. However, these rights
  2805. are not absolute, and in certain
  2806. cases,
  2807. we may decline your request as
  2808. permitted
  2809. by law. These rights include:</span>
  2810. <bdt class="block-component"></bdt>
  2811. </span></div>
  2812. <ul>
  2813. <li data-custom-class="body_text"
  2814. style="line-height: 1.5;"><span
  2815. style="font-size: 15px;"><strong>Right
  2816. to know</strong> whether or not we
  2817. are
  2818. processing your personal data<bdt
  2819. class="statement-end-if-in-editor">
  2820. </bdt></span></li>
  2821. </ul>
  2822. <div style="line-height: 1.5;"><span
  2823. style="font-size: 15px;">
  2824. <bdt class="block-component"></bdt>
  2825. </span></div>
  2826. <ul>
  2827. <li data-custom-class="body_text"
  2828. style="line-height: 1.5;"><span
  2829. style="font-size: 15px;"><strong>Right
  2830. to access </strong>your personal
  2831. data
  2832. <bdt
  2833. class="statement-end-if-in-editor">
  2834. </bdt>
  2835. </span></li>
  2836. </ul>
  2837. <div style="line-height: 1.5;"><span
  2838. style="font-size: 15px;">
  2839. <bdt class="block-component"></bdt>
  2840. </span></div>
  2841. <ul>
  2842. <li data-custom-class="body_text"
  2843. style="line-height: 1.5;"><span
  2844. style="font-size: 15px;"><strong>Right
  2845. to correct </strong>inaccuracies in
  2846. your personal data<bdt
  2847. class="statement-end-if-in-editor">
  2848. </bdt></span></li>
  2849. </ul>
  2850. <div style="line-height: 1.5;"><span
  2851. style="font-size: 15px;">
  2852. <bdt class="block-component"></bdt>
  2853. </span></div>
  2854. <ul>
  2855. <li data-custom-class="body_text"
  2856. style="line-height: 1.5;"><span
  2857. style="font-size: 15px;"><strong>Right
  2858. to request</strong> the deletion of
  2859. your personal data<bdt
  2860. class="statement-end-if-in-editor">
  2861. </bdt></span></li>
  2862. </ul>
  2863. <div style="line-height: 1.5;"><span
  2864. style="font-size: 15px;">
  2865. <bdt class="block-component"></bdt>
  2866. </span></div>
  2867. <ul>
  2868. <li data-custom-class="body_text"
  2869. style="line-height: 1.5;"><span
  2870. style="font-size: 15px;"><strong>Right
  2871. to obtain a copy </strong>of the
  2872. personal data you previously shared
  2873. with
  2874. us<bdt
  2875. class="statement-end-if-in-editor">
  2876. </bdt></span></li>
  2877. </ul>
  2878. <div style="line-height: 1.5;"><span
  2879. style="font-size: 15px;">
  2880. <bdt class="block-component"></bdt>
  2881. </span></div>
  2882. <ul>
  2883. <li data-custom-class="body_text"
  2884. style="line-height: 1.5;"><span
  2885. style="font-size: 15px;"><strong>Right
  2886. to non-discrimination</strong> for
  2887. exercising your rights<bdt
  2888. class="statement-end-if-in-editor">
  2889. </bdt></span></li>
  2890. </ul>
  2891. <div style="line-height: 1.5;"><span
  2892. style="font-size: 15px;">
  2893. <bdt class="block-component"></bdt>
  2894. </span></div>
  2895. <ul>
  2896. <li data-custom-class="body_text"
  2897. style="line-height: 1.5;"><span
  2898. style="font-size: 15px;"><strong>Right
  2899. to opt out</strong> of the
  2900. processing
  2901. of your personal data if it is used
  2902. for
  2903. targeted advertising<bdt
  2904. class="block-component"></bdt> (or
  2905. sharing as defined under California’s
  2906. privacy law)<bdt
  2907. class="statement-end-if-in-editor">
  2908. </bdt>, the sale of personal data, or
  2909. profiling in furtherance of decisions
  2910. that produce legal or similarly
  2911. significant effects (<bdt
  2912. class="block-component"></bdt>
  2913. "profiling"<bdt
  2914. class="statement-end-if-in-editor">
  2915. </bdt>)<bdt
  2916. class="statement-end-if-in-editor">
  2917. </bdt></span></li>
  2918. </ul>
  2919. <div style="line-height: 1.5;"><span
  2920. style="font-size: 15px;">
  2921. <bdt class="block-component"></bdt>
  2922. </span></div>
  2923. <div style="line-height: 1.5;"><span
  2924. style="font-size: 15px;"><span
  2925. data-custom-class="body_text">Depending
  2926. upon the state where you live, you may
  2927. also have the following rights:</span>
  2928. <bdt class="block-component"></bdt>
  2929. </span></div>
  2930. <ul>
  2931. <li data-custom-class="body_text"
  2932. style="line-height: 1.5;"><span
  2933. style="font-size: 15px;">Right to
  2934. access
  2935. the categories of personal data being
  2936. processed (as permitted by applicable
  2937. law, including Minnesota’s privacy
  2938. law)
  2939. <bdt
  2940. class="statement-end-if-in-editor">
  2941. </bdt>
  2942. </span></li>
  2943. </ul>
  2944. <div style="line-height: 1.5;"><span
  2945. style="font-size: 15px;">
  2946. <bdt class="block-component"></bdt>
  2947. </span></div>
  2948. <ul>
  2949. <li data-custom-class="body_text"
  2950. style="line-height: 1.5;"><span
  2951. style="font-size: 15px;">Right to
  2952. obtain
  2953. a list of the categories of third
  2954. parties to which we have disclosed
  2955. personal data (as permitted by
  2956. applicable law, including<bdt
  2957. class="block-component"></bdt>
  2958. California's and Delaware's<bdt
  2959. class="else-block"></bdt> privacy
  2960. law)
  2961. <bdt
  2962. class="statement-end-if-in-editor">
  2963. </bdt>
  2964. </span></li>
  2965. </ul>
  2966. <div style="line-height: 1.5;">
  2967. <bdt class="block-component"><span
  2968. style="font-size: 15px;"></span></bdt>
  2969. </div>
  2970. <ul>
  2971. <li data-custom-class="body_text"
  2972. style="line-height: 1.5;"><span
  2973. style="font-size: 15px;">Right to
  2974. obtain
  2975. a list of specific third parties to
  2976. which we have disclosed personal data
  2977. (as permitted by applicable law,
  2978. including<bdt class="block-component">
  2979. </bdt> Minnesota's and Oregon's<bdt
  2980. class="else-block"></bdt> privacy
  2981. law)</span>
  2982. <bdt class="statement-end-if-in-editor">
  2983. <span style="font-size: 15px;"></span>
  2984. </bdt>
  2985. </li>
  2986. </ul>
  2987. <div style="line-height: 1.5;"><span
  2988. style="font-size: 15px;">
  2989. <bdt class="block-component"></bdt>
  2990. </span></div>
  2991. <ul>
  2992. <li data-custom-class="body_text"
  2993. style="line-height: 1.5;"><span
  2994. style="font-size: 15px;">Right to
  2995. review, understand, question, and
  2996. correct how personal data has been
  2997. profiled (as permitted by applicable
  2998. law, including Minnesota’s privacy
  2999. law)
  3000. <bdt
  3001. class="statement-end-if-in-editor">
  3002. </bdt>
  3003. </span></li>
  3004. </ul>
  3005. <div style="line-height: 1.5;">
  3006. <bdt class="block-component"><span
  3007. style="font-size: 15px;"></span></bdt>
  3008. </div>
  3009. <ul>
  3010. <li data-custom-class="body_text"
  3011. style="line-height: 1.5;"><span
  3012. style="font-size: 15px;">Right to
  3013. limit
  3014. use and disclosure of sensitive
  3015. personal
  3016. data (as permitted by applicable law,
  3017. including California’s privacy
  3018. law)</span>
  3019. <bdt class="statement-end-if-in-editor">
  3020. <span style="font-size: 15px;"></span>
  3021. </bdt>
  3022. </li>
  3023. </ul>
  3024. <div style="line-height: 1.5;">
  3025. <bdt class="block-component"><span
  3026. style="font-size: 15px;"></span></bdt>
  3027. </div>
  3028. <ul>
  3029. <li data-custom-class="body_text"
  3030. style="line-height: 1.5;"><span
  3031. style="font-size: 15px;">Right to opt
  3032. out of the collection of sensitive
  3033. data
  3034. and personal data collected through
  3035. the
  3036. operation of a voice or facial
  3037. recognition feature (as permitted by
  3038. applicable law, including Florida’s
  3039. privacy law)</span>
  3040. <bdt class="statement-end-if-in-editor">
  3041. <span style="font-size: 15px;"></span>
  3042. </bdt>
  3043. </li>
  3044. </ul>
  3045. <div style="line-height: 1.5;"><span
  3046. style="font-size: 15px;">
  3047. <bdt class="statement-end-if-in-editor">
  3048. </bdt>
  3049. </span><strong><span
  3050. style="font-size: 15px;"><span
  3051. data-custom-class="heading_2">
  3052. <h3>How to Exercise Your Rights</h3>
  3053. </span></span></strong><span
  3054. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3055. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3056. data-custom-class="body_text">To
  3057. exercise these rights, you can
  3058. contact
  3059. us <bdt class="block-component">
  3060. </bdt>
  3061. by submitting
  3062. a </span></span></span><a
  3063. data-custom-class="link"
  3064. href="https://app.termly.io/notify/a8656edc-d147-407e-96ee-505826c51831"
  3065. rel="noopener noreferrer"
  3066. target="_blank"><span
  3067. style="font-size: 15px; color: rgb(0, 58, 250);"><span
  3068. style="font-size: 15px; color: rgb(0, 58, 250);">data
  3069. subject access
  3070. request</span></span></a><span
  3071. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3072. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3073. data-custom-class="body_text">, <bdt
  3074. class="block-component"></bdt>
  3075. </span><span
  3076. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3077. data-custom-class="body_text"><span
  3078. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3079. data-custom-class="body_text">
  3080. <bdt class="block-component">
  3081. </bdt>by emailing us at <bdt
  3082. class="question">
  3083. icolor_support@jccy-tech.com
  3084. </bdt>, <bdt
  3085. class="statement-end-if-in-editor">
  3086. </bdt>
  3087. <bdt class="block-component">
  3088. </bdt>
  3089. </span><span
  3090. data-custom-class="body_text">
  3091. <bdt class="block-component">
  3092. </bdt>
  3093. <bdt class="block-component">
  3094. <span
  3095. data-custom-class="body_text">
  3096. <bdt
  3097. class="block-component">
  3098. </bdt>
  3099. </bdt>
  3100. </span></span></span></span></span></span></span></span></span></span></span></span><span
  3101. data-custom-class="body_text">or by
  3102. referring to the contact details at the
  3103. bottom of this
  3104. document.</span></span></span>
  3105. <bdt class="block-component"><span
  3106. style="font-size: 15px;"></span></bdt>
  3107. <bdt class="block-component"><span
  3108. style="font-size: 15px;"></span></bdt>
  3109. </div>
  3110. <div style="line-height: 1.5;"><span
  3111. style="font-size: 15px;"><br></span>
  3112. </div>
  3113. <div style="line-height: 1.5;"><span
  3114. style="font-size: 15px;"><span
  3115. data-custom-class="body_text">We will
  3116. <bdt class="block-component"></bdt>
  3117. honor
  3118. <bdt
  3119. class="statement-end-if-in-editor">
  3120. </bdt> your opt-out preferences if you
  3121. enact the 
  3122. </span></span><span
  3123. data-custom-class="body_text"><a
  3124. data-custom-class="link"
  3125. href="https://globalprivacycontrol.org/"
  3126. rel="noopener noreferrer"
  3127. target="_blank"><span
  3128. style="color: rgb(0, 58, 250); font-size: 15px;">Global
  3129. Privacy
  3130. Control</span></a></span><span
  3131. style="font-size: 15px;"><span
  3132. data-custom-class="body_text"> (GPC)
  3133. opt-out signal on your
  3134. browser.</span></span>
  3135. <bdt class="statement-end-if-in-editor">
  3136. <span style="font-size: 15px;"></span>
  3137. </bdt>
  3138. </div>
  3139. <div style="line-height: 1.5;"><br></div>
  3140. <div style="line-height: 1.5;"><span
  3141. style="font-size: 15px;"><span
  3142. data-custom-class="body_text">Under
  3143. certain US state data protection laws,
  3144. you can designate an <bdt
  3145. class="block-component"></bdt>
  3146. authorized<bdt
  3147. class="statement-end-if-in-editor">
  3148. </bdt> agent to make a request on your
  3149. behalf. We may deny a request from an
  3150. <bdt class="block-component"></bdt>
  3151. authorized<bdt
  3152. class="statement-end-if-in-editor">
  3153. </bdt> agent that does not submit
  3154. proof
  3155. that they have been validly <bdt
  3156. class="block-component"></bdt>
  3157. authorized<bdt
  3158. class="statement-end-if-in-editor">
  3159. </bdt> to act on your behalf in
  3160. accordance with applicable
  3161. laws.
  3162. </span><br><strong><span
  3163. data-custom-class="heading_2">
  3164. <h3>Request Verification</h3>
  3165. </span></strong><span
  3166. data-custom-class="body_text">Upon
  3167. receiving your request, we will need
  3168. to
  3169. verify your identity to determine you
  3170. are the same person about whom we have
  3171. the information in our system. We will
  3172. only use personal information provided
  3173. in your request to verify your
  3174. identity
  3175. or authority to make the request.
  3176. However, if we cannot verify your
  3177. identity from the information already
  3178. maintained by us, we may request that
  3179. you provide additional information for
  3180. the purposes of verifying your
  3181. identity
  3182. and for security or fraud-prevention
  3183. purposes.</span></span></div>
  3184. <div style="line-height: 1.5;"><span
  3185. style="font-size: 15px;"><br></span>
  3186. </div>
  3187. <div style="line-height: 1.5;"><span
  3188. style="font-size: 15px;"><span
  3189. data-custom-class="body_text">If you
  3190. submit the request through an <bdt
  3191. class="block-component"></bdt>
  3192. authorized<bdt
  3193. class="statement-end-if-in-editor">
  3194. </bdt> agent, we may need to collect
  3195. additional information to verify your
  3196. identity before processing your
  3197. request
  3198. and the agent will need to provide a
  3199. written and signed permission from you
  3200. to submit such request on your
  3201. behalf.</span></span>
  3202. <bdt class="block-component"><span
  3203. style="font-size: 15px;"></span></bdt>
  3204. <span style="font-size: 15px;"><span
  3205. data-custom-class="heading_2"><strong>
  3206. <h3>Appeals</h3>
  3207. </strong></span><span
  3208. data-custom-class="body_text">Under
  3209. certain US state data protection laws,
  3210. if we decline to take action regarding
  3211. your request, you may appeal our
  3212. decision by emailing us at <bdt
  3213. class="block-component"></bdt>
  3214. <bdt class="question">
  3215. guoziyun@jccy-tech.com</bdt>
  3216. <bdt class="else-block"></bdt>. We
  3217. will
  3218. inform you in writing of any action
  3219. taken or not taken in response to the
  3220. appeal, including a written
  3221. explanation
  3222. of the reasons for the decisions. If
  3223. your appeal is denied, you may submit
  3224. a
  3225. complaint to your state attorney
  3226. general.
  3227. </span>
  3228. <bdt class="statement-end-if-in-editor">
  3229. </bdt>
  3230. </span><span
  3231. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3232. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3233. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3234. data-custom-class="body_text">
  3235. <bdt class="block-component">
  3236. <bdt class="block-component">
  3237. </span></bdt>
  3238. </span></span></span></span></span></span></span></span></span></span>
  3239. <bdt class="block-component"><span
  3240. style="font-size: 15px;"></span></bdt>
  3241. <span
  3242. style="font-size: 15px;"><strong><span
  3243. data-custom-class="heading_2">
  3244. <h3>California <bdt
  3245. class="block-component"></bdt>
  3246. "Shine The Light"<bdt
  3247. class="statement-end-if-in-editor">
  3248. </bdt> Law</h3>
  3249. </span></strong><span
  3250. data-custom-class="body_text">California
  3251. Civil Code Section 1798.83, also known
  3252. as the <bdt class="block-component">
  3253. </bdt>"Shine The Light"<bdt
  3254. class="statement-end-if-in-editor">
  3255. </bdt> law, permits our users who are
  3256. California residents to request and
  3257. obtain from us, once a year and free
  3258. of
  3259. charge, information about categories
  3260. of
  3261. personal information (if any) we
  3262. disclosed to third parties for direct
  3263. marketing purposes and the names and
  3264. addresses of all third parties with
  3265. which we shared personal information
  3266. in
  3267. the immediately preceding calendar
  3268. year.
  3269. If you are a California resident and
  3270. would like to make such a request,
  3271. please submit your request in writing
  3272. to
  3273. us by using the contact details
  3274. provided
  3275. in the section <bdt
  3276. class="block-component"></bdt>"<bdt
  3277. class="statement-end-if-in-editor">
  3278. </bdt></span></span><span
  3279. data-custom-class="body_text"><a
  3280. data-custom-class="link"
  3281. href="#contact"><span
  3282. style="color: rgb(0, 58, 250); font-size: 15px;">HOW
  3283. CAN YOU CONTACT US ABOUT THIS
  3284. NOTICE?</span></a></span><span
  3285. style="font-size: 15px;"><span
  3286. data-custom-class="body_text">
  3287. <bdt class="block-component"></bdt>"
  3288. </span>
  3289. <bdt class="statement-end-if-in-editor">
  3290. <span
  3291. data-custom-class="body_text"></span>
  3292. </bdt>
  3293. </span>
  3294. <bdt class="statement-end-if-in-editor">
  3295. <span style="font-size: 15px;"></span>
  3296. </bdt><span
  3297. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3298. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3299. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3300. data-custom-class="body_text"><span
  3301. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3302. data-custom-class="body_text"><span
  3303. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3304. data-custom-class="body_text"><span
  3305. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3306. data-custom-class="body_text">
  3307. <bdt
  3308. class="statement-end-if-in-editor">
  3309. <span
  3310. data-custom-class="body_text"><span
  3311. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3312. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3313. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3314. data-custom-class="body_text"><span
  3315. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3316. data-custom-class="body_text"><span
  3317. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3318. data-custom-class="body_text"><span
  3319. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3320. data-custom-class="body_text">
  3321. <bdt
  3322. class="statement-end-if-in-editor">
  3323. <bdt
  3324. class="statement-end-if-in-editor">
  3325. </bdt>
  3326. </bdt>
  3327. </span></span></span></span></span></span></span></span></span></span></span>
  3328. </bdt>
  3329. </span></span></span></span></span></span></span></span></span></span>
  3330. <bdt class="block-component"><span
  3331. style="font-size: 15px;"></span></bdt>
  3332. </div>
  3333. <div style="line-height: 1.5;"><span
  3334. style="font-size: 15px;"><br></span>
  3335. </div>
  3336. <div style="line-height: 1.5;"><span
  3337. id="otherlaws"
  3338. style="font-size: 15px;"><strong><span
  3339. data-custom-class="heading_1">
  3340. <h2>13. DO OTHER REGIONS HAVE
  3341. SPECIFIC
  3342. PRIVACY RIGHTS?</h2>
  3343. </span></strong></span><span
  3344. style="font-size: 15px;"><em><strong><span
  3345. data-custom-class="body_text">In
  3346. Short:</span></strong><span
  3347. data-custom-class="body_text"> You
  3348. may
  3349. have additional rights based on the
  3350. country you reside in.</span></em>
  3351. <bdt class="block-component"></bdt>
  3352. </span>
  3353. <bdt class="block-component"><span
  3354. style="font-size: 15px;"></span></bdt>
  3355. <span
  3356. style="font-size: 15px;"><strong><span
  3357. data-custom-class="heading_2">
  3358. <h3>Republic of South Africa</h3>
  3359. </span></strong><span
  3360. data-custom-class="body_text">At any
  3361. time, you have the right to request
  3362. access to or correction of your
  3363. personal
  3364. information. You can make such a
  3365. request
  3366. by contacting us by using the contact
  3367. details provided in the section <bdt
  3368. class="block-component"></bdt>"<bdt
  3369. class="statement-end-if-in-editor">
  3370. </bdt></span></span><span
  3371. data-custom-class="link"><a
  3372. href="#request"><span
  3373. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  3374. data-custom-class="link">HOW CAN
  3375. YOU
  3376. REVIEW, UPDATE, OR DELETE THE DATA
  3377. WE COLLECT FROM
  3378. YOU?</span></span></a></span><span
  3379. style="font-size: 15px;"><span
  3380. data-custom-class="body_text">
  3381. <bdt class="block-component"></bdt>"
  3382. </span>
  3383. <bdt class="statement-end-if-in-editor">
  3384. <span
  3385. data-custom-class="body_text"></span>
  3386. </bdt>
  3387. </span>
  3388. </div>
  3389. <div style="line-height: 1.5;"><span
  3390. style="font-size: 15px;"><br></span>
  3391. </div>
  3392. <div style="line-height: 1.5;"><span
  3393. style="font-size: 15px;"><span
  3394. data-custom-class="body_text">If you
  3395. are
  3396. unsatisfied with the manner in which
  3397. we
  3398. address any complaint with regard to
  3399. our
  3400. processing of personal information,
  3401. you
  3402. can contact the office of the
  3403. regulator,
  3404. the details of which
  3405. are:</span></span>
  3406. </div>
  3407. <div style="line-height: 1.5;"><span
  3408. style="font-size: 15px;"><br></span>
  3409. </div>
  3410. <div style="line-height: 1.5;"><a
  3411. data-custom-class="link"
  3412. href="https://inforegulator.org.za/"
  3413. rel="noopener noreferrer"
  3414. target="_blank"><span
  3415. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  3416. data-custom-class="body_text"><span
  3417. data-custom-class="link">The
  3418. Information Regulator (South
  3419. Africa)</span></span></span></a>
  3420. </div>
  3421. <div style="line-height: 1.5;"><span
  3422. data-custom-class="body_text"><span
  3423. style="font-size: 15px;">General
  3424. enquiries: </span><a
  3425. data-custom-class="link"
  3426. href="mailto:enquiries@inforegulator.org.za"
  3427. rel="noopener noreferrer"
  3428. target="_blank"><span
  3429. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  3430. data-custom-class="link">enquiries@inforegulator.org.za</span></span></a></span>
  3431. </div>
  3432. <div style="line-height: 1.5;"><span
  3433. data-custom-class="body_text"><span
  3434. style="font-size: 15px;">Complaints
  3435. (complete POPIA/PAIA form
  3436. 5): </span><a data-custom-class="link"
  3437. href="mailto:PAIAComplaints@inforegulator.org.za"
  3438. rel="noopener noreferrer"
  3439. target="_blank"><span
  3440. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  3441. data-custom-class="link">PAIAComplaints@inforegulator.org.za</span></span></a><span
  3442. style="font-size: 15px;"> & </span></span><a
  3443. data-custom-class="link"
  3444. href="mailto:POPIAComplaints@inforegulator.org.za"
  3445. rel="noopener noreferrer"
  3446. target="_blank"><span
  3447. style="color: rgb(0, 58, 250); font-size: 15px;"><span
  3448. data-custom-class="body_text"><span
  3449. data-custom-class="link">POPIAComplaints@inforegulator.org.za</span></span></span></a><span
  3450. style="font-size: 15px;">
  3451. <bdt class="statement-end-if-in-editor">
  3452. </bdt>
  3453. <bdt class="statement-end-if-in-editor">
  3454. </bdt>
  3455. </span>
  3456. <bdt class="block-component"><span
  3457. style="font-size: 15px;"></span></bdt>
  3458. </div>
  3459. <div style="line-height: 1.5;"><br></div>
  3460. <div id="policyupdates"
  3461. style="line-height: 1.5;"><span
  3462. style="color: rgb(127, 127, 127);"><span
  3463. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3464. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3465. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3466. id="control"
  3467. style="color: rgb(0, 0, 0);"><strong><span
  3468. data-custom-class="heading_1">
  3469. <h2>14. DO WE MAKE UPDATES
  3470. TO
  3471. THIS NOTICE?</h2>
  3472. </span></strong></span></span></span></span></span><span
  3473. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3474. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3475. data-custom-class="body_text"><em><strong>In
  3476. Short: </strong>Yes, we will
  3477. update this notice as necessary to
  3478. stay compliant with relevant
  3479. laws.</em></span></span></span>
  3480. </div>
  3481. <div style="line-height: 1.5;"><br></div>
  3482. <div style="line-height: 1.5;"><span
  3483. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3484. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3485. data-custom-class="body_text">We may
  3486. update this Privacy Notice from time
  3487. to time. The updated version will be
  3488. indicated by an updated <bdt
  3489. class="block-component"></bdt>
  3490. "Revised"<bdt
  3491. class="statement-end-if-in-editor">
  3492. </bdt> date at the top of this
  3493. Privacy
  3494. Notice. If we make material changes
  3495. to
  3496. this Privacy Notice, we may notify
  3497. you
  3498. either by prominently posting a
  3499. notice
  3500. of such changes or by directly
  3501. sending
  3502. you a notification. We encourage you
  3503. to review this Privacy Notice
  3504. frequently to be informed of how we
  3505. are protecting your
  3506. information.</span></span></span>
  3507. </div>
  3508. <div style="line-height: 1.5;"><br></div>
  3509. <div id="contact" style="line-height: 1.5;">
  3510. <span
  3511. style="color: rgb(127, 127, 127);"><span
  3512. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3513. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3514. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3515. id="control"
  3516. style="color: rgb(0, 0, 0);"><strong><span
  3517. data-custom-class="heading_1">
  3518. <h2>15. HOW CAN YOU CONTACT
  3519. US
  3520. ABOUT THIS NOTICE?</h2>
  3521. </span></strong></span></span></span></span></span><span
  3522. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3523. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3524. data-custom-class="body_text">If you
  3525. have questions or comments about
  3526. this
  3527. notice, you may <span
  3528. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3529. data-custom-class="body_text">
  3530. <bdt class="block-component">
  3531. <bdt class="block-component">
  3532. </bdt>
  3533. </bdt>email us at <bdt
  3534. class="question">
  3535. icolor_support@jccy-tech.com
  3536. or 
  3537. </bdt>
  3538. <bdt
  3539. class="statement-end-if-in-editor">
  3540. <bdt class="block-component">
  3541. </bdt>
  3542. </bdt>
  3543. </span></span><span
  3544. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3545. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3546. data-custom-class="body_text">contact
  3547. us by post
  3548. at:</span></span></span></span></span></span>
  3549. </div>
  3550. <div style="line-height: 1.5;"><br></div>
  3551. <div style="line-height: 1.5;"><span
  3552. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3553. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3554. data-custom-class="body_text"><span
  3555. style="font-size: 15px;"><span
  3556. style="color: rgb(89, 89, 89);"><span
  3557. style="color: rgb(89, 89, 89);"><span
  3558. data-custom-class="body_text">
  3559. <bdt class="question">JCCY
  3560. Inc.</bdt>
  3561. </span></span></span></span></span><span
  3562. data-custom-class="body_text"><span
  3563. style="color: rgb(89, 89, 89);"><span
  3564. data-custom-class="body_text">
  3565. <bdt class="block-component">
  3566. </bdt>
  3567. </bdt>
  3568. </span></span></span></span></div>
  3569. <div style="line-height: 1.5;"><span
  3570. style="font-size: 15px;"><span
  3571. data-custom-class="body_text">
  3572. <bdt class="question">Shining Building
  3573. 17 floor</bdt><span
  3574. style="color: rgb(89, 89, 89);"><span
  3575. style="font-size: 15px;">
  3576. <bdt class="block-component">
  3577. </bdt>
  3578. </span></span>
  3579. </span></span></div>
  3580. <div style="line-height: 1.5;"><span
  3581. data-custom-class="body_text"
  3582. style="font-size: 15px;">
  3583. <bdt class="question">Haidian
  3584. street<span
  3585. data-custom-class="body_text"><span
  3586. style="color: rgb(89, 89, 89);"><span
  3587. style="font-size: 15px;">
  3588. <bdt
  3589. class="statement-end-if-in-editor">
  3590. </bdt>
  3591. </span></span></span></bdt>
  3592. </span></div>
  3593. <div style="line-height: 1.5;"><span
  3594. style="font-size: 15px;"><span
  3595. data-custom-class="body_text">
  3596. <bdt class="question">Beijing</bdt>
  3597. <span
  3598. style="color: rgb(89, 89, 89);"><span
  3599. style="font-size: 15px;">
  3600. <bdt class="block-component">
  3601. </bdt>
  3602. <bdt class="block-component">
  3603. </bdt>
  3604. <bdt class="question">100080‌
  3605. </bdt>
  3606. <bdt
  3607. class="statement-end-if-in-editor">
  3608. </bdt>
  3609. <bdt class="block-component">
  3610. </bdt>
  3611. <bdt class="block-component">
  3612. </bdt>
  3613. </span></span>
  3614. </span></bdt></span></div>
  3615. <div style="line-height: 1.5;"><span
  3616. style="font-size: 15px;"><span
  3617. data-custom-class="body_text"><span
  3618. style="font-size: 15px;"><span
  3619. data-custom-class="body_text"><span
  3620. style="color: rgb(89, 89, 89);">
  3621. <bdt class="block-component">
  3622. </bdt>
  3623. </span></span></span>
  3624. <bdt class="question">China</bdt><span
  3625. style="font-size: 15px;"><span
  3626. data-custom-class="body_text"><span
  3627. style="color: rgb(89, 89, 89);">
  3628. <bdt
  3629. class="statement-end-if-in-editor">
  3630. <span
  3631. style="font-size: 15px;"><span
  3632. data-custom-class="body_text"><span
  3633. style="color: rgb(89, 89, 89);">
  3634. <bdt
  3635. class="statement-end-if-in-editor">
  3636. <span
  3637. style="font-size: 15px;"><span
  3638. data-custom-class="body_text"><span
  3639. style="color: rgb(89, 89, 89);">
  3640. <bdt
  3641. class="statement-end-if-in-editor">
  3642. </bdt>
  3643. </span></span></span>
  3644. </bdt>
  3645. <bdt
  3646. class="statement-end-if-in-editor">
  3647. </bdt>
  3648. </span></span></span><span
  3649. data-custom-class="body_text"><span
  3650. style="color: rgb(89, 89, 89);"><span
  3651. style="font-size: 15px;">
  3652. <bdt
  3653. class="statement-end-if-in-editor">
  3654. </bdt>
  3655. </span></span></span>
  3656. </bdt>
  3657. </span></span></span>
  3658. </span><span
  3659. data-custom-class="body_text"><span
  3660. style="font-size: 15px;"><span
  3661. data-custom-class="body_text"><span
  3662. style="color: rgb(89, 89, 89);">
  3663. <bdt
  3664. class="statement-end-if-in-editor">
  3665. <span
  3666. style="color: rgb(89, 89, 89);"><span
  3667. style="font-size: 15px;"><span
  3668. data-custom-class="body_text">
  3669. <bdt
  3670. class="block-component">
  3671. <bdt
  3672. class="block-component">
  3673. </bdt>
  3674. </span></span></span>
  3675. </span></span></span>
  3676. <bdt class="block-component"><span
  3677. style="font-size: 15px;"></span>
  3678. </bdt><span
  3679. style="font-size: 15px;"><span
  3680. data-custom-class="body_text"><span
  3681. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3682. style="font-size: 15px;"><span
  3683. data-custom-class="body_text">
  3684. <bdt
  3685. class="statement-end-if-in-editor">
  3686. <bdt
  3687. class="block-component">
  3688. </bdt>
  3689. </span></span></div>
  3690. <div style="line-height: 1.5;"><br></div>
  3691. <div id="request" style="line-height: 1.5;">
  3692. <span
  3693. style="color: rgb(127, 127, 127);"><span
  3694. style="color: rgb(89, 89, 89); font-size: 15px;"><span
  3695. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3696. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3697. id="control"
  3698. style="color: rgb(0, 0, 0);"><strong><span
  3699. data-custom-class="heading_1">
  3700. <h2>16. HOW CAN YOU REVIEW,
  3701. UPDATE, OR DELETE THE DATA
  3702. WE COLLECT FROM YOU?</h2>
  3703. </span></strong></span></span></span></span></span><span
  3704. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3705. style="font-size: 15px; color: rgb(89, 89, 89);"><span
  3706. data-custom-class="body_text">
  3707. <bdt class="block-component"></bdt>
  3708. Based on the applicable laws of your
  3709. country<bdt class="block-component">
  3710. </bdt> or state of residence in the
  3711. US
  3712. <bdt
  3713. class="statement-end-if-in-editor">
  3714. </bdt>, you may<bdt
  3715. class="else-block">
  3716. <bdt class="block-component"> have
  3717. the right to request access to
  3718. the
  3719. personal information we collect
  3720. from you, details about how we
  3721. have processed it, correct
  3722. inaccuracies, or delete your
  3723. personal information. You may
  3724. also
  3725. have the right to <bdt
  3726. class="block-component"></bdt>
  3727. withdraw your consent to our
  3728. processing of your personal
  3729. information. These rights may be
  3730. limited in some circumstances by
  3731. applicable law. To request to
  3732. review, update, or delete your
  3733. personal information, please
  3734. <bdt class="block-component">
  3735. </bdt>
  3736. fill out and submit a 
  3737. </span><span
  3738. style="color: rgb(0, 58, 250);"><span
  3739. data-custom-class="body_text"><span
  3740. style="color: rgb(0, 58, 250); font-size: 15px;"><a
  3741. data-custom-class="link"
  3742. href="https://app.termly.io/notify/a8656edc-d147-407e-96ee-505826c51831"
  3743. rel="noopener noreferrer"
  3744. target="_blank">data subject
  3745. access
  3746. request</a></span></span></span>
  3747. <bdt class="block-component"><span
  3748. data-custom-class="body_text">
  3749. </bdt>
  3750. </span></span><span
  3751. data-custom-class="body_text">.</span></span></span>
  3752. </div>
  3753. <style>
  3754. ul {
  3755. list-style-type: square;
  3756. }
  3757. ul>li>ul {
  3758. list-style-type: circle;
  3759. }
  3760. ul>li>ul>li>ul {
  3761. list-style-type: square;
  3762. }
  3763. ol li {
  3764. font-family: Arial;
  3765. }
  3766. </style>
  3767. </div>
  3768. </body>
  3769. </html>