yszc.htm 248 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372
  1. <html xmlns:v="urn:schemas-microsoft-com:vml"
  2. xmlns:o="urn:schemas-microsoft-com:office:office"
  3. xmlns:w="urn:schemas-microsoft-com:office:word"
  4. xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
  5. xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
  6. xmlns="http://www.w3.org/TR/REC-html40">
  7. <head>
  8. <meta http-equiv=Content-Type content="text/html; charset=utf-8">
  9. <meta name=ProgId content=Word.Document>
  10. <meta name=Generator content="Microsoft Word 15">
  11. <meta name=Originator content="Microsoft Word 15">
  12. <link rel=File-List href="yszc.files/filelist.xml">
  13. <!--[if gte mso 9]><xml>
  14. <o:DocumentProperties>
  15. <o:Author>XP C</o:Author>
  16. <o:LastAuthor>Microsoft</o:LastAuthor>
  17. <o:Revision>2</o:Revision>
  18. <o:TotalTime>1307</o:TotalTime>
  19. <o:Created>2023-03-10T01:33:00Z</o:Created>
  20. <o:LastSaved>2023-03-10T01:33:00Z</o:LastSaved>
  21. <o:Pages>1</o:Pages>
  22. <o:Words>2737</o:Words>
  23. <o:Characters>15607</o:Characters>
  24. <o:Company>Muchinfo</o:Company>
  25. <o:Lines>130</o:Lines>
  26. <o:Paragraphs>36</o:Paragraphs>
  27. <o:CharactersWithSpaces>18308</o:CharactersWithSpaces>
  28. <o:Version>15.00</o:Version>
  29. </o:DocumentProperties>
  30. <o:CustomDocumentProperties>
  31. <o:KSOProductBuildVer dt:dt="string">2052-11.1.0.13703</o:KSOProductBuildVer>
  32. <o:ICV dt:dt="string">20853584519D4D98B153E978C3696529</o:ICV>
  33. </o:CustomDocumentProperties>
  34. </xml><![endif]-->
  35. <link rel=themeData href="yszc.files/themedata.thmx">
  36. <link rel=colorSchemeMapping href="yszc.files/colorschememapping.xml">
  37. <!--[if gte mso 9]><xml>
  38. <w:WordDocument>
  39. <w:TrackMoves>false</w:TrackMoves>
  40. <w:TrackFormatting/>
  41. <w:PunctuationKerning/>
  42. <w:DrawingGridVerticalSpacing>7.8 磅</w:DrawingGridVerticalSpacing>
  43. <w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery>
  44. <w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery>
  45. <w:ValidateAgainstSchemas/>
  46. <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  47. <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  48. <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  49. <w:DoNotPromoteQF/>
  50. <w:LidThemeOther>EN-US</w:LidThemeOther>
  51. <w:LidThemeAsian>ZH-CN</w:LidThemeAsian>
  52. <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  53. <w:Compatibility>
  54. <w:SpaceForUL/>
  55. <w:BalanceSingleByteDoubleByteWidth/>
  56. <w:DoNotLeaveBackslashAlone/>
  57. <w:ULTrailSpace/>
  58. <w:DoNotExpandShiftReturn/>
  59. <w:AdjustLineHeightInTable/>
  60. <w:BreakWrappedTables/>
  61. <w:SnapToGridInCell/>
  62. <w:WrapTextWithPunct/>
  63. <w:UseAsianBreakRules/>
  64. <w:UseWord2010TableStyleRules/>
  65. <w:DontGrowAutofit/>
  66. <w:SplitPgBreakAndParaMark/>
  67. <w:EnableOpenTypeKerning/>
  68. <w:DontFlipMirrorIndents/>
  69. <w:OverrideTableStyleHps/>
  70. <w:UseFELayout/>
  71. </w:Compatibility>
  72. <w:DoNotOptimizeForBrowser/>
  73. <m:mathPr>
  74. <m:mathFont m:val="Cambria Math"/>
  75. <m:brkBin m:val="before"/>
  76. <m:brkBinSub m:val="&#45;-"/>
  77. <m:smallFrac m:val="off"/>
  78. <m:dispDef/>
  79. <m:lMargin m:val="0"/>
  80. <m:rMargin m:val="0"/>
  81. <m:defJc m:val="centerGroup"/>
  82. <m:wrapIndent m:val="1440"/>
  83. <m:intLim m:val="subSup"/>
  84. <m:naryLim m:val="undOvr"/>
  85. </m:mathPr></w:WordDocument>
  86. </xml><![endif]--><!--[if gte mso 9]><xml>
  87. <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"
  88. DefSemiHidden="false" DefQFormat="false" DefPriority="99"
  89. LatentStyleCount="371">
  90. <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"/>
  91. <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"/>
  92. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  93. UnhideWhenUsed="true" QFormat="true" Name="heading 2"/>
  94. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  95. UnhideWhenUsed="true" QFormat="true" Name="heading 3"/>
  96. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  97. UnhideWhenUsed="true" QFormat="true" Name="heading 4"/>
  98. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  99. UnhideWhenUsed="true" QFormat="true" Name="heading 5"/>
  100. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  101. UnhideWhenUsed="true" QFormat="true" Name="heading 6"/>
  102. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  103. UnhideWhenUsed="true" QFormat="true" Name="heading 7"/>
  104. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  105. UnhideWhenUsed="true" QFormat="true" Name="heading 8"/>
  106. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  107. UnhideWhenUsed="true" QFormat="true" Name="heading 9"/>
  108. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  109. Name="index 1"/>
  110. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  111. Name="index 2"/>
  112. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  113. Name="index 3"/>
  114. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  115. Name="index 4"/>
  116. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  117. Name="index 5"/>
  118. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  119. Name="index 6"/>
  120. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  121. Name="index 7"/>
  122. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  123. Name="index 8"/>
  124. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  125. Name="index 9"/>
  126. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  127. UnhideWhenUsed="true" Name="toc 1"/>
  128. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  129. UnhideWhenUsed="true" Name="toc 2"/>
  130. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  131. UnhideWhenUsed="true" Name="toc 3"/>
  132. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  133. UnhideWhenUsed="true" Name="toc 4"/>
  134. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  135. UnhideWhenUsed="true" Name="toc 5"/>
  136. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  137. UnhideWhenUsed="true" Name="toc 6"/>
  138. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  139. UnhideWhenUsed="true" Name="toc 7"/>
  140. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  141. UnhideWhenUsed="true" Name="toc 8"/>
  142. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  143. UnhideWhenUsed="true" Name="toc 9"/>
  144. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  145. Name="Normal Indent"/>
  146. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  147. Name="footnote text"/>
  148. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  149. Name="annotation text"/>
  150. <w:LsdException Locked="false" UnhideWhenUsed="true" Name="header"/>
  151. <w:LsdException Locked="false" UnhideWhenUsed="true" QFormat="true"
  152. Name="footer"/>
  153. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  154. Name="index heading"/>
  155. <w:LsdException Locked="false" Priority="35" SemiHidden="true"
  156. UnhideWhenUsed="true" QFormat="true" Name="caption"/>
  157. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  158. Name="table of figures"/>
  159. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  160. Name="envelope address"/>
  161. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  162. Name="envelope return"/>
  163. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  164. Name="footnote reference"/>
  165. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  166. Name="annotation reference"/>
  167. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  168. Name="line number"/>
  169. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  170. Name="page number"/>
  171. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  172. Name="endnote reference"/>
  173. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  174. Name="endnote text"/>
  175. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  176. Name="table of authorities"/>
  177. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  178. Name="macro"/>
  179. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  180. Name="toa heading"/>
  181. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  182. Name="List"/>
  183. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  184. Name="List Bullet"/>
  185. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  186. Name="List Number"/>
  187. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  188. Name="List 2"/>
  189. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  190. Name="List 3"/>
  191. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  192. Name="List 4"/>
  193. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  194. Name="List 5"/>
  195. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  196. Name="List Bullet 2"/>
  197. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  198. Name="List Bullet 3"/>
  199. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  200. Name="List Bullet 4"/>
  201. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  202. Name="List Bullet 5"/>
  203. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  204. Name="List Number 2"/>
  205. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  206. Name="List Number 3"/>
  207. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  208. Name="List Number 4"/>
  209. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  210. Name="List Number 5"/>
  211. <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"/>
  212. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  213. Name="Closing"/>
  214. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  215. Name="Signature"/>
  216. <w:LsdException Locked="false" Priority="1" UnhideWhenUsed="true"
  217. Name="Default Paragraph Font"/>
  218. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  219. Name="Body Text"/>
  220. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  221. Name="Body Text Indent"/>
  222. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  223. Name="List Continue"/>
  224. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  225. Name="List Continue 2"/>
  226. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  227. Name="List Continue 3"/>
  228. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  229. Name="List Continue 4"/>
  230. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  231. Name="List Continue 5"/>
  232. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  233. Name="Message Header"/>
  234. <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"/>
  235. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  236. Name="Salutation"/>
  237. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  238. Name="Date"/>
  239. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  240. Name="Body Text First Indent"/>
  241. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  242. Name="Body Text First Indent 2"/>
  243. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  244. Name="Note Heading"/>
  245. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  246. Name="Body Text 2"/>
  247. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  248. Name="Body Text 3"/>
  249. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  250. Name="Body Text Indent 2"/>
  251. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  252. Name="Body Text Indent 3"/>
  253. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  254. Name="Block Text"/>
  255. <w:LsdException Locked="false" UnhideWhenUsed="true" Name="Hyperlink"/>
  256. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  257. Name="FollowedHyperlink"/>
  258. <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"/>
  259. <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"/>
  260. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  261. Name="Document Map"/>
  262. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  263. Name="Plain Text"/>
  264. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  265. Name="E-mail Signature"/>
  266. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  267. Name="HTML Top of Form"/>
  268. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  269. Name="HTML Bottom of Form"/>
  270. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  271. Name="Normal (Web)"/>
  272. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  273. Name="HTML Acronym"/>
  274. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  275. Name="HTML Address"/>
  276. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  277. Name="HTML Cite"/>
  278. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  279. Name="HTML Code"/>
  280. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  281. Name="HTML Definition"/>
  282. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  283. Name="HTML Keyboard"/>
  284. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  285. Name="HTML Preformatted"/>
  286. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  287. Name="HTML Sample"/>
  288. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  289. Name="HTML Typewriter"/>
  290. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  291. Name="HTML Variable"/>
  292. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  293. Name="Normal Table"/>
  294. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  295. Name="annotation subject"/>
  296. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  297. Name="No List"/>
  298. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  299. Name="Outline List 1"/>
  300. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  301. Name="Outline List 2"/>
  302. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  303. Name="Outline List 3"/>
  304. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  305. Name="Table Simple 1"/>
  306. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  307. Name="Table Simple 2"/>
  308. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  309. Name="Table Simple 3"/>
  310. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  311. Name="Table Classic 1"/>
  312. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  313. Name="Table Classic 2"/>
  314. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  315. Name="Table Classic 3"/>
  316. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  317. Name="Table Classic 4"/>
  318. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  319. Name="Table Colorful 1"/>
  320. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  321. Name="Table Colorful 2"/>
  322. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  323. Name="Table Colorful 3"/>
  324. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  325. Name="Table Columns 1"/>
  326. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  327. Name="Table Columns 2"/>
  328. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  329. Name="Table Columns 3"/>
  330. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  331. Name="Table Columns 4"/>
  332. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  333. Name="Table Columns 5"/>
  334. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  335. Name="Table Grid 1"/>
  336. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  337. Name="Table Grid 2"/>
  338. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  339. Name="Table Grid 3"/>
  340. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  341. Name="Table Grid 4"/>
  342. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  343. Name="Table Grid 5"/>
  344. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  345. Name="Table Grid 6"/>
  346. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  347. Name="Table Grid 7"/>
  348. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  349. Name="Table Grid 8"/>
  350. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  351. Name="Table List 1"/>
  352. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  353. Name="Table List 2"/>
  354. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  355. Name="Table List 3"/>
  356. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  357. Name="Table List 4"/>
  358. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  359. Name="Table List 5"/>
  360. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  361. Name="Table List 6"/>
  362. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  363. Name="Table List 7"/>
  364. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  365. Name="Table List 8"/>
  366. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  367. Name="Table 3D effects 1"/>
  368. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  369. Name="Table 3D effects 2"/>
  370. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  371. Name="Table 3D effects 3"/>
  372. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  373. Name="Table Contemporary"/>
  374. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  375. Name="Table Elegant"/>
  376. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  377. Name="Table Professional"/>
  378. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  379. Name="Table Subtle 1"/>
  380. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  381. Name="Table Subtle 2"/>
  382. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  383. Name="Table Web 1"/>
  384. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  385. Name="Table Web 2"/>
  386. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  387. Name="Table Web 3"/>
  388. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  389. Name="Balloon Text"/>
  390. <w:LsdException Locked="false" Priority="39" Name="Table Grid"/>
  391. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  392. Name="Table Theme"/>
  393. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  394. Name="Placeholder Text"/>
  395. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  396. Name="No Spacing"/>
  397. <w:LsdException Locked="false" Priority="60" Name="Light Shading"/>
  398. <w:LsdException Locked="false" Priority="61" Name="Light List"/>
  399. <w:LsdException Locked="false" Priority="62" Name="Light Grid"/>
  400. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>
  401. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>
  402. <w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>
  403. <w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>
  404. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>
  405. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>
  406. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>
  407. <w:LsdException Locked="false" Priority="70" Name="Dark List"/>
  408. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>
  409. <w:LsdException Locked="false" Priority="72" Name="Colorful List"/>
  410. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>
  411. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>
  412. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>
  413. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>
  414. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>
  415. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>
  416. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>
  417. <w:LsdException Locked="false" SemiHidden="true" Name="Revision"/>
  418. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>
  419. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>
  420. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>
  421. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>
  422. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>
  423. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>
  424. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>
  425. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>
  426. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>
  427. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>
  428. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>
  429. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>
  430. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>
  431. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>
  432. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>
  433. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>
  434. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>
  435. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>
  436. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>
  437. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>
  438. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>
  439. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>
  440. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>
  441. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>
  442. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>
  443. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>
  444. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>
  445. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>
  446. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>
  447. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>
  448. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>
  449. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>
  450. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>
  451. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>
  452. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>
  453. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>
  454. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>
  455. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>
  456. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>
  457. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>
  458. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>
  459. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>
  460. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>
  461. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>
  462. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>
  463. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>
  464. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>
  465. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>
  466. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>
  467. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>
  468. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>
  469. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>
  470. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>
  471. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>
  472. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>
  473. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>
  474. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>
  475. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>
  476. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>
  477. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>
  478. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>
  479. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>
  480. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>
  481. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>
  482. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>
  483. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>
  484. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>
  485. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>
  486. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>
  487. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>
  488. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>
  489. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>
  490. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>
  491. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>
  492. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>
  493. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>
  494. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>
  495. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>
  496. <w:LsdException Locked="false" Priority="19" QFormat="true"
  497. Name="Subtle Emphasis"/>
  498. <w:LsdException Locked="false" Priority="21" QFormat="true"
  499. Name="Intense Emphasis"/>
  500. <w:LsdException Locked="false" Priority="31" QFormat="true"
  501. Name="Subtle Reference"/>
  502. <w:LsdException Locked="false" Priority="32" QFormat="true"
  503. Name="Intense Reference"/>
  504. <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>
  505. <w:LsdException Locked="false" Priority="37" SemiHidden="true"
  506. UnhideWhenUsed="true" Name="Bibliography"/>
  507. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  508. UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>
  509. <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"/>
  510. <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"/>
  511. <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"/>
  512. <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"/>
  513. <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"/>
  514. <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"/>
  515. <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"/>
  516. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"/>
  517. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"/>
  518. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"/>
  519. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"/>
  520. <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"/>
  521. <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"/>
  522. <w:LsdException Locked="false" Priority="46"
  523. Name="Grid Table 1 Light Accent 1"/>
  524. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"/>
  525. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"/>
  526. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"/>
  527. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"/>
  528. <w:LsdException Locked="false" Priority="51"
  529. Name="Grid Table 6 Colorful Accent 1"/>
  530. <w:LsdException Locked="false" Priority="52"
  531. Name="Grid Table 7 Colorful Accent 1"/>
  532. <w:LsdException Locked="false" Priority="46"
  533. Name="Grid Table 1 Light Accent 2"/>
  534. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"/>
  535. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"/>
  536. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"/>
  537. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"/>
  538. <w:LsdException Locked="false" Priority="51"
  539. Name="Grid Table 6 Colorful Accent 2"/>
  540. <w:LsdException Locked="false" Priority="52"
  541. Name="Grid Table 7 Colorful Accent 2"/>
  542. <w:LsdException Locked="false" Priority="46"
  543. Name="Grid Table 1 Light Accent 3"/>
  544. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"/>
  545. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"/>
  546. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"/>
  547. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"/>
  548. <w:LsdException Locked="false" Priority="51"
  549. Name="Grid Table 6 Colorful Accent 3"/>
  550. <w:LsdException Locked="false" Priority="52"
  551. Name="Grid Table 7 Colorful Accent 3"/>
  552. <w:LsdException Locked="false" Priority="46"
  553. Name="Grid Table 1 Light Accent 4"/>
  554. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"/>
  555. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"/>
  556. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"/>
  557. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"/>
  558. <w:LsdException Locked="false" Priority="51"
  559. Name="Grid Table 6 Colorful Accent 4"/>
  560. <w:LsdException Locked="false" Priority="52"
  561. Name="Grid Table 7 Colorful Accent 4"/>
  562. <w:LsdException Locked="false" Priority="46"
  563. Name="Grid Table 1 Light Accent 5"/>
  564. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"/>
  565. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"/>
  566. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"/>
  567. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"/>
  568. <w:LsdException Locked="false" Priority="51"
  569. Name="Grid Table 6 Colorful Accent 5"/>
  570. <w:LsdException Locked="false" Priority="52"
  571. Name="Grid Table 7 Colorful Accent 5"/>
  572. <w:LsdException Locked="false" Priority="46"
  573. Name="Grid Table 1 Light Accent 6"/>
  574. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"/>
  575. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"/>
  576. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"/>
  577. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"/>
  578. <w:LsdException Locked="false" Priority="51"
  579. Name="Grid Table 6 Colorful Accent 6"/>
  580. <w:LsdException Locked="false" Priority="52"
  581. Name="Grid Table 7 Colorful Accent 6"/>
  582. <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"/>
  583. <w:LsdException Locked="false" Priority="47" Name="List Table 2"/>
  584. <w:LsdException Locked="false" Priority="48" Name="List Table 3"/>
  585. <w:LsdException Locked="false" Priority="49" Name="List Table 4"/>
  586. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"/>
  587. <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"/>
  588. <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"/>
  589. <w:LsdException Locked="false" Priority="46"
  590. Name="List Table 1 Light Accent 1"/>
  591. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"/>
  592. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"/>
  593. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"/>
  594. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"/>
  595. <w:LsdException Locked="false" Priority="51"
  596. Name="List Table 6 Colorful Accent 1"/>
  597. <w:LsdException Locked="false" Priority="52"
  598. Name="List Table 7 Colorful Accent 1"/>
  599. <w:LsdException Locked="false" Priority="46"
  600. Name="List Table 1 Light Accent 2"/>
  601. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"/>
  602. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"/>
  603. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"/>
  604. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"/>
  605. <w:LsdException Locked="false" Priority="51"
  606. Name="List Table 6 Colorful Accent 2"/>
  607. <w:LsdException Locked="false" Priority="52"
  608. Name="List Table 7 Colorful Accent 2"/>
  609. <w:LsdException Locked="false" Priority="46"
  610. Name="List Table 1 Light Accent 3"/>
  611. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"/>
  612. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"/>
  613. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"/>
  614. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"/>
  615. <w:LsdException Locked="false" Priority="51"
  616. Name="List Table 6 Colorful Accent 3"/>
  617. <w:LsdException Locked="false" Priority="52"
  618. Name="List Table 7 Colorful Accent 3"/>
  619. <w:LsdException Locked="false" Priority="46"
  620. Name="List Table 1 Light Accent 4"/>
  621. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"/>
  622. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"/>
  623. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"/>
  624. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"/>
  625. <w:LsdException Locked="false" Priority="51"
  626. Name="List Table 6 Colorful Accent 4"/>
  627. <w:LsdException Locked="false" Priority="52"
  628. Name="List Table 7 Colorful Accent 4"/>
  629. <w:LsdException Locked="false" Priority="46"
  630. Name="List Table 1 Light Accent 5"/>
  631. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"/>
  632. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"/>
  633. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"/>
  634. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"/>
  635. <w:LsdException Locked="false" Priority="51"
  636. Name="List Table 6 Colorful Accent 5"/>
  637. <w:LsdException Locked="false" Priority="52"
  638. Name="List Table 7 Colorful Accent 5"/>
  639. <w:LsdException Locked="false" Priority="46"
  640. Name="List Table 1 Light Accent 6"/>
  641. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"/>
  642. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"/>
  643. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"/>
  644. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"/>
  645. <w:LsdException Locked="false" Priority="51"
  646. Name="List Table 6 Colorful Accent 6"/>
  647. <w:LsdException Locked="false" Priority="52"
  648. Name="List Table 7 Colorful Accent 6"/>
  649. </w:LatentStyles>
  650. </xml><![endif]-->
  651. <style>
  652. <!--
  653. /* Font Definitions */
  654. @font-face
  655. {font-family:宋体;
  656. panose-1:2 1 6 0 3 1 1 1 1 1;
  657. mso-font-alt:SimSun;
  658. mso-font-charset:134;
  659. mso-generic-font-family:auto;
  660. mso-font-pitch:variable;
  661. mso-font-signature:3 680460288 22 0 262145 0;}
  662. @font-face
  663. {font-family:"Cambria Math";
  664. panose-1:2 4 5 3 5 4 6 3 2 4;
  665. mso-font-charset:1;
  666. mso-generic-font-family:roman;
  667. mso-font-format:other;
  668. mso-font-pitch:variable;
  669. mso-font-signature:0 0 0 0 0 0;}
  670. @font-face
  671. {font-family:等线;
  672. panose-1:2 1 6 0 3 1 1 1 1 1;
  673. mso-font-alt:"Arial Unicode MS";
  674. mso-font-charset:134;
  675. mso-generic-font-family:auto;
  676. mso-font-pitch:variable;
  677. mso-font-signature:-1610612033 953122042 22 0 262159 0;}
  678. @font-face
  679. {font-family:"\@宋体";
  680. panose-1:2 1 6 0 3 1 1 1 1 1;
  681. mso-font-charset:134;
  682. mso-generic-font-family:auto;
  683. mso-font-pitch:variable;
  684. mso-font-signature:3 680460288 22 0 262145 0;}
  685. @font-face
  686. {font-family:"\@等线";
  687. panose-1:2 1 6 0 3 1 1 1 1 1;
  688. mso-font-charset:134;
  689. mso-generic-font-family:auto;
  690. mso-font-pitch:variable;
  691. mso-font-signature:-1610612033 953122042 22 0 262159 0;}
  692. /* Style Definitions */
  693. p.MsoNormal, li.MsoNormal, div.MsoNormal
  694. {mso-style-unhide:no;
  695. mso-style-qformat:yes;
  696. mso-style-parent:"";
  697. margin:0cm;
  698. margin-bottom:.0001pt;
  699. text-align:justify;
  700. text-justify:inter-ideograph;
  701. mso-pagination:none;
  702. font-size:10.5pt;
  703. mso-bidi-font-size:11.0pt;
  704. font-family:等线;
  705. mso-ascii-font-family:等线;
  706. mso-ascii-theme-font:minor-latin;
  707. mso-fareast-font-family:等线;
  708. mso-fareast-theme-font:minor-fareast;
  709. mso-hansi-font-family:等线;
  710. mso-hansi-theme-font:minor-latin;
  711. mso-bidi-font-family:"Times New Roman";
  712. mso-bidi-theme-font:minor-bidi;
  713. mso-font-kerning:1.0pt;}
  714. p.MsoHeader, li.MsoHeader, div.MsoHeader
  715. {mso-style-priority:99;
  716. mso-style-link:"页眉 Char";
  717. margin:0cm;
  718. margin-bottom:.0001pt;
  719. text-align:center;
  720. mso-pagination:none;
  721. tab-stops:center 207.65pt right 415.3pt;
  722. layout-grid-mode:char;
  723. border:none;
  724. mso-border-bottom-alt:solid windowtext .75pt;
  725. padding:0cm;
  726. mso-padding-alt:0cm 0cm 1.0pt 0cm;
  727. font-size:9.0pt;
  728. font-family:等线;
  729. mso-ascii-font-family:等线;
  730. mso-ascii-theme-font:minor-latin;
  731. mso-fareast-font-family:等线;
  732. mso-fareast-theme-font:minor-fareast;
  733. mso-hansi-font-family:等线;
  734. mso-hansi-theme-font:minor-latin;
  735. mso-bidi-font-family:"Times New Roman";
  736. mso-bidi-theme-font:minor-bidi;
  737. mso-font-kerning:1.0pt;}
  738. p.MsoFooter, li.MsoFooter, div.MsoFooter
  739. {mso-style-priority:99;
  740. mso-style-qformat:yes;
  741. mso-style-link:"页脚 Char";
  742. margin:0cm;
  743. margin-bottom:.0001pt;
  744. mso-pagination:none;
  745. tab-stops:center 207.65pt right 415.3pt;
  746. layout-grid-mode:char;
  747. font-size:9.0pt;
  748. font-family:等线;
  749. mso-ascii-font-family:等线;
  750. mso-ascii-theme-font:minor-latin;
  751. mso-fareast-font-family:等线;
  752. mso-fareast-theme-font:minor-fareast;
  753. mso-hansi-font-family:等线;
  754. mso-hansi-theme-font:minor-latin;
  755. mso-bidi-font-family:"Times New Roman";
  756. mso-bidi-theme-font:minor-bidi;
  757. mso-font-kerning:1.0pt;}
  758. a:link, span.MsoHyperlink
  759. {mso-style-priority:99;
  760. color:#0563C1;
  761. mso-themecolor:hyperlink;
  762. text-decoration:underline;
  763. text-underline:single;}
  764. a:visited, span.MsoHyperlinkFollowed
  765. {mso-style-noshow:yes;
  766. mso-style-priority:99;
  767. color:#954F72;
  768. mso-themecolor:followedhyperlink;
  769. text-decoration:underline;
  770. text-underline:single;}
  771. span.Char
  772. {mso-style-name:"页眉 Char";
  773. mso-style-priority:99;
  774. mso-style-unhide:no;
  775. mso-style-locked:yes;
  776. mso-style-link:页眉;
  777. mso-ansi-font-size:9.0pt;
  778. mso-bidi-font-size:9.0pt;}
  779. span.Char0
  780. {mso-style-name:"页脚 Char";
  781. mso-style-priority:99;
  782. mso-style-unhide:no;
  783. mso-style-locked:yes;
  784. mso-style-link:页脚;
  785. mso-ansi-font-size:9.0pt;
  786. mso-bidi-font-size:9.0pt;}
  787. span.UnresolvedMention
  788. {mso-style-name:"Unresolved Mention";
  789. mso-style-noshow:yes;
  790. mso-style-priority:99;
  791. mso-style-qformat:yes;
  792. color:#605E5C;
  793. background:#E1DFDD;}
  794. .MsoChpDefault
  795. {mso-style-type:export-only;
  796. mso-default-props:yes;
  797. font-size:10.0pt;
  798. mso-ansi-font-size:10.0pt;
  799. mso-bidi-font-size:10.0pt;
  800. font-family:等线;
  801. mso-bidi-font-family:"Times New Roman";
  802. mso-bidi-theme-font:minor-bidi;
  803. mso-font-kerning:0pt;}
  804. /* Page Definitions */
  805. @page
  806. {mso-page-border-surround-header:no;
  807. mso-page-border-surround-footer:no;}
  808. @page WordSection1
  809. {size:595.3pt 841.9pt;
  810. margin:72.0pt 90.0pt 72.0pt 90.0pt;
  811. mso-header-margin:42.55pt;
  812. mso-footer-margin:49.6pt;
  813. mso-paper-source:0;
  814. layout-grid:15.6pt;}
  815. div.WordSection1
  816. {page:WordSection1;}
  817. -->
  818. </style>
  819. <!--[if gte mso 10]>
  820. <style>
  821. /* Style Definitions */
  822. table.MsoNormalTable
  823. {mso-style-name:普通表格;
  824. mso-tstyle-rowband-size:0;
  825. mso-tstyle-colband-size:0;
  826. mso-style-noshow:yes;
  827. mso-style-priority:99;
  828. mso-style-parent:"";
  829. mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
  830. mso-para-margin:0cm;
  831. mso-para-margin-bottom:.0001pt;
  832. mso-pagination:widow-orphan;
  833. font-size:10.0pt;
  834. font-family:等线;
  835. mso-ascii-font-family:等线;
  836. mso-ascii-theme-font:minor-latin;
  837. mso-fareast-font-family:等线;
  838. mso-fareast-theme-font:minor-fareast;
  839. mso-hansi-font-family:等线;
  840. mso-hansi-theme-font:minor-latin;}
  841. </style>
  842. <![endif]--><!--[if gte mso 9]><xml>
  843. <o:shapedefaults v:ext="edit" spidmax="1026"/>
  844. </xml><![endif]--><!--[if gte mso 9]><xml>
  845. <o:shapelayout v:ext="edit">
  846. <o:idmap v:ext="edit" data="1"/>
  847. </o:shapelayout></xml><![endif]-->
  848. </head>
  849. <body lang=ZH-CN link="#0563C1" vlink="#954F72" style='tab-interval:21.0pt;
  850. text-justify-trim:punctuation'>
  851. <div class=WordSection1 style='layout-grid:15.6pt'>
  852. <p class=MsoNormal align=center style='text-align:center;text-indent:30.1pt;
  853. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  854. background:white'><b><span style='font-size:15.0pt;line-height:150%;font-family:
  855. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:18.0pt'>隐私政策<span lang=EN-US><o:p></o:p></span></span></b></p>
  856. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  857. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  858. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  859. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>欢迎您使用铁合金掌上行平台,铁合金掌上行(地址:上海市浦东新区浦东南路<span
  860. lang=EN-US>360</span>号<span lang=EN-US>1603</span>室,以下或称<span lang=EN-US>“</span>我们<span
  861. lang=EN-US>”</span>或<span lang=EN-US>“</span>铁合金掌上行平台<span lang=EN-US>”</span>)非常重视您的隐私保护和个人信息保护。我们深知个人信息对您的重要性,也深知为您的信息提供有效保护是我们业务健康可持续发展的基石。我们致力于维持您对我们的信任,恪守适用法律和我们对您的承诺,尽全力保证您的个人信息安全和合理使用。我们将按照法律、行政法规的要求,采取相关措施,保护您的信息安全可靠。依据我国《电子商务法》《网络安全法》《个人信息保护法》《常见类型移动互联网应用程序必要个人信息范围规定》等法律法规,并参考《信息安全技术个人信息安全规范》(<span
  862. lang=EN-US>GB/T 35273-2020</span>)等国家标准,我们制定《 隐私政策 》(以下简称<span lang=EN-US>“</span>本隐私政策<span
  863. lang=EN-US>”</span>)。<span lang=EN-US><o:p></o:p></span></span></p>
  864. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  865. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  866. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  867. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在您注册成为铁合金掌上行平台注册用户前,我们郑重提示:<span
  868. lang=EN-US><o:p></o:p></span></span></p>
  869. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  870. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  871. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  872. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>一、根据《常见类型移动互联网应用程序必要个人信息范围规定》,本<span
  873. lang=EN-US>APP</span>属于网上购物类,基本功能服务为<span lang=EN-US>“</span>购销商品<span
  874. lang=EN-US>”</span>,为提供基本功能服务,我们将收集您的移动电话号码、密码或验证码。</span></u></b><span
  875. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  876. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  877. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  878. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  879. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  880. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>二、请您知悉,您同意隐私政策仅代表您已了解应用提供的功能,以及功能运行所需要的必要个人信息,并不代表您已同意我们可以收集非必要个人信息,非必要个人信息会根据您使用过程中的授权情况单独征求您的同意。</span></u></b><span
  881. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  882. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  883. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  884. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  885. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  886. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>三、相应权限并不会默认开启,当涉及重要或敏感的设备权限时,我们会在您使用到相应业务功能时,另行弹窗再次征得您的同意后开启;权限开启后,您还可以随时通过设备设置关闭权限;您不同意开启权限,将不会影响其他非相关业务功能的正常使用。针对个人敏感信息,我们会单独征得您的同意后进行处理。</span></u></b><span
  887. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  888. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  889. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  890. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  891. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  892. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在您注册成为铁合金掌上行平台用户、享受我们提供的服务、使用我们的产品时,我们将按照本隐私政策规定,收集、使用、储存、分享、管理<b>您的个人信息</b>,并为您提供访问、更正、注销、删除和保护这些信息的方式。<b><u>在您使用铁合金掌上行平台服务前请务必仔细阅读本隐私政策(特别是加粗或下划线的内容)。</u></b>如果您对本隐私政策条款或相关事宜有任何问题,请通过我们官方联系方式与我们联系。<span
  893. lang=EN-US><o:p></o:p></span></span></p>
  894. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  895. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  896. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  897. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本隐私政策有助您了解我们会收集哪些个人信息、为什么收集这些个人信息,会利用这些个人信息做些什么、如何保护这些信息,以及您作为个人信息主体所享有的权利,重点包括:具体功能可能收集、使用个人信息的范围、目的、方式,以及拒绝提供个人信息可能的影响。<span
  898. lang=EN-US>SDK</span>收集、使用个人信息,调取设备权限的范围、目的、方式。</span></u></b><span lang=EN-US
  899. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  900. 宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  901. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  902. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  903. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  904. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行平台(及<span
  905. lang=EN-US>SDK</span>)可能需要调取的设备权限、调用目的及其对应业务功能、调用前是否询问以及用户关闭相应权限的方式。</span></u></b><span
  906. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  907. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  908. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  909. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  910. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  911. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>需要特别说明的是,通过铁合金掌上行平台为您提供产品和服务的第三方,均会根据其自身隐私政策所述标准存储、使用、处理和保护您的个人信息,本隐私政策不能代替上述第三方的隐私政策。</span></u></b><span
  912. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  913. 宋体;mso-font-kerning:0pt'>我们会尽力要求第三方服务提供商为您的个人信息提供足够的安全保护水平并会在具体产品页面明确告知您服务由特定第三方提供,同时强烈建议您在使用第三方服务或向第三方提交个人信息之前,请认真阅读第三方的隐私政策,确认服务提供方的隐私保护情况。<span
  914. lang=EN-US><o:p></o:p></span></span></p>
  915. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  916. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  917. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  918. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如对本政策内容有任何疑问、意见或建议,您可通过铁合金掌上行平台提供的各种联系方式与我们联系。<span
  919. lang=EN-US><o:p></o:p></span></span></p>
  920. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  921. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  922. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  923. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本隐私政策将帮助您了解以下内容:<span
  924. lang=EN-US><o:p></o:p></span></span></p>
  925. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  926. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  927. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  928. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>一、我们如何收集和使用您的个人信息<span
  929. lang=EN-US><o:p></o:p></span></span></p>
  930. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  931. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  932. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  933. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>二、我们如何使用<span
  934. lang=EN-US>Cookie</span>和同类技术<span lang=EN-US><o:p></o:p></span></span></p>
  935. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  936. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  937. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  938. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>三、我们如何共享、转让、公开披露您的个人信息及所接入的第三方<span
  939. lang=EN-US><o:p></o:p></span></span></p>
  940. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  941. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  942. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  943. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>四、我们如何保存及保护您的个人信息<span
  944. lang=EN-US><o:p></o:p></span></span></p>
  945. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  946. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  947. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  948. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>五、关于您的权利<span
  949. lang=EN-US><o:p></o:p></span></span></p>
  950. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  951. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  952. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  953. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>六、我们如何处理未成年人的个人信息<span
  954. lang=EN-US><o:p></o:p></span></span></p>
  955. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  956. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  957. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  958. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>七、本隐私政策如何更新<span
  959. lang=EN-US><o:p></o:p></span></span></p>
  960. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  961. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  962. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  963. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>八、免责条款及其他<span
  964. lang=EN-US><o:p></o:p></span></span></p>
  965. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  966. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  967. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  968. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>九、法律适用和纠纷解决<span
  969. lang=EN-US><o:p></o:p></span></span></p>
  970. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  971. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  972. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  973. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>十、如何联系我们<span
  974. lang=EN-US><o:p></o:p></span></span></p>
  975. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  976. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  977. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  978. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>十一、移动安全联盟<span
  979. lang=EN-US>com.netease</span>集成<span lang=EN-US><o:p></o:p></span></span></p>
  980. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  981. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  982. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  983. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>我们尽量以更清晰、更容易被您理解的方式展现本隐私政策,从而希望能够真实地传达我们希望向您传达的信息,并希望您在向我们提供某些信息以及允许我们处理并分享某些信息前,能够清晰地了解这些信息收集的目的、可能的用途以及其他方面的内容。<span
  984. lang=EN-US><o:p></o:p></span></span></p>
  985. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  986. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  987. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  988. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>一、我们如何收集和使用您的个人信息<span
  989. lang=EN-US><o:p></o:p></span></span></b></p>
  990. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  991. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  992. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  993. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>我们提供服务时,可能会收集、储存和使用下列与您有关的信息。如果您不提供相关信息,可能无法注册成为我们的用户或无法享受我们提供的某些服务,或者无法达到相关服务拟达到的效果。<span
  994. lang=EN-US><o:p></o:p></span></span></p>
  995. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  996. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  997. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  998. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>我们会遵循正当、合法、必要、最小化的原则收集信息,当您使用以下服务、功能或设置时,我们会以下列方式收集和使用您的个人信息:<span
  999. lang=EN-US><o:p></o:p></span></span></p>
  1000. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  1001. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1002. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  1003. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(一)您需要授权我们收集和使用个人信息的功能服务<span
  1004. lang=EN-US><o:p></o:p></span></span></b></p>
  1005. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1006. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1007. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1008. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span></b><b><span
  1009. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1010. 宋体;mso-font-kerning:0pt'>、登录服务</span></b><span lang=EN-US style='mso-bidi-font-size:
  1011. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1012. 0pt'><o:p></o:p></span></p>
  1013. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1014. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1015. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1016. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span></b><b><span
  1017. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1018. 宋体;mso-font-kerning:0pt'>)完成账户注册、登录<span lang=EN-US><o:p></o:p></span></span></b></p>
  1019. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1020. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1021. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1022. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1023. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1024. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1025. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1026. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1027. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1028. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>根据《中华人民共和国网络安全法》等相关法律法规的规定,<b><u>网络运营者为用户提供信息发布、即时通讯等服务,在与用户签订协议或者确认提供服务时,应当要求用户提供真实身份信息;用户不提供真实身份信息的,网络运营者不得为其提供相关服务。</u></b>当您使用注册功能时,您需要至少向我们提供您本人的<b>手机号码(手动输入)</b>用于注册账号,我们将通过向该手机号发送<b>验证码</b>的方式来验证您的身份是否有效;此类信息属于该功能的<b>必要信息</b>,若您不提供,您将无法完成注册。<span
  1029. lang=EN-US><o:p></o:p></span></span></p>
  1030. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1031. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1032. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1033. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您在访问铁合金掌上行平台时,需要您注册成为铁合金掌上行平台用户。为帮助您成为我们的用户,以便我们为您提供服务。<b>您需要提供手机号码创建用户名和密码(或验证码)以成为我们的注册用户。</b><span
  1034. lang=EN-US><o:p></o:p></span></span></p>
  1035. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1036. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1037. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1038. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您成功注册铁合金掌上行平台账号后,可以使用铁合金掌上行平台账号登录铁合金掌上行平台,登录时您需要向我们提供<b>您的铁合金掌上行平台账号信息</b>。若您不提供这类信息,您将无法登录和享受铁合金掌上行平台的服务。<span
  1039. lang=EN-US><o:p></o:p></span></span></p>
  1040. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1041. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1042. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1043. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1044. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1045. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1046. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1047. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1048. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1049. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1050. lang=EN-US><o:p></o:p></span></span></p>
  1051. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1052. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1053. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1054. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1055. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1056. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1057. 0pt'><o:p></o:p></span></p>
  1058. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1059. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1060. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1061. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在您注册登录时,我们会根据您选择的登录方式调用不同<span
  1062. lang=EN-US>SDK</span>,<span lang=EN-US>SDK</span>将会通过<span lang=EN-US>APP</span>手机收集您的个人信息。<span
  1063. lang=EN-US><o:p></o:p></span></span></p>
  1064. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1065. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1066. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1067. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您使用手机号验证码登录时<span
  1068. lang=EN-US>,</span>我们会使用短信来进行人机验证,避免非人工机器行为触发短信验证码发送。此方式不收集任何个人信息及敏感权限。如您拒绝,将无法使用手机号验证码方式登录。<span
  1069. lang=EN-US><o:p></o:p></span></span></p>
  1070. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1071. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1072. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1073. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span></b><b><span
  1074. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1075. 宋体;mso-font-kerning:0pt'>、交易服务</span></b><span lang=EN-US style='mso-bidi-font-size:
  1076. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1077. 0pt'><o:p></o:p></span></p>
  1078. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1079. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1080. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1081. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span></b><b><span
  1082. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1083. 宋体;mso-font-kerning:0pt'>)为您提供下单、订单管理功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1084. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1085. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1086. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1087. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1088. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1089. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1090. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1091. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1092. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1093. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了业务相关联络信息采集和交易服务,我们收集下面信息。<span
  1094. lang=EN-US><o:p></o:p></span></span></p>
  1095. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1096. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1097. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1098. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您准备对您所需购买的商品进行下单结算时,铁合金掌上行平台系统会生成您购买该商品的订单。为了完成下单结算页面的服务,您需要提交<b>收货人名称、收货地址以及手机号码</b>。同时该订单中会<b>载明订单号、您所购买的商品或服务信息、下单时间、您应支付的货款金额及支付方式</b>。我们将使用<b>您的订单信息</b>来(包括与为您提供上述服务的第三方)进行<b>您的身份核验、确定交易、支付结算以及为您提供客服和售后服务</b>;此类信息属于在企业交易环节保障您订购的商品完成订购、结算、交付流程<b>必要信息</b>,如您不能或拒绝提供上述信息,将无法为您完成购买商品交易服务,但不会影响您使用其他功能。<span
  1099. lang=EN-US><o:p></o:p></span></span></p>
  1100. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1101. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1102. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1103. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1104. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1105. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1106. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1107. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1108. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1109. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1110. lang=EN-US><o:p></o:p></span></span></p>
  1111. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1112. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1113. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1114. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span></b><b><span
  1115. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1116. 宋体;mso-font-kerning:0pt'>)为您提供提单相关服务功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1117. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1118. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1119. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1120. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1121. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1122. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1123. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1124. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1125. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1126. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了业务相关联络信息采集、交易服务、仓储提单、电子仓单注册、提单业务,我们收集<b>提单人身份证号码、手机号码、车牌号、提货人姓名、提货公司信息、公司盖章信息</b>。如您在下单结算后,需要生成提单。提单的认证方式包括手机号方式和身份证方式。<b>手机号方式,我们需要收集提货人姓名、手机号码、车牌号。身份证方式,我们需要收集提单人身份证号码、手机号、车牌号。</b><span
  1127. lang=EN-US><o:p></o:p></span></span></p>
  1128. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1129. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1130. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1131. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如您在使用仓储提单服务功能时,我们因为提货单进行仓储提货需要,我们会<b>收集司机姓名、车牌号信息。</b><span
  1132. lang=EN-US><o:p></o:p></span></span></p>
  1133. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1134. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1135. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1136. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如您在使用提单服务功能时,您需要提交<b>公司信息、公司盖章信息、提货人姓名、身份证号码、手机号码、车牌号</b>以便于完成区块链提单服务功能。我们将收集上述信息。<span
  1137. lang=EN-US><o:p></o:p></span></span></p>
  1138. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1139. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1140. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1141. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>上述信息为商品交付环节中验证提货者身份、保障货物安全交付的<b>必要信息</b>,如您不能或拒绝提供上述信息,将无法为您完成商品交付服务,但不会影响您使用其他功能。<span
  1142. lang=EN-US><o:p></o:p></span></span></p>
  1143. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1144. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1145. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1146. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1147. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1148. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1149. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1150. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1151. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1152. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1153. lang=EN-US><o:p></o:p></span></span></p>
  1154. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1155. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1156. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1157. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span></b><b><span
  1158. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1159. 宋体;mso-font-kerning:0pt'>)为您提供收货确认服务功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1160. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1161. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1162. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1163. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1164. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1165. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1166. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1167. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1168. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1169. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了业务相关联络信息采集和交易服务,我们收集<b>您的联系号码</b>。<span
  1170. lang=EN-US><o:p></o:p></span></span></p>
  1171. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1172. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1173. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1174. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在您收到货物后,需要确认,使用收货确认服务功能。我们会收集<b>您的联系号码</b>。<span
  1175. lang=EN-US><o:p></o:p></span></span></p>
  1176. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1177. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1178. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1179. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>此类信息为商品交付环节中的<b>必要信息</b>,如您不能或拒绝提供上述信息,将无法为您确认商品交付状态,但不会影响您使用其他功能。<span
  1180. lang=EN-US><o:p></o:p></span></span></p>
  1181. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1182. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1183. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1184. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1185. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1186. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1187. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1188. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1189. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1190. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1191. lang=EN-US><o:p></o:p></span></span></p>
  1192. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1193. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1194. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1195. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1196. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1197. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1198. 0pt'><o:p></o:p></span></p>
  1199. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1200. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1201. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1202. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1203. lang=EN-US><o:p></o:p></span></span></p>
  1204. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1205. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1206. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1207. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>4</span></b><b><span
  1208. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1209. 宋体;mso-font-kerning:0pt'>)为您提供平台交易设置功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1210. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1211. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1212. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1213. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1214. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1215. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1216. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1217. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1218. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1219. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了业务相关联络信息采集和交易服务,我们需要收集以下信息。<span
  1220. lang=EN-US><o:p></o:p></span></span></p>
  1221. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1222. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1223. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1224. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了用户能够更好的管理税票业务、提货接受业务,在您使用工作台中的平台交易设置功能时,我们需要收集。您需要提交填写<b>取票人管理信息(姓名、身份证号码、手机号码、地址)、供方信息(名称、收货人、手机号码、地址)、发票邮寄地址信息(姓名、电话、信息地址)、代运偏好信息、自提提货人信息(提货人、手机号码、身份证号码、车牌号)、代运收货人信息(收货人姓名、联系电话、入库抬头、详细地址)、代运委托人信息(联系人姓名、联系电话)</b><span
  1225. lang=EN-US><o:p></o:p></span></span></p>
  1226. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1227. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1228. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1229. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>上述信息属于在企业交易环节保障您订购的商品完成订购、结算、交付流程必要信息,如您不能或拒绝提供上述信息,将无法为您完成购买商品交易服务。但不会影响您使用其他功能。<span
  1230. lang=EN-US><o:p></o:p></span></span></p>
  1231. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1232. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1233. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1234. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1235. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1236. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1237. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1238. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1239. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1240. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1241. lang=EN-US><o:p></o:p></span></span></p>
  1242. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1243. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1244. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1245. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1246. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1247. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1248. 0pt'><o:p></o:p></span></p>
  1249. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1250. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1251. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1252. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1253. lang=EN-US><o:p></o:p></span></span></p>
  1254. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1255. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1256. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1257. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5</span></b><b><span
  1258. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1259. 宋体;mso-font-kerning:0pt'>)为您提供工作台功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1260. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1261. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1262. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1263. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1264. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1265. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1266. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1267. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1268. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1269. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行平台是为企业与企业之间交易、企业与个人之间交易、个人与个人之间交易服务提供的平台,企业用户需要向我们提供<b>企业名称、营业执照、法定代表人身份信息、开票信息、纳税人资质信息、收款账号信息、联系电话</b>完成实名认证;个人用户需向我们提供个人身份证正反面信息、收款账号信息、联系人电话完成实名认证;我们会收集上述相关信息。<span
  1270. lang=EN-US><o:p></o:p></span></span></p>
  1271. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1272. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1273. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1274. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>此类信息为企业交易环节中进行业务联络的<b>必要信息</b>,如您不能或拒绝提供上述信息,将无法为您完成企业用户认证过程,但不会影响您使用其他功能。<span
  1275. lang=EN-US><o:p></o:p></span></span></p>
  1276. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1277. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1278. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1279. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1280. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1281. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1282. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1283. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1284. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1285. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1286. lang=EN-US><o:p></o:p></span></span></p>
  1287. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1288. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1289. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1290. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1291. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1292. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1293. 0pt'><o:p></o:p></span></p>
  1294. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1295. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1296. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1297. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1298. lang=EN-US><o:p></o:p></span></span></p>
  1299. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1300. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1301. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1302. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span></b><b><span
  1303. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1304. 宋体;mso-font-kerning:0pt'>、扩展业务功能及其所需处理的个人信息</span></b><span lang=EN-US
  1305. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1306. 宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1307. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1308. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1309. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1310. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span></b><b><span
  1311. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1312. 宋体;mso-font-kerning:0pt'>)为您提供物流服务功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1313. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1314. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1315. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1316. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1317. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1318. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1319. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1320. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1321. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1322. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您在使用物流服务功能时,您点击确认使用该功能时,为了核验登录,我们将把基于本隐私政策使用物流服务功能,点击进入接单功能时,为了进行承运合同电子签单,我们需要收集<b>您的手机号码、验证码</b>以验证<b>您的电子签单身份信息</b>。此类信息为在物流承运环节中的非必要但有关联的个人信息,当您点击按钮操作时才会处理,如不收集使用此类信息,将无法使用对应功能,但不影响您通过上传纸质合同签名照片的方式完成签单认证过程。<span
  1323. lang=EN-US><o:p></o:p></span></span></p>
  1324. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1325. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1326. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1327. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第三方服务提供方对您个人信息的处理将适用该第三方服务的隐私政策。<span
  1328. lang=EN-US><o:p></o:p></span></span></p>
  1329. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1330. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1331. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1332. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1333. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1334. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1335. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1336. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1337. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1338. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1339. lang=EN-US><o:p></o:p></span></span></p>
  1340. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1341. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1342. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1343. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1344. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1345. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1346. 0pt'><o:p></o:p></span></p>
  1347. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1348. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1349. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1350. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1351. lang=EN-US><o:p></o:p></span></span></p>
  1352. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1353. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1354. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1355. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1356. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1357. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1358. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1359. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1360. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1361. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>麦克风(语音)权限</span></b><span
  1362. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1363. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>:</span><span style='mso-bidi-font-size:
  1364. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1365. 0pt'>在您执行运输任务过程中,需要与供应商及承运商联系时,需要使用您的<b>麦克风(语音)权限</b>,方便您发送语音内容。如您拒绝相关授权,将无法使用语音在线联系,但不影响您通过其他方式进行联系。<span
  1366. lang=EN-US><o:p></o:p></span></span></p>
  1367. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1368. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1369. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1370. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1371. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1372. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1373. 0pt'><o:p></o:p></span></p>
  1374. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1375. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1376. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1377. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1378. lang=EN-US><o:p></o:p></span></span></p>
  1379. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1380. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1381. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1382. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span></b><b><span
  1383. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1384. 宋体;mso-font-kerning:0pt'>)消息提醒<span lang=EN-US><o:p></o:p></span></span></b></p>
  1385. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1386. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1387. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1388. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1389. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1390. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1391. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1392. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1393. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1394. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在您使用平台内的消息功能时(<b>接收交易服务中订单、发票、资金、接收物流消息;接收提醒消息</b>),我们会将以上信息推送到您的手机桌面,我们会收集和使用您的网络信息、设备类型、设备型号、操作系统。<span
  1395. lang=EN-US><o:p></o:p></span></span></p>
  1396. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1397. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1398. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1399. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1400. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1401. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1402. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1403. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1404. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1405. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>信息推送权限</span></b><span
  1406. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1407. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>:</span><span style='mso-bidi-font-size:
  1408. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1409. 0pt'>在您接收消息时,需要使用您的<b>信息推送权限</b>接受推送消息。如您拒绝,将无法使用此类功能。<span lang=EN-US><o:p></o:p></span></span></p>
  1410. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1411. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1412. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1413. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span></b><b><span
  1414. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1415. 宋体;mso-font-kerning:0pt'>)分享功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1416. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1417. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1418. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1419. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1420. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1421. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1422. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1423. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1424. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1425. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您使用分享功能时,您可以选择分享平台上的公开信息(如您有权限分享的文字、链接)至<span
  1426. lang=EN-US>App</span>外部,在商品信息、商品列表、文章信息、邀请分享邀请内容可以使用分享功能。上述分享场景不采集个人信息。<span
  1427. lang=EN-US><o:p></o:p></span></span></p>
  1428. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1429. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1430. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1431. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1432. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1433. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1434. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1435. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1436. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1437. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1438. lang=EN-US><o:p></o:p></span></span></p>
  1439. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1440. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1441. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1442. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1443. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1444. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1445. 0pt'><o:p></o:p></span></p>
  1446. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1447. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1448. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1449. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在您使用分享至微信时,使用<b><span
  1450. lang=EN-US>“</span>微信分享<span lang=EN-US>”</span></b><span lang=EN-US>SDK</span>实现;分享至<span
  1451. lang=EN-US>QQ</span>时,使用<b><span lang=EN-US>“</span>腾讯分享<span lang=EN-US>”</span></b><span
  1452. lang=EN-US>SDK</span>实现。您可以通过拒绝相关系统权限或者不使用相关功能,如您拒绝,将无法完成对应功能,但不影响您使用其他功能。<span
  1453. lang=EN-US><o:p></o:p></span></span></p>
  1454. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1455. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1456. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1457. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>7</span></b><b><span
  1458. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1459. 宋体;mso-font-kerning:0pt'>)拍摄照片上传<span lang=EN-US><o:p></o:p></span></span></b></p>
  1460. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1461. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1462. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1463. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1464. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1465. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1466. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1467. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1468. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1469. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您在使用平台服务相关服务拍照上传证件、企业认证资料、物流服务拍照上传现场情况、我们使用第三方<span
  1470. lang=EN-US>SDK</span>帮助您使用摄像头拍照上传,不会采集您的个人信息。<span lang=EN-US><o:p></o:p></span></span></p>
  1471. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1472. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1473. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1474. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1475. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1476. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1477. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1478. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1479. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1480. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>摄像头(相机)权限</span></b><span
  1481. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1482. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>:</span><span style='mso-bidi-font-size:
  1483. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1484. 0pt'>在您拍摄并上传照片时,需要使用您的<b>摄像头(相机)权限</b>,如您拒绝相关授权,将无法使用相应功能,但不影响您使用其他功能。<span
  1485. lang=EN-US><o:p></o:p></span></span></p>
  1486. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1487. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1488. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1489. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>8</span></b><b><span
  1490. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1491. 宋体;mso-font-kerning:0pt'>)从相册选择照片上传<span lang=EN-US><o:p></o:p></span></span></b></p>
  1492. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1493. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1494. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1495. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1496. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1497. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1498. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1499. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1500. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1501. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您在使用平台服务上传证件、工作台服务上传企业认证资料、物流服务上传现场情况,我们使用第三方<span
  1502. lang=EN-US>SDK</span>仅从您的相册中选择照片上传,不会采集您的个人信息。<span lang=EN-US><o:p></o:p></span></span></p>
  1503. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1504. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1505. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1506. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1507. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1508. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1509. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1510. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1511. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1512. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>存储权限(安卓从相册选照片)<span
  1513. lang=EN-US>/</span>相册权限(<span lang=EN-US>ios</span>)</span></b><span
  1514. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1515. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>:</span><span style='mso-bidi-font-size:
  1516. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1517. 0pt'>在您从相册选择照片上传时使用您的<b>存储权限(安卓从相册读取)<span lang=EN-US>/</span>相册权限(<span
  1518. lang=EN-US>ios</span>)</b>,如您拒绝相关授权,将无法使用此功能,但不影响您使用其他功能<span lang=EN-US><o:p></o:p></span></span></p>
  1519. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1520. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1521. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1522. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>9</span></b><b><span
  1523. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1524. 宋体;mso-font-kerning:0pt'>)为您提供扫描服务功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1525. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1526. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1527. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1528. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1529. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1530. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1531. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1532. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1533. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1534. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了方便您在使用扫一扫服务,在您扫描平台商品二维码、平台登录二维码及质量异议拍照质量问题时,我们需要收集二维码照片及商品照片信息。不收集您的个人信息。<span
  1535. lang=EN-US><o:p></o:p></span></span></p>
  1536. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1537. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1538. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1539. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1540. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1541. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1542. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1543. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1544. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1545. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>摄像头(相机)权限</span></b><span
  1546. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1547. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>:</span><span style='mso-bidi-font-size:
  1548. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1549. 0pt'>在您通过扫一扫功能拍摄识别时,需要使用您的<b>摄像头(相机)权限</b>,如您拒绝相关授权,将无法使用相应功能,但不影响您使用其他功能。<span
  1550. lang=EN-US><o:p></o:p></span></span></p>
  1551. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1552. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1553. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1554. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>存储权限(安卓从相册选照片)<span
  1555. lang=EN-US>/</span>相册权限(<span lang=EN-US>ios</span>)</span></b><span
  1556. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1557. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>:</span><span style='mso-bidi-font-size:
  1558. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1559. 0pt'>在您使用扫一扫点击相册,从相册选择照片上传时使用您的<b>存储权限(安卓从相册读取)<span lang=EN-US>/</span>相册权限(<span
  1560. lang=EN-US>ios</span>)</b>,如您拒绝相关授权,将无法使用此功能,但不影响您使用其他功能。<span lang=EN-US><o:p></o:p></span></span></p>
  1561. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1562. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1563. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1564. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>10</span></b><b><span
  1565. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1566. 宋体;mso-font-kerning:0pt'>)为您提供客服和售后类服务功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1567. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1568. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1569. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1570. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1571. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1572. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1573. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1574. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1575. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1576. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了提供客服和售后服务功能,解决您的问题,我们需要收集以下信息。<span
  1577. lang=EN-US><o:p></o:p></span></span></p>
  1578. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1579. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1580. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1581. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您与我们的客服取得联系时,我们的系统可能会记录您与客服之间的<b>通讯记录</b>,以及使用<b>您的账号信息</b>以便核验身份;当您需要我们提供与您订单相关的客户服务时,我们可能会查询<b>您的相关订单信息</b>以便给予您适当的帮助和处理;当您需要客服协助您修改<b>个人信息</b>时,您可能还需要提供<b>上述信息外的其他信息</b>以便完成修改。同时,在售后服务功能中我们会收集<b>仓库名称、质量异议凭证包括质保书、规格标签、异议描述、联系人、联系电话</b>。<span
  1582. lang=EN-US><o:p></o:p></span></span></p>
  1583. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1584. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1585. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1586. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了提供客户呼叫服务,我们会使用<b>您的账号信息(联系方式)</b>为您提供咨询服务,包括调研、回访、呼叫提醒;同时,为了更好的服务,我们会在征得您的同意后适时开展此项服务。<span
  1587. lang=EN-US><o:p></o:p></span></span></p>
  1588. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1589. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1590. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1591. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1592. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1593. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1594. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1595. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1596. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1597. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1598. lang=EN-US><o:p></o:p></span></span></p>
  1599. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1600. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1601. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1602. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1603. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1604. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1605. 0pt'><o:p></o:p></span></p>
  1606. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1607. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1608. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1609. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1610. lang=EN-US><o:p></o:p></span></span></p>
  1611. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1612. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1613. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1614. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11</span></b><b><span
  1615. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1616. 宋体;mso-font-kerning:0pt'>)为您提供意见反馈服务功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1617. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1618. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1619. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1620. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1621. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1622. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1623. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1624. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1625. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1626. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您使用意见反馈服务功能时,为了我们能够更好地联系您及时反馈。我们需要收集<b>您的联系电话或其他联系方式信息</b>。此类信息为与您联络的<b>必要信息</b>,如不收集使用此类信息,将无法使用意见反馈服务功能,但不影响您使用其他功能。<span
  1627. lang=EN-US><o:p></o:p></span></span></p>
  1628. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1629. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1630. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1631. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1632. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1633. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1634. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1635. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1636. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1637. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1638. lang=EN-US><o:p></o:p></span></span></p>
  1639. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1640. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1641. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1642. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1643. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1644. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1645. 0pt'><o:p></o:p></span></p>
  1646. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1647. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1648. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1649. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1650. lang=EN-US><o:p></o:p></span></span></p>
  1651. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1652. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1653. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1654. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>12</span></b><b><span
  1655. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1656. 宋体;mso-font-kerning:0pt'>)为您提供银行直融付款服务功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1657. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1658. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1659. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1660. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1661. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1662. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1663. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1664. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1665. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1666. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了有助于您与银行更好更快达成合作及更好的服务,便于银行直融付款预授信。<span
  1667. lang=EN-US><o:p></o:p></span></span></p>
  1668. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1669. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1670. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1671. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您进入<span
  1672. lang=EN-US>“</span>铁合金掌上行<span lang=EN-US>”</span>使用铁合金掌上行提供银行直融付款服务功能时。我们会收集以下信息,对于个人我们收集您提交的<b>姓名、移动电话</b>,用于联系便于后期服务进行。对于企业我们会收集<b>企业员工人数、年销售额、期望开户银行、开票方的信息</b>,用于初审企业的能够受融资金数额。此类信息属于金融方在预授信环节中审核资质的<b>必要信息</b>,如您不能或拒绝提供上述信息,将无法为您完成此功能,但不会影响您使用其他功能。<span
  1673. lang=EN-US><o:p></o:p></span></span></p>
  1674. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1675. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1676. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1677. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您向金融方提交的具体的信息收集和使用规则请参见金融方与您另行签署的具体服务协议及隐私政策。<span
  1678. lang=EN-US><o:p></o:p></span></span></p>
  1679. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1680. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1681. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1682. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1683. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1684. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1685. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1686. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1687. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1688. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1689. lang=EN-US><o:p></o:p></span></span></p>
  1690. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1691. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1692. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1693. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1694. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1695. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1696. 0pt'><o:p></o:p></span></p>
  1697. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1698. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1699. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1700. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1701. lang=EN-US><o:p></o:p></span></span></p>
  1702. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1703. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1704. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1705. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>13</span></b><b><span
  1706. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1707. 宋体;mso-font-kerning:0pt'>)为您提供运输委托服务功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1708. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1709. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1710. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1711. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1712. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1713. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1714. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1715. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1716. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1717. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了运输和交易服务,我们需要收集<b>您的手机号码</b>。您点击确认使用该功能时,我们将把基于本隐私政策采集的<b>用户信息(手机号码)</b>推送给我们合作的第三方物流公司。<span
  1718. lang=EN-US><o:p></o:p></span></span></p>
  1719. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1720. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1721. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1722. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您完成下单结算后,需要委托运输时,您需要提交<b>联系号码</b>,同时需要填写<b>发货时间、起始地、目的地、委托重量信息</b>。铁合金掌上行平台会收集<b>您的联系号码、发货时间、起始地、目的地、委托重量信息</b>,便于委托运输完成交易。<span
  1723. lang=EN-US><o:p></o:p></span></span></p>
  1724. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1725. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1726. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1727. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>上述信息属于运输委托方与承运方完成运输任务时需要的<b>必要信息</b>,如您不能或拒绝提供上述信息,将无法为您完成此功能,但不会影响您使用其他功能。<span
  1728. lang=EN-US><o:p></o:p></span></span></p>
  1729. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1730. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1731. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1732. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1733. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1734. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1735. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1736. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1737. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1738. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1739. lang=EN-US><o:p></o:p></span></span></p>
  1740. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1741. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1742. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1743. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1744. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1745. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1746. 0pt'><o:p></o:p></span></p>
  1747. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1748. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1749. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1750. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1751. lang=EN-US><o:p></o:p></span></span></p>
  1752. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1753. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1754. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1755. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>14</span></b><b><span
  1756. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1757. 宋体;mso-font-kerning:0pt'>)为您提供活动抽奖功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1758. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1759. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1760. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1761. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1762. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1763. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1764. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1765. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1766. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1767. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了方便与您进行活动互动,更好的服务用户,我们提供了预售产品活动中签功能。当您中签时候,我们会收集您提交的<b>手机号码</b>等个人信息如您拒绝,将无法进行预售中签活动功能,但不影响您使用其他功能。<span
  1768. lang=EN-US><o:p></o:p></span></span></p>
  1769. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1770. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1771. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1772. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1773. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1774. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1775. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1776. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1777. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1778. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1779. lang=EN-US><o:p></o:p></span></span></p>
  1780. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1781. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1782. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1783. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1784. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1785. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1786. 0pt'><o:p></o:p></span></p>
  1787. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1788. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1789. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1790. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1791. lang=EN-US><o:p></o:p></span></span></p>
  1792. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1793. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1794. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1795. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>15</span></b><b><span
  1796. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1797. 宋体;mso-font-kerning:0pt'>)为您提供问卷调研功能<span lang=EN-US><o:p></o:p></span></span></b></p>
  1798. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1799. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1800. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1801. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1802. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1803. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1804. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1805. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1806. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1807. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为了更好的服务用户,我们提供了问卷调研功能。为了进一步与您联系,我们会收集您提交的<b>姓名、公司名称、公司性质、所在部门及职务</b>。此类信息与您联络及保障调研结果可读性的<b>必要信息</b>,如您拒绝将无法使用问卷调研功能,但不影响您使用其他功能。<span
  1808. lang=EN-US><o:p></o:p></span></span></p>
  1809. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1810. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1811. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1812. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)调用的敏感权限</span></b><span
  1813. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1814. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1815. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1816. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1817. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1818. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1819. lang=EN-US><o:p></o:p></span></span></p>
  1820. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1821. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1822. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1823. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)涉及的第三方<span
  1824. lang=EN-US>SDK</span>清单</span></b><span lang=EN-US style='mso-bidi-font-size:
  1825. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1826. 0pt'><o:p></o:p></span></p>
  1827. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1828. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1829. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1830. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1831. lang=EN-US><o:p></o:p></span></span></p>
  1832. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1833. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1834. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1835. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>16</span></b><b><span
  1836. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1837. 宋体;mso-font-kerning:0pt'>)运营与运行安全<span lang=EN-US><o:p></o:p></span></span></b></p>
  1838. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1839. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1840. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1841. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)收集个人信息的范围</span></b><span
  1842. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1843. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1844. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1845. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1846. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1847. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>设备信息:当您使用铁合金掌上行平台应用时,为了保障软件与服务的安全运行我们会收集设备连接信息(浏览器的类型、电信运营商、使用的语言)、系统信息(设备类型、设备型号、操作系统)、网络信息。<span
  1848. lang=EN-US><o:p></o:p></span></span></b></p>
  1849. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1850. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1851. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1852. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>单独的设备信息是无法识别特定自然人身份的信息。为了从您的各种设备上收集到的信息,我们可能会将它们进行关联,以便我们能在这些设备上为您提供一致的服务。除取得您授权或法律法规另有规定外,我们会将这类信息做匿名化、去标识化处理。<span
  1853. lang=EN-US><o:p></o:p></span></span></p>
  1854. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1855. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1856. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1857. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>若您不提供这类信息,将可能导致<span
  1858. lang=EN-US>App</span>无法正常运行。<span lang=EN-US><o:p></o:p></span></span></p>
  1859. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1860. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1861. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1862. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)运营与运行安全调用的敏感权限</span></b><span
  1863. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1864. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1865. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1866. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1867. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1868. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>无。<span
  1869. lang=EN-US><o:p></o:p></span></span></p>
  1870. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1871. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1872. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1873. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)运营与运行安全调用的其他权限</span></b><span
  1874. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1875. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1876. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1877. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1878. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1879. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>安装及更新:</span></b><span
  1880. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1881. 宋体;mso-font-kerning:0pt'>当版本更新时,获取<b>更新安装包权限</b>,为了帮助您<b>安装最新更新包</b>。<span
  1882. lang=EN-US><o:p></o:p></span></span></p>
  1883. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1884. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1885. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1886. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>访问网络状态:</span></b><span
  1887. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1888. 宋体;mso-font-kerning:0pt'>当您使用功能时候,获取<b>网络访问权限</b>,为了帮助您在使用过程中<b>与平台获得正常的网络通信</b>。<span
  1889. lang=EN-US><o:p></o:p></span></span></p>
  1890. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  1891. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1892. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  1893. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(二)我们可能如何使用收集到的信息<span
  1894. lang=EN-US><o:p></o:p></span></span></b></p>
  1895. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1896. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1897. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1898. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>提供和改进产品和服务。我们使用收集的信息来提供并改进我们及我们的关联公司及其他受信任的第三方提供的产品和服务,并进行必要的业务运营,运营产品或提供服务、评估、维护和改进产品或服务的性能,参与有关我们产品和服务的市场调查活动,开发新的产品或服务、提供客户支持。<span
  1899. lang=EN-US><o:p></o:p></span></span></p>
  1900. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1901. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1902. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1903. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为改进我们及我们的关联公司及其他受信任的第三方提供的产品和服务,铁合金掌上行平台可能会对产品使用情况进行统计和分析。同时,铁合金掌上行平台可能会与公众共享这些统计信息,以展示我们服务的整体使用趋势,但这些统计信息将不会包含您的任何身份识别信息,信息会做匿名化、去标识化处理。<span
  1904. lang=EN-US><o:p></o:p></span></span></p>
  1905. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1906. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1907. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1908. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(三)需要您授权同意调取系统权限的情形</span></b><span
  1909. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1910. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1911. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1912. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1913. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1914. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在为您提供前述基本功能、附加功能、改进产品<span
  1915. lang=EN-US>/</span>服务的功能,或第三方<span lang=EN-US>SDK</span>收集使用您的个人信息时,部分场景的实现依赖于您同意客户端(<span
  1916. lang=EN-US>App</span>)、第三方<span lang=EN-US>SDK</span>调取您所使用设备的相应系统权限。只有在您登录且首次进入特定使用场景时,客户端(<span
  1917. lang=EN-US>App</span>)才会通过弹窗申请来获取您的同意。您可以在您的终端设备中逐项查看各种权限的开启状态,并可以随时开启或关闭这些权限(视终端设备及操作系统不同,可能略有差异);另外,我们也在客户端(<span
  1918. lang=EN-US>App</span>)中设置了专门、集中的权限管理页面,方便您查看和管理部分敏感权限。请您注意,您开启这些权限即代表您在使用我们服务期间持续授权我们可以收集和使用这些个人信息来实现上述的功能,您关闭权限即代表您取消了这些授权,则我们将不再继续收集和使用您的这些个人信息,也无法为您提供上述与这些授权所对应的功能。您关闭权限的决定不会影响此前基于您的授权所进行的个人信息的处理。<span
  1919. lang=EN-US><o:p></o:p></span></span></p>
  1920. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1921. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1922. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1923. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(四)第三方<span
  1924. lang=EN-US>SDK</span>(或<span lang=EN-US>API</span>)收集、使用您个人信息的情形</span></b><span
  1925. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1926. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1927. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1928. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1929. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1930. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>我们提供部分功能和<span
  1931. lang=EN-US>/</span>或服务时需要使用第三方<span lang=EN-US>SDK</span>(或<span lang=EN-US>API</span>)技术,这些第三方<span
  1932. lang=EN-US>SDK</span>(或<span lang=EN-US>API</span>)可能会收集或使用您的部分个人信息<span
  1933. lang=EN-US>/</span>设备权限,请您知悉<span lang=EN-US>SDK</span>在使用相关系统权限时会通过设备系统弹窗的形式单独征求同意。我们会对相关<span
  1934. lang=EN-US>SDK</span>(或<span lang=EN-US>API</span>)进行严格的安全检测,并采取技术手段,努力确保其按照本政策以及其他任何相关的保密和安全措施,并与其签署协议来规范对于用户信息的使用。<span
  1935. lang=EN-US><o:p></o:p></span></span></p>
  1936. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1937. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1938. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1939. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(五)个性化推荐</span></b><span
  1940. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1941. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1942. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1943. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1944. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1945. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行平台不使用自动化决策、个性化推荐功能。<span
  1946. lang=EN-US><o:p></o:p></span></span></p>
  1947. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  1948. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1949. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  1950. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(六)在以下情形中,收集、使用个人信息无需事先征得您的授权同意:<span
  1951. lang=EN-US><o:p></o:p></span></span></b></p>
  1952. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1953. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1954. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1955. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span><span
  1956. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1957. 宋体;mso-font-kerning:0pt'>、与个人信息控制者履行法律法规规定的义务相关的;<span lang=EN-US><o:p></o:p></span></span></p>
  1958. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1959. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1960. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1961. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span><span
  1962. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1963. 宋体;mso-font-kerning:0pt'>、与国家安全、国防安全直接相关的;<span lang=EN-US><o:p></o:p></span></span></p>
  1964. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1965. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1966. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1967. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span><span
  1968. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1969. 宋体;mso-font-kerning:0pt'>、与公共安全、公共卫生、重大公共利益直接相关的;<span lang=EN-US><o:p></o:p></span></span></p>
  1970. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1971. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1972. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1973. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>4</span><span
  1974. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1975. 宋体;mso-font-kerning:0pt'>、与刑事侦查、起诉、审判和判决执行等直接相关的;<span lang=EN-US><o:p></o:p></span></span></p>
  1976. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1977. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1978. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1979. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5</span><span
  1980. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1981. 宋体;mso-font-kerning:0pt'>、出于维护您或其他个人的生命、财产等重大合法权益但又很难得到您本人授权同意的;<span
  1982. lang=EN-US><o:p></o:p></span></span></p>
  1983. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1984. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1985. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1986. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>6</span><span
  1987. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1988. 宋体;mso-font-kerning:0pt'>、所收集的个人信息是您自行向社会公众公开的;<span lang=EN-US><o:p></o:p></span></span></p>
  1989. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1990. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1991. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1992. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>7</span><span
  1993. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1994. 宋体;mso-font-kerning:0pt'>、从合法公开披露的信息中收集个人信息的,如合法的新闻报道、政府信息公开渠道;<span
  1995. lang=EN-US><o:p></o:p></span></span></p>
  1996. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1997. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1998. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1999. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>8</span><span
  2000. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2001. 宋体;mso-font-kerning:0pt'>、根据您的要求向您提供产品或服务所必需的;<span lang=EN-US><o:p></o:p></span></span></p>
  2002. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2003. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2004. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2005. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>9</span><span
  2006. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2007. 宋体;mso-font-kerning:0pt'>、用于维护所提供的产品或服务的安全稳定运行所必需的,例如发现、处置产品或服务的故障;<span
  2008. lang=EN-US><o:p></o:p></span></span></p>
  2009. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2010. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2011. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2012. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>10</span><span
  2013. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2014. 宋体;mso-font-kerning:0pt'>、为新闻单位开展合法的新闻报道所必需的;<span lang=EN-US><o:p></o:p></span></span></p>
  2015. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2016. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2017. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2018. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11</span><span
  2019. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2020. 宋体;mso-font-kerning:0pt'>、学术研究机构基于公共利益开展统计或学术研究所必要,且对外提供学术研究或描述的结果时,对结果中所包含的个人信息进行去标识化处理的。<span
  2021. lang=EN-US><o:p></o:p></span></span></p>
  2022. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2023. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2024. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2025. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(七)我们在符合下列条件之一时,可以对收集您的信息进行必要范围以外的利用:<span
  2026. lang=EN-US><o:p></o:p></span></span></b></p>
  2027. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2028. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2029. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2030. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span><span
  2031. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2032. 宋体;mso-font-kerning:0pt'>、已取得您的书面同意,或通过其他您认可的方式取得同意;<span lang=EN-US><o:p></o:p></span></span></p>
  2033. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2034. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2035. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2036. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span><span
  2037. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2038. 宋体;mso-font-kerning:0pt'>、为免除您在生命、身体或财产方面之急迫危险,以及,为免除您的企业财产方面之急迫危险;<span
  2039. lang=EN-US><o:p></o:p></span></span></p>
  2040. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2041. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2042. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2043. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span><span
  2044. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2045. 宋体;mso-font-kerning:0pt'>、在紧急的情况下,为了保护我们及用户的个人或公众安全。<span lang=EN-US><o:p></o:p></span></span></p>
  2046. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2047. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2048. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2049. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(八)当我们要将信息用于本隐私政策未载明的其他用途时,会事先征求您的同意。<span
  2050. lang=EN-US><o:p></o:p></span></span></b></p>
  2051. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2052. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2053. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2054. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当我们要将基于特定目的收集而来的信息用于其他目的时,会事先征求您的同意。我们可能使用您的信息用于安全防范和诈骗监测,以预防、发现、调查欺诈、危害安全、非法或违反与我们的协议、政策或规则的行为,以保护您、我们或我们的关联公司及社会公众的合法权益。<span
  2055. lang=EN-US><o:p></o:p></span></span></b></p>
  2056. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  2057. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2058. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  2059. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>三、我们如何共享、转让、公开披露您的个人信息以及所接入的第三方<span
  2060. lang=EN-US><o:p></o:p></span></span></b></p>
  2061. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2062. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2063. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2064. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>仅为实现本隐私政策的目的,我们的服务将由授权第三方提供。我们可能会与第三方共享<b>您的个人信息</b>,以提供更好的客户服务和用户体验。我们仅会出于合法、正当、必要、特定、明确的目的共享<b>您的个人信息</b>,并且只会共享提供服务所必要的<b>个人信息</b>,提供的个人信息包括<b>您的注册信息、财产信息</b>。我们的第三方无权将共享的个人信息用于任何其他用途。<span
  2065. lang=EN-US><o:p></o:p></span></span></p>
  2066. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2067. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2068. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2069. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(一)共享<span lang=EN-US><o:p></o:p></span></span></b></p>
  2070. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2071. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2072. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2073. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>除非经过您本人事先授权同意,我们不会向除铁合金掌上行平台以外的第三方共享<b>您的个人信息</b>,但经过处理无法识别特定个人且不能复原的除外。<span
  2074. lang=EN-US><o:p></o:p></span></span></p>
  2075. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2076. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2077. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2078. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span><span
  2079. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2080. 宋体;mso-font-kerning:0pt'>、在下列情况下,经过您的授权同意,我们可能会共享的个人信息:<span lang=EN-US><o:p></o:p></span></span></p>
  2081. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2082. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2083. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2084. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)<b>第三方产品或服务提供商。当您使用第三方产品或服务时,我们会根据您的授权将使用第三方产品或服务所必需的信息提供给第三方产品或服务提供商,以便其基于相关信息为您提供产品或服务。</b>关于第三方服务具体如何收集、使用您的个人信息,建议您参考第三方服务的相关服务协议及隐私政策。<b>具体第三方共享目的、范围见本隐私政策第一条<span
  2085. lang=EN-US>&nbsp;</span>我们如何收集和使用您的个人信息第(二)款。</b><span lang=EN-US><o:p></o:p></span></span></p>
  2086. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2087. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2088. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2089. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)<b>特定服务合作方</b>。我们会按照法律法规及相关国家标准要求,以弹框提示、确认授权、电子协议多种形式征得您的同意,或确认第三方已征得您的同意,您可以授权通过服务器后台传输共享<b>您的个人信息(包括手机号码、昵称、头像)</b>便于免密登录访问或创建第三方账户。<span
  2090. lang=EN-US><o:p></o:p></span></span></p>
  2091. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2092. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2093. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2094. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)<b>与关联公司共享</b>。为向您提供一致化服务以及便于您进行统一管理,我们可能会将<b>您的个人信息</b>与我们的关联公司共享。但我们只会共享必要的个人信息,
  2095. 如果我们共享<b>您的个人敏感信息</b>或者关联方改变<b>个人信息</b>的使用目的,将再次征求您的授权同意。<span lang=EN-US><o:p></o:p></span></span></p>
  2096. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2097. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2098. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2099. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>4</span>)<b>金融服务平台或服务提供商</b>。您授权我们有权根据您对金融服务类第三方的授权,或基于法律法规的要求或强制性的政府要求或司法文书,对<b>您的个人信息</b>进行匿名化的数据统计和分析处理,并将数据处理的结果提供给金融服务平台或提供商,用于判定您的资信状况,办理相关金融业务。<span
  2100. lang=EN-US><o:p></o:p></span></span></p>
  2101. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2102. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2103. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2104. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span><span
  2105. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2106. 宋体;mso-font-kerning:0pt'>、对我们与之共享个人信息的公司、组织和个人,我们会对其数据安全环境进行调查,与其签署严格的保密协定,要求他们按照我们的说明、本隐私政策以及其他任何相关的保密和安全措施来处理个人信息。<span
  2107. lang=EN-US><o:p></o:p></span></span></p>
  2108. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2109. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2110. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2111. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span><span
  2112. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2113. 宋体;mso-font-kerning:0pt'>、您主动与他人共享的信息<span lang=EN-US><o:p></o:p></span></span></p>
  2114. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2115. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2116. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2117. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您可以利用铁合金掌上行平台的分享功能与微信、其他社交平台好友共享信息,包括<b>您的信息、商品信息结果</b>。请您在使用第三方服务或分享功能前充分考虑信息接收人的信誉情况,并建议您查看您利用的社交网络或第三方服务提供商的隐私声明,以了解他们如何处理您的信息,以便审慎决策。<span
  2118. lang=EN-US><o:p></o:p></span></span></p>
  2119. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2120. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2121. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2122. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>4</span><span
  2123. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2124. 宋体;mso-font-kerning:0pt'>、以下情况我们可以与平台以外的任何公司、组织和个人共享您的个人信息<span lang=EN-US><o:p></o:p></span></span></p>
  2125. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2126. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2127. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2128. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)事先获得您明确的同意或授权;<span
  2129. lang=EN-US><o:p></o:p></span></span></p>
  2130. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2131. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2132. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2133. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)根据适用的法律法规、法律程序的要求、强制性的行政或司法要求所必需的情况下进行提供;<span
  2134. lang=EN-US><o:p></o:p></span></span></p>
  2135. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2136. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2137. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2138. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)您通过本平台购买商品或服务,我们会根据您的选择,将您的订单信中与交易有关的必要信息共享给相关商品或服务的提供者,以实现您的交易及售后服务需求;<span
  2139. lang=EN-US><o:p></o:p></span></span></p>
  2140. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2141. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2142. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2143. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>4</span>)我们可能会将您授权的个人信息与我们的关联方或第三方共享。但我们仅会出于合法、正当、必要、特定、明确的目的共享您的个人信息,并且只会共享提供服务所必要的个人信息。我们的第三方无权将共享的个人信息用于任何其他用途。我们的关联方或第三方包括以下类型:<span
  2144. lang=EN-US><o:p></o:p></span></span></p>
  2145. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2146. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2147. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2148. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>商品或技术服务的供应商。我们可能会将您的个人信息共享给支持我们功能的第三方。这些支持包括为我们的供货或提供基础设施技术服务、物流配送服务、支付服务、数据处理。<span
  2149. lang=EN-US><o:p></o:p></span></span></p>
  2150. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2151. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2152. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2153. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第三方商家。我们必须将您的订单信息与交易有关的必要信息与第三方商家共享来实现您向其购买商品或服务的需求,包括为防止欺诈违法活动和减少信用风险,而与其他公司和组织交换信息。不过,这并不包括违反本政策中所做的承诺而为获利目的出售、出租、共享或以其它方式披露的个人信息。<span
  2154. lang=EN-US><o:p></o:p></span></span></p>
  2155. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2156. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2157. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2158. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(二)转让<span lang=EN-US><o:p></o:p></span></span></b></p>
  2159. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2160. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2161. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2162. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>我们不会将您的个人信息转让给除关联公司外的任何公司、组织和个人,但以下情况除外:<span
  2163. lang=EN-US><o:p></o:p></span></span></p>
  2164. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2165. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2166. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2167. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span><span
  2168. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2169. 宋体;mso-font-kerning:0pt'>、事先获得您的明确授权或同意;<span lang=EN-US><o:p></o:p></span></span></p>
  2170. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2171. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2172. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2173. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span><span
  2174. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2175. 宋体;mso-font-kerning:0pt'>、满足法律法规的要求或强制性的政府要求或司法文书;<span lang=EN-US><o:p></o:p></span></span></p>
  2176. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2177. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2178. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2179. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span><span
  2180. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2181. 宋体;mso-font-kerning:0pt'>、如果我们或我们的关联公司涉及合并、分立、清算、资产或业务的收购或出售交易,您的个人信息有可能作为此类交易的一部分而被转移,我们将确保该信息在转移时的机密性,并尽最大可能确保新的持有您个人信息的公司、组织继续受此隐私政策的约束,否则我们将要求该公司、组织重新向您征求授权同意。<span
  2182. lang=EN-US><o:p></o:p></span></span></p>
  2183. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2184. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2185. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2186. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(三)公开披露<span lang=EN-US><o:p></o:p></span></span></b></p>
  2187. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2188. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2189. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2190. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在如下情况下,我们将依据您的个人意愿或法律的规定全部或部分的披露您的个人信息:<span
  2191. lang=EN-US><o:p></o:p></span></span></p>
  2192. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2193. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2194. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2195. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span><span
  2196. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2197. 宋体;mso-font-kerning:0pt'>、经您事先同意或许可,向第三方披露;<span lang=EN-US><o:p></o:p></span></span></p>
  2198. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2199. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2200. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2201. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span><span
  2202. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2203. 宋体;mso-font-kerning:0pt'>、为提供您所要求的产品和服务,而必须和第三方分享您的个人信息;<span lang=EN-US><o:p></o:p></span></span></p>
  2204. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2205. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2206. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2207. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span><span
  2208. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2209. 宋体;mso-font-kerning:0pt'>、根据法律法规、规章或规范性文件的有关规定,或者行政、司法机构的要求,向第三方或者行政、司法机构披露;<span
  2210. lang=EN-US><o:p></o:p></span></span></p>
  2211. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2212. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2213. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2214. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>4</span><span
  2215. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2216. 宋体;mso-font-kerning:0pt'>、如您出现违反中华人民共和国有关法律法规或者铁合金掌上行平台服务协议或相关规则的情况,需要向第三方披露;<span
  2217. lang=EN-US><o:p></o:p></span></span></p>
  2218. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2219. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2220. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2221. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5</span><span
  2222. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2223. 宋体;mso-font-kerning:0pt'>、如您是适格的知识产权投诉人并已提起投诉,应被投诉人要求,向被投诉人披露,以便双方处理可能的权利义务纠纷;<span
  2224. lang=EN-US><o:p></o:p></span></span></p>
  2225. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2226. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2227. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2228. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>6</span><span
  2229. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2230. 宋体;mso-font-kerning:0pt'>、在本平台上创建的某一交易中,如交易任何一方履行或部分履行了交易义务并提出信息披露请求的,本平台有权决定向该用户提供其交易对方的联络方式必要信息,以促成交易的完成或纠纷的解决。<span
  2231. lang=EN-US><o:p></o:p></span></span></p>
  2232. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2233. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2234. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2235. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(四)共享、转让、公开披露个人信息时事先征得授权同意的例外<span
  2236. lang=EN-US><o:p></o:p></span></span></b></p>
  2237. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2238. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2239. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2240. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在以下情形中,共享、转让、公开披露个人信息无需事先征得个人信息主体的授权同意:<span
  2241. lang=EN-US><o:p></o:p></span></span></p>
  2242. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2243. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2244. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2245. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span><span
  2246. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2247. 宋体;mso-font-kerning:0pt'>、与个人信息控制者履行法律法规规定的义务相关的;<span lang=EN-US><o:p></o:p></span></span></p>
  2248. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2249. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2250. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2251. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span><span
  2252. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2253. 宋体;mso-font-kerning:0pt'>、与国家安全、国防安全直接相关的;<span lang=EN-US><o:p></o:p></span></span></p>
  2254. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2255. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2256. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2257. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span><span
  2258. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2259. 宋体;mso-font-kerning:0pt'>、与公共安全、公共卫生、重大公共利益直接相关的;<span lang=EN-US><o:p></o:p></span></span></p>
  2260. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2261. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2262. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2263. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>4</span><span
  2264. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2265. 宋体;mso-font-kerning:0pt'>、与刑事侦查、起诉、审判和判决执行等直接相关的;<span lang=EN-US><o:p></o:p></span></span></p>
  2266. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2267. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2268. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2269. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5</span><span
  2270. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2271. 宋体;mso-font-kerning:0pt'>、出于维护您或其他个人的生命、财产等重大合法权益但又很难得到您本人授权同意的;<span
  2272. lang=EN-US><o:p></o:p></span></span></p>
  2273. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2274. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2275. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2276. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>6</span><span
  2277. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2278. 宋体;mso-font-kerning:0pt'>、所收集的个人信息是您自行向社会公众公开的;<span lang=EN-US><o:p></o:p></span></span></p>
  2279. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2280. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2281. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2282. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>7</span><span
  2283. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2284. 宋体;mso-font-kerning:0pt'>、从合法公开披露的信息中收集个人信息的,如合法的新闻报道、政府信息公开渠道。<span
  2285. lang=EN-US><o:p></o:p></span></span></p>
  2286. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  2287. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2288. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  2289. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>四、我们如何保存及保护您的个人信息<span
  2290. lang=EN-US><o:p></o:p></span></span></b></p>
  2291. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2292. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2293. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2294. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>我们将对您所提供的信息进行严格的管理及保护。我们将使用相应的技术,防止您人员的个人信息丢失、被盗用或遭篡改。我们将采取各种合适的物理、电子和管理方面的措施来保护您的个人数据,以实现对数据安全的承诺。我们会采取各种实际措施保证个人信息保存的合理期限,并将遵守所有关于可辨识个人信息保存的法规要求。同样的,对于您的保密信息,我们也将采取以下保护措施。<span
  2295. lang=EN-US><o:p></o:p></span></span></p>
  2296. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2297. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2298. background:white'><b><span lang=EN-US style='font-size:12.0pt;line-height:150%;
  2299. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span></b><b><span
  2300. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2301. 宋体;mso-font-kerning:0pt'>、保存期限<span lang=EN-US><o:p></o:p></span></span></b></p>
  2302. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2303. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2304. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2305. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您在使用铁合金掌上行平台产品及服务期间,我们将持续为您保存您的个人信息。如果您注销帐户或主动删除上述信息,我们将依据法律法规规定保存您的信息。在您注销帐户或主动删除上述信息后,我们不会再对您的个人信息进行商业化使用,但我们可能会对您的个人信息进行匿名化处理后使用。我们对个人信息存储期限按照法律法规规定储存,个人信息超期的将进行合理删除处理方式。我们只会在达成本政策所述目的所需的期限内保留您的个人信息,除非法律有强制的留存要求。<span
  2306. lang=EN-US><o:p></o:p></span></span></b></p>
  2307. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2308. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2309. background:white'><b><span lang=EN-US style='font-size:12.0pt;line-height:150%;
  2310. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span></b><b><span
  2311. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2312. 宋体;mso-font-kerning:0pt'>、保存地域<span lang=EN-US><o:p></o:p></span></span></b></p>
  2313. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2314. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2315. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2316. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您的个人信息均储存于中华人民共和国境内。如需跨境储存,我们将会严格按照法律法规的规定执行,并单独征得您的授权同意。<span
  2317. lang=EN-US><o:p></o:p></span></span></b></p>
  2318. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2319. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2320. background:white'><b><span lang=EN-US style='font-size:12.0pt;line-height:150%;
  2321. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span></b><b><span
  2322. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2323. 宋体;mso-font-kerning:0pt'>、安全措施<span lang=EN-US><o:p></o:p></span></span></b></p>
  2324. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2325. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2326. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2327. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)我们会以<span
  2328. lang=EN-US>“</span>最小化<span lang=EN-US>”</span>原则收集、使用、存储和传输用户信息,并通过用户协议和隐私政策告知您相关信息的使用目的和范围。<span
  2329. lang=EN-US><o:p></o:p></span></span></p>
  2330. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2331. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2332. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2333. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)我们非常重视信息安全。我们成立了专责团队负责研发和应用多种安全技术和程序,我们会对安全管理负责人和关键安全岗位的人员进行安全背景审查,我们建立了完善的信息安全管理制度和内部安全事件处置机制。我们会采取适当的符合业界标准的安全措施和技术手段存储和保护您的个人信息,以防止您的信息丢失、遭到被未经授权的访问、公开披露、使用、毁损、丢失或泄漏。我们会采取一切合理可行的措施,保护您的个人信息。我们会使用加密技术确保数据的保密性;我们会使用受信赖的保护机制防止数据遭到恶意攻击。<span
  2334. lang=EN-US><o:p></o:p></span></span></p>
  2335. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2336. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2337. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2338. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)我们会对员工进行数据安全的意识培养和安全能力的培训和考核,加强员工对于保护个人信息重要性的认识。我们会对处理个人信息的员工进行身份认证及权限控制,并会与接触您个人信息的员工、第三方签署保密协议,明确岗位职责及行为准则,确保只有授权人员才可访问个人信息。若有违反保密协议的行为,会被立即终止与铁合金掌上行平台的合作关系,并会被追究相关法律责任,对接触个人信息人员在离岗时也提出了保密要求。<span
  2339. lang=EN-US><o:p></o:p></span></span></p>
  2340. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2341. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2342. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2343. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>4</span>)我们也请您理解,在互联网行业由于技术的限制和飞速发展以及可能存在的各种恶意攻击手段,即便我们竭尽所能加强安全措施,也不可能始终保证信息的百分之百安全。请您了解,您使用我们的产品或服务时所用的系统和通讯网络,有可能在我们控制之外的其他环节而出现安全问题。<span
  2344. lang=EN-US><o:p></o:p></span></span></p>
  2345. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2346. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2347. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2348. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>5</span>)根据我们的安全管理制度,个人信息泄露、毁损或丢失事件被列为最特大安全事件,一经发生将启动最高级别的紧急预案,由安全部、法务部多个部门组成联合应急响应小组处理。<span
  2349. lang=EN-US><o:p></o:p></span></span></p>
  2350. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2351. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2352. background:white'><b><span lang=EN-US style='font-size:12.0pt;line-height:150%;
  2353. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>4</span></b><b><span
  2354. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2355. 宋体;mso-font-kerning:0pt'>、安全事件通知<span lang=EN-US><o:p></o:p></span></span></b></p>
  2356. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2357. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2358. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2359. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)我们会制定网络安全事件应急预案,及时处置系统漏洞、计算机病毒、网络攻击、网络侵入安全风险,在发生危害网络安全的事件时,我们会立即启动应急预案,采取相应的补救措施,并按照规定向有关主管部门报告。<span
  2360. lang=EN-US><o:p></o:p></span></span></p>
  2361. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2362. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2363. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2364. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)个人信息泄露、毁损、丢失属于特大安全事件,我们会负责定期组织工作组成员进行安全预案演练,防止此类安全事件发生。若一旦不幸发生,我们将按照最高优先级启动应急预案,组成紧急应急小组,在最短时间内追溯原因并减少损失。<span
  2365. lang=EN-US><o:p></o:p></span></span></p>
  2366. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2367. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2368. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2369. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)在不幸发生个人信息安全事件后,我们将按照法律法规的要求,及时向您告知安全事件的基本情况和可能的影响、我们已采取或将要采取的处理措施、您可自主防范和降低的风险的建议、对您的补救措施。我们将及时将事件相关情况以站内通知、短信通知、电话、邮件您预留的联系方式告知您,难以逐一告知时我们会采取合理、有效的方式发布公告。同时,我们还将按照监管部门要求,主动上报个人信息安全事件的处置情况。<span
  2370. lang=EN-US><o:p></o:p></span></span></p>
  2371. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2372. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2373. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  2374. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5</span></b><b><span
  2375. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2376. 宋体;mso-font-kerning:0pt'>、个人信息出境</span></b><span lang=EN-US style='mso-bidi-font-size:
  2377. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  2378. 0pt'><o:p></o:p></span></p>
  2379. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2380. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2381. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2382. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>个人信息出境是指网络运营者向境外提供在中华人民共和国境内运营中收集的个人信息。我们严格按照法律法规、铁合金掌上行平台注册协议的要求保护和使用您的个人信息。特别说明,我们不存在个人信息出境的情形。如果需要个人信息出境,铁合金掌上行平台将会另行取得您的同意授权。<span
  2383. lang=EN-US><o:p></o:p></span></span></p>
  2384. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  2385. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2386. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  2387. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>五、关于您的权利<span lang=EN-US><o:p></o:p></span></span></b></p>
  2388. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2389. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2390. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2391. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>按照中华人民共和国相关的法律法规,以及其他国家、地区的通行做法,我们保障您对自己的个人信息行使以下权利及方式:<span
  2392. lang=EN-US><o:p></o:p></span></span></p>
  2393. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2394. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2395. background:white'><b><span lang=EN-US style='font-size:12.0pt;line-height:150%;
  2396. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span></b><b><span
  2397. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2398. 宋体;mso-font-kerning:0pt'>、访问权<span lang=EN-US><o:p></o:p></span></span></b></p>
  2399. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2400. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2401. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2402. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>原则上您可以通过如下方式访问您的个人信息:<span
  2403. lang=EN-US><o:p></o:p></span></span></b></p>
  2404. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2405. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2406. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2407. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>账户信息:您可以随时登录铁合金掌上行平台,访问或编辑<b>您的账户中的个人资料信息、更改您的密码、添加安全信息、进行账户关联或身份认证</b>。<span
  2408. lang=EN-US><o:p></o:p></span></span></p>
  2409. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2410. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2411. background:white'><b><span lang=EN-US style='font-size:12.0pt;line-height:150%;
  2412. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span></b><b><span
  2413. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2414. 宋体;mso-font-kerning:0pt'>、更正权<span lang=EN-US><o:p></o:p></span></span></b></p>
  2415. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2416. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2417. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2418. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您发现我们处理的关于您的个人信息有错误时,经对您的身份进行验证,且更正不影响信息的客观性和准确性的情况下,您有权对错误或不完整的信息作出更正或更新。<span
  2419. lang=EN-US><o:p></o:p></span></span></b></p>
  2420. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2421. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2422. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2423. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在【<span
  2424. lang=EN-US>APP</span>端】您可以自行登录账号后在<span lang=EN-US>“</span></span></b><span
  2425. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2426. 宋体;mso-font-kerning:0pt'>【<b>我的</b>】<b><span lang=EN-US>-</span></b>【<b>头像</b>】<b><span
  2427. lang=EN-US>”</span>中进行相关更正信息,或发送邮箱【<a name="_Hlk116623894"><span lang=EN-US>thjszx@163.com</span></a>】将您的更正申请提交给我们进行更正。</b><span
  2428. lang=EN-US><o:p></o:p></span></span></p>
  2429. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2430. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2431. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2432. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您可以按本隐私政策中<span
  2433. lang=EN-US>“</span>第五条<span lang=EN-US>1</span>、访问权<span lang=EN-US>”</span>中规定的途径进行相关信息更正。</span></b><span
  2434. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  2435. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2436. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2437. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2438. background:white'><b><span lang=EN-US style='font-size:12.0pt;line-height:150%;
  2439. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span></b><b><span
  2440. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2441. 宋体;mso-font-kerning:0pt'>、删除权<span lang=EN-US><o:p></o:p></span></span></b></p>
  2442. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2443. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2444. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2445. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在以下情形中,您可以发送邮箱【</span></b><b><span
  2446. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  2447. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>thjszx@163.com</span></b><b><span
  2448. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2449. 宋体;mso-font-kerning:0pt'>】向我们提出删除个人信息的请求:<span lang=EN-US><o:p></o:p></span></span></b></p>
  2450. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2451. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2452. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2453. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)如果我们违反法律法规或与您的约定收集、使用、与他人共享或转让您的个人信息;<span
  2454. lang=EN-US><o:p></o:p></span></span></p>
  2455. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2456. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2457. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2458. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)如果我们违反法律法规规定或与您的约定,公开披露您的个人信息,您有权要求我们立即停止公开披露的行为,并发布通知要求相关接收方删除相应的信息。<span
  2459. lang=EN-US><o:p></o:p></span></span></p>
  2460. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2461. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2462. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2463. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>若我们决定响应您的删除请求,我们还将同时尽可能通知从我们处获得您的个人信息的主体,并要求其及时删除(除非法律法规另有规定,或这些主体已独立获得您的授权)。<span
  2464. lang=EN-US><o:p></o:p></span></span></p>
  2465. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2466. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2467. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2468. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>当您或我们协助您删除相关信息后,因为适用的法律和安全技术限制,我们可能无法立即从备份系统中删除相应的信息,我们将安全地存储您的个人信息并限制对其的任何进一步的处理,直到备份可以清除或实现匿名化。<span
  2469. lang=EN-US><o:p></o:p></span></span></p>
  2470. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2471. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2472. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  2473. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>4</span></b><b><span
  2474. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2475. 宋体;mso-font-kerning:0pt'>、撤销权</span></b><span lang=EN-US style='mso-bidi-font-size:
  2476. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  2477. 0pt'><o:p></o:p></span></p>
  2478. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2479. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2480. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2481. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>每个业务功能需要一些基本的个人信息才能得以完成。对于额外收集的个人信息的收集和使用,您可以随时给予或收回您的授权同意。当您撤回同意或授权后,我们无法继续为您提供撤回同意或授权所对应的服务,也将不再处理您相应的个人信息。但您撤回同意或授权的决定,不会影响此前基于您的同意或授权而开展的个人信息处理。<span
  2482. lang=EN-US><o:p></o:p></span></span></p>
  2483. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2484. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2485. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2486. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您可以通过删除信息、关闭设备功能、在铁合金掌上行平台中进行隐私设置方式改变您授权我们继续收集个人信息的范围或撤回您的授权;您也可以通过注销账户的方式,撤回我们继续收集您个人信息的全部授权。<span
  2487. lang=EN-US><o:p></o:p></span></span></p>
  2488. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2489. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2490. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2491. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您可以发送邮箱【<span
  2492. lang=EN-US>thjszx@163.com</span>】向我们提出撤销个人信息的请求。</span></b><span lang=EN-US
  2493. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2494. 宋体;color:red;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2495. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2496. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2497. background:white'><b><span lang=EN-US style='font-size:12.0pt;line-height:150%;
  2498. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5</span></b><b><span
  2499. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2500. 宋体;mso-font-kerning:0pt'>、注销权<span lang=EN-US><o:p></o:p></span></span></b></p>
  2501. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2502. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2503. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2504. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您随时可以登录铁合金掌上行平台,注销您的铁合金掌上行平台帐号。一旦您注销铁合金掌上行平台账号,将无法正常使用铁合金掌上行平台相应服务,因此请您谨慎操作。我们为了保护您或他人的合法权益会结合您对铁合金掌上行平台各产品的使用情况判断是否支持您的注销请求。若您在铁合金掌上行平台结算中心有未提现的金额,则我们不会立即支持您的请求。除法律法规另有规定外,注销帐号之后我们将停止为您提供产品和服务,并根据您的要求删除您的个人信息。<span
  2505. lang=EN-US><o:p></o:p></span></span></b></p>
  2506. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2507. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2508. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2509. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为保障安全,对于您上述有行为,可能需要提供书面请求,或以其他方式证明您的身份。我们可能会先要求您验证自己的身份,然后再处理您的请求。我们将在<span
  2510. lang=EN-US>15</span>个工作日内完成核查和处理。<span lang=EN-US><o:p></o:p></span></span></p>
  2511. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2512. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2513. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2514. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如您需要注销您的账户消息,在【<span
  2515. lang=EN-US>APP</span>端】您可以在<span lang=EN-US>“</span></span></b><span
  2516. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2517. 宋体;mso-font-kerning:0pt'>【<b>我的</b>】<b>【注销服务】<span lang=EN-US>”</span>中进行注销。或发送邮箱【<span
  2518. lang=EN-US>thjszx@163.com</span>】向我们提出注销的请求。</b><span lang=EN-US><o:p></o:p></span></span></p>
  2519. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2520. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2521. background:white'><b><span lang=EN-US style='font-size:12.0pt;line-height:150%;
  2522. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>6</span></b><b><span
  2523. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2524. 宋体;mso-font-kerning:0pt'>、提前获知产品和服务停止运营权<span lang=EN-US><o:p></o:p></span></span></b></p>
  2525. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2526. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2527. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  2528. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行平台愿一直陪伴您,若因特殊原因导致铁合金掌上行平台产品和服务被迫停止运营,我们将提前<span
  2529. lang=EN-US>30</span>日在产品或服务的主页面通告或向您发送电子邮件或其他合适的能触达您的方式通知您,并将停止对您个人信息的收集,同时会按照法律规定对所持有的您的个人信息进行删除或匿名化处理。<span
  2530. lang=EN-US><o:p></o:p></span></span></b></p>
  2531. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  2532. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2533. background:white'><b><span lang=EN-US style='font-size:12.0pt;line-height:150%;
  2534. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>7</span></b><b><span
  2535. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2536. 宋体;mso-font-kerning:0pt'>、在以下情形中,按照法律法规要求,我们将无法响应您的更正、删除、注销信息的请求:<span
  2537. lang=EN-US><o:p></o:p></span></span></b></p>
  2538. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2539. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2540. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2541. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)与个人信息控制者履行法律法规规定的义务相关的;<span
  2542. lang=EN-US><o:p></o:p></span></span></p>
  2543. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2544. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2545. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2546. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)与国家安全、国防安全直接相关的;<span
  2547. lang=EN-US><o:p></o:p></span></span></p>
  2548. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2549. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2550. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2551. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>3</span>)与公共安全、公共卫生、重大公共利益直接相关的;<span
  2552. lang=EN-US><o:p></o:p></span></span></p>
  2553. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2554. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2555. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2556. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>4</span>)与刑事侦查、起诉、审判和执行判决等直接相关的;<span
  2557. lang=EN-US><o:p></o:p></span></span></p>
  2558. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2559. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2560. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2561. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>5</span>)个人信息控制者有充分证据表明个人信息主体存在主观恶意或滥用权利的;<span
  2562. lang=EN-US><o:p></o:p></span></span></p>
  2563. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2564. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2565. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2566. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>6</span>)出于维护您或其他个人的生命、财产等重大合法权益但又很难得到您本人授权同意的;<span
  2567. lang=EN-US><o:p></o:p></span></span></p>
  2568. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2569. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2570. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2571. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>7</span>)响应您的请求将导致您或其他个人、组织的合法权益受到严重损害的;<span
  2572. lang=EN-US><o:p></o:p></span></span></p>
  2573. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2574. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2575. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2576. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>8</span>)涉及商业秘密的。<span
  2577. lang=EN-US><o:p></o:p></span></span></p>
  2578. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  2579. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2580. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  2581. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>六、我们如何处理未成年人的个人信息<span
  2582. lang=EN-US><o:p></o:p></span></span></b></p>
  2583. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2584. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2585. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2586. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行平台非常重视对未成年人信息的保护,我们的产品、网站和服务面向成年人,我们不会收集未成年人及不满<span
  2587. lang=EN-US>14</span>周岁人员的信息。如果没有父母或监护人的同意,儿童不得创建自己的用户账户。对于经父母同意而收集儿童个人信息的情况,我们只会在受到法律允许、父母或监护人明确同意或者保护儿童所必要的情况下使用或公开披露此信息。<span
  2588. lang=EN-US><o:p></o:p></span></span></p>
  2589. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2590. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2591. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2592. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>尽管当地法律和习俗对儿童的定义不同,但我们将不满<span
  2593. lang=EN-US>14 </span>周岁的任何人均视为儿童。如果我们发现自己在未事先获得可证实的父母同意的情况下收集了儿童的个人信息,则会尽快删除相关数据。<span
  2594. lang=EN-US><o:p></o:p></span></span></p>
  2595. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2596. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2597. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2598. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>若您是<span
  2599. lang=EN-US>14</span>周岁以下的未成年人,请您务必请您的监护人仔细阅读本隐私政策,并在征得您的监护人同意的前提下使用我们的产品和服务或向我们提供信息。<span
  2600. lang=EN-US><o:p></o:p></span></span></p>
  2601. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2602. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2603. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2604. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如果任何时候监护人有理由相信我们在未获监护人同意的情况下收集了未成年人的个人信息,请通过<b>发送邮箱【<span
  2605. lang=EN-US>thjszx@163.com</span>】向联系我们,</b>我们会采取措施尽快删除相关数据。<span lang=EN-US><o:p></o:p></span></span></p>
  2606. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  2607. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2608. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  2609. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>七、本隐私政策如何更新<span lang=EN-US><o:p></o:p></span></span></b></p>
  2610. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2611. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2612. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2613. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>我们的隐私政策可能变更。未经您明确同意,我们不会削减您按照本隐私政策所应享有的权利。我们会在本页面、弹窗或公告窗口方式发布对本隐私政策所做的任何变更。一旦本条款的内容发生变动,我们将通过官方渠道公布最新版本。在更新本隐私政策后,若您需要继续使用原授权范围对应的产品或服务,需先接受更新后隐私政策。您知悉并确认,如果您不同意更新后的内容,应该停止相应服务的使用,并可选择注销账户信息;如果您继续使用我们提供的服务,视为您同意更新后的隐私政策,并受隐私政策的约束。<span
  2614. lang=EN-US><o:p></o:p></span></span></p>
  2615. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2616. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2617. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2618. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本政策所指的重大变更包括:<span
  2619. lang=EN-US><o:p></o:p></span></span></p>
  2620. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2621. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2622. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2623. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span><span
  2624. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2625. 宋体;mso-font-kerning:0pt'>、我们的服务模式发生重大变化,包括处理个人信息的目的、处理的个人信息类型、个人信息的使用方式;<span
  2626. lang=EN-US><o:p></o:p></span></span></p>
  2627. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2628. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2629. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2630. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span><span
  2631. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2632. 宋体;mso-font-kerning:0pt'>、我们在所有权结构、组织架构方面发生重大变化,包括业务调整、破产并购引起的所有者变更;<span
  2633. lang=EN-US><o:p></o:p></span></span></p>
  2634. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2635. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2636. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2637. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span><span
  2638. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2639. 宋体;mso-font-kerning:0pt'>、个人信息共享、转让或公开披露的主要对象发生变化;<span lang=EN-US><o:p></o:p></span></span></p>
  2640. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2641. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2642. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2643. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>4</span><span
  2644. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2645. 宋体;mso-font-kerning:0pt'>、您参与个人信息处理方面的权利及其行使方式发生重大变化;<span lang=EN-US><o:p></o:p></span></span></p>
  2646. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2647. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2648. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2649. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5</span><span
  2650. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2651. 宋体;mso-font-kerning:0pt'>、我们负责处理个人信息安全的责任部门、联络方式及投诉渠道发生变化时;<span lang=EN-US><o:p></o:p></span></span></p>
  2652. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2653. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2654. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2655. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>6</span><span
  2656. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2657. 宋体;mso-font-kerning:0pt'>、个人信息安全影响评估报告表明存在高风险时。<span lang=EN-US><o:p></o:p></span></span></p>
  2658. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2659. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2660. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2661. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>我们还会将本政策的旧版本存档,供您查阅。<span
  2662. lang=EN-US><o:p></o:p></span></span></p>
  2663. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2664. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2665. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2666. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您可以在注册页面,查看本隐私权政策的全部内容。</span></b><span
  2667. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  2668. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2669. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2670. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2671. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2672. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在【<span
  2673. lang=EN-US>APP</span>端】您可以在登入帐号后进入【我的】【隐私政策】查看本隐私权政策的全部内容。</span></b><span
  2674. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  2675. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2676. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2677. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2678. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2679. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本次《隐私政策》日期为<span
  2680. lang=EN-US>2022</span>年<span lang=EN-US>11</span>月<span lang=EN-US>15</span>日正式生效。</span></b><span
  2681. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  2682. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2683. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2684. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2685. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2686. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>我们会将本隐私政策的旧版本在本页面最下方存档,供您查阅。</span></b><span
  2687. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  2688. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2689. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  2690. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2691. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  2692. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>八、免责条款及其他<span lang=EN-US><o:p></o:p></span></span></b></p>
  2693. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2694. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2695. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2696. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>除上述规定的免责情形外,下列情况时我们亦无需承担任何责任:<span
  2697. lang=EN-US><o:p></o:p></span></span></p>
  2698. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2699. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2700. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2701. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span><span
  2702. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2703. 宋体;mso-font-kerning:0pt'>、由于您人员将用户密码告知他人或与他人共享注册账户,由此导致的任何个人信息<span lang=EN-US>/</span>企业信息泄露。<span
  2704. lang=EN-US><o:p></o:p></span></span></p>
  2705. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2706. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2707. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2708. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span><span
  2709. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2710. 宋体;mso-font-kerning:0pt'>、任何由于计算机问题、黑客攻击、计算机病毒侵入或发作、因政府管制而造成的暂时性关闭影响网络正常经营之不可抗力而造成的个人信息<span
  2711. lang=EN-US>/</span>企业信息泄露、丢失、被盗用或被篡改。<span lang=EN-US><o:p></o:p></span></span></p>
  2712. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2713. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2714. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2715. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span><span
  2716. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2717. 宋体;mso-font-kerning:0pt'>、其他规定:<span lang=EN-US><o:p></o:p></span></span></p>
  2718. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2719. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2720. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2721. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>1</span>)本政策所有条款的标题仅为阅读方便,本身并无实际涵义,不能作为本政策涵义解释的依据。<span
  2722. lang=EN-US><o:p></o:p></span></span></p>
  2723. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2724. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2725. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2726. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>(<span lang=EN-US>2</span>)本政策部分条款无效或不可执行的,不影响其余条款的效力,其余条款对各方仍然具有约束力。<span
  2727. lang=EN-US><o:p></o:p></span></span></p>
  2728. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  2729. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2730. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  2731. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>九、法律适用和纠纷解决<span lang=EN-US><o:p></o:p></span></span></b></p>
  2732. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2733. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2734. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2735. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本条款受中华人民共和国法律管辖,在本条款履行过程中发生争议的,我们将和您友好协商解决,协商未果的,您和我们均同意<b>提交上海仲裁委员会仲裁处理</b>。<span
  2736. lang=EN-US><o:p></o:p></span></span></p>
  2737. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  2738. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2739. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  2740. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>十、如何联系我们<span lang=EN-US><o:p></o:p></span></span></b></p>
  2741. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2742. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2743. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2744. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行平台的成长离不开您的支持,我们非常感谢您对铁合金掌上行平台数据更新、使用反馈方面的贡献。<span
  2745. lang=EN-US><o:p></o:p></span></span></p>
  2746. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2747. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2748. background:white'><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2749. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在【<span
  2750. lang=EN-US>APP</span>端】</span></b><span style='mso-bidi-font-size:10.5pt;
  2751. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>您可以进入平台页面<b>点击<span
  2752. lang=EN-US>“</span>【我的】<span lang=EN-US>-</span>【客服热线】<span lang=EN-US>”</span></b>反馈联系我们,<b>或发送邮箱【<span
  2753. lang=EN-US>thjszx@163.com</span>】联系我们,</b>反馈您对铁合金掌上行平台的建议以及在使用过程中遇到的问题,以帮助我们优化产品功能及服务,使更多用户更加便捷地使用我们的产品和服务。<span
  2754. lang=EN-US><o:p></o:p></span></span></p>
  2755. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2756. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2757. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2758. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行公司官网<b>(网址:<span
  2759. lang=EN-US>www.thjszx.com</span>)</b>,<b>联系电话:电话<span lang=EN-US>021-63138889</span>,联系邮箱:</b></span><span
  2760. lang=EN-US><a href="mailto:thjszx@163.com,通讯地址:【上海市浦东新区浦东南路360号1603"><b><span
  2761. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2762. 宋体;color:windowtext;mso-font-kerning:0pt'>thjszx@163.com</span></b><b><span
  2763. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  2764. mso-bidi-font-family:宋体;color:windowtext;mso-font-kerning:0pt'><span
  2765. lang=EN-US>,通讯地址:【上海市浦东新区浦东南路360</span></span></b><b><span lang=EN-US
  2766. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2767. 宋体;color:windowtext;mso-font-kerning:0pt'><span lang=EN-US>号1603</span></span></b></a></span><b><span
  2768. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2769. 宋体;mso-font-kerning:0pt'>室】</span></b><span style='mso-bidi-font-size:10.5pt;
  2770. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>,邮编:<span
  2771. lang=EN-US>200120</span>。<span lang=EN-US><o:p></o:p></span></span></p>
  2772. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2773. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2774. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2775. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>个人信息保护建议、投诉电子邮箱:<b>【<span
  2776. lang=EN-US>thjszx@163.com</span>】</b>,个人信息保护建议、投诉处理者为我公司个人信息保护部门处理,服务时间工作日早<span
  2777. lang=EN-US>9</span>点至下午<span lang=EN-US>17</span>点,我们将在<span lang=EN-US>15</span>个工作日内回复处理意见或结果。<span
  2778. lang=EN-US><o:p></o:p></span></span></p>
  2779. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2780. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2781. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2782. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为保障我们高效处理您的问题并及时向您反馈,需要您提交身份证明、有效联系方式和书面请求及相关证据,我们会再次验证您的身份,处理您的请求。<span
  2783. lang=EN-US><o:p></o:p></span></span></p>
  2784. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2785. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2786. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2787. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如果您对我们的回复不满意,特别是您认为我们的个人信息处理行为损害了您的合法权益,您还可以通过法律途径寻求解决方案。<span
  2788. lang=EN-US><o:p></o:p></span></span></p>
  2789. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2790. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2791. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2792. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>再次感谢您对铁合金掌上行平台的信任和使用!<span
  2793. lang=EN-US><o:p></o:p></span></span></p>
  2794. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  2795. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2796. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  2797. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>十一、移动安全联盟<span lang=EN-US>com.netease<o:p></o:p></span></span></b></p>
  2798. <p class=MsoNormal align=left style='text-align:left;text-indent:27.0pt;
  2799. line-height:150%;mso-pagination:widow-orphan;background:white'><b><span
  2800. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2801. 宋体;mso-font-kerning:0pt'>本<span lang=EN-US>APP</span>内集成了移动安全联盟<span
  2802. lang=EN-US>com.netease</span>,移动智能终端补充设备标识体系与<span lang=EN-US>SDK</span>隐私合规问题<span
  2803. lang=EN-US><o:p></o:p></span></span></b></p>
  2804. <p class=MsoNormal align=left style='text-align:left;text-indent:27.0pt;
  2805. line-height:150%;mso-pagination:widow-orphan;background:white'><span
  2806. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2807. 宋体;color:black;mso-font-kerning:0pt'>移动智能终端补充设备标识体系与<span lang=EN-US> SDK </span>严格遵守我国《网络安全法》、《数据安全法》和《电信和互联网用户个人信息保护规定》等相关法律法规和《信息安全技术
  2808. 个人信息安全规范》等国家标准要求。<span lang=EN-US>SDK </span>不会主动收集任何数据,只在<span lang=EN-US> APP
  2809. </span>调用时获取以下数据,用于本地判断,不会进行任何网络传输:<span lang=EN-US><o:p></o:p></span></span></p>
  2810. <p class=MsoNormal align=left style='text-align:left;text-indent:27.0pt;
  2811. line-height:150%;mso-pagination:widow-orphan;background:white'><span
  2812. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2813. 宋体;color:black;mso-font-kerning:0pt'>&shy;设备制造商、设备型号、设备品牌,用于判断终端调用接口<span
  2814. lang=EN-US><o:p></o:p></span></span></p>
  2815. <p class=MsoNormal align=left style='text-align:left;text-indent:27.0pt;
  2816. line-height:150%;mso-pagination:widow-orphan;background:white'><span
  2817. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2818. 宋体;color:black;mso-font-kerning:0pt'>设备网络运营商名称,用于判断虚拟机环境<span lang=EN-US><o:p></o:p></span></span></p>
  2819. <p class=MsoNormal align=left style='text-align:left;text-indent:27.0pt;
  2820. line-height:150%;mso-pagination:widow-orphan;background:white'><span
  2821. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  2822. mso-bidi-font-family:宋体;color:black;mso-font-kerning:0pt'>APP </span><span
  2823. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2824. 宋体;color:black;mso-font-kerning:0pt'>包名,用于校验签名</span><span lang=EN-US
  2825. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2826. 宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2827. <p class=MsoNormal align=right style='text-align:right;text-indent:21.0pt;
  2828. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2829. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  2830. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行<span
  2831. lang=EN-US><o:p></o:p></span></span></p>
  2832. <p class=MsoNormal align=right style='text-align:right;text-indent:21.0pt;
  2833. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2834. background:white'><a name="_Hlk116624443"><span style='mso-bidi-font-size:10.5pt;
  2835. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>上海徽行供应链有限公司<span
  2836. lang=EN-US><o:p></o:p></span></span></a></p>
  2837. <span style='mso-bookmark:_Hlk116624443'></span>
  2838. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  2839. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2840. background:white'><b><span lang=EN-US style='font-size:13.5pt;line-height:150%;
  2841. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'><br>
  2842. </span></b><b><span style='font-size:13.5pt;line-height:150%;font-family:宋体;
  2843. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>附名词解释<span lang=EN-US><o:p></o:p></span></span></b></p>
  2844. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2845. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2846. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2847. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1</span><span
  2848. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2849. 宋体;mso-font-kerning:0pt'>、铁合金掌上行平台:是指上海徽行供应链有限公司旗下平台,包括铁合金掌上行平台(网址:<u><span
  2850. lang=EN-US>www.thjzsx.com</span></u>)、<span lang=EN-US>“</span>铁合金掌上行<span
  2851. lang=EN-US>”</span>手机<span lang=EN-US>APP</span>(包括<span lang=EN-US>iOS</span>、安卓及已有或未来将新增的任何其他移动客户端)。<span
  2852. lang=EN-US><o:p></o:p></span></span></p>
  2853. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2854. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2855. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2856. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2</span><span
  2857. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2858. 宋体;mso-font-kerning:0pt'>、个人信息:个人信息是以电子或者其他方式记录的与已识别或者可识别的自然人有关的各种信息,不包括匿名化处理后的信息。个人信息的处理包括个人信息的收集、存储、使用、加工、传输、提供、公开活动。<span
  2859. lang=EN-US><o:p></o:p></span></span></p>
  2860. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2861. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2862. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  2863. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3</span></b><b><span
  2864. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2865. 宋体;mso-font-kerning:0pt'>、敏感个人信息:是指一旦泄露、非法提供或滥用可能危害人身和财产安全,极易导致个人名誉、身心健康受到损害或歧视性待遇的个人信息。敏感个人信息包括:</span></b><span
  2866. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  2867. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2868. <table class=MsoNormalTable border=1 cellspacing=0 cellpadding=0
  2869. style='background:white;border-collapse:collapse;border:none;mso-border-top-alt:
  2870. solid #CCCCCC .75pt;mso-border-left-alt:solid #CCCCCC .75pt;mso-yfti-tbllook:
  2871. 1184;mso-padding-alt:0cm 0cm 0cm 0cm'>
  2872. <tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes'>
  2873. <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
  2874. border-right:solid #CCCCCC 1.0pt;mso-border-bottom-alt:solid #CCCCCC .75pt;
  2875. mso-border-right-alt:solid #CCCCCC .75pt;padding:2.25pt 3.75pt 2.25pt 3.75pt'>
  2876. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2877. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan'><b><span
  2878. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2879. 宋体;mso-font-kerning:0pt'>个人财产信息</span></b><span lang=EN-US style='mso-bidi-font-size:
  2880. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  2881. 0pt'><o:p></o:p></span></p>
  2882. </td>
  2883. <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
  2884. border-right:solid #CCCCCC 1.0pt;mso-border-bottom-alt:solid #CCCCCC .75pt;
  2885. mso-border-right-alt:solid #CCCCCC .75pt;padding:2.25pt 3.75pt 2.25pt 3.75pt'>
  2886. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2887. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan'><b><span
  2888. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2889. 宋体;mso-font-kerning:0pt'>银行账户、鉴别信息<span lang=EN-US>(</span>口令<span
  2890. lang=EN-US>)</span>、存款信息(包括资金数量、支付收款记录等)、房产信息、信贷记录、征信信息、交易和消费记录、流水记录等,以及虚拟货币、虚拟交易、游戏类兑换码等虚拟财产信息</span></b><span
  2891. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:
  2892. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2893. </td>
  2894. </tr>
  2895. <tr style='mso-yfti-irow:1'>
  2896. <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
  2897. border-right:solid #CCCCCC 1.0pt;mso-border-bottom-alt:solid #CCCCCC .75pt;
  2898. mso-border-right-alt:solid #CCCCCC .75pt;padding:2.25pt 3.75pt 2.25pt 3.75pt'>
  2899. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2900. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan'><b><span
  2901. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2902. 宋体;mso-font-kerning:0pt'>个人健康生理信息</span></b><span lang=EN-US
  2903. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2904. 宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2905. </td>
  2906. <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
  2907. border-right:solid #CCCCCC 1.0pt;mso-border-bottom-alt:solid #CCCCCC .75pt;
  2908. mso-border-right-alt:solid #CCCCCC .75pt;padding:2.25pt 3.75pt 2.25pt 3.75pt'>
  2909. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2910. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan'><b><span
  2911. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2912. 宋体;mso-font-kerning:0pt'>个人因生病医治等产生的相关记录,如病症、住院志、医嘱单、检验报告、手术及麻醉记录、护理记录、用药记录、药物食物过敏信息、生育信息、以往病史、诊治情况、家族病史、现病史、传染病史等</span></b><span
  2913. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:
  2914. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2915. </td>
  2916. </tr>
  2917. <tr style='mso-yfti-irow:2'>
  2918. <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
  2919. border-right:solid #CCCCCC 1.0pt;mso-border-bottom-alt:solid #CCCCCC .75pt;
  2920. mso-border-right-alt:solid #CCCCCC .75pt;padding:2.25pt 3.75pt 2.25pt 3.75pt'>
  2921. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2922. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan'><b><span
  2923. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2924. 宋体;mso-font-kerning:0pt'>个人生物识别信息</span></b><span lang=EN-US
  2925. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2926. 宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2927. </td>
  2928. <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
  2929. border-right:solid #CCCCCC 1.0pt;mso-border-bottom-alt:solid #CCCCCC .75pt;
  2930. mso-border-right-alt:solid #CCCCCC .75pt;padding:2.25pt 3.75pt 2.25pt 3.75pt'>
  2931. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2932. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan'><b><span
  2933. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2934. 宋体;mso-font-kerning:0pt'>个人基因、指纹、声纹、掌纹、耳廓、虹膜、面部识别特征等</span></b><span
  2935. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:
  2936. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2937. </td>
  2938. </tr>
  2939. <tr style='mso-yfti-irow:3'>
  2940. <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
  2941. border-right:solid #CCCCCC 1.0pt;mso-border-bottom-alt:solid #CCCCCC .75pt;
  2942. mso-border-right-alt:solid #CCCCCC .75pt;padding:2.25pt 3.75pt 2.25pt 3.75pt'>
  2943. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2944. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan'><b><span
  2945. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2946. 宋体;mso-font-kerning:0pt'>个人身份信息</span></b><span lang=EN-US style='mso-bidi-font-size:
  2947. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  2948. 0pt'><o:p></o:p></span></p>
  2949. </td>
  2950. <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
  2951. border-right:solid #CCCCCC 1.0pt;mso-border-bottom-alt:solid #CCCCCC .75pt;
  2952. mso-border-right-alt:solid #CCCCCC .75pt;padding:2.25pt 3.75pt 2.25pt 3.75pt'>
  2953. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2954. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan'><b><span
  2955. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2956. 宋体;mso-font-kerning:0pt'>身份证、军官证、护照、驾驶证、工作证、社保卡、居住证等</span></b><span
  2957. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:
  2958. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2959. </td>
  2960. </tr>
  2961. <tr style='mso-yfti-irow:4;mso-yfti-lastrow:yes'>
  2962. <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
  2963. border-right:solid #CCCCCC 1.0pt;mso-border-bottom-alt:solid #CCCCCC .75pt;
  2964. mso-border-right-alt:solid #CCCCCC .75pt;padding:2.25pt 3.75pt 2.25pt 3.75pt'>
  2965. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2966. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan'><b><span
  2967. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2968. 宋体;mso-font-kerning:0pt'>其他信息</span></b><span lang=EN-US style='mso-bidi-font-size:
  2969. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  2970. 0pt'><o:p></o:p></span></p>
  2971. </td>
  2972. <td style='border-top:none;border-left:none;border-bottom:solid #CCCCCC 1.0pt;
  2973. border-right:solid #CCCCCC 1.0pt;mso-border-bottom-alt:solid #CCCCCC .75pt;
  2974. mso-border-right-alt:solid #CCCCCC .75pt;padding:2.25pt 3.75pt 2.25pt 3.75pt'>
  2975. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  2976. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan'><b><span
  2977. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2978. 宋体;mso-font-kerning:0pt'>性取向、婚史、宗教信仰、未公开的违法犯罪记录、通信记录和内容、通讯录、好友列表、群组列表、行踪轨迹、网页浏览记录、住宿信息、精准定位信息等</span></b><span
  2979. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:
  2980. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  2981. </td>
  2982. </tr>
  2983. </table>
  2984. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2985. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2986. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2987. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>4</span><span
  2988. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2989. 宋体;mso-font-kerning:0pt'>、设备:是指可用于使用铁合金掌上行平台产品或服务的装置,桌面设备、平板电脑或智能手机。<span
  2990. lang=EN-US><o:p></o:p></span></span></p>
  2991. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  2992. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  2993. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  2994. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5</span><span
  2995. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  2996. 宋体;mso-font-kerning:0pt'>、<span lang=EN-US>Cookie</span>是指支持服务器端(或者脚本)在客户端上存储和检索信息的一种机制,通过增加简单、持续的客户端状态来扩展基于<span
  2997. lang=EN-US>Web</span>的客户端<span lang=EN-US>/</span>服务器应用。服务器在向客户端返回<span
  2998. lang=EN-US>HTTP</span>对象的同时发送一条状态信息,并由客户端保存。状态信息中说明了该状态下有效的<span lang=EN-US>URL</span>范围。此后,客户端发起的该范围内的<span
  2999. lang=EN-US>HTTP</span>请求都将把该状态信息的当前值从客户端返回给服务器,这个状态信息被称为<span lang=EN-US>Cookie</span>。<span
  3000. lang=EN-US><o:p></o:p></span></span></p>
  3001. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  3002. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  3003. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  3004. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>6</span><span
  3005. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  3006. 宋体;mso-font-kerning:0pt'>、匿名化是指通过对个人信息的技术处理,使得个人信息主体无法被识别,且处理后的信息不能被复原的过程。个人信息经匿名化处理后所得的信息不属于个人信息。<span
  3007. lang=EN-US><o:p></o:p></span></span></p>
  3008. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  3009. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  3010. background:white'><span lang=EN-US style='font-family:宋体'><o:p>&nbsp;</o:p></span></p>
  3011. </div>
  3012. </body>
  3013. </html>