yhzcxy.htm 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  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:m="http://schemas.microsoft.com/office/2004/12/omml"
  5. xmlns="http://www.w3.org/TR/REC-html40">
  6. <head>
  7. <meta http-equiv=Content-Type content="text/html; charset=gb2312">
  8. <meta name=ProgId content=Word.Document>
  9. <meta name=Generator content="Microsoft Word 15">
  10. <meta name=Originator content="Microsoft Word 15">
  11. <link rel=File-List href="yhzcxy.files/filelist.xml">
  12. <!--[if gte mso 9]><xml>
  13. <o:DocumentProperties>
  14. <o:Author>XP C</o:Author>
  15. <o:LastAuthor>dyp</o:LastAuthor>
  16. <o:Revision>2</o:Revision>
  17. <o:TotalTime>1</o:TotalTime>
  18. <o:Created>2022-11-14T01:23:00Z</o:Created>
  19. <o:LastSaved>2022-11-14T01:23:00Z</o:LastSaved>
  20. <o:Pages>1</o:Pages>
  21. <o:Words>1297</o:Words>
  22. <o:Characters>7395</o:Characters>
  23. <o:Lines>61</o:Lines>
  24. <o:Paragraphs>17</o:Paragraphs>
  25. <o:CharactersWithSpaces>8675</o:CharactersWithSpaces>
  26. <o:Version>15.00</o:Version>
  27. </o:DocumentProperties>
  28. <o:OfficeDocumentSettings>
  29. <o:RelyOnVML/>
  30. <o:AllowPNG/>
  31. </o:OfficeDocumentSettings>
  32. </xml><![endif]-->
  33. <link rel=themeData href="yhzcxy.files/themedata.thmx">
  34. <link rel=colorSchemeMapping href="yhzcxy.files/colorschememapping.xml">
  35. <!--[if gte mso 9]><xml>
  36. <w:WordDocument>
  37. <w:TrackMoves>false</w:TrackMoves>
  38. <w:TrackFormatting/>
  39. <w:PunctuationKerning/>
  40. <w:DrawingGridVerticalSpacing>7.8 磅</w:DrawingGridVerticalSpacing>
  41. <w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery>
  42. <w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery>
  43. <w:ValidateAgainstSchemas/>
  44. <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  45. <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  46. <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  47. <w:DoNotPromoteQF/>
  48. <w:LidThemeOther>EN-US</w:LidThemeOther>
  49. <w:LidThemeAsian>ZH-CN</w:LidThemeAsian>
  50. <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  51. <w:Compatibility>
  52. <w:SpaceForUL/>
  53. <w:BalanceSingleByteDoubleByteWidth/>
  54. <w:DoNotLeaveBackslashAlone/>
  55. <w:ULTrailSpace/>
  56. <w:DoNotExpandShiftReturn/>
  57. <w:AdjustLineHeightInTable/>
  58. <w:BreakWrappedTables/>
  59. <w:SnapToGridInCell/>
  60. <w:WrapTextWithPunct/>
  61. <w:UseAsianBreakRules/>
  62. <w:DontGrowAutofit/>
  63. <w:SplitPgBreakAndParaMark/>
  64. <w:EnableOpenTypeKerning/>
  65. <w:DontFlipMirrorIndents/>
  66. <w:OverrideTableStyleHps/>
  67. <w:UseFELayout/>
  68. </w:Compatibility>
  69. <m:mathPr>
  70. <m:mathFont m:val="Cambria Math"/>
  71. <m:brkBin m:val="before"/>
  72. <m:brkBinSub m:val="&#45;-"/>
  73. <m:smallFrac m:val="off"/>
  74. <m:dispDef/>
  75. <m:lMargin m:val="0"/>
  76. <m:rMargin m:val="0"/>
  77. <m:defJc m:val="centerGroup"/>
  78. <m:wrapIndent m:val="1440"/>
  79. <m:intLim m:val="subSup"/>
  80. <m:naryLim m:val="undOvr"/>
  81. </m:mathPr></w:WordDocument>
  82. </xml><![endif]--><!--[if gte mso 9]><xml>
  83. <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"
  84. DefSemiHidden="false" DefQFormat="false" DefPriority="99"
  85. LatentStyleCount="371">
  86. <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"/>
  87. <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"/>
  88. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  89. UnhideWhenUsed="true" QFormat="true" Name="heading 2"/>
  90. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  91. UnhideWhenUsed="true" QFormat="true" Name="heading 3"/>
  92. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  93. UnhideWhenUsed="true" QFormat="true" Name="heading 4"/>
  94. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  95. UnhideWhenUsed="true" QFormat="true" Name="heading 5"/>
  96. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  97. UnhideWhenUsed="true" QFormat="true" Name="heading 6"/>
  98. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  99. UnhideWhenUsed="true" QFormat="true" Name="heading 7"/>
  100. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  101. UnhideWhenUsed="true" QFormat="true" Name="heading 8"/>
  102. <w:LsdException Locked="false" Priority="9" SemiHidden="true"
  103. UnhideWhenUsed="true" QFormat="true" Name="heading 9"/>
  104. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  105. Name="index 1"/>
  106. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  107. Name="index 2"/>
  108. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  109. Name="index 3"/>
  110. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  111. Name="index 4"/>
  112. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  113. Name="index 5"/>
  114. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  115. Name="index 6"/>
  116. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  117. Name="index 7"/>
  118. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  119. Name="index 8"/>
  120. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  121. Name="index 9"/>
  122. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  123. UnhideWhenUsed="true" Name="toc 1"/>
  124. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  125. UnhideWhenUsed="true" Name="toc 2"/>
  126. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  127. UnhideWhenUsed="true" Name="toc 3"/>
  128. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  129. UnhideWhenUsed="true" Name="toc 4"/>
  130. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  131. UnhideWhenUsed="true" Name="toc 5"/>
  132. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  133. UnhideWhenUsed="true" Name="toc 6"/>
  134. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  135. UnhideWhenUsed="true" Name="toc 7"/>
  136. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  137. UnhideWhenUsed="true" Name="toc 8"/>
  138. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  139. UnhideWhenUsed="true" Name="toc 9"/>
  140. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  141. Name="Normal Indent"/>
  142. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  143. Name="footnote text"/>
  144. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  145. Name="annotation text"/>
  146. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  147. Name="header"/>
  148. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  149. Name="footer"/>
  150. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  151. Name="index heading"/>
  152. <w:LsdException Locked="false" Priority="35" SemiHidden="true"
  153. UnhideWhenUsed="true" QFormat="true" Name="caption"/>
  154. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  155. Name="table of figures"/>
  156. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  157. Name="envelope address"/>
  158. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  159. Name="envelope return"/>
  160. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  161. Name="footnote reference"/>
  162. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  163. Name="annotation reference"/>
  164. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  165. Name="line number"/>
  166. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  167. Name="page number"/>
  168. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  169. Name="endnote reference"/>
  170. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  171. Name="endnote text"/>
  172. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  173. Name="table of authorities"/>
  174. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  175. Name="macro"/>
  176. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  177. Name="toa heading"/>
  178. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  179. Name="List"/>
  180. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  181. Name="List Bullet"/>
  182. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  183. Name="List Number"/>
  184. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  185. Name="List 2"/>
  186. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  187. Name="List 3"/>
  188. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  189. Name="List 4"/>
  190. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  191. Name="List 5"/>
  192. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  193. Name="List Bullet 2"/>
  194. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  195. Name="List Bullet 3"/>
  196. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  197. Name="List Bullet 4"/>
  198. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  199. Name="List Bullet 5"/>
  200. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  201. Name="List Number 2"/>
  202. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  203. Name="List Number 3"/>
  204. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  205. Name="List Number 4"/>
  206. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  207. Name="List Number 5"/>
  208. <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"/>
  209. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  210. Name="Closing"/>
  211. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  212. Name="Signature"/>
  213. <w:LsdException Locked="false" Priority="1" SemiHidden="true"
  214. UnhideWhenUsed="true" Name="Default Paragraph Font"/>
  215. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  216. Name="Body Text"/>
  217. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  218. Name="Body Text Indent"/>
  219. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  220. Name="List Continue"/>
  221. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  222. Name="List Continue 2"/>
  223. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  224. Name="List Continue 3"/>
  225. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  226. Name="List Continue 4"/>
  227. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  228. Name="List Continue 5"/>
  229. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  230. Name="Message Header"/>
  231. <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"/>
  232. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  233. Name="Salutation"/>
  234. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  235. Name="Date"/>
  236. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  237. Name="Body Text First Indent"/>
  238. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  239. Name="Body Text First Indent 2"/>
  240. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  241. Name="Note Heading"/>
  242. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  243. Name="Body Text 2"/>
  244. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  245. Name="Body Text 3"/>
  246. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  247. Name="Body Text Indent 2"/>
  248. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  249. Name="Body Text Indent 3"/>
  250. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  251. Name="Block Text"/>
  252. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  253. Name="Hyperlink"/>
  254. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  255. Name="FollowedHyperlink"/>
  256. <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"/>
  257. <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"/>
  258. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  259. Name="Document Map"/>
  260. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  261. Name="Plain Text"/>
  262. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  263. Name="E-mail Signature"/>
  264. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  265. Name="HTML Top of Form"/>
  266. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  267. Name="HTML Bottom of Form"/>
  268. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  269. Name="Normal (Web)"/>
  270. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  271. Name="HTML Acronym"/>
  272. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  273. Name="HTML Address"/>
  274. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  275. Name="HTML Cite"/>
  276. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  277. Name="HTML Code"/>
  278. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  279. Name="HTML Definition"/>
  280. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  281. Name="HTML Keyboard"/>
  282. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  283. Name="HTML Preformatted"/>
  284. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  285. Name="HTML Sample"/>
  286. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  287. Name="HTML Typewriter"/>
  288. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  289. Name="HTML Variable"/>
  290. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  291. Name="Normal Table"/>
  292. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  293. Name="annotation subject"/>
  294. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  295. Name="No List"/>
  296. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  297. Name="Outline List 1"/>
  298. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  299. Name="Outline List 2"/>
  300. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  301. Name="Outline List 3"/>
  302. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  303. Name="Table Simple 1"/>
  304. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  305. Name="Table Simple 2"/>
  306. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  307. Name="Table Simple 3"/>
  308. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  309. Name="Table Classic 1"/>
  310. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  311. Name="Table Classic 2"/>
  312. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  313. Name="Table Classic 3"/>
  314. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  315. Name="Table Classic 4"/>
  316. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  317. Name="Table Colorful 1"/>
  318. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  319. Name="Table Colorful 2"/>
  320. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  321. Name="Table Colorful 3"/>
  322. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  323. Name="Table Columns 1"/>
  324. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  325. Name="Table Columns 2"/>
  326. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  327. Name="Table Columns 3"/>
  328. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  329. Name="Table Columns 4"/>
  330. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  331. Name="Table Columns 5"/>
  332. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  333. Name="Table Grid 1"/>
  334. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  335. Name="Table Grid 2"/>
  336. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  337. Name="Table Grid 3"/>
  338. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  339. Name="Table Grid 4"/>
  340. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  341. Name="Table Grid 5"/>
  342. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  343. Name="Table Grid 6"/>
  344. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  345. Name="Table Grid 7"/>
  346. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  347. Name="Table Grid 8"/>
  348. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  349. Name="Table List 1"/>
  350. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  351. Name="Table List 2"/>
  352. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  353. Name="Table List 3"/>
  354. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  355. Name="Table List 4"/>
  356. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  357. Name="Table List 5"/>
  358. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  359. Name="Table List 6"/>
  360. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  361. Name="Table List 7"/>
  362. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  363. Name="Table List 8"/>
  364. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  365. Name="Table 3D effects 1"/>
  366. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  367. Name="Table 3D effects 2"/>
  368. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  369. Name="Table 3D effects 3"/>
  370. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  371. Name="Table Contemporary"/>
  372. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  373. Name="Table Elegant"/>
  374. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  375. Name="Table Professional"/>
  376. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  377. Name="Table Subtle 1"/>
  378. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  379. Name="Table Subtle 2"/>
  380. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  381. Name="Table Web 1"/>
  382. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  383. Name="Table Web 2"/>
  384. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  385. Name="Table Web 3"/>
  386. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  387. Name="Balloon Text"/>
  388. <w:LsdException Locked="false" Priority="39" Name="Table Grid"/>
  389. <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
  390. Name="Table Theme"/>
  391. <w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"/>
  392. <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/>
  393. <w:LsdException Locked="false" Priority="60" Name="Light Shading"/>
  394. <w:LsdException Locked="false" Priority="61" Name="Light List"/>
  395. <w:LsdException Locked="false" Priority="62" Name="Light Grid"/>
  396. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>
  397. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>
  398. <w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>
  399. <w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>
  400. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>
  401. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>
  402. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>
  403. <w:LsdException Locked="false" Priority="70" Name="Dark List"/>
  404. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>
  405. <w:LsdException Locked="false" Priority="72" Name="Colorful List"/>
  406. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>
  407. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>
  408. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>
  409. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>
  410. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>
  411. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>
  412. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>
  413. <w:LsdException Locked="false" SemiHidden="true" Name="Revision"/>
  414. <w:LsdException Locked="false" Priority="34" QFormat="true"
  415. Name="List Paragraph"/>
  416. <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/>
  417. <w:LsdException Locked="false" Priority="30" QFormat="true"
  418. Name="Intense Quote"/>
  419. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>
  420. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>
  421. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>
  422. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>
  423. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>
  424. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>
  425. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>
  426. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>
  427. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>
  428. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>
  429. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>
  430. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>
  431. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>
  432. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>
  433. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>
  434. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>
  435. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>
  436. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>
  437. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>
  438. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>
  439. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>
  440. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>
  441. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>
  442. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>
  443. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>
  444. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>
  445. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>
  446. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>
  447. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>
  448. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>
  449. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>
  450. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>
  451. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>
  452. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>
  453. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>
  454. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>
  455. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>
  456. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>
  457. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>
  458. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>
  459. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>
  460. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>
  461. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>
  462. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>
  463. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>
  464. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>
  465. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>
  466. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>
  467. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>
  468. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>
  469. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>
  470. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>
  471. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>
  472. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>
  473. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>
  474. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>
  475. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>
  476. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>
  477. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>
  478. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>
  479. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>
  480. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>
  481. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>
  482. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>
  483. <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>
  484. <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>
  485. <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>
  486. <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>
  487. <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>
  488. <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>
  489. <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>
  490. <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>
  491. <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>
  492. <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>
  493. <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>
  494. <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>
  495. <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>
  496. <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>
  497. <w:LsdException Locked="false" Priority="19" QFormat="true"
  498. Name="Subtle Emphasis"/>
  499. <w:LsdException Locked="false" Priority="21" QFormat="true"
  500. Name="Intense Emphasis"/>
  501. <w:LsdException Locked="false" Priority="31" QFormat="true"
  502. Name="Subtle Reference"/>
  503. <w:LsdException Locked="false" Priority="32" QFormat="true"
  504. Name="Intense Reference"/>
  505. <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>
  506. <w:LsdException Locked="false" Priority="37" SemiHidden="true"
  507. UnhideWhenUsed="true" Name="Bibliography"/>
  508. <w:LsdException Locked="false" Priority="39" SemiHidden="true"
  509. UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>
  510. <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"/>
  511. <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"/>
  512. <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"/>
  513. <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"/>
  514. <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"/>
  515. <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"/>
  516. <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"/>
  517. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"/>
  518. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"/>
  519. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"/>
  520. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"/>
  521. <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"/>
  522. <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"/>
  523. <w:LsdException Locked="false" Priority="46"
  524. Name="Grid Table 1 Light Accent 1"/>
  525. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"/>
  526. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"/>
  527. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"/>
  528. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"/>
  529. <w:LsdException Locked="false" Priority="51"
  530. Name="Grid Table 6 Colorful Accent 1"/>
  531. <w:LsdException Locked="false" Priority="52"
  532. Name="Grid Table 7 Colorful Accent 1"/>
  533. <w:LsdException Locked="false" Priority="46"
  534. Name="Grid Table 1 Light Accent 2"/>
  535. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"/>
  536. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"/>
  537. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"/>
  538. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"/>
  539. <w:LsdException Locked="false" Priority="51"
  540. Name="Grid Table 6 Colorful Accent 2"/>
  541. <w:LsdException Locked="false" Priority="52"
  542. Name="Grid Table 7 Colorful Accent 2"/>
  543. <w:LsdException Locked="false" Priority="46"
  544. Name="Grid Table 1 Light Accent 3"/>
  545. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"/>
  546. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"/>
  547. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"/>
  548. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"/>
  549. <w:LsdException Locked="false" Priority="51"
  550. Name="Grid Table 6 Colorful Accent 3"/>
  551. <w:LsdException Locked="false" Priority="52"
  552. Name="Grid Table 7 Colorful Accent 3"/>
  553. <w:LsdException Locked="false" Priority="46"
  554. Name="Grid Table 1 Light Accent 4"/>
  555. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"/>
  556. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"/>
  557. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"/>
  558. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"/>
  559. <w:LsdException Locked="false" Priority="51"
  560. Name="Grid Table 6 Colorful Accent 4"/>
  561. <w:LsdException Locked="false" Priority="52"
  562. Name="Grid Table 7 Colorful Accent 4"/>
  563. <w:LsdException Locked="false" Priority="46"
  564. Name="Grid Table 1 Light Accent 5"/>
  565. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"/>
  566. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"/>
  567. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"/>
  568. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"/>
  569. <w:LsdException Locked="false" Priority="51"
  570. Name="Grid Table 6 Colorful Accent 5"/>
  571. <w:LsdException Locked="false" Priority="52"
  572. Name="Grid Table 7 Colorful Accent 5"/>
  573. <w:LsdException Locked="false" Priority="46"
  574. Name="Grid Table 1 Light Accent 6"/>
  575. <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"/>
  576. <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"/>
  577. <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"/>
  578. <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"/>
  579. <w:LsdException Locked="false" Priority="51"
  580. Name="Grid Table 6 Colorful Accent 6"/>
  581. <w:LsdException Locked="false" Priority="52"
  582. Name="Grid Table 7 Colorful Accent 6"/>
  583. <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"/>
  584. <w:LsdException Locked="false" Priority="47" Name="List Table 2"/>
  585. <w:LsdException Locked="false" Priority="48" Name="List Table 3"/>
  586. <w:LsdException Locked="false" Priority="49" Name="List Table 4"/>
  587. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"/>
  588. <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"/>
  589. <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"/>
  590. <w:LsdException Locked="false" Priority="46"
  591. Name="List Table 1 Light Accent 1"/>
  592. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"/>
  593. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"/>
  594. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"/>
  595. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"/>
  596. <w:LsdException Locked="false" Priority="51"
  597. Name="List Table 6 Colorful Accent 1"/>
  598. <w:LsdException Locked="false" Priority="52"
  599. Name="List Table 7 Colorful Accent 1"/>
  600. <w:LsdException Locked="false" Priority="46"
  601. Name="List Table 1 Light Accent 2"/>
  602. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"/>
  603. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"/>
  604. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"/>
  605. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"/>
  606. <w:LsdException Locked="false" Priority="51"
  607. Name="List Table 6 Colorful Accent 2"/>
  608. <w:LsdException Locked="false" Priority="52"
  609. Name="List Table 7 Colorful Accent 2"/>
  610. <w:LsdException Locked="false" Priority="46"
  611. Name="List Table 1 Light Accent 3"/>
  612. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"/>
  613. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"/>
  614. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"/>
  615. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"/>
  616. <w:LsdException Locked="false" Priority="51"
  617. Name="List Table 6 Colorful Accent 3"/>
  618. <w:LsdException Locked="false" Priority="52"
  619. Name="List Table 7 Colorful Accent 3"/>
  620. <w:LsdException Locked="false" Priority="46"
  621. Name="List Table 1 Light Accent 4"/>
  622. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"/>
  623. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"/>
  624. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"/>
  625. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"/>
  626. <w:LsdException Locked="false" Priority="51"
  627. Name="List Table 6 Colorful Accent 4"/>
  628. <w:LsdException Locked="false" Priority="52"
  629. Name="List Table 7 Colorful Accent 4"/>
  630. <w:LsdException Locked="false" Priority="46"
  631. Name="List Table 1 Light Accent 5"/>
  632. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"/>
  633. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"/>
  634. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"/>
  635. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"/>
  636. <w:LsdException Locked="false" Priority="51"
  637. Name="List Table 6 Colorful Accent 5"/>
  638. <w:LsdException Locked="false" Priority="52"
  639. Name="List Table 7 Colorful Accent 5"/>
  640. <w:LsdException Locked="false" Priority="46"
  641. Name="List Table 1 Light Accent 6"/>
  642. <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"/>
  643. <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"/>
  644. <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"/>
  645. <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"/>
  646. <w:LsdException Locked="false" Priority="51"
  647. Name="List Table 6 Colorful Accent 6"/>
  648. <w:LsdException Locked="false" Priority="52"
  649. Name="List Table 7 Colorful Accent 6"/>
  650. </w:LatentStyles>
  651. </xml><![endif]-->
  652. <style>
  653. <!--
  654. /* Font Definitions */
  655. @font-face
  656. {font-family:宋体;
  657. panose-1:2 1 6 0 3 1 1 1 1 1;
  658. mso-font-alt:SimSun;
  659. mso-font-charset:134;
  660. mso-generic-font-family:auto;
  661. mso-font-pitch:variable;
  662. mso-font-signature:3 680460288 22 0 262145 0;}
  663. @font-face
  664. {font-family:"Cambria Math";
  665. panose-1:2 4 5 3 5 4 6 3 2 4;
  666. mso-font-charset:0;
  667. mso-generic-font-family:roman;
  668. mso-font-pitch:variable;
  669. mso-font-signature:-536870145 1107305727 0 0 415 0;}
  670. @font-face
  671. {font-family:等线;
  672. mso-font-alt:"Arial Unicode MS";
  673. mso-font-charset:134;
  674. mso-generic-font-family:auto;
  675. mso-font-pitch:variable;
  676. mso-font-signature:0 953122042 22 0 262159 0;}
  677. @font-face
  678. {font-family:"\@宋体";
  679. panose-1:2 1 6 0 3 1 1 1 1 1;
  680. mso-font-charset:134;
  681. mso-generic-font-family:auto;
  682. mso-font-pitch:variable;
  683. mso-font-signature:3 680460288 22 0 262145 0;}
  684. @font-face
  685. {font-family:"\@等线";
  686. mso-font-charset:134;
  687. mso-generic-font-family:auto;
  688. mso-font-pitch:variable;
  689. mso-font-signature:0 953122042 22 0 262159 0;}
  690. /* Style Definitions */
  691. p.MsoNormal, li.MsoNormal, div.MsoNormal
  692. {mso-style-unhide:no;
  693. mso-style-qformat:yes;
  694. mso-style-parent:"";
  695. margin:0cm;
  696. margin-bottom:.0001pt;
  697. text-align:justify;
  698. text-justify:inter-ideograph;
  699. mso-pagination:none;
  700. font-size:10.5pt;
  701. mso-bidi-font-size:11.0pt;
  702. font-family:等线;
  703. mso-ascii-font-family:等线;
  704. mso-ascii-theme-font:minor-latin;
  705. mso-fareast-font-family:等线;
  706. mso-fareast-theme-font:minor-fareast;
  707. mso-hansi-font-family:等线;
  708. mso-hansi-theme-font:minor-latin;
  709. mso-bidi-font-family:"Times New Roman";
  710. mso-bidi-theme-font:minor-bidi;
  711. mso-font-kerning:1.0pt;}
  712. p.MsoHeader, li.MsoHeader, div.MsoHeader
  713. {mso-style-priority:99;
  714. mso-style-link:"页眉 Char";
  715. margin:0cm;
  716. margin-bottom:.0001pt;
  717. text-align:center;
  718. mso-pagination:none;
  719. tab-stops:center 207.65pt right 415.3pt;
  720. layout-grid-mode:char;
  721. border:none;
  722. mso-border-bottom-alt:solid windowtext .75pt;
  723. padding:0cm;
  724. mso-padding-alt:0cm 0cm 1.0pt 0cm;
  725. font-size:9.0pt;
  726. font-family:等线;
  727. mso-ascii-font-family:等线;
  728. mso-ascii-theme-font:minor-latin;
  729. mso-fareast-font-family:等线;
  730. mso-fareast-theme-font:minor-fareast;
  731. mso-hansi-font-family:等线;
  732. mso-hansi-theme-font:minor-latin;
  733. mso-bidi-font-family:"Times New Roman";
  734. mso-bidi-theme-font:minor-bidi;
  735. mso-font-kerning:1.0pt;}
  736. p.MsoFooter, li.MsoFooter, div.MsoFooter
  737. {mso-style-priority:99;
  738. mso-style-link:"页脚 Char";
  739. margin:0cm;
  740. margin-bottom:.0001pt;
  741. mso-pagination:none;
  742. tab-stops:center 207.65pt right 415.3pt;
  743. layout-grid-mode:char;
  744. font-size:9.0pt;
  745. font-family:等线;
  746. mso-ascii-font-family:等线;
  747. mso-ascii-theme-font:minor-latin;
  748. mso-fareast-font-family:等线;
  749. mso-fareast-theme-font:minor-fareast;
  750. mso-hansi-font-family:等线;
  751. mso-hansi-theme-font:minor-latin;
  752. mso-bidi-font-family:"Times New Roman";
  753. mso-bidi-theme-font:minor-bidi;
  754. mso-font-kerning:1.0pt;}
  755. span.Char
  756. {mso-style-name:"页眉 Char";
  757. mso-style-priority:99;
  758. mso-style-unhide:no;
  759. mso-style-locked:yes;
  760. mso-style-link:页眉;
  761. mso-ansi-font-size:9.0pt;
  762. mso-bidi-font-size:9.0pt;}
  763. span.Char0
  764. {mso-style-name:"页脚 Char";
  765. mso-style-priority:99;
  766. mso-style-unhide:no;
  767. mso-style-locked:yes;
  768. mso-style-link:页脚;
  769. mso-ansi-font-size:9.0pt;
  770. mso-bidi-font-size:9.0pt;}
  771. .MsoChpDefault
  772. {mso-style-type:export-only;
  773. mso-default-props:yes;
  774. font-family:等线;
  775. mso-bidi-font-family:"Times New Roman";
  776. mso-bidi-theme-font:minor-bidi;}
  777. /* Page Definitions */
  778. @page
  779. {mso-page-border-surround-header:no;
  780. mso-page-border-surround-footer:no;
  781. mso-footnote-separator:url("yhzcxy.files/header.htm") fs;
  782. mso-footnote-continuation-separator:url("yhzcxy.files/header.htm") fcs;
  783. mso-endnote-separator:url("yhzcxy.files/header.htm") es;
  784. mso-endnote-continuation-separator:url("yhzcxy.files/header.htm") ecs;}
  785. @page WordSection1
  786. {size:595.3pt 841.9pt;
  787. margin:72.0pt 90.0pt 72.0pt 90.0pt;
  788. mso-header-margin:42.55pt;
  789. mso-footer-margin:49.6pt;
  790. mso-paper-source:0;
  791. layout-grid:15.6pt;}
  792. div.WordSection1
  793. {page:WordSection1;}
  794. -->
  795. </style>
  796. <!--[if gte mso 10]>
  797. <style>
  798. /* Style Definitions */
  799. table.MsoNormalTable
  800. {mso-style-name:普通表格;
  801. mso-tstyle-rowband-size:0;
  802. mso-tstyle-colband-size:0;
  803. mso-style-noshow:yes;
  804. mso-style-priority:99;
  805. mso-style-parent:"";
  806. mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
  807. mso-para-margin:0cm;
  808. mso-para-margin-bottom:.0001pt;
  809. mso-pagination:widow-orphan;
  810. font-size:10.5pt;
  811. mso-bidi-font-size:11.0pt;
  812. font-family:等线;
  813. mso-ascii-font-family:等线;
  814. mso-ascii-theme-font:minor-latin;
  815. mso-fareast-font-family:等线;
  816. mso-fareast-theme-font:minor-fareast;
  817. mso-hansi-font-family:等线;
  818. mso-hansi-theme-font:minor-latin;
  819. mso-font-kerning:1.0pt;}
  820. </style>
  821. <![endif]--><!--[if gte mso 9]><xml>
  822. <o:shapedefaults v:ext="edit" spidmax="2049"/>
  823. </xml><![endif]--><!--[if gte mso 9]><xml>
  824. <o:shapelayout v:ext="edit">
  825. <o:idmap v:ext="edit" data="1"/>
  826. </o:shapelayout></xml><![endif]-->
  827. </head>
  828. <body lang=ZH-CN style='tab-interval:21.0pt;text-justify-trim:punctuation'>
  829. <div class=WordSection1 style='layout-grid:15.6pt'>
  830. <p class=MsoNormal align=center style='margin-top:15.0pt;margin-right:0cm;
  831. margin-bottom:12.0pt;margin-left:0cm;text-align:center;line-height:18.75pt;
  832. mso-pagination:widow-orphan;mso-outline-level:1;background:white'><b><span
  833. style='font-size:15.0pt;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  834. 18.0pt'>用户注册协议<span lang=EN-US><o:p></o:p></span></span></b></p>
  835. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  836. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  837. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  838. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>总章<span lang=EN-US><o:p></o:p></span></span></b></p>
  839. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  840. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  841. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  842. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>1.</span></b><b><span
  843. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  844. 宋体;mso-font-kerning:0pt'>【特别提示】<span lang=EN-US><o:p></o:p></span></span></b></p>
  845. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  846. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  847. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  848. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本用户注册协议(以下简称<span
  849. lang=EN-US>“</span>本协议<span lang=EN-US>”</span>)由铁合金掌上行平台为规范用户在铁合金掌上行平台上的注册、认证流程以及用户的权利义务而制定。当用户点击<span
  850. lang=EN-US>“</span>阅读并同意<span lang=EN-US>”</span>后,本协议即构成对铁合金掌上行平台及用户均有约束力的法律文件。<span
  851. lang=EN-US><o:p></o:p></span></span></p>
  852. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  853. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  854. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  855. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户应认真阅读并遵守本规则及其他任何适用的平台规则。<b><u>用户务必审慎阅读、充分理解本协议的各项条款内容,特别是免除或者限制铁合金掌上行平台方责任的条款、争议解决和法律适用条款。</u></b>前述条款可能以加粗字体和加下划线显示,应重点阅读。<b><u>除非用户已阅读并接受本协议和其他平台规则的所有条款,否则用户无权使用铁合金掌上行平台。用户使用铁合金掌上行平台即视为用户已充分理解并同意本协议和其他平台规则的约束。用户无权以未阅读或不了解本协议为由主张本协议无效,或要求撤销本协议。</u></b><span
  856. lang=EN-US><o:p></o:p></span></span></p>
  857. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  858. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  859. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  860. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>2.</span></b><b><span
  861. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  862. 宋体;mso-font-kerning:0pt'>【适用范围】<span lang=EN-US><o:p></o:p></span></span></b></p>
  863. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  864. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  865. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  866. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本协议适用于用户在铁合金掌上行平台上的账户注册、服务使用、服务终止及账户注销。<span
  867. lang=EN-US><o:p></o:p></span></span></p>
  868. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  869. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  870. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  871. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>3.</span></b><b><span
  872. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  873. 宋体;mso-font-kerning:0pt'>【定义】<span lang=EN-US><o:p></o:p></span></span></b></p>
  874. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  875. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  876. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  877. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>除本协议另有规定外,本协议中提及的术语应当与《铁合金掌上行平台规则总则》中定义了的术语具有相同的含义。<span
  878. lang=EN-US><o:p></o:p></span></span></p>
  879. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  880. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  881. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  882. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第一章 用户的注册<span lang=EN-US><o:p></o:p></span></span></b></p>
  883. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  884. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  885. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  886. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第一节 注册流程<span lang=EN-US><o:p></o:p></span></span></b></p>
  887. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  888. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  889. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  890. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>4.</span></b><b><span
  891. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  892. 宋体;mso-font-kerning:0pt'>【认证用户权限】<span lang=EN-US><o:p></o:p></span></span></b></p>
  893. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  894. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  895. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  896. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户完成相应注册、认证程序后,即成为铁合金掌上行平台的认证用户(包括个人用户和企业用户)。认证用户可浏览平台向认证用户开放的信息和使用向认证用户开放的功能。经认证的个人用户与企业用户均有权浏览铁合金掌上行平台向用户开放的信息,参与铁合金掌上行平台上的交易。<span
  897. lang=EN-US><o:p></o:p></span></span></p>
  898. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  899. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  900. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  901. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5.</span></b><b><span
  902. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  903. 宋体;mso-font-kerning:0pt'>【用户认证流程】<span lang=EN-US><o:p></o:p></span></span></b></p>
  904. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  905. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  906. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  907. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5.1&nbsp;</span></b><span
  908. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  909. 宋体;mso-font-kerning:0pt'>用户以自然人身份进行注册后,即可成为铁合金掌上行平台的个人用户。<span lang=EN-US><o:p></o:p></span></span></p>
  910. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  911. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  912. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  913. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5.2</span></b><span
  914. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  915. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  916. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  917. 宋体;mso-font-kerning:0pt'>用户上传企业营业执照、授权委托书,并填写用户基本信息(包括但不限于名称、联系地址、联系方式等)后,经铁合金掌上行平台审核通过,可以被认证为企业用户。<b><u>企业用户进行认证应视为其陈述、保证和承诺该企业在作为铁合金掌上行平台用户的整个期间是依据中华人民共和国法律成立并有效存续的企业法人或其他组织,且具备从事铁合金掌上行平台相关业务的资质。</u></b><span
  918. lang=EN-US><o:p></o:p></span></span></p>
  919. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  920. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  921. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  922. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>5.3
  923. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  924. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>上文第<span
  925. lang=EN-US>5.2</span>条所述授权委托书是指企业授权特定自然人代表企业在铁合金掌上行平台上进行一切民事行为并授权其管理其他企业员工权限的授权文件。授权委托书需加盖企业公章,并由企业的法定代表人签字或盖章。被授权的自然人需与注册的自然人为同一人。企业提交该等授权委托书后,该被授权自然人在铁合金掌上行平台上所从事的一切行为均视作企业的行为,对企业均有约束力,其从事任何行为无需再获得企业的任何其他授权,且企业需要对被授权自然人在铁合金掌上行平台上的行为承担相应责任。此外,该等被授权人将被视为企业管理员,其有权限将企业对其的授权分授权给其他企业员工,并对所有企业员工的权限进行管理,被分授权的员工可以选择加入企业账户以获得相应权限。该等分授权不需要额外出具授权委托书。所有被分授权的企业员工在铁合金掌上行平台上所从事的一切行为同样均会被视作企业的行为,对企业均有约束力。</span></u></b><span
  926. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  927. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  928. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  929. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  930. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  931. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第二节 注册时的用户义务<span lang=EN-US><o:p></o:p></span></span></b></p>
  932. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  933. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  934. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  935. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>6.</span></b><b><span
  936. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  937. 宋体;mso-font-kerning:0pt'>【诚信义务】<span lang=EN-US><o:p></o:p></span></span></b></p>
  938. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  939. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  940. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  941. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户提供注册资料时应履行诚信义务,确保提供的注册资料真实、准确、完整、合法有效,用户注册资料如有变动的,应及时更新其注册资料。<b><u>如果用户提供的注册资料不合法、不真实、不准确、不详尽的,用户需承担因此引起的相应责任及后果,并且铁合金掌上行保留终止用户使用平台各项服务的权利。</u></b><span
  942. lang=EN-US><o:p></o:p></span></span></p>
  943. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  944. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  945. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  946. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>7.</span></b><b><span
  947. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  948. 宋体;mso-font-kerning:0pt'>【责任承担】<span lang=EN-US><o:p></o:p></span></span></b></p>
  949. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  950. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  951. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  952. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如用户提供的任何注册资料侵犯任何第三方的合法权益,用户应当自行承担责任,如由于该等注册资料侵权对铁合金掌上行平台造成任何损失的,用户应当向铁合金掌上行平台进行充分赔偿。</span></u></b><span
  953. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  954. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  955. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  956. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  957. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  958. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>8.</span></b><b><span
  959. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  960. 宋体;mso-font-kerning:0pt'>【不得转让】<span lang=EN-US><o:p></o:p></span></span></b></p>
  961. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  962. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  963. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  964. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户注册成功后,应当谨慎保存、使用其用户名和密码,不得将账户转让、或借给他人使用。否则,如因他人使用的行为而产生的任何法律责任,用户应承担连带责任。<span
  965. lang=EN-US><o:p></o:p></span></span></p>
  966. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  967. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  968. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  969. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如果发现任何人不当使用用户的账户或有任何其他可能危及用户的账户安全的情形时,用户应当立即以有效方式通知平台,要求平台采取措施。同时,<b><u>用户应理解铁合金掌上行平台对用户的请求采取措施需要合理期限,在此之前,铁合金掌上行平台对用户的损失不承担责任。</u></b><span
  970. lang=EN-US><o:p></o:p></span></span></p>
  971. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  972. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  973. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  974. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>9.</span></b><b><span
  975. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  976. 宋体;mso-font-kerning:0pt'>【信息更新义务】<span lang=EN-US><o:p></o:p></span></span></b></p>
  977. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  978. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  979. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  980. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户公示信息发生变更的,用户应当在变更发生后的三个工作日内通过修改用户信息的方将变更情况告知铁合金掌上行平台,铁合金掌上行平台将对该等变更信息进行核验,并更新公示的用户信息。此外,用户除遵守签署义务外,应当至少每六个月更新或重新提交一次其身份、地址、联系方式、行政许可等信息,以确保符合用户的最新情况。</span></u></b><span
  981. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  982. 宋体;mso-font-kerning:0pt'>在法律允许的范围内,铁合金掌上行有权不时对用户的信息进行核实,用户应当配合该等核实,并提供最新、真实、完整、有效的信息。<span
  983. lang=EN-US><o:p></o:p></span></span></p>
  984. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  985. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  986. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  987. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第二章 平台服务使用的一般性规范<span
  988. lang=EN-US><o:p></o:p></span></span></b></p>
  989. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  990. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  991. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  992. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第一节 用户规定<span lang=EN-US><o:p></o:p></span></span></b></p>
  993. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  994. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  995. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  996. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>10.</span></b><b><span
  997. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  998. 宋体;mso-font-kerning:0pt'>【用户注意事项】<span lang=EN-US><o:p></o:p></span></span></b></p>
  999. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1000. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1001. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1002. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>10.1</span></b><span
  1003. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1004. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1005. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1006. 宋体;mso-font-kerning:0pt'>用户在铁合金掌上行平台使用铁合金掌上行平台服务过程中,实施的所有行为均须遵守国家法律、法规等规范性文件及平台各项规则的规定和要求,不违背社会公共利益或公共道德,不损害他人的合法权益,不违反本协议及相关规则。如果违反前述承诺,产生任何法律后果的,用户应自行承担所有法律责任。<span
  1007. lang=EN-US><o:p></o:p></span></span></p>
  1008. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1009. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1010. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1011. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>10.2</span></b><span
  1012. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1013. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1014. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1015. 宋体;mso-font-kerning:0pt'>用户在交易过程中,应当遵守诚实信用原则,不采取不正当竞争行为,不扰乱平台服务的正常秩序,不从事与平台服务无关的行为。<span
  1016. lang=EN-US><o:p></o:p></span></span></p>
  1017. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1018. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1019. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1020. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>10.3</span></b><span
  1021. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1022. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><b><u><span
  1023. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1024. 宋体;mso-font-kerning:0pt'>用户理解并同意:铁合金掌上行平台的交易时间为<a name="_Hlk117278589"><span
  1025. lang=EN-US>09:00-</span></a><span lang=EN-US>24:00</span>,但平台人工客服时间为工作日每周一至周五的上午<span
  1026. lang=EN-US>09:00-</span>下午<span lang=EN-US>17</span>:<span lang=EN-US>30</span>。铁合金掌上行平台有权在发生系统异常等无法预见的情况时调整交易时间。交易时间若有变更,铁合金掌上行平台将及时在铁合金掌上行平台上发布公告进行告知。<span
  1027. lang=EN-US><o:p></o:p></span></span></u></b></p>
  1028. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1029. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1030. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1031. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>10.4&nbsp;</span></b><span
  1032. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1033. 宋体;mso-font-kerning:0pt'>用户理解并同意:铁合金掌上行平台有权根据业务情况或者系统客观情况,新增或者更改平台各类产品或服务,变更情况将及时通过铁合金掌上行平台发布公告进行告知。用户应自行主动留意铁合金掌上行平台的公告。该等产品或服务的变更,除有另行规定,自发布公告之日起生效。<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.1pt;
  1036. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1037. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1038. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.</span></b><b><span
  1039. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1040. 宋体;mso-font-kerning:0pt'>【用户禁止行为】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1041. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1042. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1043. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1044. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户在铁合金掌上行平台使用铁合金掌上行平台服务的过程中,不得从事下列行为<span
  1045. lang=EN-US>:<o:p></o:p></span></span></p>
  1046. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1047. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1048. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1049. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.1&nbsp;</span></b><span
  1050. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1051. 宋体;mso-font-kerning:0pt'>对铁合金掌上行平台上的任何数据作商业性利用,包括但不限于在未经铁合金掌上行事先书面同意的情况下,以复制、传播等任何方式使用铁合金掌上行平台上展示的资料;<span
  1052. lang=EN-US><o:p></o:p></span></span></p>
  1053. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1054. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1055. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1056. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.2</span></b><span
  1057. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1058. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1059. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1060. 宋体;mso-font-kerning:0pt'>使用任何装置、软件或例行程序干预或试图干预综合平台的正常运作或正在综合平台上进行的任何交易、活动;<span
  1061. lang=EN-US><o:p></o:p></span></span></p>
  1062. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1063. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1064. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1065. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.3&nbsp;</span></b><span
  1066. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1067. 宋体;mso-font-kerning:0pt'>采取任何将导致不合理的庞大数据负载加诸综合平台网络设备的行动;<span lang=EN-US><o:p></o:p></span></span></p>
  1068. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1069. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1070. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1071. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.4</span></b><span
  1072. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1073. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1074. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1075. 宋体;mso-font-kerning:0pt'>删除铁合金掌上行平台及其副本上关于著作权的信息;<span lang=EN-US><o:p></o:p></span></span></p>
  1076. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1077. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1078. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1079. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.5</span></b><span
  1080. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1081. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1082. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1083. 宋体;mso-font-kerning:0pt'>对铁合金掌上行平台进行反向工程、反向汇编、反向编译,或者以其他方式尝试发现网站的源代码;<span
  1084. lang=EN-US><o:p></o:p></span></span></p>
  1085. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1086. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1087. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1088. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.6&nbsp;</span></b><span
  1089. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1090. 宋体;mso-font-kerning:0pt'>对铁合金掌上行平台拥有知识产权的内容进行使用、出租、出借、复制、修改、链接、转载、汇编、发表、出版、建立镜像站点等;<span
  1091. lang=EN-US><o:p></o:p></span></span></p>
  1092. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1093. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1094. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1095. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.7</span></b><span
  1096. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1097. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1098. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1099. 宋体;mso-font-kerning:0pt'>使用铁合金掌上行平台进行任何危害网络安全的行为,包括但不限于:使用未经许可的数据或进入未经许可的服务器<span
  1100. lang=EN-US>/</span>账户;未经允许进入公众网络或者其他人的操作系统并删除、修改、增加存储信息;<span lang=EN-US><o:p></o:p></span></span></p>
  1101. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1102. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1103. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1104. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.8</span></b><span
  1105. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1106. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1107. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1108. 宋体;mso-font-kerning:0pt'>通过修改或伪造网站运行中的指令、数据,增加、删减、变动网站的功能或运行效果,或者将用于上述用途的软件、方法进行运营或向公众传播,无论这些行为是否为商业目的;<span
  1109. lang=EN-US><o:p></o:p></span></span></p>
  1110. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1111. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1112. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1113. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.9</span></b><span
  1114. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1115. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1116. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1117. 宋体;mso-font-kerning:0pt'>通过非铁合金掌上行开发、授权的第三方软件、插件、外挂、系统,登录或使用本网站及服务,或制作、发布、传播上述工具;<span
  1118. lang=EN-US><o:p></o:p></span></span></p>
  1119. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1120. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1121. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1122. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>11.10&nbsp;</span></b><span
  1123. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1124. 宋体;mso-font-kerning:0pt'>自行或者授权他人、第三方软件对铁合金掌上行平台及其组件、模块、数据进行干扰。<span
  1125. lang=EN-US><o:p></o:p></span></span></p>
  1126. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1127. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1128. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1129. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>12.</span></b><b><span
  1130. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1131. 宋体;mso-font-kerning:0pt'>【用户授权】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1132. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1133. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1134. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1135. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户在铁合金掌上行平台使用铁合金掌上行平台服务的过程中,授权铁合金掌上行从事下列行为:</span></u></b><span
  1136. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1137. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1138. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1139. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1140. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1141. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>12.1
  1142. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1143. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>依据平台规则合理裁量用户是否违反了本协议,并根据该等认定适用相应平台规则予以处理或终止提供服务,且无须事先通知用户或征得用户同意;</span></u></b><span
  1144. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1145. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1146. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1147. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1148. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1149. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>12.2
  1150. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1151. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>基于维护铁合金掌上行平台各产品与服务的秩序及交易安全的需要,在发生危及交易安全、扰乱市场正常交易秩序的行为时,执行撤销相应交易订单等操作。前述危及交易安全、扰乱市场正常交易秩序的行为包括但不限于:<span
  1152. lang=EN-US>(i)</span>交易中诱导交易对方违背正常交易流程操作的行为;<span lang=EN-US>(ii)</span>出于骗取用户积点或其他目的,虚构交易的行为;<span
  1153. lang=EN-US>(iii)</span>短期内用户因多次违反合同、投诉量或纠纷量过大,经铁合金掌上行平台综合判断有理由认为用户无履行合同之意图的行为;<span
  1154. lang=EN-US>(iv)</span>并非基于真实交易需求,使用错误交易信息(包括但不限于收货信息)、下单等;<span lang=EN-US>(v)</span>其他铁合金掌上行平台认为危及交易安全、扰乱市场正常交易秩序的行为;</span></u></b><span
  1155. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1156. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1157. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1158. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1159. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1160. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>12.3
  1161. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1162. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>经国家行政或司法机关的生效法律文书确认用户存在违法或侵权行为,或者铁合金掌上行平台根据自身的判断,认为用户的行为涉嫌违反本协议和<span
  1163. lang=EN-US>/</span>或相关规则的条款或涉嫌违反法律法规的规定的,在必要的范围内,在铁合金掌上行平台上公示用户该等涉嫌违法或违约行为及已对用户采取的措施。</span></u></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.1pt;
  1167. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1168. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1169. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>13.</span></b><b><span
  1170. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1171. 宋体;mso-font-kerning:0pt'>【用户回款】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1172. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1173. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1174. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1175. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户可申请将其在铁合金掌上行平台账户中留有的货款回款至用户的银行账户,但可提交申请的回款金额需受如下限制:</span></u></b><span
  1176. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1177. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1178. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1179. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1180. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1181. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>13.1
  1182. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1183. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>现货产品订单尚未全额支付的,未支付的部分暂不可申请退款;</span></u></b><span
  1184. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1185. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1186. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1187. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1188. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1189. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>13.2
  1190. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1191. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户存在任何对铁合金掌上行平台应付未付款项的,该欠款金额部分暂不可申请退款;</span></u></b><span
  1192. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1193. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1194. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1195. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1196. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1197. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>13.3
  1198. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1199. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户在产能预售项下已锁货但尚未支付的,待支付金额部分暂不可申请退款;</span></u></b><span
  1200. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1201. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1202. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1203. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1204. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1205. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>13.4
  1206. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1207. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>根据平台规则,用户就其违约行为或违反平台规则的行为需承担赔偿责任的,在该等责任范围内,就相应金额的部分暂不可申请退款。<span
  1208. lang=EN-US><o:p></o:p></span></span></u></b></p>
  1209. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1210. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1211. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1212. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>特别提示:<a
  1213. name="_Hlk117283976">如用户是个人在平台完成挂单交易后申请回款涉及交易增值收益部分,应当向平台提交相应金额的合格发票,如用户无法提供发票,可由平台代开个人纳税发票,或代扣税款;如用户是公司,应当就交易向平台提交合格的发票。</a>非增值部分平台在收到用户回款申请后的<span
  1214. lang=EN-US>3</span>个工作日内回款至用户在平台预留的收款账户,增值部分在平台收到用户开具的合格发票后或平台为用户代开或代扣增值税金后的三个工作日内回款至用户在平台预留的收款账户。</span></u></b><span
  1215. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1216. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1217. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1218. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1219. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1220. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>14.</span></b><b><span
  1221. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1222. 宋体;mso-font-kerning:0pt'>【反贿赂】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1223. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1224. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1225. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1226. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户在使用铁合金掌上行平台服务期间,应当遵守反贿赂相关的适用法律法规并履行反贿赂相关义务。用户不得为获取任何不正当利益或不正当优势,进行包括但不限于如下之行为:<span
  1227. lang=EN-US><o:p></o:p></span></span></p>
  1228. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1229. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1230. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1231. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>14.1 </span><span
  1232. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1233. 宋体;mso-font-kerning:0pt'>向铁合金掌上行员工和<span lang=EN-US>/</span>或其关联方提供财务、消费、款待、商业机会或其他有价值之物品;<span
  1234. lang=EN-US><o:p></o:p></span></span></p>
  1235. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1236. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1237. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1238. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>14.2 </span><span
  1239. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1240. 宋体;mso-font-kerning:0pt'>向铁合金掌上行员工和<span lang=EN-US>/</span>或其关联方提供贷款;<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.0pt;
  1243. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1244. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1245. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>14.3</span><span
  1246. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1247. 宋体;mso-font-kerning:0pt'>雇佣铁合金掌上行的任何员工。<span lang=EN-US><o:p></o:p></span></span></p>
  1248. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  1249. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1250. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  1251. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第二节 知识产权保护<span lang=EN-US><o:p></o:p></span></span></b></p>
  1252. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1253. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1254. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1255. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>15.</span></b><b><span
  1256. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1257. 宋体;mso-font-kerning:0pt'>【知识产权授权】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1258. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1259. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1260. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1261. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户接受本协议后,对于用户提供、上传、创作、发布在铁合金掌上行平台的文字、评论、图片、照片、视频、音频等任何形式的信息内容(包括但不限于评价、商品图片、各类话题文章等)的知识产权均不会发生转移。与此同时,用户授权铁合金掌上行平台在法律允许的范围内使用上述信息。用户同意铁合金掌上行平台及其关联方有权存储、使用、复制、修订、编辑、发布、展示、翻译、分发、推广、出版、发行、信息网络传播用户以上信息内容,有权改编制作派生作品,并以已知或日后开发的形式、媒体或技术将上述信息纳入其它作品内。</span></u></b><span
  1262. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1263. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1264. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1265. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1266. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1267. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>16.</span></b><b><span
  1268. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1269. 宋体;mso-font-kerning:0pt'>【不侵权】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1270. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1271. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1272. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1273. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户接受本协议的同时,向铁合金掌上行陈述、保证和承诺,其对于在铁合金掌上行平台上发布的各类信息内容均享有知识产权或相应的使用权。</span></u></b><span
  1274. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1275. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></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><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1279. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户应确保该等发布在铁合金掌上行平台上的各类信息不涉及侵犯第三方肖像、隐私、知识产权或其他合法权益。否则用户理解并同意,铁合金掌上行有权随时采取相应措施,包括但不限于:要求相关用户作出回应;删除、屏蔽、断开相关商品的链接;删除相关侵权信息;终止交易和服务;冻结相关用户账户中全部或部分资金等。</span></u></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.1pt;
  1283. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1284. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1285. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>17.</span></b><b><span
  1286. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1287. 宋体;mso-font-kerning:0pt'>【知识产权归属】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1288. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1289. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1290. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1291. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行平台所载的资料信息(诸如文字、图表、标识、按钮图标、图像、声音文件片段、数字下载、数据编辑和软件)以及数据资产(包括但不限于交易数据、订单数据、用户数据、网站流量数据等),所有权均属于铁合金掌上行平台或其内容提供者,受相关法律的保护。铁合金掌上行平台上所有内容汇编是铁合金掌上行的财产,受相关法律保护。铁合金掌上行平台上所有软件都是铁合金掌上行或其软件供应商的财产,受相关法律保护。<span
  1292. lang=EN-US><o:p></o:p></span></span></p>
  1293. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  1294. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1295. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  1296. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第三节 违约责任<span lang=EN-US><o:p></o:p></span></span></b></p>
  1297. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1298. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1299. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1300. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>18.</span></b><b><span
  1301. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1302. 宋体;mso-font-kerning:0pt'>【违约情形】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1303. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1304. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1305. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1306. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户使用铁合金掌上行平台服务时违反有关法律法规规定的,或用户违反本协议或其他铁合金掌上行平台规则任何条款的,视为用户违约。<span
  1307. lang=EN-US><o:p></o:p></span></span></p>
  1308. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1309. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1310. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1311. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>19.</span></b><b><span
  1312. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1313. 宋体;mso-font-kerning:0pt'>【铁合金掌上行平台措施】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1314. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1315. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1316. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1317. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如果铁合金掌上行平台发现或收到他人举报投诉用户违反有关法律法规规定,或违反本协议或其他铁合金掌上行平台规则任何条款的,铁合金掌上行有权不经通知随时对相关内容进行删除、屏蔽,并视行为情节对违规帐号处以包括但不限于警告、中止全部或部分服务、帐号冻结、<span
  1318. lang=EN-US>IP</span>地址封禁等处罚,并公告处理结果。</span></u></b><span lang=EN-US
  1319. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1320. 宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1321. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1322. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1323. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1324. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>20.</span></b><b><span
  1325. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1326. 宋体;mso-font-kerning:0pt'>【责任承担】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1327. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1328. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1329. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1330. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如因用户违反任何法律法规或本协议的任何条款,导致产生任何第三方主张的索赔要求时,用户应当独立承担责任。铁合金掌上行平台方因用户的前述行为而发生的任何损害、损失、权利要求、诉讼、付款要求、判决、和解、税费、利息、费用和开支(包括但不限于合理的律师费用),用户应当进行赔偿。</span></u></b><span
  1331. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1332. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1333. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1334. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1335. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1336. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>21.</span></b><b><span
  1337. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1338. 宋体;mso-font-kerning:0pt'>【免责条款】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1339. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1340. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1341. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1342. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如由于在铁合金掌上行平台可控范围之外的因素,包括但不限于,疫情防控、政府管控、黑客攻击、计算机病毒侵入或发作、系统或通讯网络故障,或其他不可抗力事件,而对用户造成的任何损失,铁合金掌上行不承担任何法律责任。</span></u></b><span
  1343. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1344. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1345. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  1346. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1347. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  1348. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第三章 铁合金掌上行平台服务的中止或终止<span
  1349. lang=EN-US><o:p></o:p></span></span></b></p>
  1350. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  1351. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1352. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  1353. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第一节 铁合金掌上行平台处罚措施<span
  1354. lang=EN-US><o:p></o:p></span></span></b></p>
  1355. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1356. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1357. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1358. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>22.</span></b><b><span
  1359. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1360. 宋体;mso-font-kerning:0pt'>【中止全部或部分服务及账户的冻结】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1361. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1362. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1363. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1364. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如出现下列情况,铁合金掌上行平台有权中止全部或部分服务,或冻结用户的账户:</span></u></b><span
  1365. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1366. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></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><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1370. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>22.1
  1371. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1372. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户违反有关法律法规规定,或违反本协议任何条款的;</span></u></b><span
  1373. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1374. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1375. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1376. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1377. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1378. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>22.2
  1379. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1380. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户自身运营出现重大恶性变故、资金链断裂,或存在重大潜在损失,后续合作风险极大的;</span></u></b><span
  1381. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1382. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1383. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1384. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1385. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1386. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>22.3
  1387. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1388. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户采用不正当手段进行谋利行为,正在被铁合金掌上行查证的;</span></u></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.1pt;
  1392. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1393. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1394. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>22.4
  1395. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1396. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户注册信息中的主要内容不真实、不准确、不完整或发生变更未及时更新;</span></u></b><span
  1397. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1398. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1399. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1400. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1401. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1402. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>22.5
  1403. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1404. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>其他铁合金掌上行平台合理认为应当中止服务,或冻结账号的行为。</span></u></b><span
  1405. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1406. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1407. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1408. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1409. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1410. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>23.</span></b><b><span
  1411. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1412. 宋体;mso-font-kerning:0pt'>【<span lang=EN-US>IP</span>地址封禁】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1413. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1414. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1415. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1416. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行在认定用户存在下列违约行为时,有权直接封禁用户的<span
  1417. lang=EN-US>IP</span>的地址:</span></u></b><span lang=EN-US style='mso-bidi-font-size:
  1418. 10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:
  1419. 0pt'><o:p></o:p></span></p>
  1420. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1421. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1422. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1423. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>23.1
  1424. </span></u></b><b><u><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1425. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行平台中止用户全部或部分服务,或冻结用户账户后,用户再一次直接或间接以他人名字注册为铁合金掌上行平台用户;</span></u></b><span
  1426. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1427. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></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><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1431. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>23.2</span></u></b><b><u><span
  1432. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1433. 宋体;mso-font-kerning:0pt'>用户采用不正当手段在铁合金掌上行平台进行谋利行为,无论是否获得利益。</span></u></b><span
  1434. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1435. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1436. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1437. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1438. background:white'><b><u><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1439. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>23.3</span></u></b><b><u><span
  1440. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1441. 宋体;mso-font-kerning:0pt'>其它铁合金掌上行平台合理认为应当终止服务的情况。</span></u></b><span
  1442. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1443. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1444. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1445. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1446. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1447. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>24.</span></b><b><span
  1448. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1449. 宋体;mso-font-kerning:0pt'>【主动注销】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1450. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1451. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1452. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1453. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如用户自行决定终止在铁合金掌上行平台上的所有业务,</span></u></b><span
  1454. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1455. 宋体;mso-font-kerning:0pt'>用户注销该账户之日起,视作用户与铁合金掌上行终止了本协议。<b><u>如用户决定终止在铁合金掌上行平台上的所有业务,除上述程序外,还应采取合理、必要、及时的措施保障关联用户的合法权益。</u></b><span
  1456. lang=EN-US><o:p></o:p></span></span></p>
  1457. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  1458. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1459. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  1460. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第二节 服务中止或终止后的交易<span
  1461. lang=EN-US><o:p></o:p></span></span></b></p>
  1462. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1463. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1464. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1465. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>25.</span></b><b><span
  1466. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1467. 宋体;mso-font-kerning:0pt'>【交易处理】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1468. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1469. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1470. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1471. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>25.1&nbsp;</span></b><span
  1472. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1473. 宋体;mso-font-kerning:0pt'>用户在账户冻结、注销或<span lang=EN-US>IP</span>地址封禁之前已经上传至铁合金掌上行平台的商品尚未交易的,铁合金掌上行有权在冻结或注销用户账户的同时从铁合金掌上行平台上删除此项商品的相关信息;<span
  1474. lang=EN-US><o:p></o:p></span></span></p>
  1475. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1476. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1477. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1478. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>25.2&nbsp;</span></b><span
  1479. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1480. 宋体;mso-font-kerning:0pt'>用户在账户冻结、注销或<span lang=EN-US>IP</span>地址封禁之前已经生成订单,但尚未实际履行的,用户仍有义务履行该笔订单项下的义务;<span
  1481. lang=EN-US><o:p></o:p></span></span></p>
  1482. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1483. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1484. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1485. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>25.3&nbsp;</span></b><span
  1486. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1487. 宋体;mso-font-kerning:0pt'>对于基于上述的删除行为所产生的任何争议、损失或费用,用户应独立承担,且应确保铁合金掌上行免于因该等删除行为而产生任何损失或承担任何费用。<span
  1488. lang=EN-US><o:p></o:p></span></span></p>
  1489. <p class=MsoNormal align=left style='text-align:left;text-indent:24.1pt;
  1490. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1491. background:white'><b><span style='font-size:12.0pt;line-height:150%;font-family:
  1492. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第三节 服务终止后的权利义务<span
  1493. lang=EN-US><o:p></o:p></span></span></b></p>
  1494. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1495. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1496. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1497. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>26.</span></b><b><span
  1498. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1499. 宋体;mso-font-kerning:0pt'>【铁合金掌上行平台权利】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1500. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1501. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1502. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1503. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>在用户与铁合金掌上行平台终止本协议后,铁合金掌上行平台仍享有下列权利:<span
  1504. lang=EN-US><o:p></o:p></span></span></p>
  1505. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1506. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1507. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1508. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>26.1</span></b><span
  1509. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1510. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1511. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1512. 宋体;mso-font-kerning:0pt'>根据相关法律要求,继续保存用户使用铁合金掌上行平台服务期间的所有相关商品和服务信息、交易信息三(<span
  1513. lang=EN-US>3</span>)年或更长时间;<span lang=EN-US><o:p></o:p></span></span></p>
  1514. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1515. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1516. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1517. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>26.2&nbsp;</span></b><span
  1518. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1519. 宋体;mso-font-kerning:0pt'>用户在使用铁合金掌上行平台服务期间存在违反法律法规或违反本协议或其他铁合金掌上行平台规则的行为的,铁合金掌上行仍可依据本协议向用户主张提出相应主张;<span
  1520. lang=EN-US><o:p></o:p></span></span></p>
  1521. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1522. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1523. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1524. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>26.3</span></b><span
  1525. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1526. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1527. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1528. 宋体;mso-font-kerning:0pt'>铁合金掌上行平台将在法律允许的范围内,记录、保存平台上发布的商品和服务信息、并按照《隐私和信息保护政策》的规定,收集用户使用平台期间所产生的用户信息,铁合金掌上行将严格按照法律法规要求及《隐私和信息保护政策》的规定使用前述信息。<span
  1529. lang=EN-US><o:p></o:p></span></span></p>
  1530. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1531. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1532. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1533. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>27.
  1534. </span></b><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1535. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>【交易异常】<span
  1536. lang=EN-US><o:p></o:p></span></span></b></p>
  1537. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1538. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1539. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1540. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>为避免交易过程中因异常情况对行业或社会造成的不利影响,铁合金掌上行平台有权根据实际交易情况,决定交易延时、重新交易和临时闭市等措施。异常情况包含如下内容:<span
  1541. lang=EN-US><o:p></o:p></span></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 lang=EN-US style='mso-bidi-font-size:10.5pt;
  1545. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>27.1</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'>&nbsp;</span><span
  1548. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1549. 宋体;mso-font-kerning:0pt'>不可抗力【指铁合金掌上行平台所在地(包括办公及机房)或全国其他部分区域出现不能预见、不能避免并不能克服的客观情况,包括但不限于自然原因引起的自然现象,如,火灾、旱灾、地震、风灾、大雪、山崩等;以及由社会原因引起的社会现象,如,疫情、防疫、战争、动乱、政府干预、罢工、禁运、市场行情等】;<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 lang=EN-US style='mso-bidi-font-size:10.5pt;
  1554. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>27.2&nbsp;</span></b><span
  1555. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1556. 宋体;mso-font-kerning:0pt'>意外事件【指由铁合金掌上行平台以外的原因而非其过错引发的偶然事故,包括但不限于电力故障、网络中断、通讯中断等】;<span
  1557. lang=EN-US><o:p></o:p></span></span></p>
  1558. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1559. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1560. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1561. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>27.3</span></b><span
  1562. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1563. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1564. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1565. 宋体;mso-font-kerning:0pt'>技术故障【铁合金掌上行平台交易、通信系统中硬件设备、应用软件等无法正常运行;系统在运行、主备系统切换、软硬件系统及相关程序升级、上线时出现异常;系统被非法侵入或遭受其他人为破坏等情形】;<span
  1566. lang=EN-US><o:p></o:p></span></span></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 lang=EN-US style='mso-bidi-font-size:10.5pt;
  1570. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>27.4&nbsp;</span></b><span
  1571. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1572. 宋体;mso-font-kerning:0pt'>铁合金掌上行平台认定的其他异常情况。<span lang=EN-US><o:p></o:p></span></span></p>
  1573. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1574. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1575. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1576. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>28.
  1577. </span></b><b><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1578. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>【交易异常情况处理原则】<span
  1579. lang=EN-US><o:p></o:p></span></span></b></p>
  1580. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1581. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1582. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1583. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>28.1</span></b><span
  1584. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1585. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1586. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1587. 宋体;mso-font-kerning:0pt'>铁合金掌上行平台对交易异常延时、重新交易和临时闭市等决定在铁合金掌上行平台网站首页予以公告。<span
  1588. lang=EN-US><o:p></o:p></span></span></p>
  1589. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1590. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1591. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1592. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>28.2</span></b><span
  1593. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1594. mso-bidi-font-family:宋体;mso-font-kerning:0pt'>&nbsp;</span><span
  1595. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1596. 宋体;mso-font-kerning:0pt'>因交易异常情况及铁合金掌上行平台为避免或减轻交易异常情况的不利影响所采取的必要措施造成的损失,铁合金掌上行平台不承担责任。<span
  1597. lang=EN-US><o:p></o:p></span></span></p>
  1598. <p class=MsoNormal align=left style='text-align:left;text-indent:27.1pt;
  1599. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1600. background:white'><b><span style='font-size:13.5pt;line-height:150%;font-family:
  1601. 宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>第四章 附则<span lang=EN-US><o:p></o:p></span></span></b></p>
  1602. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1603. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1604. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1605. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>29.</span></b><b><span
  1606. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1607. 宋体;mso-font-kerning:0pt'>【通知】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1608. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1609. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1610. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1611. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>铁合金掌上行平台方可以通过<a
  1612. name="_Hlk118888298">平台公告、微信公众号公告、电子邮件、手机短信、微信、传真、铁合金掌上行平台即时通讯工具的方式</a>向用户在铁合金掌上行平台注册时提供的电子邮件地址、手机号码、传真号进行通知。通过平台公告、微信公众号公告、电子邮件、手机短信、微信、传真、铁合金掌上行平台即时通讯工具的方式进行通知,送达时间以相关公告、电子邮件、手机短信、推送或通讯内容在铁合金掌上行方系统中记载的发出时间为准;通过传真方式进行通知,送达时间为相关传真的发出时间。<span
  1613. lang=EN-US><o:p></o:p></span></span></p>
  1614. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1615. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1616. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1617. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>同时,铁合金掌上行方也有权通过铁合金掌上行平台、公众号以公告的方式通知用户与任何铁合金掌上行平台项下产品或服务有关的任何事宜,用户有义务不时关注铁合金掌上行平台及公众号的公告信息。公告或通知与本协议不一致的,以公告或通知的内容为准。</span></u></b><span
  1618. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1619. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1620. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1621. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1622. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1623. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>30.</span></b><b><span
  1624. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1625. 宋体;mso-font-kerning:0pt'>【排除不利于起草方的解释原则】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1626. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1627. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1628. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1629. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本协议应以字面意思进行解释。在法律法规允许的范围内,以不利于起草方的解释排除歧义的原则在解释本协议时不被采用。<span
  1630. lang=EN-US><o:p></o:p></span></span></p>
  1631. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1632. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1633. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1634. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>31.</span></b><b><span
  1635. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1636. 宋体;mso-font-kerning:0pt'>【权利可累计性;放弃】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1637. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1638. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1639. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1640. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本协议项下双方所享有的权利是可累计的并且所涉主体均可按照其认为适当的频率行使其权利。除非明示放弃或书面变更,本协议项下任一方所享有的权利不可被放弃或者改变。针对前述权利的任何不行使或者延迟行使均不应被视为对该权利或其他权利的放弃或者变更。针对前述权利的任何瑕疵行使和部分行使均不应排除对该等权利或其他权利的进一步或者其他行使。任何一方的任何作为、行为或者谈判均不得以任何方式阻碍该方行使任何此类权利或构成任何此类权利的中止或变更。<span
  1641. lang=EN-US><o:p></o:p></span></span></p>
  1642. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1643. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1644. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1645. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>32.</span></b><b><span
  1646. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1647. 宋体;mso-font-kerning:0pt'>【可分割性】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1648. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1649. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1650. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1651. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>如果本协议项下任何一项或者多项条款因任何原因被认定为无效或不可执行,该一项或多项条款应被视为与本协议项下的其他规定内容相分割,并且前述无效或不可执行的条款在任何情况下均不应对本协议项下其他条款的效力和执行力产生影响,也不得影响本规则所涉任何一方所享有的权利。在法律允许的范围内,本协议所涉任何一方特此放弃适用任何使得本规则任何规定在任何方面无效或不可执行的任何法律规定的权利。<span
  1652. lang=EN-US><o:p></o:p></span></span></p>
  1653. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1654. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1655. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1656. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>33.</span></b><b><span
  1657. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1658. 宋体;mso-font-kerning:0pt'>【法律适用及争议解决】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1659. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1660. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1661. background:white'><b><u><span style='mso-bidi-font-size:10.5pt;line-height:
  1662. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本协议的成立、生效、履行、解释及纠纷解决,适用中华人民共和国法律(不包括其法律适用法)。</span></u></b><span
  1663. lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;
  1664. mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p></o:p></span></p>
  1665. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1666. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1667. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1668. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>用户和铁合金掌上行方因本协议产生的,或与本规则相关的任何纠纷或争议,首先应友好协商解决。协商不成的,<b><u>有关方应当将纠纷或争议提交至上海仲裁委员会仲裁的方式解决。</u></b><span
  1669. lang=EN-US><o:p></o:p></span></span></p>
  1670. <p class=MsoNormal align=left style='text-align:left;text-indent:21.1pt;
  1671. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1672. background:white'><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
  1673. line-height:150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>34.</span></b><b><span
  1674. style='mso-bidi-font-size:10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1675. 宋体;mso-font-kerning:0pt'>【规则的生效与变更】<span lang=EN-US><o:p></o:p></span></span></b></p>
  1676. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1677. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1678. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1679. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>本规则于<span
  1680. lang=EN-US>2022</span>年<span lang=EN-US>11</span>月<span lang=EN-US>15</span>日公示,公示期为<span
  1681. lang=EN-US>7</span>日,公示期满后实施生效。在符合《电子商务法》或其他适用法律规定的公示要求或其他强制性要求的前提下,铁合金掌上行平台方有权根据需要不时地重述、修改本协议,并以在铁合金掌上行平台公告的方式通知买方。<b><u>如不同意相关变更的,用户必须立即停止任何使用铁合金掌上行平台的行为。用户注册和<span
  1682. lang=EN-US>/</span>或使用铁合金掌上行平台的行为即构成用户对公告及所涉相关规则变更(无论该等规则是否以弹窗形式单独要求用户确认)的无条件确认与接受。</u></b>变更生效后的本规则对该等规则变更生效前的各方发生的行为或该等行为产生的法律后果均不具有溯及力。<span
  1683. lang=EN-US><o:p></o:p></span></span></p>
  1684. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1685. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1686. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1687. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p>&nbsp;</o:p></span></p>
  1688. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1689. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1690. background:white'><span style='mso-bidi-font-size:10.5pt;line-height:150%;
  1691. font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'>附件:<span
  1692. lang=EN-US><o:p></o:p></span></span></p>
  1693. <p class=MsoNormal align=center style='text-align:center;text-indent:30.1pt;
  1694. mso-char-indent-count:2.0;line-height:150%'><b><span style='font-size:15.0pt;
  1695. line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>授权委托书<span
  1696. lang=EN-US><o:p></o:p></span></span></b></p>
  1697. <p class=MsoNormal align=left style='text-align:left;line-height:150%'><b><span
  1698. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1699. "Times New Roman"'>致铁合金掌上行平台:<span lang=EN-US><o:p></o:p></span></span></b></p>
  1700. <p class=MsoNormal align=left style='text-align:left;text-indent:24.0pt;
  1701. mso-char-indent-count:2.0;line-height:150%'><span style='font-size:12.0pt;
  1702. line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>兹授权(姓名)<u><span
  1703. lang=EN-US><span style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  1704. </span></span></u>(身份证号码:<u><span lang=EN-US><span
  1705. style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  1706. </span></span></u><span lang=EN-US><span style='mso-spacerun:yes'>&nbsp;</span></span>)作为我单位(单位全称:<u><span
  1707. lang=EN-US><span
  1708. style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  1709. </span></span></u>)铁合金掌上行平台系统的管理员或经办人,以我单位名义在该平台中进行账户开通、账号管理、实名认证、办理业务等相关操作,我单位将承担对本账户操作所产生的全部法律后果和法律责任。<span
  1710. lang=EN-US><o:p></o:p></span></span></p>
  1711. <p class=MsoNormal align=left style='text-align:left;text-indent:24.0pt;
  1712. mso-char-indent-count:2.0;line-height:150%'><span lang=EN-US style='font-size:
  1713. 12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'><o:p>&nbsp;</o:p></span></p>
  1714. <p class=MsoNormal align=right style='text-align:right;text-indent:24.0pt;
  1715. mso-char-indent-count:2.0;line-height:150%'><span style='font-size:12.0pt;
  1716. line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>委托单位(盖章):<span
  1717. lang=EN-US><o:p></o:p></span></span></p>
  1718. <p class=MsoNormal align=right style='text-align:right;text-indent:24.0pt;
  1719. mso-char-indent-count:2.0;line-height:150%'><u><span lang=EN-US
  1720. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1721. "Times New Roman"'><span
  1722. style='mso-spacerun:yes'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></u><span
  1723. style='font-size:12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
  1724. "Times New Roman"'>年<u><span lang=EN-US><span
  1725. style='mso-spacerun:yes'>&nbsp;&nbsp; </span></span></u>月<u><span lang=EN-US><span
  1726. style='mso-spacerun:yes'>&nbsp; </span></span></u>日<span lang=EN-US><o:p></o:p></span></span></p>
  1727. <p class=MsoNormal align=left style='text-align:left;text-indent:24.0pt;
  1728. mso-char-indent-count:2.0;line-height:150%'><span lang=EN-US style='font-size:
  1729. 12.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'><o:p>&nbsp;</o:p></span></p>
  1730. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1731. mso-char-indent-count:2.0;line-height:150%;mso-pagination:widow-orphan;
  1732. background:white'><span lang=EN-US style='mso-bidi-font-size:10.5pt;line-height:
  1733. 150%;font-family:宋体;mso-bidi-font-family:宋体;mso-font-kerning:0pt'><o:p>&nbsp;</o:p></span></p>
  1734. <p class=MsoNormal align=left style='text-align:left;text-indent:21.0pt;
  1735. mso-char-indent-count:2.0;line-height:150%'><span lang=EN-US style='font-family:
  1736. 宋体'><o:p>&nbsp;</o:p></span></p>
  1737. </div>
  1738. </body>
  1739. </html>