citeclaw 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1723) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +152 -0
  3. package/app.js +318 -0
  4. package/config.dev.yaml +124 -0
  5. package/config.prod.yaml +123 -0
  6. package/config.yaml +0 -0
  7. package/lib/Citation.js +101 -0
  8. package/lib/CitoidError.js +61 -0
  9. package/lib/CitoidRequest.js +150 -0
  10. package/lib/CitoidResponse.js +44 -0
  11. package/lib/CitoidService.js +1118 -0
  12. package/lib/Exporter.js +1052 -0
  13. package/lib/OutgoingRequestThrottle.js +96 -0
  14. package/lib/Scraper.js +617 -0
  15. package/lib/Translator.js +76 -0
  16. package/lib/ZoteroService.js +220 -0
  17. package/lib/api-util.js +125 -0
  18. package/lib/external-apis/CrossRefService.js +122 -0
  19. package/lib/external-apis/OpenAlexService.js +245 -0
  20. package/lib/external-apis/PubMedService.js +82 -0
  21. package/lib/external-apis/SemanticScholarService.js +221 -0
  22. package/lib/external-apis/WaybackMachine.js +92 -0
  23. package/lib/hostIsAllowed.js +128 -0
  24. package/lib/swagger-ui.js +104 -0
  25. package/lib/translators/README.md +12 -0
  26. package/lib/translators/bePress.js +319 -0
  27. package/lib/translators/coins.js +360 -0
  28. package/lib/translators/crossRef.js +485 -0
  29. package/lib/translators/dublinCore.js +215 -0
  30. package/lib/translators/general.js +157 -0
  31. package/lib/translators/openGraph.js +177 -0
  32. package/lib/translators/util/index.js +209 -0
  33. package/lib/unshorten.js +109 -0
  34. package/lib/util.js +410 -0
  35. package/lib/zotero/cachedTypes.js +232 -0
  36. package/lib/zotero/typeSchemaData.js +366 -0
  37. package/package.json +121 -0
  38. package/routes/citoid.js +101 -0
  39. package/routes/info.js +81 -0
  40. package/routes/root.js +51 -0
  41. package/scripts/botcite.js +5021 -0
  42. package/scripts/citeclaw.js +10 -0
  43. package/server.js +12 -0
  44. package/spec.yaml +156 -0
  45. package/targets.yaml +2 -0
  46. package/vendor/translators-official/ABC News Australia.js +224 -0
  47. package/vendor/translators-official/ACLS Humanities EBook.js +165 -0
  48. package/vendor/translators-official/ACLWeb.js +600 -0
  49. package/vendor/translators-official/ACM Digital Library.js +708 -0
  50. package/vendor/translators-official/ACM Queue.js +391 -0
  51. package/vendor/translators-official/ACS Publications.js +633 -0
  52. package/vendor/translators-official/ADS Bibcode.js +664 -0
  53. package/vendor/translators-official/AEA Web.js +450 -0
  54. package/vendor/translators-official/AGRIS.js +311 -0
  55. package/vendor/translators-official/AIP.js +295 -0
  56. package/vendor/translators-official/AMS Journals.js +136 -0
  57. package/vendor/translators-official/AMS MathSciNet (Legacy).js +313 -0
  58. package/vendor/translators-official/AMS MathSciNet.js +288 -0
  59. package/vendor/translators-official/APA PsycNET.js +915 -0
  60. package/vendor/translators-official/APN.ru.js +132 -0
  61. package/vendor/translators-official/APS-Physics.js +204 -0
  62. package/vendor/translators-official/APS.js +542 -0
  63. package/vendor/translators-official/ARTFL Encyclopedie.js +283 -0
  64. package/vendor/translators-official/ARTnews.js +155 -0
  65. package/vendor/translators-official/ARTstor.js +619 -0
  66. package/vendor/translators-official/ASCE.js +199 -0
  67. package/vendor/translators-official/ASCO Meeting Library.js +153 -0
  68. package/vendor/translators-official/ASTIS.js +337 -0
  69. package/vendor/translators-official/ATS International Journal.js +290 -0
  70. package/vendor/translators-official/Access Engineering.js +384 -0
  71. package/vendor/translators-official/Access Medicine.js +343 -0
  72. package/vendor/translators-official/Access Science.js +391 -0
  73. package/vendor/translators-official/Adam Matthew Digital.js +405 -0
  74. package/vendor/translators-official/Agencia del ISBN.js +77 -0
  75. package/vendor/translators-official/Ahval News.js +309 -0
  76. package/vendor/translators-official/Air University Journals.js +236 -0
  77. package/vendor/translators-official/Airiti.js +423 -0
  78. package/vendor/translators-official/Alexander Street Press.js +198 -0
  79. package/vendor/translators-official/AllAfrica.js +291 -0
  80. package/vendor/translators-official/Alsharekh.js +242 -0
  81. package/vendor/translators-official/AlterNet.js +134 -0
  82. package/vendor/translators-official/Aluka.js +261 -0
  83. package/vendor/translators-official/Amazon.js +1043 -0
  84. package/vendor/translators-official/American Archive of Public Broadcasting.js +592 -0
  85. package/vendor/translators-official/American Institute of Aeronautics and Astronautics.js +210 -0
  86. package/vendor/translators-official/American Prospect.js +114 -0
  87. package/vendor/translators-official/Anarchist Library.js +382 -0
  88. package/vendor/translators-official/Ancestry.com US Federal Census.js +164 -0
  89. package/vendor/translators-official/Annual Reviews.js +329 -0
  90. package/vendor/translators-official/Antikvarium.hu.js +280 -0
  91. package/vendor/translators-official/AquaDocs.js +390 -0
  92. package/vendor/translators-official/Archeion.js +249 -0
  93. package/vendor/translators-official/Archiv fuer Sozialgeschichte.js +157 -0
  94. package/vendor/translators-official/Archive Ouverte en Sciences de l'Information et de la Communication (AOSIC).js +179 -0
  95. package/vendor/translators-official/Archives Canada.js +142 -0
  96. package/vendor/translators-official/Ariana News.js +203 -0
  97. package/vendor/translators-official/Art Institute of Chicago.js +279 -0
  98. package/vendor/translators-official/Artefacts Canada.js +192 -0
  99. package/vendor/translators-official/Artforum.js +438 -0
  100. package/vendor/translators-official/Atlanta Journal-Constitution.js +311 -0
  101. package/vendor/translators-official/Atypon Journals.js +1204 -0
  102. package/vendor/translators-official/AustLII and NZLII.js +604 -0
  103. package/vendor/translators-official/Australian Dictionary of Biography.js +196 -0
  104. package/vendor/translators-official/BAILII.js +176 -0
  105. package/vendor/translators-official/BBC Genome.js +254 -0
  106. package/vendor/translators-official/BBC.js +430 -0
  107. package/vendor/translators-official/BIBSYS.js +112 -0
  108. package/vendor/translators-official/BOCC.js +217 -0
  109. package/vendor/translators-official/BOE.js +229 -0
  110. package/vendor/translators-official/BOFiP-Impots.js +132 -0
  111. package/vendor/translators-official/Baidu Scholar.js +276 -0
  112. package/vendor/translators-official/Bangkok Post.js +216 -0
  113. package/vendor/translators-official/Baruch Foundation.js +175 -0
  114. package/vendor/translators-official/Beobachter.js +175 -0
  115. package/vendor/translators-official/Bezneng Gajit.js +92 -0
  116. package/vendor/translators-official/BibLaTeX.js +888 -0
  117. package/vendor/translators-official/BibTeX.js +4236 -0
  118. package/vendor/translators-official/Biblio.com.js +216 -0
  119. package/vendor/translators-official/Bibliontology RDF.js +1166 -0
  120. package/vendor/translators-official/Biblioteca Nacional de Maestros.js +213 -0
  121. package/vendor/translators-official/Bibliotheque et Archives Nationale du Quebec (Pistard).js +147 -0
  122. package/vendor/translators-official/Bibliotheque et Archives Nationales du Quebec.js +266 -0
  123. package/vendor/translators-official/Bibliotheque nationale de France.js +872 -0
  124. package/vendor/translators-official/BioMed Central.js +585 -0
  125. package/vendor/translators-official/BioOne.js +233 -0
  126. package/vendor/translators-official/Bioconductor.js +343 -0
  127. package/vendor/translators-official/Blaetter.js +192 -0
  128. package/vendor/translators-official/Blogger.js +244 -0
  129. package/vendor/translators-official/Bloomberg.js +205 -0
  130. package/vendor/translators-official/Bloomsbury Food Library.js +296 -0
  131. package/vendor/translators-official/Bluesky.js +195 -0
  132. package/vendor/translators-official/BnF ISBN.js +129 -0
  133. package/vendor/translators-official/Bookmarks.js +282 -0
  134. package/vendor/translators-official/Bookshop.org.js +223 -0
  135. package/vendor/translators-official/Boston Review.js +332 -0
  136. package/vendor/translators-official/Bosworth Toller's Anglo-Saxon Dictionary Online.js +496 -0
  137. package/vendor/translators-official/Bracero History Archive.js +200 -0
  138. package/vendor/translators-official/Brill.js +434 -0
  139. package/vendor/translators-official/Brukerhandboken.js +153 -0
  140. package/vendor/translators-official/Bryn Mawr Classical Review.js +303 -0
  141. package/vendor/translators-official/Bundesgesetzblatt.js +231 -0
  142. package/vendor/translators-official/Business Standard.js +151 -0
  143. package/vendor/translators-official/CABI - CAB Abstracts.js +317 -0
  144. package/vendor/translators-official/CAOD.js +260 -0
  145. package/vendor/translators-official/CBC.js +439 -0
  146. package/vendor/translators-official/CCfr (BnF).js +162 -0
  147. package/vendor/translators-official/CERN Document Server.js +277 -0
  148. package/vendor/translators-official/CEUR Workshop Proceedings.js +145 -0
  149. package/vendor/translators-official/CFF References.js +170 -0
  150. package/vendor/translators-official/CFF.js +113 -0
  151. package/vendor/translators-official/CIA World Factbook.js +128 -0
  152. package/vendor/translators-official/CLACSO.js +226 -0
  153. package/vendor/translators-official/CLASE.js +135 -0
  154. package/vendor/translators-official/CNKI.js +731 -0
  155. package/vendor/translators-official/COBISS.js +1945 -0
  156. package/vendor/translators-official/COinS.js +336 -0
  157. package/vendor/translators-official/CQ Press.js +418 -0
  158. package/vendor/translators-official/CROSBI.js +227 -0
  159. package/vendor/translators-official/CSIRO Publishing.js +139 -0
  160. package/vendor/translators-official/CSL JSON.js +203 -0
  161. package/vendor/translators-official/CSV.js +294 -0
  162. package/vendor/translators-official/Cairn.info.js +368 -0
  163. package/vendor/translators-official/CalMatters.js +228 -0
  164. package/vendor/translators-official/Calisphere.js +355 -0
  165. package/vendor/translators-official/Camara Brasileira do Livro ISBN.js +842 -0
  166. package/vendor/translators-official/Cambridge Core.js +580 -0
  167. package/vendor/translators-official/Cambridge Engage Preprints.js +276 -0
  168. package/vendor/translators-official/CanLII.js +284 -0
  169. package/vendor/translators-official/Canada.com.js +171 -0
  170. package/vendor/translators-official/Canadian Letters and Images.js +148 -0
  171. package/vendor/translators-official/Canadiana.ca.js +196 -0
  172. package/vendor/translators-official/Cascadilla Proceedings Project.js +390 -0
  173. package/vendor/translators-official/Cell Press.js +516 -0
  174. package/vendor/translators-official/Central and Eastern European Online Library Journals.js +313 -0
  175. package/vendor/translators-official/Champlain Society - Collection.js +220 -0
  176. package/vendor/translators-official/ChatGPT.js +185 -0
  177. package/vendor/translators-official/Chicago Journal of Theoretical Computer Science.js +203 -0
  178. package/vendor/translators-official/Christian Science Monitor.js +148 -0
  179. package/vendor/translators-official/Chronicling America.js +131 -0
  180. package/vendor/translators-official/CiNii Research.js +168 -0
  181. package/vendor/translators-official/Citavi 5 XML.js +516 -0
  182. package/vendor/translators-official/CiteSeer.js +196 -0
  183. package/vendor/translators-official/Citizen Lab.js +347 -0
  184. package/vendor/translators-official/Civilization.ca.js +146 -0
  185. package/vendor/translators-official/Climate Change and Human Health Literature Portal.js +283 -0
  186. package/vendor/translators-official/Clinical Key.js +367 -0
  187. package/vendor/translators-official/Code4Lib Journal.js +143 -0
  188. package/vendor/translators-official/Colorado State Legislature.js +215 -0
  189. package/vendor/translators-official/Columbia University Press.js +238 -0
  190. package/vendor/translators-official/Common-Place.js +218 -0
  191. package/vendor/translators-official/Computer History Museum Archive.js +1319 -0
  192. package/vendor/translators-official/Copernicus.js +461 -0
  193. package/vendor/translators-official/Cornell LII.js +252 -0
  194. package/vendor/translators-official/Cornell University Press.js +235 -0
  195. package/vendor/translators-official/CourtListener.js +265 -0
  196. package/vendor/translators-official/Crossref REST.js +1757 -0
  197. package/vendor/translators-official/Crossref Unixref XML.js +965 -0
  198. package/vendor/translators-official/Current Affairs.js +160 -0
  199. package/vendor/translators-official/DABI.js +476 -0
  200. package/vendor/translators-official/DAI-Zenon.js +392 -0
  201. package/vendor/translators-official/DART-Europe.js +176 -0
  202. package/vendor/translators-official/DBLP Computer Science Bibliography.js +462 -0
  203. package/vendor/translators-official/DBpia.js +233 -0
  204. package/vendor/translators-official/DEPATISnet.js +373 -0
  205. package/vendor/translators-official/DOAJ.js +243 -0
  206. package/vendor/translators-official/DOI Content Negotiation.js +352 -0
  207. package/vendor/translators-official/DOI.js +322 -0
  208. package/vendor/translators-official/DPLA.js +425 -0
  209. package/vendor/translators-official/DSpace Intermediate Metadata.js +208 -0
  210. package/vendor/translators-official/Dagens Nyheter.js +369 -0
  211. package/vendor/translators-official/Dagstuhl Research Online Publication Server.js +276 -0
  212. package/vendor/translators-official/Dar Almandumah.js +253 -0
  213. package/vendor/translators-official/Data.gov.js +225 -0
  214. package/vendor/translators-official/Databrary.js +184 -0
  215. package/vendor/translators-official/Datacite JSON.js +1182 -0
  216. package/vendor/translators-official/Dataverse.js +418 -0
  217. package/vendor/translators-official/Daum News.js +139 -0
  218. package/vendor/translators-official/De Gruyter Brill.js +460 -0
  219. package/vendor/translators-official/Defense Technical Information Center.js +146 -0
  220. package/vendor/translators-official/Delpher.js +413 -0
  221. package/vendor/translators-official/Demographic Research.js +164 -0
  222. package/vendor/translators-official/Denik CZ.js +273 -0
  223. package/vendor/translators-official/Der Freitag.js +236 -0
  224. package/vendor/translators-official/Der Spiegel.js +479 -0
  225. package/vendor/translators-official/Desiring God.js +216 -0
  226. package/vendor/translators-official/Deutsche Fotothek.js +364 -0
  227. package/vendor/translators-official/Deutsche Nationalbibliothek.js +594 -0
  228. package/vendor/translators-official/Dialnet.js +258 -0
  229. package/vendor/translators-official/Die Zeit.js +378 -0
  230. package/vendor/translators-official/DigiZeitschriften.js +269 -0
  231. package/vendor/translators-official/Digital Humanities Quarterly.js +207 -0
  232. package/vendor/translators-official/Digital Spy.js +215 -0
  233. package/vendor/translators-official/Dimensions.js +233 -0
  234. package/vendor/translators-official/Douban.js +316 -0
  235. package/vendor/translators-official/Dreier Neuerscheinungsdienst.js +209 -0
  236. package/vendor/translators-official/DrugBank.ca.js +209 -0
  237. package/vendor/translators-official/Dryad Digital Repository.js +323 -0
  238. package/vendor/translators-official/Duke University Press Books.js +250 -0
  239. package/vendor/translators-official/E-periodica Switzerland.js +347 -0
  240. package/vendor/translators-official/EBSCO Discovery Layer.js +159 -0
  241. package/vendor/translators-official/EBSCOhost.js +592 -0
  242. package/vendor/translators-official/EIDR.js +184 -0
  243. package/vendor/translators-official/EPA National Library Catalog.js +245 -0
  244. package/vendor/translators-official/ERIC.js +986 -0
  245. package/vendor/translators-official/ESpacenet.js +465 -0
  246. package/vendor/translators-official/EUR-Lex.js +418 -0
  247. package/vendor/translators-official/Eastview.js +336 -0
  248. package/vendor/translators-official/Edinburgh University Press Journals.js +178 -0
  249. package/vendor/translators-official/Education Week.js +197 -0
  250. package/vendor/translators-official/El Comercio (Peru).js +347 -0
  251. package/vendor/translators-official/El Pais.js +262 -0
  252. package/vendor/translators-official/Electronic Colloquium on Computational Complexity.js +230 -0
  253. package/vendor/translators-official/Elicit.js +120 -0
  254. package/vendor/translators-official/Elsevier Health Journals.js +531 -0
  255. package/vendor/translators-official/Elsevier Pure.js +420 -0
  256. package/vendor/translators-official/Embedded Metadata.js +1978 -0
  257. package/vendor/translators-official/Emerald Insight.js +626 -0
  258. package/vendor/translators-official/Encyclopedia of Chicago.js +162 -0
  259. package/vendor/translators-official/Encyclopedia of Korean Culture.js +221 -0
  260. package/vendor/translators-official/Endnote XML.js +1407 -0
  261. package/vendor/translators-official/Engineering Village.js +139 -0
  262. package/vendor/translators-official/Envidat.js +331 -0
  263. package/vendor/translators-official/Epicurious.js +144 -0
  264. package/vendor/translators-official/Erudit.js +272 -0
  265. package/vendor/translators-official/Euclid.js +220 -0
  266. package/vendor/translators-official/EurasiaNet.js +109 -0
  267. package/vendor/translators-official/EurogamerUSgamer.js +380 -0
  268. package/vendor/translators-official/Europe PMC.js +448 -0
  269. package/vendor/translators-official/Evernote.js +104 -0
  270. package/vendor/translators-official/F1000 Research.js +655 -0
  271. package/vendor/translators-official/FAO Knowledge Repository.js +598 -0
  272. package/vendor/translators-official/FAOLEX Database.js +811 -0
  273. package/vendor/translators-official/FAZ.NET.js +231 -0
  274. package/vendor/translators-official/Fachportal Padagogik.js +839 -0
  275. package/vendor/translators-official/Factiva.js +302 -0
  276. package/vendor/translators-official/Failed Architecture.js +114 -0
  277. package/vendor/translators-official/Fairfax Australia.js +200 -0
  278. package/vendor/translators-official/Fatcat.js +425 -0
  279. package/vendor/translators-official/Figshare.js +191 -0
  280. package/vendor/translators-official/Financial Times.js +187 -0
  281. package/vendor/translators-official/Finna.js +357 -0
  282. package/vendor/translators-official/Flickr.js +318 -0
  283. package/vendor/translators-official/Foreign Affairs.js +485 -0
  284. package/vendor/translators-official/Foreign Policy.js +146 -0
  285. package/vendor/translators-official/FreeCite.js +95 -0
  286. package/vendor/translators-official/FreePatentsOnline.js +265 -0
  287. package/vendor/translators-official/Frieze.js +243 -0
  288. package/vendor/translators-official/Frontiers.js +667 -0
  289. package/vendor/translators-official/GMS German Medical Science.js +319 -0
  290. package/vendor/translators-official/GPO Access e-CFR.js +134 -0
  291. package/vendor/translators-official/Gale Databases.js +324 -0
  292. package/vendor/translators-official/GaleGDC.js +189 -0
  293. package/vendor/translators-official/Galegroup.js +327 -0
  294. package/vendor/translators-official/Gallica.js +194 -0
  295. package/vendor/translators-official/Game Studies.js +155 -0
  296. package/vendor/translators-official/GameSpot.js +199 -0
  297. package/vendor/translators-official/GameStar GamePro.js +198 -0
  298. package/vendor/translators-official/Gasyrlar Awazy.js +156 -0
  299. package/vendor/translators-official/Gemeinsamer Bibliotheksverbund ISBN.js +23 -0
  300. package/vendor/translators-official/Gene Ontology.js +128 -0
  301. package/vendor/translators-official/GitHub.js +501 -0
  302. package/vendor/translators-official/Globes.js +243 -0
  303. package/vendor/translators-official/Gmail.js +64 -0
  304. package/vendor/translators-official/Goodreads.js +219 -0
  305. package/vendor/translators-official/Google Books.js +552 -0
  306. package/vendor/translators-official/Google Gemini.js +116 -0
  307. package/vendor/translators-official/Google Patents.js +959 -0
  308. package/vendor/translators-official/Google Play.js +186 -0
  309. package/vendor/translators-official/Google Presentation.js +104 -0
  310. package/vendor/translators-official/Google Research.js +221 -0
  311. package/vendor/translators-official/Google Scholar.js +1361 -0
  312. package/vendor/translators-official/Gulag Many Days, Many Lives.js +179 -0
  313. package/vendor/translators-official/HAL.js +536 -0
  314. package/vendor/translators-official/HCSP.js +312 -0
  315. package/vendor/translators-official/HUDOC.js +650 -0
  316. package/vendor/translators-official/Haaretz.js +562 -0
  317. package/vendor/translators-official/Habr.js +232 -0
  318. package/vendor/translators-official/Handelszeitung.js +273 -0
  319. package/vendor/translators-official/Hanrei Watch.js +123 -0
  320. package/vendor/translators-official/Harper's Magazine.js +365 -0
  321. package/vendor/translators-official/Harvard Business Review.js +326 -0
  322. package/vendor/translators-official/Harvard Caselaw Access Project.js +244 -0
  323. package/vendor/translators-official/Harvard University Press Books.js +286 -0
  324. package/vendor/translators-official/HathiTrust.js +311 -0
  325. package/vendor/translators-official/HeinOnline.js +280 -0
  326. package/vendor/translators-official/Heise.js +200 -0
  327. package/vendor/translators-official/Herder.js +236 -0
  328. package/vendor/translators-official/HighBeam.js +198 -0
  329. package/vendor/translators-official/HighWire 2.0.js +1355 -0
  330. package/vendor/translators-official/HighWire.js +209 -0
  331. package/vendor/translators-official/Hindawi Publishers.js +177 -0
  332. package/vendor/translators-official/Hispanic-American Periodical Index.js +236 -0
  333. package/vendor/translators-official/Homeland Security Digital Library.js +426 -0
  334. package/vendor/translators-official/Hrvatska enciklopedija.js +118 -0
  335. package/vendor/translators-official/Huff Post.js +223 -0
  336. package/vendor/translators-official/Human Rights Watch.js +450 -0
  337. package/vendor/translators-official/IBISWorld.js +171 -0
  338. package/vendor/translators-official/IDEA ALM.js +536 -0
  339. package/vendor/translators-official/IEEE Computer Society.js +429 -0
  340. package/vendor/translators-official/IEEE Xplore.js +1000 -0
  341. package/vendor/translators-official/IETF.js +451 -0
  342. package/vendor/translators-official/IGN.js +136 -0
  343. package/vendor/translators-official/IMDb.js +566 -0
  344. package/vendor/translators-official/INSPIRE.js +247 -0
  345. package/vendor/translators-official/IPCC.js +757 -0
  346. package/vendor/translators-official/ISTC.js +181 -0
  347. package/vendor/translators-official/Idref.js +179 -0
  348. package/vendor/translators-official/In These Times.js +196 -0
  349. package/vendor/translators-official/Ined.js +558 -0
  350. package/vendor/translators-official/InfoTrac.js +279 -0
  351. package/vendor/translators-official/Informationssystem Medienpaedagogik.js +305 -0
  352. package/vendor/translators-official/IngentaConnect.js +312 -0
  353. package/vendor/translators-official/Inside Higher Ed.js +167 -0
  354. package/vendor/translators-official/Insignia OPAC.js +114 -0
  355. package/vendor/translators-official/Institute of Contemporary Art.js +180 -0
  356. package/vendor/translators-official/Institute of Physics.js +340 -0
  357. package/vendor/translators-official/Integrum.js +173 -0
  358. package/vendor/translators-official/Intellixir.js +264 -0
  359. package/vendor/translators-official/Inter-Research Science Center.js +185 -0
  360. package/vendor/translators-official/International Nuclear Information System.js +285 -0
  361. package/vendor/translators-official/Internet Archive Scholar.js +106 -0
  362. package/vendor/translators-official/Internet Archive Wayback Machine.js +152 -0
  363. package/vendor/translators-official/Internet Archive.js +552 -0
  364. package/vendor/translators-official/InvenioRDM.js +1250 -0
  365. package/vendor/translators-official/Isidore.js +235 -0
  366. package/vendor/translators-official/J-Stage.js +272 -0
  367. package/vendor/translators-official/JETS.js +122 -0
  368. package/vendor/translators-official/JISC Historical Texts.js +273 -0
  369. package/vendor/translators-official/JRC Publications Repository.js +569 -0
  370. package/vendor/translators-official/JSTOR.js +821 -0
  371. package/vendor/translators-official/Jahrbuch.js +213 -0
  372. package/vendor/translators-official/Japan Times Online.js +138 -0
  373. package/vendor/translators-official/Journal of Electronic Publishing.js +147 -0
  374. package/vendor/translators-official/Journal of Extension.js +288 -0
  375. package/vendor/translators-official/Journal of Machine Learning Research.js +441 -0
  376. package/vendor/translators-official/Journal of Religion and Society.js +174 -0
  377. package/vendor/translators-official/JurPC.js +274 -0
  378. package/vendor/translators-official/Juricaf.js +141 -0
  379. package/vendor/translators-official/Juris.js +728 -0
  380. package/vendor/translators-official/K10plus ISBN.js +386 -0
  381. package/vendor/translators-official/KStudy.js +632 -0
  382. package/vendor/translators-official/Kanopy.js +358 -0
  383. package/vendor/translators-official/Khaama Press.js +249 -0
  384. package/vendor/translators-official/KiM.js +259 -0
  385. package/vendor/translators-official/KitapYurdu.com.js +376 -0
  386. package/vendor/translators-official/Kommersant.js +174 -0
  387. package/vendor/translators-official/Korean National Library.js +621 -0
  388. package/vendor/translators-official/L'Annee Philologique.js +267 -0
  389. package/vendor/translators-official/LA Times.js +239 -0
  390. package/vendor/translators-official/LIBRIS ISBN.js +103 -0
  391. package/vendor/translators-official/LIVIVO.js +260 -0
  392. package/vendor/translators-official/LWN.net.js +350 -0
  393. package/vendor/translators-official/La Croix.js +237 -0
  394. package/vendor/translators-official/La Nacion (Argentina).js +231 -0
  395. package/vendor/translators-official/La Presse.js +218 -0
  396. package/vendor/translators-official/La Republica (Peru).js +174 -0
  397. package/vendor/translators-official/Lagen.nu.js +214 -0
  398. package/vendor/translators-official/Landesbibliographie Baden-Wurttemberg.js +324 -0
  399. package/vendor/translators-official/Lapham's Quarterly.js +1062 -0
  400. package/vendor/translators-official/Le Devoir.js +167 -0
  401. package/vendor/translators-official/Le Figaro.js +225 -0
  402. package/vendor/translators-official/Le Maitron.js +484 -0
  403. package/vendor/translators-official/Le Monde.js +245 -0
  404. package/vendor/translators-official/Le monde diplomatique.js +200 -0
  405. package/vendor/translators-official/Legifrance.js +641 -0
  406. package/vendor/translators-official/Legislative Insight.js +406 -0
  407. package/vendor/translators-official/Lexis+.js +264 -0
  408. package/vendor/translators-official/LexisNexis.js +505 -0
  409. package/vendor/translators-official/Libraries Tasmania.js +778 -0
  410. package/vendor/translators-official/Library Catalog (Aleph).js +385 -0
  411. package/vendor/translators-official/Library Catalog (Amicus).js +254 -0
  412. package/vendor/translators-official/Library Catalog (Aquabrowser).js +253 -0
  413. package/vendor/translators-official/Library Catalog (BiblioCommons).js +249 -0
  414. package/vendor/translators-official/Library Catalog (Blacklight).js +341 -0
  415. package/vendor/translators-official/Library Catalog (Capita Prism).js +162 -0
  416. package/vendor/translators-official/Library Catalog (DRA).js +203 -0
  417. package/vendor/translators-official/Library Catalog (Dynix).js +315 -0
  418. package/vendor/translators-official/Library Catalog (EBSCO Locate).js +442 -0
  419. package/vendor/translators-official/Library Catalog (Encore).js +211 -0
  420. package/vendor/translators-official/Library Catalog (InnoPAC).js +305 -0
  421. package/vendor/translators-official/Library Catalog (Koha).js +225 -0
  422. package/vendor/translators-official/Library Catalog (Mango).js +285 -0
  423. package/vendor/translators-official/Library Catalog (OPALS).js +200 -0
  424. package/vendor/translators-official/Library Catalog (PICA).js +2120 -0
  425. package/vendor/translators-official/Library Catalog (PICA2).js +331 -0
  426. package/vendor/translators-official/Library Catalog (Pika).js +488 -0
  427. package/vendor/translators-official/Library Catalog (Polaris).js +183 -0
  428. package/vendor/translators-official/Library Catalog (Quolto).js +320 -0
  429. package/vendor/translators-official/Library Catalog (RERO ILS).js +754 -0
  430. package/vendor/translators-official/Library Catalog (SIRSI eLibrary).js +407 -0
  431. package/vendor/translators-official/Library Catalog (SIRSI).js +452 -0
  432. package/vendor/translators-official/Library Catalog (SLIMS).js +146 -0
  433. package/vendor/translators-official/Library Catalog (TIND ILS).js +773 -0
  434. package/vendor/translators-official/Library Catalog (TLCYouSeeMore).js +132 -0
  435. package/vendor/translators-official/Library Catalog (TinREAD).js +277 -0
  436. package/vendor/translators-official/Library Catalog (VTLS).js +125 -0
  437. package/vendor/translators-official/Library Catalog (Visual Library 2021).js +765 -0
  438. package/vendor/translators-official/Library Catalog (Voyager 7).js +199 -0
  439. package/vendor/translators-official/Library Catalog (Voyager).js +212 -0
  440. package/vendor/translators-official/Library Genesis.js +337 -0
  441. package/vendor/translators-official/Library Hub Discover.js +359 -0
  442. package/vendor/translators-official/Library of Congress Digital Collections.js +869 -0
  443. package/vendor/translators-official/Library of Congress ISBN.js +86 -0
  444. package/vendor/translators-official/LingBuzz.js +359 -0
  445. package/vendor/translators-official/Lippincott Williams and Wilkins.js +341 -0
  446. package/vendor/translators-official/Literary Hub.js +950 -0
  447. package/vendor/translators-official/Litres.js +236 -0
  448. package/vendor/translators-official/LiveJournal.js +219 -0
  449. package/vendor/translators-official/London Review of Books.js +291 -0
  450. package/vendor/translators-official/LookUs.js +260 -0
  451. package/vendor/translators-official/Lulu.js +264 -0
  452. package/vendor/translators-official/MAB2.js +373 -0
  453. package/vendor/translators-official/MARC.js +1080 -0
  454. package/vendor/translators-official/MARCXML.js +489 -0
  455. package/vendor/translators-official/MCV.js +258 -0
  456. package/vendor/translators-official/MDPI Journals.js +356 -0
  457. package/vendor/translators-official/MEDLINEnbib.js +1561 -0
  458. package/vendor/translators-official/METS.js +384 -0
  459. package/vendor/translators-official/MIDAS Journals.js +343 -0
  460. package/vendor/translators-official/MIT Press Books.js +637 -0
  461. package/vendor/translators-official/MODS.js +2545 -0
  462. package/vendor/translators-official/MPG PuRe.js +541 -0
  463. package/vendor/translators-official/Mailman.js +136 -0
  464. package/vendor/translators-official/Mainichi Daily News.js +189 -0
  465. package/vendor/translators-official/Mastodon.js +198 -0
  466. package/vendor/translators-official/Matbugat.ru.js +110 -0
  467. package/vendor/translators-official/Max Planck Institute for the History of Science Virtual Laboratory Library.js +136 -0
  468. package/vendor/translators-official/Medium.js +208 -0
  469. package/vendor/translators-official/MetaLib.js +126 -0
  470. package/vendor/translators-official/Microbiology Society Journals.js +343 -0
  471. package/vendor/translators-official/Microsoft Academic.js +424 -0
  472. package/vendor/translators-official/Mikromarc.js +207 -0
  473. package/vendor/translators-official/Milli Kutuphane.js +244 -0
  474. package/vendor/translators-official/Musee du Louvre.js +265 -0
  475. package/vendor/translators-official/NASA ADS.js +889 -0
  476. package/vendor/translators-official/NASA NTRS.js +610 -0
  477. package/vendor/translators-official/NCBI Nucleotide.js +227 -0
  478. package/vendor/translators-official/NPR.js +341 -0
  479. package/vendor/translators-official/NRC Research Press.js +181 -0
  480. package/vendor/translators-official/NRC.nl.js +226 -0
  481. package/vendor/translators-official/NTSB Accident Reports.js +226 -0
  482. package/vendor/translators-official/NYPL Menus.js +275 -0
  483. package/vendor/translators-official/NYPL Research Catalog.js +458 -0
  484. package/vendor/translators-official/NYTimes.com.js +947 -0
  485. package/vendor/translators-official/NZZ.ch.js +272 -0
  486. package/vendor/translators-official/Nagoya University OPAC.js +336 -0
  487. package/vendor/translators-official/National Academies Press.js +243 -0
  488. package/vendor/translators-official/National Agriculture Library.js +524 -0
  489. package/vendor/translators-official/National Archives UK Case Law.js +509 -0
  490. package/vendor/translators-official/National Archives of Australia.js +522 -0
  491. package/vendor/translators-official/National Archives of South Africa.js +122 -0
  492. package/vendor/translators-official/National Bureau of Economic Research.js +363 -0
  493. package/vendor/translators-official/National Diet Library Catalogue.js +333 -0
  494. package/vendor/translators-official/National Gallery of Art - USA.js +149 -0
  495. package/vendor/translators-official/National Gallery of Australia.js +252 -0
  496. package/vendor/translators-official/National Library of Australia (new catalog).js +223 -0
  497. package/vendor/translators-official/National Library of Belarus.js +171 -0
  498. package/vendor/translators-official/National Library of Norway.js +310 -0
  499. package/vendor/translators-official/National Library of Poland ISBN.js +140 -0
  500. package/vendor/translators-official/National Post.js +186 -0
  501. package/vendor/translators-official/National Technical Reports Library.js +276 -0
  502. package/vendor/translators-official/National Transportation Library ROSA P.js +562 -0
  503. package/vendor/translators-official/Nature Publishing Group.js +3394 -0
  504. package/vendor/translators-official/Neural Information Processing Systems.js +385 -0
  505. package/vendor/translators-official/New Left Review.js +245 -0
  506. package/vendor/translators-official/New Zealand Herald.js +282 -0
  507. package/vendor/translators-official/Newlines Magazine.js +190 -0
  508. package/vendor/translators-official/News Corp Australia.js +251 -0
  509. package/vendor/translators-official/NewsBank.js +202 -0
  510. package/vendor/translators-official/NewsnetTamedia.js +509 -0
  511. package/vendor/translators-official/Noor Digital Library.js +267 -0
  512. package/vendor/translators-official/Note HTML.js +206 -0
  513. package/vendor/translators-official/Note Markdown.js +1638 -0
  514. package/vendor/translators-official/Notre Dame Philosophical Reviews.js +201 -0
  515. package/vendor/translators-official/OAPEN.js +331 -0
  516. package/vendor/translators-official/OCLC WorldCat FirstSearch.js +213 -0
  517. package/vendor/translators-official/OECD.js +216 -0
  518. package/vendor/translators-official/ORCID.js +104 -0
  519. package/vendor/translators-official/OSF Preprints.js +1287 -0
  520. package/vendor/translators-official/OSTI Energy Citations.js +202 -0
  521. package/vendor/translators-official/OVID Tagged.js +1226 -0
  522. package/vendor/translators-official/OZON.ru.js +465 -0
  523. package/vendor/translators-official/OhioLINK.js +43 -0
  524. package/vendor/translators-official/Old Bailey Online.js +315 -0
  525. package/vendor/translators-official/Open Conf.js +172 -0
  526. package/vendor/translators-official/Open Knowledge Repository.js +811 -0
  527. package/vendor/translators-official/Open WorldCat.js +1394 -0
  528. package/vendor/translators-official/OpenAlex JSON.js +740 -0
  529. package/vendor/translators-official/OpenAlex.js +444 -0
  530. package/vendor/translators-official/OpenEdition Books.js +155 -0
  531. package/vendor/translators-official/OpenEdition Journals.js +432 -0
  532. package/vendor/translators-official/Optical Society of America.js +562 -0
  533. package/vendor/translators-official/Optimization Online.js +418 -0
  534. package/vendor/translators-official/Ovid OCE.js +353 -0
  535. package/vendor/translators-official/Ovid.js +302 -0
  536. package/vendor/translators-official/Oxford Dictionaries Premium.js +194 -0
  537. package/vendor/translators-official/Oxford English Dictionary.js +122 -0
  538. package/vendor/translators-official/Oxford Music and Art Online.js +120 -0
  539. package/vendor/translators-official/Oxford Reference.js +202 -0
  540. package/vendor/translators-official/Oxford University Press.js +277 -0
  541. package/vendor/translators-official/PC Gamer.js +302 -0
  542. package/vendor/translators-official/PC Games.js +128 -0
  543. package/vendor/translators-official/PEI Archival Information Network.js +242 -0
  544. package/vendor/translators-official/PEP Web.js +165 -0
  545. package/vendor/translators-official/PKP Catalog Systems.js +1455 -0
  546. package/vendor/translators-official/PLoS Journals.js +284 -0
  547. package/vendor/translators-official/PRC History Review.js +298 -0
  548. package/vendor/translators-official/Pajhwok Afghan News.js +198 -0
  549. package/vendor/translators-official/Papers Past.js +509 -0
  550. package/vendor/translators-official/Paris Review.js +227 -0
  551. package/vendor/translators-official/Pastebin.js +199 -0
  552. package/vendor/translators-official/Patents - USPTO.js +210 -0
  553. package/vendor/translators-official/Peeters.js +587 -0
  554. package/vendor/translators-official/Perceiving Systems.js +350 -0
  555. package/vendor/translators-official/Perlego.js +416 -0
  556. package/vendor/translators-official/PhilPapers.js +233 -0
  557. package/vendor/translators-official/Philosopher's Imprint.js +169 -0
  558. package/vendor/translators-official/Pleade.js +329 -0
  559. package/vendor/translators-official/Polygon.js +270 -0
  560. package/vendor/translators-official/Potsdamer Neueste Nachrichten.js +188 -0
  561. package/vendor/translators-official/Premium Times.js +144 -0
  562. package/vendor/translators-official/Preprints.org.js +305 -0
  563. package/vendor/translators-official/Prime 9ja Online.js +402 -0
  564. package/vendor/translators-official/Primo 2018.js +126 -0
  565. package/vendor/translators-official/Primo Normalized XML.js +1075 -0
  566. package/vendor/translators-official/Primo.js +322 -0
  567. package/vendor/translators-official/ProMED.js +66 -0
  568. package/vendor/translators-official/ProQuest Ebook Central.js +226 -0
  569. package/vendor/translators-official/ProQuest PolicyFile.js +115 -0
  570. package/vendor/translators-official/ProQuest.js +2210 -0
  571. package/vendor/translators-official/Probing the Past.js +151 -0
  572. package/vendor/translators-official/Project Gutenberg.js +191 -0
  573. package/vendor/translators-official/Project MUSE.js +451 -0
  574. package/vendor/translators-official/Protein Data Bank.js +445 -0
  575. package/vendor/translators-official/PubFactory Journals.js +712 -0
  576. package/vendor/translators-official/PubMed Central.js +563 -0
  577. package/vendor/translators-official/PubMed XML.js +1240 -0
  578. package/vendor/translators-official/PubMed.js +1317 -0
  579. package/vendor/translators-official/PubPub.js +530 -0
  580. package/vendor/translators-official/Public Record Office Victoria.js +252 -0
  581. package/vendor/translators-official/Publications Office of the European Union.js +540 -0
  582. package/vendor/translators-official/Publications du Quebec.js +225 -0
  583. package/vendor/translators-official/PyPI.js +288 -0
  584. package/vendor/translators-official/Qatar Digital Library.js +802 -0
  585. package/vendor/translators-official/Queensland State Archives.js +303 -0
  586. package/vendor/translators-official/R-Packages.js +410 -0
  587. package/vendor/translators-official/RAND.js +283 -0
  588. package/vendor/translators-official/RDF.js +1782 -0
  589. package/vendor/translators-official/REDALYC.js +196 -0
  590. package/vendor/translators-official/RIS.js +7292 -0
  591. package/vendor/translators-official/RSC Publishing.js +250 -0
  592. package/vendor/translators-official/Radio Free Europe Radio Liberty.js +706 -0
  593. package/vendor/translators-official/RePEc - Econpapers.js +725 -0
  594. package/vendor/translators-official/RePEc - IDEAS.js +337 -0
  595. package/vendor/translators-official/Rechtspraak.nl.js +295 -0
  596. package/vendor/translators-official/RefWorks Tagged.js +1185 -0
  597. package/vendor/translators-official/ReferBibIX.js +463 -0
  598. package/vendor/translators-official/Regeringskansliet.js +89 -0
  599. package/vendor/translators-official/Research Square.js +335 -0
  600. package/vendor/translators-official/ResearchGate.js +394 -0
  601. package/vendor/translators-official/Retsinformation.js +348 -0
  602. package/vendor/translators-official/Reuters.js +255 -0
  603. package/vendor/translators-official/Rock, Paper, Shotgun.js +304 -0
  604. package/vendor/translators-official/Roll Call.js +173 -0
  605. package/vendor/translators-official/Russian State Library.js +1517 -0
  606. package/vendor/translators-official/SAE Papers.js +241 -0
  607. package/vendor/translators-official/SAGE Journals.js +429 -0
  608. package/vendor/translators-official/SAGE Knowledge.js +505 -0
  609. package/vendor/translators-official/SAILDART.js +364 -0
  610. package/vendor/translators-official/SALT Research Archives.js +196 -0
  611. package/vendor/translators-official/SFU IPinCH.js +946 -0
  612. package/vendor/translators-official/SIPRI.js +256 -0
  613. package/vendor/translators-official/SIRS Knowledge Source.js +546 -0
  614. package/vendor/translators-official/SLUB Dresden.js +300 -0
  615. package/vendor/translators-official/SORA.js +340 -0
  616. package/vendor/translators-official/SSOAR.js +399 -0
  617. package/vendor/translators-official/SSRN.js +235 -0
  618. package/vendor/translators-official/SVT Nyheter.js +381 -0
  619. package/vendor/translators-official/Sacramento Bee.js +274 -0
  620. package/vendor/translators-official/Safari Books Online.js +391 -0
  621. package/vendor/translators-official/Scholars Portal Journals.js +220 -0
  622. package/vendor/translators-official/Scholia.js +189 -0
  623. package/vendor/translators-official/Schweizer Radio und Fernsehen SRF.js +152 -0
  624. package/vendor/translators-official/SciELO.js +440 -0
  625. package/vendor/translators-official/ScienceDirect.js +1306 -0
  626. package/vendor/translators-official/Scopus.js +418 -0
  627. package/vendor/translators-official/Semantic Scholar.js +513 -0
  628. package/vendor/translators-official/Silverchair.js +886 -0
  629. package/vendor/translators-official/Slate.js +228 -0
  630. package/vendor/translators-official/SlideShare.js +112 -0
  631. package/vendor/translators-official/Springer Link.js +696 -0
  632. package/vendor/translators-official/Stack Exchange.js +134 -0
  633. package/vendor/translators-official/Standard Ebooks.js +198 -0
  634. package/vendor/translators-official/Stanford Encyclopedia of Philosophy.js +285 -0
  635. package/vendor/translators-official/Stanford University Press.js +343 -0
  636. package/vendor/translators-official/State Records Office of Western Australia.js +439 -0
  637. package/vendor/translators-official/Stitcher.js +141 -0
  638. package/vendor/translators-official/Store norske leksikon.js +291 -0
  639. package/vendor/translators-official/Stuff.co.nz.js +446 -0
  640. package/vendor/translators-official/Substack.js +237 -0
  641. package/vendor/translators-official/Sud Ouest.js +181 -0
  642. package/vendor/translators-official/Sueddeutsche.de.js +205 -0
  643. package/vendor/translators-official/Summon 2.js +117 -0
  644. package/vendor/translators-official/Superlib.js +647 -0
  645. package/vendor/translators-official/Svenska Dagbladet.js +274 -0
  646. package/vendor/translators-official/Sveriges radio.js +416 -0
  647. package/vendor/translators-official/TEI.js +648 -0
  648. package/vendor/translators-official/TV by the Numbers.js +194 -0
  649. package/vendor/translators-official/TVNZ.js +165 -0
  650. package/vendor/translators-official/Tagesspiegel.js +249 -0
  651. package/vendor/translators-official/Talis Aspire.js +316 -0
  652. package/vendor/translators-official/TalisPrism.js +445 -0
  653. package/vendor/translators-official/Tatknigafund.js +174 -0
  654. package/vendor/translators-official/Tatpressa.ru.js +121 -0
  655. package/vendor/translators-official/Taylor & Francis eBooks.js +334 -0
  656. package/vendor/translators-official/Taylor and Francis+NEJM.js +813 -0
  657. package/vendor/translators-official/Tesis Doctorals en Xarxa.js +233 -0
  658. package/vendor/translators-official/The Art Newspaper.js +268 -0
  659. package/vendor/translators-official/The Atlantic.js +535 -0
  660. package/vendor/translators-official/The Boston Globe.js +285 -0
  661. package/vendor/translators-official/The Chronicle of Higher Education.js +308 -0
  662. package/vendor/translators-official/The Daily Beast.js +183 -0
  663. package/vendor/translators-official/The Economic Times - The Times of India.js +305 -0
  664. package/vendor/translators-official/The Economist.js +207 -0
  665. package/vendor/translators-official/The Free Dictionary.js +58 -0
  666. package/vendor/translators-official/The Globe and Mail.js +241 -0
  667. package/vendor/translators-official/The Guardian.js +717 -0
  668. package/vendor/translators-official/The Hamilton Spectator.js +129 -0
  669. package/vendor/translators-official/The Hindu.js +318 -0
  670. package/vendor/translators-official/The Independent.js +184 -0
  671. package/vendor/translators-official/The Intercept.js +258 -0
  672. package/vendor/translators-official/The Met.js +276 -0
  673. package/vendor/translators-official/The Microfinance Gateway.js +174 -0
  674. package/vendor/translators-official/The Nation.js +188 -0
  675. package/vendor/translators-official/The National Archives (UK).js +242 -0
  676. package/vendor/translators-official/The New Republic.js +160 -0
  677. package/vendor/translators-official/The New York Review of Books.js +467 -0
  678. package/vendor/translators-official/The New Yorker.js +360 -0
  679. package/vendor/translators-official/The Open Library.js +220 -0
  680. package/vendor/translators-official/The Straits Times.js +528 -0
  681. package/vendor/translators-official/The Telegraph.js +337 -0
  682. package/vendor/translators-official/The Times and Sunday Times.js +180 -0
  683. package/vendor/translators-official/The Times of Israel.js +151 -0
  684. package/vendor/translators-official/TheMarker.js +108 -0
  685. package/vendor/translators-official/Theory of Computing.js +488 -0
  686. package/vendor/translators-official/ThesesFR.js +405 -0
  687. package/vendor/translators-official/Thieme.js +326 -0
  688. package/vendor/translators-official/Time.com.js +557 -0
  689. package/vendor/translators-official/TimesMachine.js +222 -0
  690. package/vendor/translators-official/Tony Blair Institute for Global Change.js +195 -0
  691. package/vendor/translators-official/Toronto Star.js +298 -0
  692. package/vendor/translators-official/Transportation Research Board.js +253 -0
  693. package/vendor/translators-official/Treesearch.js +535 -0
  694. package/vendor/translators-official/Trove.js +616 -0
  695. package/vendor/translators-official/Tumblr.js +179 -0
  696. package/vendor/translators-official/Twitter.js +413 -0
  697. package/vendor/translators-official/UChicago VuFind.js +907 -0
  698. package/vendor/translators-official/UNZ Print Archive.js +276 -0
  699. package/vendor/translators-official/UPCommons.js +227 -0
  700. package/vendor/translators-official/US National Archives Research Catalog.js +275 -0
  701. package/vendor/translators-official/USENIX.js +151 -0
  702. package/vendor/translators-official/Ubiquity Journals.js +228 -0
  703. package/vendor/translators-official/University Press Scholarship.js +301 -0
  704. package/vendor/translators-official/University of California Press Books.js +403 -0
  705. package/vendor/translators-official/University of Chicago Press Books.js +378 -0
  706. package/vendor/translators-official/University of Wisconsin-Madison Libraries Catalog.js +298 -0
  707. package/vendor/translators-official/Unqualified Dublin Core RDF.js +153 -0
  708. package/vendor/translators-official/UpToDate References.js +203 -0
  709. package/vendor/translators-official/Vanity Fair.js +242 -0
  710. package/vendor/translators-official/Verniana-Jules Verne Studies.js +190 -0
  711. package/vendor/translators-official/Verso Books.js +311 -0
  712. package/vendor/translators-official/Vice.js +445 -0
  713. package/vendor/translators-official/Victoria & Albert Museum.js +277 -0
  714. package/vendor/translators-official/Vimeo.js +188 -0
  715. package/vendor/translators-official/VoxEU.js +151 -0
  716. package/vendor/translators-official/WHO.js +458 -0
  717. package/vendor/translators-official/WIPO.js +189 -0
  718. package/vendor/translators-official/Wall Street Journal.js +809 -0
  719. package/vendor/translators-official/Wanfang Data.js +310 -0
  720. package/vendor/translators-official/Washington Monthly.js +195 -0
  721. package/vendor/translators-official/Washington Post.js +447 -0
  722. package/vendor/translators-official/Web of Science Nextgen.js +832 -0
  723. package/vendor/translators-official/Web of Science Tagged.js +1247 -0
  724. package/vendor/translators-official/Web of Science.js +228 -0
  725. package/vendor/translators-official/Welt Online.js +161 -0
  726. package/vendor/translators-official/WestLaw UK.js +190 -0
  727. package/vendor/translators-official/WikiLeaks PlusD.js +182 -0
  728. package/vendor/translators-official/Wikidata QuickStatements.js +324 -0
  729. package/vendor/translators-official/Wikidata.js +911 -0
  730. package/vendor/translators-official/Wikimedia Commons.js +285 -0
  731. package/vendor/translators-official/Wikipedia Citation Templates.js +432 -0
  732. package/vendor/translators-official/Wikipedia.js +385 -0
  733. package/vendor/translators-official/Wikisource.js +399 -0
  734. package/vendor/translators-official/Wikiwand.js +122 -0
  735. package/vendor/translators-official/Wiktionary.js +141 -0
  736. package/vendor/translators-official/Wildlife Biology in Practice.js +172 -0
  737. package/vendor/translators-official/Wiley Online Library.js +1412 -0
  738. package/vendor/translators-official/Wilson Center Digital Archive.js +321 -0
  739. package/vendor/translators-official/Winnipeg Free Press.js +204 -0
  740. package/vendor/translators-official/Wired.js +362 -0
  741. package/vendor/translators-official/Womennews.js +230 -0
  742. package/vendor/translators-official/World Digital Library.js +403 -0
  743. package/vendor/translators-official/World History Connected.js +185 -0
  744. package/vendor/translators-official/World Shakespeare Bibliography Online.js +595 -0
  745. package/vendor/translators-official/WorldCat Discovery Service.js +630 -0
  746. package/vendor/translators-official/XML ContextObject.js +274 -0
  747. package/vendor/translators-official/YPSF.js +224 -0
  748. package/vendor/translators-official/Yandex Books.js +265 -0
  749. package/vendor/translators-official/Ynet.js +171 -0
  750. package/vendor/translators-official/YouTube.js +209 -0
  751. package/vendor/translators-official/ZIPonline.js +267 -0
  752. package/vendor/translators-official/ZOBODAT.js +341 -0
  753. package/vendor/translators-official/Zotero RDF.js +588 -0
  754. package/vendor/translators-official/ZoteroBib.js +94 -0
  755. package/vendor/translators-official/arXiv.org.js +1100 -0
  756. package/vendor/translators-official/artnet.js +207 -0
  757. package/vendor/translators-official/beck-online.js +1339 -0
  758. package/vendor/translators-official/clinicaltrials.gov.js +331 -0
  759. package/vendor/translators-official/dLibra.js +367 -0
  760. package/vendor/translators-official/dejure.org.js +242 -0
  761. package/vendor/translators-official/dhistory.js +103 -0
  762. package/vendor/translators-official/digibib.net.js +245 -0
  763. package/vendor/translators-official/eLibrary.ru.js +867 -0
  764. package/vendor/translators-official/eLife.js +462 -0
  765. package/vendor/translators-official/eMJA.js +246 -0
  766. package/vendor/translators-official/eMedicine.js +123 -0
  767. package/vendor/translators-official/ePrint IACR.js +608 -0
  768. package/vendor/translators-official/ebrary.js +140 -0
  769. package/vendor/translators-official/etatar.ru.js +104 -0
  770. package/vendor/translators-official/feb-web.ru.js +167 -0
  771. package/vendor/translators-official/fishpond.co.nz.js +224 -0
  772. package/vendor/translators-official/fr-online.de.js +209 -0
  773. package/vendor/translators-official/govinfo.js +189 -0
  774. package/vendor/translators-official/informIT database.js +248 -0
  775. package/vendor/translators-official/io-port.js +68 -0
  776. package/vendor/translators-official/jurion.js +377 -0
  777. package/vendor/translators-official/mEDRA.js +597 -0
  778. package/vendor/translators-official/magazines.russ.ru.js +120 -0
  779. package/vendor/translators-official/medes.js +284 -0
  780. package/vendor/translators-official/newshub.co.nz.js +206 -0
  781. package/vendor/translators-official/newspapers.com.js +335 -0
  782. package/vendor/translators-official/openJur.js +161 -0
  783. package/vendor/translators-official/reddit.js +275 -0
  784. package/vendor/translators-official/sbn.it.js +186 -0
  785. package/vendor/translators-official/scinapse.js +273 -0
  786. package/vendor/translators-official/semantics Visual Library.js +643 -0
  787. package/vendor/translators-official/taz.de.js +200 -0
  788. package/vendor/translators-official/unAPI.js +481 -0
  789. package/vendor/translators-official/wiso.js +314 -0
  790. package/vendor/translators-official/zbMATH.js +278 -0
  791. package/vendor/translators-official/zotero.org.js +311 -0
  792. package/vendor/translators_CN/Angle.js +468 -0
  793. package/vendor/translators_CN/Baidu Baike.js +152 -0
  794. package/vendor/translators_CN/Baidu Scholar.js +639 -0
  795. package/vendor/translators_CN/Belt and Road Database.js +496 -0
  796. package/vendor/translators_CN/BiliBili.js +776 -0
  797. package/vendor/translators_CN/CCPINFO.js +416 -0
  798. package/vendor/translators_CN/CHINESE JOURNAL OF LAW.js +169 -0
  799. package/vendor/translators_CN/CNBKSY.js +385 -0
  800. package/vendor/translators_CN/CNKI CHKD.js +692 -0
  801. package/vendor/translators_CN/CNKI Gongjushu.js +271 -0
  802. package/vendor/translators_CN/CNKI Industry.js +726 -0
  803. package/vendor/translators_CN/CNKI Law.js +842 -0
  804. package/vendor/translators_CN/CNKI RefWorks.js +826 -0
  805. package/vendor/translators_CN/CNKI Refer.js +811 -0
  806. package/vendor/translators_CN/CNKI Scholar.js +656 -0
  807. package/vendor/translators_CN/CNKI TIKS.js +1028 -0
  808. package/vendor/translators_CN/CNKI e-Books.js +309 -0
  809. package/vendor/translators_CN/CNKI thinker.js +274 -0
  810. package/vendor/translators_CN/CNKI.js +2381 -0
  811. package/vendor/translators_CN/CNSDA.js +382 -0
  812. package/vendor/translators_CN/CQVIP Knowledge.js +969 -0
  813. package/vendor/translators_CN/CQVIP Qikan.js +418 -0
  814. package/vendor/translators_CN/CQVIP.js +686 -0
  815. package/vendor/translators_CN/CSDN.js +153 -0
  816. package/vendor/translators_CN/China Judgements Online.js +282 -0
  817. package/vendor/translators_CN/China Social Science Library.js +533 -0
  818. package/vendor/translators_CN/ChinaXiv.js +375 -0
  819. package/vendor/translators_CN/Cubox.js +246 -0
  820. package/vendor/translators_CN/Dangdang.js +176 -0
  821. package/vendor/translators_CN/Douban.js +984 -0
  822. package/vendor/translators_CN/Duxiu.js +746 -0
  823. package/vendor/translators_CN/E-Tiller.js +555 -0
  824. package/vendor/translators_CN/Encyclopedia of China 3rd.js +177 -0
  825. package/vendor/translators_CN/Founder.js +483 -0
  826. package/vendor/translators_CN/GFSOSO.js +694 -0
  827. package/vendor/translators_CN/Jd.js +235 -0
  828. package/vendor/translators_CN/Jikan Full Text Database.js +188 -0
  829. package/vendor/translators_CN/KouShare.js +139 -0
  830. package/vendor/translators_CN/LICENSE +661 -0
  831. package/vendor/translators_CN/Lawbank.js +818 -0
  832. package/vendor/translators_CN/MagTech.js +473 -0
  833. package/vendor/translators_CN/Modern History.js +788 -0
  834. package/vendor/translators_CN/NDLTD.js +404 -0
  835. package/vendor/translators_CN/NTU Digital Library of Buddhist Studies.js +957 -0
  836. package/vendor/translators_CN/National Public Service Platform for Standards Information - China.js +348 -0
  837. package/vendor/translators_CN/National Science and Technology Library - China.js +646 -0
  838. package/vendor/translators_CN/National Science and Technology Report Service - China.js +271 -0
  839. package/vendor/translators_CN/National Standards Open System - China.js +296 -0
  840. package/vendor/translators_CN/Ncpssd.js +555 -0
  841. package/vendor/translators_CN/PKULaw.js +1123 -0
  842. package/vendor/translators_CN/PatentStar.js +386 -0
  843. package/vendor/translators_CN/People's Daily Database.js +186 -0
  844. package/vendor/translators_CN/People's Daily Epaper.js +279 -0
  845. package/vendor/translators_CN/People's Daily Online.js +292 -0
  846. package/vendor/translators_CN/Pishu Database.js +383 -0
  847. package/vendor/translators_CN/ProQuestCN Thesis.js +329 -0
  848. package/vendor/translators_CN/Pss-System.js +199 -0
  849. package/vendor/translators_CN/PubScholar.js +588 -0
  850. package/vendor/translators_CN/Publications Data Center - China.js +1119 -0
  851. package/vendor/translators_CN/QStheory.js +251 -0
  852. package/vendor/translators_CN/RDFYBK.js +396 -0
  853. package/vendor/translators_CN/README.md +42 -0
  854. package/vendor/translators_CN/RHHZ.js +383 -0
  855. package/vendor/translators_CN/Rural Studies Database.js +402 -0
  856. package/vendor/translators_CN/SKCTK.js +177 -0
  857. package/vendor/translators_CN/Samson.js +768 -0
  858. package/vendor/translators_CN/SciEngine.js +450 -0
  859. package/vendor/translators_CN/Science Reading.js +338 -0
  860. package/vendor/translators_CN/Sina Weibo.js +254 -0
  861. package/vendor/translators_CN/Soopat.js +427 -0
  862. package/vendor/translators_CN/Spc.org.cn.js +275 -0
  863. package/vendor/translators_CN/Standard Full-text Database - NLC.js +230 -0
  864. package/vendor/translators_CN/SuperLib.js +757 -0
  865. package/vendor/translators_CN/TOAJ.js +422 -0
  866. package/vendor/translators_CN/Wanfang Data.js +3433 -0
  867. package/vendor/translators_CN/Wanfang Med.js +671 -0
  868. package/vendor/translators_CN/Web of Science Tagged.js +1341 -0
  869. package/vendor/translators_CN/Weixin.js +130 -0
  870. package/vendor/translators_CN/Wenjin.js +492 -0
  871. package/vendor/translators_CN/Xinhuanet.js +283 -0
  872. package/vendor/translators_CN/Yiigle.js +394 -0
  873. package/vendor/translators_CN/Zhihu.js +530 -0
  874. package/vendor/translators_CN/Zhihuiya.js +246 -0
  875. package/vendor/translators_CN/Zhizhen.js +869 -0
  876. package/vendor/translators_CN/chaoxingqikan.js +360 -0
  877. package/vendor/translators_CN/doc.taixueshu.js +355 -0
  878. package/vendor/translators_CN/dpaper.js +183 -0
  879. package/vendor/translators_CN/epaper.gmw.cn.js +286 -0
  880. package/vendor/translators_CN/flk.npc.gov.cn.js +344 -0
  881. package/vendor/translators_CN/gov.cn Policy.js +559 -0
  882. package/vendor/translators_CN/incoPat.js +195 -0
  883. package/vendor/translators_CN/pm.tsgyun.js +177 -0
  884. package/vendor/translators_CN/sanmin.com.tw.js +327 -0
  885. package/vendor/translators_CN/sharing.com.tw.js +333 -0
  886. package/vendor/translators_CN/stats.gov.cn.js +170 -0
  887. package/vendor/translators_CN/xiaoyuzhoufm.js +162 -0
  888. package/vendor/translators_CN/zhangqiaokeyan.js +1130 -0
  889. package/vendor/zotero/README.md +120 -0
  890. package/vendor/zotero/config/custom-environment-variables.json +3 -0
  891. package/vendor/zotero/config/default.json5 +16 -0
  892. package/vendor/zotero/config/production.json5 +7 -0
  893. package/vendor/zotero/config/test.json5 +4 -0
  894. package/vendor/zotero/modules/translate/README.md +43 -0
  895. package/vendor/zotero/modules/translate/src/debug.js +186 -0
  896. package/vendor/zotero/modules/translate/src/http.js +158 -0
  897. package/vendor/zotero/modules/translate/src/promise.js +73 -0
  898. package/vendor/zotero/modules/translate/src/proxy.js +354 -0
  899. package/vendor/zotero/modules/translate/src/rdf/identity.js +503 -0
  900. package/vendor/zotero/modules/translate/src/rdf/init.js +56 -0
  901. package/vendor/zotero/modules/translate/src/rdf/n3parser.js +1392 -0
  902. package/vendor/zotero/modules/translate/src/rdf/rdfparser.js +578 -0
  903. package/vendor/zotero/modules/translate/src/rdf/serialize.js +886 -0
  904. package/vendor/zotero/modules/translate/src/rdf/term.js +524 -0
  905. package/vendor/zotero/modules/translate/src/rdf/uri.js +147 -0
  906. package/vendor/zotero/modules/translate/src/repo.js +80 -0
  907. package/vendor/zotero/modules/translate/src/tlds.js +274 -0
  908. package/vendor/zotero/modules/translate/src/translation/sandboxManager.js +112 -0
  909. package/vendor/zotero/modules/translate/src/translation/translate.js +3283 -0
  910. package/vendor/zotero/modules/translate/src/translation/translate_item.js +120 -0
  911. package/vendor/zotero/modules/translate/src/translator.js +186 -0
  912. package/vendor/zotero/modules/translate/src/translators.js +174 -0
  913. package/vendor/zotero/modules/translate/src/utilities_translate.js +487 -0
  914. package/vendor/zotero/modules/translate/src/zotero.js +94 -0
  915. package/vendor/zotero/modules/translators/A Contra Corriente.js +206 -0
  916. package/vendor/zotero/modules/translators/ABC News Australia.js +224 -0
  917. package/vendor/zotero/modules/translators/ACLS Humanities EBook.js +165 -0
  918. package/vendor/zotero/modules/translators/ACLWeb.js +600 -0
  919. package/vendor/zotero/modules/translators/ACM Digital Library.js +710 -0
  920. package/vendor/zotero/modules/translators/ACS Publications.js +633 -0
  921. package/vendor/zotero/modules/translators/ADS Bibcode.js +664 -0
  922. package/vendor/zotero/modules/translators/AEA Web.js +450 -0
  923. package/vendor/zotero/modules/translators/AGRIS.js +311 -0
  924. package/vendor/zotero/modules/translators/AIP.js +295 -0
  925. package/vendor/zotero/modules/translators/AMS Journals.js +136 -0
  926. package/vendor/zotero/modules/translators/AMS MathSciNet (Legacy).js +313 -0
  927. package/vendor/zotero/modules/translators/AMS MathSciNet.js +288 -0
  928. package/vendor/zotero/modules/translators/APA PsycNET.js +915 -0
  929. package/vendor/zotero/modules/translators/APN.ru.js +132 -0
  930. package/vendor/zotero/modules/translators/APS-Physics.js +204 -0
  931. package/vendor/zotero/modules/translators/APS.js +542 -0
  932. package/vendor/zotero/modules/translators/ARTFL Encyclopedie.js +283 -0
  933. package/vendor/zotero/modules/translators/ARTnews.js +155 -0
  934. package/vendor/zotero/modules/translators/ARTstor.js +619 -0
  935. package/vendor/zotero/modules/translators/ASCE.js +199 -0
  936. package/vendor/zotero/modules/translators/ASCO Meeting Library.js +153 -0
  937. package/vendor/zotero/modules/translators/ASTIS.js +337 -0
  938. package/vendor/zotero/modules/translators/ATS International Journal.js +290 -0
  939. package/vendor/zotero/modules/translators/Access Engineering.js +384 -0
  940. package/vendor/zotero/modules/translators/Access Medicine.js +343 -0
  941. package/vendor/zotero/modules/translators/Access Science.js +391 -0
  942. package/vendor/zotero/modules/translators/Adam Matthew Digital.js +405 -0
  943. package/vendor/zotero/modules/translators/Agencia del ISBN.js +77 -0
  944. package/vendor/zotero/modules/translators/Ahval News.js +309 -0
  945. package/vendor/zotero/modules/translators/Air University Journals.js +236 -0
  946. package/vendor/zotero/modules/translators/Airiti.js +423 -0
  947. package/vendor/zotero/modules/translators/Alexander Street Press.js +198 -0
  948. package/vendor/zotero/modules/translators/AllAfrica.js +291 -0
  949. package/vendor/zotero/modules/translators/Alsharekh.js +242 -0
  950. package/vendor/zotero/modules/translators/AlterNet.js +134 -0
  951. package/vendor/zotero/modules/translators/Aluka.js +261 -0
  952. package/vendor/zotero/modules/translators/Amazon.js +1043 -0
  953. package/vendor/zotero/modules/translators/American Archive of Public Broadcasting.js +592 -0
  954. package/vendor/zotero/modules/translators/American Institute of Aeronautics and Astronautics.js +210 -0
  955. package/vendor/zotero/modules/translators/American Prospect.js +114 -0
  956. package/vendor/zotero/modules/translators/Ancestry.com US Federal Census.js +164 -0
  957. package/vendor/zotero/modules/translators/Annual Reviews.js +329 -0
  958. package/vendor/zotero/modules/translators/Antikvarium.hu.js +280 -0
  959. package/vendor/zotero/modules/translators/AquaDocs.js +390 -0
  960. package/vendor/zotero/modules/translators/Archeion.js +249 -0
  961. package/vendor/zotero/modules/translators/Archiv fuer Sozialgeschichte.js +157 -0
  962. package/vendor/zotero/modules/translators/Archive Ouverte en Sciences de l'Information et de la Communication (AOSIC).js +179 -0
  963. package/vendor/zotero/modules/translators/Archives Canada.js +142 -0
  964. package/vendor/zotero/modules/translators/Ariana News.js +203 -0
  965. package/vendor/zotero/modules/translators/Art Institute of Chicago.js +279 -0
  966. package/vendor/zotero/modules/translators/Artefacts Canada.js +192 -0
  967. package/vendor/zotero/modules/translators/Artforum.js +438 -0
  968. package/vendor/zotero/modules/translators/Atlanta Journal Constitution.js +155 -0
  969. package/vendor/zotero/modules/translators/Atlanta Journal-Constitution.js +311 -0
  970. package/vendor/zotero/modules/translators/Atypon Journals.js +1204 -0
  971. package/vendor/zotero/modules/translators/AustLII and NZLII.js +604 -0
  972. package/vendor/zotero/modules/translators/Australian Dictionary of Biography.js +196 -0
  973. package/vendor/zotero/modules/translators/BAILII.js +176 -0
  974. package/vendor/zotero/modules/translators/BBC Genome.js +254 -0
  975. package/vendor/zotero/modules/translators/BBC.js +430 -0
  976. package/vendor/zotero/modules/translators/BIBSYS.js +112 -0
  977. package/vendor/zotero/modules/translators/BOCC.js +217 -0
  978. package/vendor/zotero/modules/translators/BOE.js +229 -0
  979. package/vendor/zotero/modules/translators/BOFiP-Impots.js +132 -0
  980. package/vendor/zotero/modules/translators/Baidu Scholar.js +276 -0
  981. package/vendor/zotero/modules/translators/Bangkok Post.js +216 -0
  982. package/vendor/zotero/modules/translators/Baruch Foundation.js +175 -0
  983. package/vendor/zotero/modules/translators/Beobachter.js +175 -0
  984. package/vendor/zotero/modules/translators/Bezneng Gajit.js +92 -0
  985. package/vendor/zotero/modules/translators/BibLaTeX.js +888 -0
  986. package/vendor/zotero/modules/translators/BibTeX.js +4236 -0
  987. package/vendor/zotero/modules/translators/Biblio.com.js +216 -0
  988. package/vendor/zotero/modules/translators/Bibliontology RDF.js +1166 -0
  989. package/vendor/zotero/modules/translators/Biblioteca Nacional de Maestros.js +213 -0
  990. package/vendor/zotero/modules/translators/Bibliotheque et Archives Nationale du Quebec (Pistard).js +147 -0
  991. package/vendor/zotero/modules/translators/Bibliotheque et Archives Nationales du Quebec.js +266 -0
  992. package/vendor/zotero/modules/translators/Bibliotheque nationale de France.js +872 -0
  993. package/vendor/zotero/modules/translators/BioMed Central.js +585 -0
  994. package/vendor/zotero/modules/translators/BioOne.js +233 -0
  995. package/vendor/zotero/modules/translators/Bioconductor.js +343 -0
  996. package/vendor/zotero/modules/translators/Blaetter.js +192 -0
  997. package/vendor/zotero/modules/translators/Blogger.js +244 -0
  998. package/vendor/zotero/modules/translators/Bloomberg.js +205 -0
  999. package/vendor/zotero/modules/translators/Bloomsbury Food Library.js +296 -0
  1000. package/vendor/zotero/modules/translators/Bluesky.js +195 -0
  1001. package/vendor/zotero/modules/translators/BnF ISBN.js +129 -0
  1002. package/vendor/zotero/modules/translators/Bookmarks.js +282 -0
  1003. package/vendor/zotero/modules/translators/Bookshop.org.js +223 -0
  1004. package/vendor/zotero/modules/translators/Boston Review.js +332 -0
  1005. package/vendor/zotero/modules/translators/Bosworth Toller's Anglo-Saxon Dictionary Online.js +496 -0
  1006. package/vendor/zotero/modules/translators/Bracero History Archive.js +200 -0
  1007. package/vendor/zotero/modules/translators/Brill Journals.js +168 -0
  1008. package/vendor/zotero/modules/translators/Brill.js +434 -0
  1009. package/vendor/zotero/modules/translators/Brukerhandboken.js +153 -0
  1010. package/vendor/zotero/modules/translators/Bryn Mawr Classical Review.js +303 -0
  1011. package/vendor/zotero/modules/translators/Bundesgesetzblatt.js +231 -0
  1012. package/vendor/zotero/modules/translators/Business Standard.js +151 -0
  1013. package/vendor/zotero/modules/translators/CABI - CAB Abstracts.js +317 -0
  1014. package/vendor/zotero/modules/translators/CAOD.js +260 -0
  1015. package/vendor/zotero/modules/translators/CBC.js +439 -0
  1016. package/vendor/zotero/modules/translators/CCfr (BnF).js +162 -0
  1017. package/vendor/zotero/modules/translators/CERN Document Server.js +277 -0
  1018. package/vendor/zotero/modules/translators/CEUR Workshop Proceedings.js +145 -0
  1019. package/vendor/zotero/modules/translators/CFF References.js +170 -0
  1020. package/vendor/zotero/modules/translators/CFF.js +113 -0
  1021. package/vendor/zotero/modules/translators/CIA World Factbook.js +128 -0
  1022. package/vendor/zotero/modules/translators/CLACSO.js +226 -0
  1023. package/vendor/zotero/modules/translators/CLASE.js +135 -0
  1024. package/vendor/zotero/modules/translators/CNKI.js +731 -0
  1025. package/vendor/zotero/modules/translators/COBISS.js +1945 -0
  1026. package/vendor/zotero/modules/translators/COinS.js +336 -0
  1027. package/vendor/zotero/modules/translators/CQ Press.js +418 -0
  1028. package/vendor/zotero/modules/translators/CROSBI.js +227 -0
  1029. package/vendor/zotero/modules/translators/CSIRO Publishing.js +139 -0
  1030. package/vendor/zotero/modules/translators/CSL JSON.js +203 -0
  1031. package/vendor/zotero/modules/translators/CSV.js +294 -0
  1032. package/vendor/zotero/modules/translators/Cairn.info.js +368 -0
  1033. package/vendor/zotero/modules/translators/CalMatters.js +228 -0
  1034. package/vendor/zotero/modules/translators/Calisphere.js +355 -0
  1035. package/vendor/zotero/modules/translators/Camara Brasileira do Livro ISBN.js +842 -0
  1036. package/vendor/zotero/modules/translators/Cambridge Core.js +580 -0
  1037. package/vendor/zotero/modules/translators/Cambridge Engage Preprints.js +276 -0
  1038. package/vendor/zotero/modules/translators/CanLII.js +284 -0
  1039. package/vendor/zotero/modules/translators/Canada.com.js +171 -0
  1040. package/vendor/zotero/modules/translators/Canadian Letters and Images.js +148 -0
  1041. package/vendor/zotero/modules/translators/Canadiana.ca.js +196 -0
  1042. package/vendor/zotero/modules/translators/Cascadilla Proceedings Project.js +390 -0
  1043. package/vendor/zotero/modules/translators/Cell Press.js +516 -0
  1044. package/vendor/zotero/modules/translators/Central and Eastern European Online Library Journals.js +313 -0
  1045. package/vendor/zotero/modules/translators/Champlain Society - Collection.js +220 -0
  1046. package/vendor/zotero/modules/translators/Chicago Journal of Theoretical Computer Science.js +203 -0
  1047. package/vendor/zotero/modules/translators/Christian Science Monitor.js +148 -0
  1048. package/vendor/zotero/modules/translators/Chronicling America.js +131 -0
  1049. package/vendor/zotero/modules/translators/CiNii Research.js +168 -0
  1050. package/vendor/zotero/modules/translators/Citavi 5 XML.js +516 -0
  1051. package/vendor/zotero/modules/translators/CiteSeer.js +196 -0
  1052. package/vendor/zotero/modules/translators/CiteULike.js +170 -0
  1053. package/vendor/zotero/modules/translators/Citizen Lab.js +347 -0
  1054. package/vendor/zotero/modules/translators/Civilization.ca.js +146 -0
  1055. package/vendor/zotero/modules/translators/Climate Change and Human Health Literature Portal.js +283 -0
  1056. package/vendor/zotero/modules/translators/Clinical Key.js +367 -0
  1057. package/vendor/zotero/modules/translators/Code4Lib Journal.js +143 -0
  1058. package/vendor/zotero/modules/translators/Colorado State Legislature.js +215 -0
  1059. package/vendor/zotero/modules/translators/Columbia University Press.js +238 -0
  1060. package/vendor/zotero/modules/translators/Common-Place.js +218 -0
  1061. package/vendor/zotero/modules/translators/Computer History Museum Archive.js +1319 -0
  1062. package/vendor/zotero/modules/translators/Copernicus.js +461 -0
  1063. package/vendor/zotero/modules/translators/Cornell LII.js +252 -0
  1064. package/vendor/zotero/modules/translators/Cornell University Press.js +235 -0
  1065. package/vendor/zotero/modules/translators/CourtListener.js +265 -0
  1066. package/vendor/zotero/modules/translators/CrossRef.js +486 -0
  1067. package/vendor/zotero/modules/translators/Crossref REST.js +1757 -0
  1068. package/vendor/zotero/modules/translators/Crossref Unixref XML.js +965 -0
  1069. package/vendor/zotero/modules/translators/Current Affairs.js +160 -0
  1070. package/vendor/zotero/modules/translators/Cyberpresse.js +131 -0
  1071. package/vendor/zotero/modules/translators/DABI.js +476 -0
  1072. package/vendor/zotero/modules/translators/DAI-Zenon.js +392 -0
  1073. package/vendor/zotero/modules/translators/DART-Europe.js +176 -0
  1074. package/vendor/zotero/modules/translators/DBLP Computer Science Bibliography.js +462 -0
  1075. package/vendor/zotero/modules/translators/DBpia.js +233 -0
  1076. package/vendor/zotero/modules/translators/DEPATISnet.js +373 -0
  1077. package/vendor/zotero/modules/translators/DOAJ.js +243 -0
  1078. package/vendor/zotero/modules/translators/DOI Content Negotiation.js +352 -0
  1079. package/vendor/zotero/modules/translators/DOI.js +322 -0
  1080. package/vendor/zotero/modules/translators/DPLA.js +425 -0
  1081. package/vendor/zotero/modules/translators/DSpace Intermediate Metadata.js +208 -0
  1082. package/vendor/zotero/modules/translators/DTU Orbit.js +155 -0
  1083. package/vendor/zotero/modules/translators/Dagens Nyheter.js +369 -0
  1084. package/vendor/zotero/modules/translators/Dagstuhl Research Online Publication Server.js +276 -0
  1085. package/vendor/zotero/modules/translators/Dar Almandumah.js +253 -0
  1086. package/vendor/zotero/modules/translators/Data.gov.js +225 -0
  1087. package/vendor/zotero/modules/translators/DataCite.js +125 -0
  1088. package/vendor/zotero/modules/translators/Databrary.js +184 -0
  1089. package/vendor/zotero/modules/translators/Datacite JSON.js +1182 -0
  1090. package/vendor/zotero/modules/translators/Dataverse.js +418 -0
  1091. package/vendor/zotero/modules/translators/Daum News.js +139 -0
  1092. package/vendor/zotero/modules/translators/De Gruyter Brill.js +674 -0
  1093. package/vendor/zotero/modules/translators/DeGruyter.js +457 -0
  1094. package/vendor/zotero/modules/translators/Defense Technical Information Center.js +146 -0
  1095. package/vendor/zotero/modules/translators/Delpher.js +413 -0
  1096. package/vendor/zotero/modules/translators/Demographic Research.js +164 -0
  1097. package/vendor/zotero/modules/translators/Denik CZ.js +273 -0
  1098. package/vendor/zotero/modules/translators/Der Freitag.js +236 -0
  1099. package/vendor/zotero/modules/translators/Der Spiegel.js +479 -0
  1100. package/vendor/zotero/modules/translators/Desiring God.js +216 -0
  1101. package/vendor/zotero/modules/translators/Deutsche Fotothek.js +364 -0
  1102. package/vendor/zotero/modules/translators/Deutsche Nationalbibliothek.js +594 -0
  1103. package/vendor/zotero/modules/translators/Dialnet.js +258 -0
  1104. package/vendor/zotero/modules/translators/Die Zeit.js +378 -0
  1105. package/vendor/zotero/modules/translators/DigiZeitschriften.js +269 -0
  1106. package/vendor/zotero/modules/translators/Digital Humanities Quarterly.js +207 -0
  1107. package/vendor/zotero/modules/translators/Digital Medievalist.js +149 -0
  1108. package/vendor/zotero/modules/translators/Digital Spy.js +215 -0
  1109. package/vendor/zotero/modules/translators/Dimensions.js +233 -0
  1110. package/vendor/zotero/modules/translators/Douban.js +316 -0
  1111. package/vendor/zotero/modules/translators/Dreier Neuerscheinungsdienst.js +209 -0
  1112. package/vendor/zotero/modules/translators/DrugBank.ca.js +209 -0
  1113. package/vendor/zotero/modules/translators/Dryad Digital Repository.js +323 -0
  1114. package/vendor/zotero/modules/translators/Duke University Press Books.js +250 -0
  1115. package/vendor/zotero/modules/translators/E-periodica Switzerland.js +347 -0
  1116. package/vendor/zotero/modules/translators/EBSCO Discovery Layer.js +147 -0
  1117. package/vendor/zotero/modules/translators/EBSCOhost.js +592 -0
  1118. package/vendor/zotero/modules/translators/EIDR.js +184 -0
  1119. package/vendor/zotero/modules/translators/EPA National Library Catalog.js +245 -0
  1120. package/vendor/zotero/modules/translators/ERIC.js +986 -0
  1121. package/vendor/zotero/modules/translators/ESpacenet.js +465 -0
  1122. package/vendor/zotero/modules/translators/EUR-Lex.js +423 -0
  1123. package/vendor/zotero/modules/translators/Eastview.js +336 -0
  1124. package/vendor/zotero/modules/translators/Edinburgh University Press Journals.js +178 -0
  1125. package/vendor/zotero/modules/translators/Education Week.js +197 -0
  1126. package/vendor/zotero/modules/translators/El Comercio (Peru).js +347 -0
  1127. package/vendor/zotero/modules/translators/El Pais.js +262 -0
  1128. package/vendor/zotero/modules/translators/Electronic Colloquium on Computational Complexity.js +230 -0
  1129. package/vendor/zotero/modules/translators/Elicit.js +120 -0
  1130. package/vendor/zotero/modules/translators/Elsevier Health Journals.js +531 -0
  1131. package/vendor/zotero/modules/translators/Elsevier Pure.js +420 -0
  1132. package/vendor/zotero/modules/translators/Embedded Metadata.js +1951 -0
  1133. package/vendor/zotero/modules/translators/Emerald Insight.js +626 -0
  1134. package/vendor/zotero/modules/translators/Encyclopedia of Chicago.js +162 -0
  1135. package/vendor/zotero/modules/translators/Encyclopedia of Korean Culture.js +221 -0
  1136. package/vendor/zotero/modules/translators/Endnote XML.js +1407 -0
  1137. package/vendor/zotero/modules/translators/Engineering Village.js +139 -0
  1138. package/vendor/zotero/modules/translators/Envidat.js +331 -0
  1139. package/vendor/zotero/modules/translators/Epicurious.js +144 -0
  1140. package/vendor/zotero/modules/translators/Erudit.js +272 -0
  1141. package/vendor/zotero/modules/translators/Euclid.js +220 -0
  1142. package/vendor/zotero/modules/translators/EurasiaNet.js +109 -0
  1143. package/vendor/zotero/modules/translators/Eurogamer.js +112 -0
  1144. package/vendor/zotero/modules/translators/EurogamerUSgamer.js +380 -0
  1145. package/vendor/zotero/modules/translators/Europe PMC.js +448 -0
  1146. package/vendor/zotero/modules/translators/Evernote.js +104 -0
  1147. package/vendor/zotero/modules/translators/F1000 Research.js +655 -0
  1148. package/vendor/zotero/modules/translators/FAO Publications.js +1139 -0
  1149. package/vendor/zotero/modules/translators/FAZ.NET.js +231 -0
  1150. package/vendor/zotero/modules/translators/Fachportal Padagogik.js +839 -0
  1151. package/vendor/zotero/modules/translators/Factiva.js +302 -0
  1152. package/vendor/zotero/modules/translators/Failed Architecture.js +114 -0
  1153. package/vendor/zotero/modules/translators/Fairfax Australia.js +200 -0
  1154. package/vendor/zotero/modules/translators/Fatcat.js +425 -0
  1155. package/vendor/zotero/modules/translators/Figshare.js +191 -0
  1156. package/vendor/zotero/modules/translators/Financial Times.js +187 -0
  1157. package/vendor/zotero/modules/translators/Finna.js +357 -0
  1158. package/vendor/zotero/modules/translators/Flickr.js +318 -0
  1159. package/vendor/zotero/modules/translators/Foreign Affairs.js +485 -0
  1160. package/vendor/zotero/modules/translators/Foreign Policy.js +146 -0
  1161. package/vendor/zotero/modules/translators/FreeCite.js +95 -0
  1162. package/vendor/zotero/modules/translators/FreePatentsOnline.js +265 -0
  1163. package/vendor/zotero/modules/translators/Frieze.js +243 -0
  1164. package/vendor/zotero/modules/translators/Frontiers.js +667 -0
  1165. package/vendor/zotero/modules/translators/GMS German Medical Science.js +319 -0
  1166. package/vendor/zotero/modules/translators/GPO Access e-CFR.js +134 -0
  1167. package/vendor/zotero/modules/translators/Gale Databases.js +324 -0
  1168. package/vendor/zotero/modules/translators/GaleGDC.js +189 -0
  1169. package/vendor/zotero/modules/translators/Galegroup.js +327 -0
  1170. package/vendor/zotero/modules/translators/Gallica.js +194 -0
  1171. package/vendor/zotero/modules/translators/Game Studies.js +155 -0
  1172. package/vendor/zotero/modules/translators/GameSpot.js +199 -0
  1173. package/vendor/zotero/modules/translators/GameStar GamePro.js +198 -0
  1174. package/vendor/zotero/modules/translators/Gasyrlar Awazy.js +156 -0
  1175. package/vendor/zotero/modules/translators/Gemeinsamer Bibliotheksverbund ISBN.js +23 -0
  1176. package/vendor/zotero/modules/translators/Gene Ontology.js +128 -0
  1177. package/vendor/zotero/modules/translators/Github.js +268 -0
  1178. package/vendor/zotero/modules/translators/Globes.js +243 -0
  1179. package/vendor/zotero/modules/translators/Gmail.js +64 -0
  1180. package/vendor/zotero/modules/translators/Goodreads.js +219 -0
  1181. package/vendor/zotero/modules/translators/Google Books.js +552 -0
  1182. package/vendor/zotero/modules/translators/Google Patents.js +959 -0
  1183. package/vendor/zotero/modules/translators/Google Play.js +186 -0
  1184. package/vendor/zotero/modules/translators/Google Presentation.js +104 -0
  1185. package/vendor/zotero/modules/translators/Google Research.js +221 -0
  1186. package/vendor/zotero/modules/translators/Google Scholar.js +1361 -0
  1187. package/vendor/zotero/modules/translators/Gulag Many Days, Many Lives.js +179 -0
  1188. package/vendor/zotero/modules/translators/HAL Archives Ouvertes.js +429 -0
  1189. package/vendor/zotero/modules/translators/HCSP.js +312 -0
  1190. package/vendor/zotero/modules/translators/HUDOC.js +650 -0
  1191. package/vendor/zotero/modules/translators/Haaretz.js +562 -0
  1192. package/vendor/zotero/modules/translators/Habr.js +232 -0
  1193. package/vendor/zotero/modules/translators/Handelszeitung.js +273 -0
  1194. package/vendor/zotero/modules/translators/Hanrei Watch.js +123 -0
  1195. package/vendor/zotero/modules/translators/Harper's Magazine.js +365 -0
  1196. package/vendor/zotero/modules/translators/Harpers.js +209 -0
  1197. package/vendor/zotero/modules/translators/Harvard Business Review.js +326 -0
  1198. package/vendor/zotero/modules/translators/Harvard Caselaw Access Project.js +244 -0
  1199. package/vendor/zotero/modules/translators/Harvard University Press Books.js +286 -0
  1200. package/vendor/zotero/modules/translators/Hathi Trust.js +164 -0
  1201. package/vendor/zotero/modules/translators/HathiTrust.js +311 -0
  1202. package/vendor/zotero/modules/translators/HeinOnline.js +266 -0
  1203. package/vendor/zotero/modules/translators/Heise.js +200 -0
  1204. package/vendor/zotero/modules/translators/Herder.js +236 -0
  1205. package/vendor/zotero/modules/translators/HighBeam.js +198 -0
  1206. package/vendor/zotero/modules/translators/HighWire 2.0.js +1355 -0
  1207. package/vendor/zotero/modules/translators/HighWire.js +209 -0
  1208. package/vendor/zotero/modules/translators/Hindawi Publishers.js +177 -0
  1209. package/vendor/zotero/modules/translators/Hispanic-American Periodical Index.js +236 -0
  1210. package/vendor/zotero/modules/translators/Homeland Security Digital Library.js +426 -0
  1211. package/vendor/zotero/modules/translators/Hoovers.js +89 -0
  1212. package/vendor/zotero/modules/translators/Huff Post.js +223 -0
  1213. package/vendor/zotero/modules/translators/Human Rights Watch.js +450 -0
  1214. package/vendor/zotero/modules/translators/IBISWorld.js +171 -0
  1215. package/vendor/zotero/modules/translators/IDEA ALM.js +536 -0
  1216. package/vendor/zotero/modules/translators/IEEE Computer Society.js +429 -0
  1217. package/vendor/zotero/modules/translators/IEEE Xplore.js +1000 -0
  1218. package/vendor/zotero/modules/translators/IETF.js +451 -0
  1219. package/vendor/zotero/modules/translators/IGN.js +136 -0
  1220. package/vendor/zotero/modules/translators/IMDb.js +566 -0
  1221. package/vendor/zotero/modules/translators/INSPIRE.js +247 -0
  1222. package/vendor/zotero/modules/translators/IPCC.js +757 -0
  1223. package/vendor/zotero/modules/translators/ISTC.js +181 -0
  1224. package/vendor/zotero/modules/translators/Idref.js +179 -0
  1225. package/vendor/zotero/modules/translators/In These Times.js +196 -0
  1226. package/vendor/zotero/modules/translators/InfoTrac.js +279 -0
  1227. package/vendor/zotero/modules/translators/Informationssystem Medienpaedagogik.js +305 -0
  1228. package/vendor/zotero/modules/translators/IngentaConnect.js +312 -0
  1229. package/vendor/zotero/modules/translators/Inside Higher Ed.js +167 -0
  1230. package/vendor/zotero/modules/translators/Insignia OPAC.js +114 -0
  1231. package/vendor/zotero/modules/translators/Institute of Contemporary Art.js +180 -0
  1232. package/vendor/zotero/modules/translators/Institute of Physics.js +340 -0
  1233. package/vendor/zotero/modules/translators/Integrum.js +173 -0
  1234. package/vendor/zotero/modules/translators/Intellixir.js +264 -0
  1235. package/vendor/zotero/modules/translators/Inter-Research Science Center.js +185 -0
  1236. package/vendor/zotero/modules/translators/International Nuclear Information System.js +285 -0
  1237. package/vendor/zotero/modules/translators/Internet Archive Scholar.js +106 -0
  1238. package/vendor/zotero/modules/translators/Internet Archive Wayback Machine.js +152 -0
  1239. package/vendor/zotero/modules/translators/Internet Archive.js +552 -0
  1240. package/vendor/zotero/modules/translators/InvenioRDM.js +1260 -0
  1241. package/vendor/zotero/modules/translators/Isidore.js +235 -0
  1242. package/vendor/zotero/modules/translators/J-Stage.js +272 -0
  1243. package/vendor/zotero/modules/translators/JETS.js +122 -0
  1244. package/vendor/zotero/modules/translators/JISC Historical Texts.js +273 -0
  1245. package/vendor/zotero/modules/translators/JRC Publications Repository.js +569 -0
  1246. package/vendor/zotero/modules/translators/JSTOR.js +821 -0
  1247. package/vendor/zotero/modules/translators/Jahrbuch.js +213 -0
  1248. package/vendor/zotero/modules/translators/Japan Times Online.js +138 -0
  1249. package/vendor/zotero/modules/translators/Journal of Electronic Publishing.js +147 -0
  1250. package/vendor/zotero/modules/translators/Journal of Extension.js +288 -0
  1251. package/vendor/zotero/modules/translators/Journal of Machine Learning Research.js +441 -0
  1252. package/vendor/zotero/modules/translators/Journal of Religion and Society.js +174 -0
  1253. package/vendor/zotero/modules/translators/JurPC.js +274 -0
  1254. package/vendor/zotero/modules/translators/Juricaf.js +141 -0
  1255. package/vendor/zotero/modules/translators/Juris.js +728 -0
  1256. package/vendor/zotero/modules/translators/K10plus ISBN.js +386 -0
  1257. package/vendor/zotero/modules/translators/KStudy.js +632 -0
  1258. package/vendor/zotero/modules/translators/Kanopy.js +358 -0
  1259. package/vendor/zotero/modules/translators/Khaama Press.js +249 -0
  1260. package/vendor/zotero/modules/translators/KitapYurdu.com.js +376 -0
  1261. package/vendor/zotero/modules/translators/Kommersant.js +174 -0
  1262. package/vendor/zotero/modules/translators/Korean National Library.js +621 -0
  1263. package/vendor/zotero/modules/translators/L'Annee Philologique.js +267 -0
  1264. package/vendor/zotero/modules/translators/LA Times.js +239 -0
  1265. package/vendor/zotero/modules/translators/LIBRIS ISBN.js +103 -0
  1266. package/vendor/zotero/modules/translators/LIVIVO.js +260 -0
  1267. package/vendor/zotero/modules/translators/LWN.net.js +350 -0
  1268. package/vendor/zotero/modules/translators/La Croix.js +237 -0
  1269. package/vendor/zotero/modules/translators/La Nacion (Argentina).js +231 -0
  1270. package/vendor/zotero/modules/translators/La Presse.js +218 -0
  1271. package/vendor/zotero/modules/translators/La Republica (Peru).js +174 -0
  1272. package/vendor/zotero/modules/translators/Lagen.nu.js +214 -0
  1273. package/vendor/zotero/modules/translators/Landesbibliographie Baden-Wurttemberg.js +324 -0
  1274. package/vendor/zotero/modules/translators/Lapham's Quarterly.js +1062 -0
  1275. package/vendor/zotero/modules/translators/Le Devoir.js +167 -0
  1276. package/vendor/zotero/modules/translators/Le Figaro.js +225 -0
  1277. package/vendor/zotero/modules/translators/Le Maitron.js +484 -0
  1278. package/vendor/zotero/modules/translators/Le Monde.js +258 -0
  1279. package/vendor/zotero/modules/translators/Le monde diplomatique.js +200 -0
  1280. package/vendor/zotero/modules/translators/Legifrance.js +641 -0
  1281. package/vendor/zotero/modules/translators/Legislative Insight.js +406 -0
  1282. package/vendor/zotero/modules/translators/Lexis+.js +264 -0
  1283. package/vendor/zotero/modules/translators/LexisNexis.js +505 -0
  1284. package/vendor/zotero/modules/translators/Libraries Tasmania.js +778 -0
  1285. package/vendor/zotero/modules/translators/Library Catalog (Aleph).js +385 -0
  1286. package/vendor/zotero/modules/translators/Library Catalog (Amicus).js +254 -0
  1287. package/vendor/zotero/modules/translators/Library Catalog (Aquabrowser).js +253 -0
  1288. package/vendor/zotero/modules/translators/Library Catalog (BiblioCommons).js +249 -0
  1289. package/vendor/zotero/modules/translators/Library Catalog (Blacklight).js +341 -0
  1290. package/vendor/zotero/modules/translators/Library Catalog (Capita Prism).js +162 -0
  1291. package/vendor/zotero/modules/translators/Library Catalog (DRA).js +203 -0
  1292. package/vendor/zotero/modules/translators/Library Catalog (Dynix).js +315 -0
  1293. package/vendor/zotero/modules/translators/Library Catalog (EBSCO Locate).js +349 -0
  1294. package/vendor/zotero/modules/translators/Library Catalog (Encore).js +211 -0
  1295. package/vendor/zotero/modules/translators/Library Catalog (GEAC).js +104 -0
  1296. package/vendor/zotero/modules/translators/Library Catalog (InnoPAC).js +305 -0
  1297. package/vendor/zotero/modules/translators/Library Catalog (Koha).js +225 -0
  1298. package/vendor/zotero/modules/translators/Library Catalog (Mango).js +285 -0
  1299. package/vendor/zotero/modules/translators/Library Catalog (OPALS).js +200 -0
  1300. package/vendor/zotero/modules/translators/Library Catalog (PICA).js +2120 -0
  1301. package/vendor/zotero/modules/translators/Library Catalog (PICA2).js +331 -0
  1302. package/vendor/zotero/modules/translators/Library Catalog (Pika).js +488 -0
  1303. package/vendor/zotero/modules/translators/Library Catalog (Polaris).js +183 -0
  1304. package/vendor/zotero/modules/translators/Library Catalog (Quolto).js +320 -0
  1305. package/vendor/zotero/modules/translators/Library Catalog (RERO ILS).js +754 -0
  1306. package/vendor/zotero/modules/translators/Library Catalog (SIRSI eLibrary).js +407 -0
  1307. package/vendor/zotero/modules/translators/Library Catalog (SIRSI).js +452 -0
  1308. package/vendor/zotero/modules/translators/Library Catalog (SLIMS).js +146 -0
  1309. package/vendor/zotero/modules/translators/Library Catalog (TIND ILS).js +773 -0
  1310. package/vendor/zotero/modules/translators/Library Catalog (TLCYouSeeMore).js +132 -0
  1311. package/vendor/zotero/modules/translators/Library Catalog (TinREAD).js +277 -0
  1312. package/vendor/zotero/modules/translators/Library Catalog (VTLS).js +125 -0
  1313. package/vendor/zotero/modules/translators/Library Catalog (Visual Library 2021).js +765 -0
  1314. package/vendor/zotero/modules/translators/Library Catalog (Voyager 7).js +199 -0
  1315. package/vendor/zotero/modules/translators/Library Catalog (Voyager).js +212 -0
  1316. package/vendor/zotero/modules/translators/Library Genesis.js +337 -0
  1317. package/vendor/zotero/modules/translators/Library Hub Discover.js +359 -0
  1318. package/vendor/zotero/modules/translators/Library of Congress Digital Collections.js +869 -0
  1319. package/vendor/zotero/modules/translators/Library of Congress ISBN.js +86 -0
  1320. package/vendor/zotero/modules/translators/LingBuzz.js +359 -0
  1321. package/vendor/zotero/modules/translators/Lippincott Williams and Wilkins.js +341 -0
  1322. package/vendor/zotero/modules/translators/Literary Hub.js +950 -0
  1323. package/vendor/zotero/modules/translators/Litres.js +236 -0
  1324. package/vendor/zotero/modules/translators/LiveJournal.js +219 -0
  1325. package/vendor/zotero/modules/translators/London Review of Books.js +291 -0
  1326. package/vendor/zotero/modules/translators/LookUs.js +260 -0
  1327. package/vendor/zotero/modules/translators/Lulu.js +264 -0
  1328. package/vendor/zotero/modules/translators/MAB2.js +373 -0
  1329. package/vendor/zotero/modules/translators/MARC.js +1080 -0
  1330. package/vendor/zotero/modules/translators/MARCXML.js +489 -0
  1331. package/vendor/zotero/modules/translators/MCV.js +258 -0
  1332. package/vendor/zotero/modules/translators/MDPI Journals.js +356 -0
  1333. package/vendor/zotero/modules/translators/MEDLINEnbib.js +1561 -0
  1334. package/vendor/zotero/modules/translators/METS.js +384 -0
  1335. package/vendor/zotero/modules/translators/MIDAS Journals.js +343 -0
  1336. package/vendor/zotero/modules/translators/MIT Press Books.js +637 -0
  1337. package/vendor/zotero/modules/translators/MIT Press Journals.js +176 -0
  1338. package/vendor/zotero/modules/translators/MODS.js +2545 -0
  1339. package/vendor/zotero/modules/translators/MPG PuRe.js +541 -0
  1340. package/vendor/zotero/modules/translators/Mailman.js +136 -0
  1341. package/vendor/zotero/modules/translators/Mainichi Daily News.js +189 -0
  1342. package/vendor/zotero/modules/translators/Mastodon.js +198 -0
  1343. package/vendor/zotero/modules/translators/Matbugat.ru.js +110 -0
  1344. package/vendor/zotero/modules/translators/Max Planck Institute for the History of Science Virtual Laboratory Library.js +136 -0
  1345. package/vendor/zotero/modules/translators/Medium.js +208 -0
  1346. package/vendor/zotero/modules/translators/MetaLib.js +126 -0
  1347. package/vendor/zotero/modules/translators/Microbiology Society Journals.js +343 -0
  1348. package/vendor/zotero/modules/translators/Microsoft Academic.js +424 -0
  1349. package/vendor/zotero/modules/translators/Mikromarc.js +207 -0
  1350. package/vendor/zotero/modules/translators/Milli Kutuphane.js +244 -0
  1351. package/vendor/zotero/modules/translators/Musee du Louvre.js +265 -0
  1352. package/vendor/zotero/modules/translators/NASA ADS.js +889 -0
  1353. package/vendor/zotero/modules/translators/NASA NTRS.js +610 -0
  1354. package/vendor/zotero/modules/translators/NCBI Nucleotide.js +227 -0
  1355. package/vendor/zotero/modules/translators/NPR.js +341 -0
  1356. package/vendor/zotero/modules/translators/NRC Research Press.js +181 -0
  1357. package/vendor/zotero/modules/translators/NRC.nl.js +226 -0
  1358. package/vendor/zotero/modules/translators/NTSB Accident Reports.js +226 -0
  1359. package/vendor/zotero/modules/translators/NYPL Menus.js +275 -0
  1360. package/vendor/zotero/modules/translators/NYPL Research Catalog.js +458 -0
  1361. package/vendor/zotero/modules/translators/NYTimes.com.js +858 -0
  1362. package/vendor/zotero/modules/translators/NZZ.ch.js +272 -0
  1363. package/vendor/zotero/modules/translators/Nagoya University OPAC.js +336 -0
  1364. package/vendor/zotero/modules/translators/National Academies Press.js +243 -0
  1365. package/vendor/zotero/modules/translators/National Agriculture Library.js +524 -0
  1366. package/vendor/zotero/modules/translators/National Archive of the UK.js +237 -0
  1367. package/vendor/zotero/modules/translators/National Archives of Australia.js +522 -0
  1368. package/vendor/zotero/modules/translators/National Archives of South Africa.js +122 -0
  1369. package/vendor/zotero/modules/translators/National Archives of the United States.js +278 -0
  1370. package/vendor/zotero/modules/translators/National Bureau of Economic Research.js +363 -0
  1371. package/vendor/zotero/modules/translators/National Diet Library Catalogue.js +333 -0
  1372. package/vendor/zotero/modules/translators/National Gallery of Art - USA.js +149 -0
  1373. package/vendor/zotero/modules/translators/National Gallery of Australia.js +252 -0
  1374. package/vendor/zotero/modules/translators/National Library of Australia (new catalog).js +223 -0
  1375. package/vendor/zotero/modules/translators/National Library of Belarus.js +171 -0
  1376. package/vendor/zotero/modules/translators/National Library of Norway.js +310 -0
  1377. package/vendor/zotero/modules/translators/National Library of Poland ISBN.js +140 -0
  1378. package/vendor/zotero/modules/translators/National Post.js +186 -0
  1379. package/vendor/zotero/modules/translators/National Technical Reports Library.js +276 -0
  1380. package/vendor/zotero/modules/translators/National Transportation Library ROSA P.js +562 -0
  1381. package/vendor/zotero/modules/translators/Nature Publishing Group.js +3394 -0
  1382. package/vendor/zotero/modules/translators/Neural Information Processing Systems.js +385 -0
  1383. package/vendor/zotero/modules/translators/New Left Review.js +245 -0
  1384. package/vendor/zotero/modules/translators/New Zealand Herald.js +282 -0
  1385. package/vendor/zotero/modules/translators/Newlines Magazine.js +190 -0
  1386. package/vendor/zotero/modules/translators/News Corp Australia.js +251 -0
  1387. package/vendor/zotero/modules/translators/NewsBank.js +202 -0
  1388. package/vendor/zotero/modules/translators/NewsnetTamedia.js +509 -0
  1389. package/vendor/zotero/modules/translators/Noor Digital Library.js +267 -0
  1390. package/vendor/zotero/modules/translators/Note HTML.js +206 -0
  1391. package/vendor/zotero/modules/translators/Note Markdown.js +1638 -0
  1392. package/vendor/zotero/modules/translators/Notre Dame Philosophical Reviews.js +201 -0
  1393. package/vendor/zotero/modules/translators/Nuclear Receptor Signaling.js +241 -0
  1394. package/vendor/zotero/modules/translators/OAPEN.js +331 -0
  1395. package/vendor/zotero/modules/translators/OECD.js +216 -0
  1396. package/vendor/zotero/modules/translators/ORCID.js +104 -0
  1397. package/vendor/zotero/modules/translators/OSF Preprints.js +417 -0
  1398. package/vendor/zotero/modules/translators/OSTI Energy Citations.js +202 -0
  1399. package/vendor/zotero/modules/translators/OVID Tagged.js +1226 -0
  1400. package/vendor/zotero/modules/translators/OZON.ru.js +465 -0
  1401. package/vendor/zotero/modules/translators/OhioLINK.js +43 -0
  1402. package/vendor/zotero/modules/translators/Old Bailey Online.js +315 -0
  1403. package/vendor/zotero/modules/translators/Open Conf.js +172 -0
  1404. package/vendor/zotero/modules/translators/Open Journal Systems.js +729 -0
  1405. package/vendor/zotero/modules/translators/Open Knowledge Repository.js +811 -0
  1406. package/vendor/zotero/modules/translators/OpenAlex JSON.js +740 -0
  1407. package/vendor/zotero/modules/translators/OpenAlex.js +444 -0
  1408. package/vendor/zotero/modules/translators/OpenEdition Books.js +155 -0
  1409. package/vendor/zotero/modules/translators/OpenEdition Journals.js +432 -0
  1410. package/vendor/zotero/modules/translators/Optical Society of America.js +562 -0
  1411. package/vendor/zotero/modules/translators/Optimization Online.js +418 -0
  1412. package/vendor/zotero/modules/translators/Ovid OCE.js +353 -0
  1413. package/vendor/zotero/modules/translators/Ovid.js +302 -0
  1414. package/vendor/zotero/modules/translators/Oxford Dictionaries Premium.js +194 -0
  1415. package/vendor/zotero/modules/translators/Oxford English Dictionary.js +122 -0
  1416. package/vendor/zotero/modules/translators/Oxford Music and Art Online.js +120 -0
  1417. package/vendor/zotero/modules/translators/Oxford Reference.js +202 -0
  1418. package/vendor/zotero/modules/translators/Oxford University Press.js +277 -0
  1419. package/vendor/zotero/modules/translators/PC Gamer.js +302 -0
  1420. package/vendor/zotero/modules/translators/PC Games.js +128 -0
  1421. package/vendor/zotero/modules/translators/PEI Archival Information Network.js +242 -0
  1422. package/vendor/zotero/modules/translators/PEP Web.js +165 -0
  1423. package/vendor/zotero/modules/translators/PKP Catalog Systems.js +1455 -0
  1424. package/vendor/zotero/modules/translators/PLoS Journals.js +284 -0
  1425. package/vendor/zotero/modules/translators/PRC History Review.js +298 -0
  1426. package/vendor/zotero/modules/translators/Pajhwok Afghan News.js +198 -0
  1427. package/vendor/zotero/modules/translators/Papers Past.js +297 -0
  1428. package/vendor/zotero/modules/translators/Paris Review.js +227 -0
  1429. package/vendor/zotero/modules/translators/Pastebin.js +199 -0
  1430. package/vendor/zotero/modules/translators/Patents - USPTO.js +210 -0
  1431. package/vendor/zotero/modules/translators/Peeters.js +587 -0
  1432. package/vendor/zotero/modules/translators/Perceiving Systems.js +350 -0
  1433. package/vendor/zotero/modules/translators/Perlego.js +416 -0
  1434. package/vendor/zotero/modules/translators/PhilPapers.js +233 -0
  1435. package/vendor/zotero/modules/translators/Philosopher's Imprint.js +169 -0
  1436. package/vendor/zotero/modules/translators/Pleade.js +329 -0
  1437. package/vendor/zotero/modules/translators/Polygon.js +270 -0
  1438. package/vendor/zotero/modules/translators/Potsdamer Neueste Nachrichten.js +188 -0
  1439. package/vendor/zotero/modules/translators/Premium Times.js +144 -0
  1440. package/vendor/zotero/modules/translators/Preprints.org.js +305 -0
  1441. package/vendor/zotero/modules/translators/Prime 9ja Online.js +289 -0
  1442. package/vendor/zotero/modules/translators/Primo 2018.js +126 -0
  1443. package/vendor/zotero/modules/translators/Primo Normalized XML.js +987 -0
  1444. package/vendor/zotero/modules/translators/Primo.js +322 -0
  1445. package/vendor/zotero/modules/translators/ProMED.js +66 -0
  1446. package/vendor/zotero/modules/translators/ProQuest Ebook Central.js +226 -0
  1447. package/vendor/zotero/modules/translators/ProQuest PolicyFile.js +115 -0
  1448. package/vendor/zotero/modules/translators/ProQuest.js +2210 -0
  1449. package/vendor/zotero/modules/translators/Probing the Past.js +151 -0
  1450. package/vendor/zotero/modules/translators/Project Gutenberg.js +191 -0
  1451. package/vendor/zotero/modules/translators/Project MUSE.js +451 -0
  1452. package/vendor/zotero/modules/translators/Protein Data Bank.js +445 -0
  1453. package/vendor/zotero/modules/translators/PubFactory Journals.js +712 -0
  1454. package/vendor/zotero/modules/translators/PubMed Central.js +577 -0
  1455. package/vendor/zotero/modules/translators/PubMed XML.js +1139 -0
  1456. package/vendor/zotero/modules/translators/PubMed.js +1317 -0
  1457. package/vendor/zotero/modules/translators/PubPub.js +530 -0
  1458. package/vendor/zotero/modules/translators/Pubget.js +164 -0
  1459. package/vendor/zotero/modules/translators/Public Record Office Victoria.js +252 -0
  1460. package/vendor/zotero/modules/translators/Publications Office of the European Union.js +540 -0
  1461. package/vendor/zotero/modules/translators/Publications du Quebec.js +225 -0
  1462. package/vendor/zotero/modules/translators/PyPI.js +288 -0
  1463. package/vendor/zotero/modules/translators/Qatar Digital Library.js +802 -0
  1464. package/vendor/zotero/modules/translators/Queensland State Archives.js +303 -0
  1465. package/vendor/zotero/modules/translators/R-Packages.js +410 -0
  1466. package/vendor/zotero/modules/translators/RAND.js +283 -0
  1467. package/vendor/zotero/modules/translators/RDF.js +1780 -0
  1468. package/vendor/zotero/modules/translators/REDALYC.js +196 -0
  1469. package/vendor/zotero/modules/translators/RIS.js +7265 -0
  1470. package/vendor/zotero/modules/translators/RSC Publishing.js +250 -0
  1471. package/vendor/zotero/modules/translators/Radio Free Europe Radio Liberty.js +706 -0
  1472. package/vendor/zotero/modules/translators/RePEc - Econpapers.js +725 -0
  1473. package/vendor/zotero/modules/translators/RePEc - IDEAS.js +337 -0
  1474. package/vendor/zotero/modules/translators/Rechtspraak.nl.js +295 -0
  1475. package/vendor/zotero/modules/translators/RefWorks Tagged.js +1185 -0
  1476. package/vendor/zotero/modules/translators/ReferBibIX.js +463 -0
  1477. package/vendor/zotero/modules/translators/Regeringskansliet.js +89 -0
  1478. package/vendor/zotero/modules/translators/Research Square.js +335 -0
  1479. package/vendor/zotero/modules/translators/ResearchGate.js +394 -0
  1480. package/vendor/zotero/modules/translators/Retsinformation.js +348 -0
  1481. package/vendor/zotero/modules/translators/Reuters.js +255 -0
  1482. package/vendor/zotero/modules/translators/Revues.org.js +378 -0
  1483. package/vendor/zotero/modules/translators/Rock, Paper, Shotgun.js +304 -0
  1484. package/vendor/zotero/modules/translators/Roll Call.js +173 -0
  1485. package/vendor/zotero/modules/translators/Russian State Library.js +1517 -0
  1486. package/vendor/zotero/modules/translators/SAE Papers.js +241 -0
  1487. package/vendor/zotero/modules/translators/SAGE Journals.js +427 -0
  1488. package/vendor/zotero/modules/translators/SAGE Knowledge.js +505 -0
  1489. package/vendor/zotero/modules/translators/SAILDART.js +364 -0
  1490. package/vendor/zotero/modules/translators/SALT Research Archives.js +196 -0
  1491. package/vendor/zotero/modules/translators/SFU IPinCH.js +946 -0
  1492. package/vendor/zotero/modules/translators/SIPRI.js +256 -0
  1493. package/vendor/zotero/modules/translators/SIRS Knowledge Source.js +546 -0
  1494. package/vendor/zotero/modules/translators/SLUB Dresden.js +300 -0
  1495. package/vendor/zotero/modules/translators/SORA.js +340 -0
  1496. package/vendor/zotero/modules/translators/SSOAR.js +399 -0
  1497. package/vendor/zotero/modules/translators/SSRN.js +235 -0
  1498. package/vendor/zotero/modules/translators/SVT Nyheter.js +381 -0
  1499. package/vendor/zotero/modules/translators/Sacramento Bee.js +274 -0
  1500. package/vendor/zotero/modules/translators/Safari Books Online.js +391 -0
  1501. package/vendor/zotero/modules/translators/Scholars Portal Journals.js +220 -0
  1502. package/vendor/zotero/modules/translators/Scholia.js +189 -0
  1503. package/vendor/zotero/modules/translators/Schweizer Radio und Fernsehen SRF.js +152 -0
  1504. package/vendor/zotero/modules/translators/SciELO.js +440 -0
  1505. package/vendor/zotero/modules/translators/ScienceDirect.js +1304 -0
  1506. package/vendor/zotero/modules/translators/Scopus.js +418 -0
  1507. package/vendor/zotero/modules/translators/Semantic Scholar.js +513 -0
  1508. package/vendor/zotero/modules/translators/Silverchair.js +886 -0
  1509. package/vendor/zotero/modules/translators/Slate.js +228 -0
  1510. package/vendor/zotero/modules/translators/SlideShare.js +112 -0
  1511. package/vendor/zotero/modules/translators/Spiegel Online.js +343 -0
  1512. package/vendor/zotero/modules/translators/Springer Link.js +696 -0
  1513. package/vendor/zotero/modules/translators/Stack Exchange.js +134 -0
  1514. package/vendor/zotero/modules/translators/Standard Ebooks.js +198 -0
  1515. package/vendor/zotero/modules/translators/Stanford Encyclopedia of Philosophy.js +285 -0
  1516. package/vendor/zotero/modules/translators/Stanford University Press.js +343 -0
  1517. package/vendor/zotero/modules/translators/State Records Office of Western Australia.js +439 -0
  1518. package/vendor/zotero/modules/translators/Stitcher.js +141 -0
  1519. package/vendor/zotero/modules/translators/Store norske leksikon.js +291 -0
  1520. package/vendor/zotero/modules/translators/Stuff.co.nz.js +446 -0
  1521. package/vendor/zotero/modules/translators/Substack.js +237 -0
  1522. package/vendor/zotero/modules/translators/Sud Ouest.js +181 -0
  1523. package/vendor/zotero/modules/translators/Sueddeutsche.de.js +205 -0
  1524. package/vendor/zotero/modules/translators/Summon 2.js +117 -0
  1525. package/vendor/zotero/modules/translators/Superlib.js +647 -0
  1526. package/vendor/zotero/modules/translators/Svenska Dagbladet.js +274 -0
  1527. package/vendor/zotero/modules/translators/Sveriges radio.js +416 -0
  1528. package/vendor/zotero/modules/translators/TEI.js +648 -0
  1529. package/vendor/zotero/modules/translators/TV by the Numbers.js +194 -0
  1530. package/vendor/zotero/modules/translators/TVNZ.js +165 -0
  1531. package/vendor/zotero/modules/translators/Tagesspiegel.js +249 -0
  1532. package/vendor/zotero/modules/translators/Talis Aspire.js +316 -0
  1533. package/vendor/zotero/modules/translators/TalisPrism.js +445 -0
  1534. package/vendor/zotero/modules/translators/Tatknigafund.js +174 -0
  1535. package/vendor/zotero/modules/translators/Tatpressa.ru.js +121 -0
  1536. package/vendor/zotero/modules/translators/Taylor & Francis eBooks.js +334 -0
  1537. package/vendor/zotero/modules/translators/Taylor and Francis+NEJM.js +813 -0
  1538. package/vendor/zotero/modules/translators/Tesis Doctorals en Xarxa.js +233 -0
  1539. package/vendor/zotero/modules/translators/The Art Newspaper.js +268 -0
  1540. package/vendor/zotero/modules/translators/The Atlantic.js +535 -0
  1541. package/vendor/zotero/modules/translators/The Australian.js +105 -0
  1542. package/vendor/zotero/modules/translators/The Boston Globe.js +285 -0
  1543. package/vendor/zotero/modules/translators/The Chronicle of Higher Education.js +308 -0
  1544. package/vendor/zotero/modules/translators/The Daily Beast.js +183 -0
  1545. package/vendor/zotero/modules/translators/The Economic Times - The Times of India.js +305 -0
  1546. package/vendor/zotero/modules/translators/The Economic Times.js +191 -0
  1547. package/vendor/zotero/modules/translators/The Economist.js +207 -0
  1548. package/vendor/zotero/modules/translators/The Free Dictionary.js +58 -0
  1549. package/vendor/zotero/modules/translators/The Globe and Mail.js +241 -0
  1550. package/vendor/zotero/modules/translators/The Guardian.js +717 -0
  1551. package/vendor/zotero/modules/translators/The Hamilton Spectator.js +129 -0
  1552. package/vendor/zotero/modules/translators/The Hindu (old).js +128 -0
  1553. package/vendor/zotero/modules/translators/The Hindu.js +318 -0
  1554. package/vendor/zotero/modules/translators/The Independent.js +184 -0
  1555. package/vendor/zotero/modules/translators/The Intercept.js +258 -0
  1556. package/vendor/zotero/modules/translators/The Met.js +300 -0
  1557. package/vendor/zotero/modules/translators/The Microfinance Gateway.js +174 -0
  1558. package/vendor/zotero/modules/translators/The Nation.js +188 -0
  1559. package/vendor/zotero/modules/translators/The National Archives (UK).js +242 -0
  1560. package/vendor/zotero/modules/translators/The New Republic.js +160 -0
  1561. package/vendor/zotero/modules/translators/The New York Review of Books.js +467 -0
  1562. package/vendor/zotero/modules/translators/The New Yorker.js +360 -0
  1563. package/vendor/zotero/modules/translators/The Open Library.js +220 -0
  1564. package/vendor/zotero/modules/translators/The Straits Times.js +528 -0
  1565. package/vendor/zotero/modules/translators/The Telegraph.js +337 -0
  1566. package/vendor/zotero/modules/translators/The Times and Sunday Times.js +180 -0
  1567. package/vendor/zotero/modules/translators/The Times of Israel.js +151 -0
  1568. package/vendor/zotero/modules/translators/TheMarker.js +108 -0
  1569. package/vendor/zotero/modules/translators/Theory of Computing.js +488 -0
  1570. package/vendor/zotero/modules/translators/ThesesFR.js +350 -0
  1571. package/vendor/zotero/modules/translators/Thieme.js +326 -0
  1572. package/vendor/zotero/modules/translators/Time.com.js +557 -0
  1573. package/vendor/zotero/modules/translators/TimesMachine.js +222 -0
  1574. package/vendor/zotero/modules/translators/Tony Blair Institute for Global Change.js +195 -0
  1575. package/vendor/zotero/modules/translators/Toronto Star.js +331 -0
  1576. package/vendor/zotero/modules/translators/Transportation Research Board.js +253 -0
  1577. package/vendor/zotero/modules/translators/Treesearch.js +535 -0
  1578. package/vendor/zotero/modules/translators/Trove.js +616 -0
  1579. package/vendor/zotero/modules/translators/Tumblr.js +179 -0
  1580. package/vendor/zotero/modules/translators/Twitter.js +413 -0
  1581. package/vendor/zotero/modules/translators/UChicago VuFind.js +907 -0
  1582. package/vendor/zotero/modules/translators/UNZ Print Archive.js +276 -0
  1583. package/vendor/zotero/modules/translators/UPCommons.js +227 -0
  1584. package/vendor/zotero/modules/translators/US National Archives Research Catalog.js +275 -0
  1585. package/vendor/zotero/modules/translators/USENIX.js +151 -0
  1586. package/vendor/zotero/modules/translators/USgamer.js +120 -0
  1587. package/vendor/zotero/modules/translators/Ubiquity Journals.js +228 -0
  1588. package/vendor/zotero/modules/translators/University Press Scholarship.js +301 -0
  1589. package/vendor/zotero/modules/translators/University of California Press Books.js +403 -0
  1590. package/vendor/zotero/modules/translators/University of Chicago Press Books.js +378 -0
  1591. package/vendor/zotero/modules/translators/University of Wisconsin-Madison Libraries Catalog.js +298 -0
  1592. package/vendor/zotero/modules/translators/Unqualified Dublin Core RDF.js +153 -0
  1593. package/vendor/zotero/modules/translators/UpToDate References.js +203 -0
  1594. package/vendor/zotero/modules/translators/Vanity Fair.js +242 -0
  1595. package/vendor/zotero/modules/translators/Verniana-Jules Verne Studies.js +190 -0
  1596. package/vendor/zotero/modules/translators/Verso Books.js +311 -0
  1597. package/vendor/zotero/modules/translators/Vice.js +445 -0
  1598. package/vendor/zotero/modules/translators/Victoria & Albert Museum.js +277 -0
  1599. package/vendor/zotero/modules/translators/Vimeo.js +188 -0
  1600. package/vendor/zotero/modules/translators/VoxEU.js +151 -0
  1601. package/vendor/zotero/modules/translators/WHO.js +458 -0
  1602. package/vendor/zotero/modules/translators/WIPO.js +189 -0
  1603. package/vendor/zotero/modules/translators/Wall Street Journal.js +525 -0
  1604. package/vendor/zotero/modules/translators/Wanfang Data.js +310 -0
  1605. package/vendor/zotero/modules/translators/Washington Monthly.js +195 -0
  1606. package/vendor/zotero/modules/translators/Washington Post.js +447 -0
  1607. package/vendor/zotero/modules/translators/Web of Science Nextgen.js +832 -0
  1608. package/vendor/zotero/modules/translators/Web of Science Tagged.js +1247 -0
  1609. package/vendor/zotero/modules/translators/Web of Science.js +228 -0
  1610. package/vendor/zotero/modules/translators/Welt Online.js +161 -0
  1611. package/vendor/zotero/modules/translators/WestLaw UK.js +190 -0
  1612. package/vendor/zotero/modules/translators/WikiLeaks PlusD.js +182 -0
  1613. package/vendor/zotero/modules/translators/Wikidata QuickStatements.js +324 -0
  1614. package/vendor/zotero/modules/translators/Wikidata.js +911 -0
  1615. package/vendor/zotero/modules/translators/Wikimedia Commons.js +285 -0
  1616. package/vendor/zotero/modules/translators/Wikipedia Citation Templates.js +432 -0
  1617. package/vendor/zotero/modules/translators/Wikipedia.js +385 -0
  1618. package/vendor/zotero/modules/translators/Wikisource.js +399 -0
  1619. package/vendor/zotero/modules/translators/Wikiwand.js +122 -0
  1620. package/vendor/zotero/modules/translators/Wiktionary.js +141 -0
  1621. package/vendor/zotero/modules/translators/Wildlife Biology in Practice.js +172 -0
  1622. package/vendor/zotero/modules/translators/Wiley Online Library.js +1412 -0
  1623. package/vendor/zotero/modules/translators/Wilson Center Digital Archive.js +321 -0
  1624. package/vendor/zotero/modules/translators/Winnipeg Free Press.js +204 -0
  1625. package/vendor/zotero/modules/translators/Wired.js +249 -0
  1626. package/vendor/zotero/modules/translators/Womennews.js +230 -0
  1627. package/vendor/zotero/modules/translators/World Digital Library.js +403 -0
  1628. package/vendor/zotero/modules/translators/World History Connected.js +185 -0
  1629. package/vendor/zotero/modules/translators/World Shakespeare Bibliography Online.js +595 -0
  1630. package/vendor/zotero/modules/translators/XML ContextObject.js +274 -0
  1631. package/vendor/zotero/modules/translators/YPSF.js +224 -0
  1632. package/vendor/zotero/modules/translators/Yandex Books.js +265 -0
  1633. package/vendor/zotero/modules/translators/Ynet.js +171 -0
  1634. package/vendor/zotero/modules/translators/YouTube.js +209 -0
  1635. package/vendor/zotero/modules/translators/ZIPonline.js +267 -0
  1636. package/vendor/zotero/modules/translators/ZOBODAT.js +341 -0
  1637. package/vendor/zotero/modules/translators/Zotero RDF.js +583 -0
  1638. package/vendor/zotero/modules/translators/ZoteroBib.js +94 -0
  1639. package/vendor/zotero/modules/translators/arXiv.org.js +1099 -0
  1640. package/vendor/zotero/modules/translators/artnet.js +207 -0
  1641. package/vendor/zotero/modules/translators/beck-online.js +1339 -0
  1642. package/vendor/zotero/modules/translators/clinicaltrials.gov.js +331 -0
  1643. package/vendor/zotero/modules/translators/dLibra.js +367 -0
  1644. package/vendor/zotero/modules/translators/dejure.org.js +242 -0
  1645. package/vendor/zotero/modules/translators/dhistory.js +103 -0
  1646. package/vendor/zotero/modules/translators/digibib.net.js +245 -0
  1647. package/vendor/zotero/modules/translators/eLibrary.ru.js +867 -0
  1648. package/vendor/zotero/modules/translators/eLife.js +462 -0
  1649. package/vendor/zotero/modules/translators/eMJA.js +246 -0
  1650. package/vendor/zotero/modules/translators/eMedicine.js +123 -0
  1651. package/vendor/zotero/modules/translators/ePrint IACR.js +608 -0
  1652. package/vendor/zotero/modules/translators/ebrary.js +140 -0
  1653. package/vendor/zotero/modules/translators/etatar.ru.js +104 -0
  1654. package/vendor/zotero/modules/translators/feb-web.ru.js +167 -0
  1655. package/vendor/zotero/modules/translators/fishpond.co.nz.js +224 -0
  1656. package/vendor/zotero/modules/translators/fr-online.de.js +209 -0
  1657. package/vendor/zotero/modules/translators/govinfo.js +189 -0
  1658. package/vendor/zotero/modules/translators/informIT database.js +248 -0
  1659. package/vendor/zotero/modules/translators/io-port.js +68 -0
  1660. package/vendor/zotero/modules/translators/jmlr.js +299 -0
  1661. package/vendor/zotero/modules/translators/jurion.js +377 -0
  1662. package/vendor/zotero/modules/translators/mEDRA.js +597 -0
  1663. package/vendor/zotero/modules/translators/magazines.russ.ru.js +120 -0
  1664. package/vendor/zotero/modules/translators/medes.js +284 -0
  1665. package/vendor/zotero/modules/translators/newshub.co.nz.js +206 -0
  1666. package/vendor/zotero/modules/translators/newspapers.com.js +335 -0
  1667. package/vendor/zotero/modules/translators/openJur.js +161 -0
  1668. package/vendor/zotero/modules/translators/reddit.js +275 -0
  1669. package/vendor/zotero/modules/translators/sbn.it.js +186 -0
  1670. package/vendor/zotero/modules/translators/scinapse.js +273 -0
  1671. package/vendor/zotero/modules/translators/semantics Visual Library.js +643 -0
  1672. package/vendor/zotero/modules/translators/taz.de.js +200 -0
  1673. package/vendor/zotero/modules/translators/unAPI.js +481 -0
  1674. package/vendor/zotero/modules/translators/washingtonpost.com.js +257 -0
  1675. package/vendor/zotero/modules/translators/wiso.js +314 -0
  1676. package/vendor/zotero/modules/translators/zbMATH.js +278 -0
  1677. package/vendor/zotero/modules/translators/zotero.org.js +311 -0
  1678. package/vendor/zotero/modules/utilities/README.md +25 -0
  1679. package/vendor/zotero/modules/utilities/cachedTypes.js +193 -0
  1680. package/vendor/zotero/modules/utilities/date.js +958 -0
  1681. package/vendor/zotero/modules/utilities/openurl.js +458 -0
  1682. package/vendor/zotero/modules/utilities/resource/README.md +4 -0
  1683. package/vendor/zotero/modules/utilities/resource/dateFormats.json +1322 -0
  1684. package/vendor/zotero/modules/utilities/resource/schema/global/README.md +15 -0
  1685. package/vendor/zotero/modules/utilities/resource/schema/global/schema.json +12072 -0
  1686. package/vendor/zotero/modules/utilities/resource/zoteroTypeSchemaData.js +5 -0
  1687. package/vendor/zotero/modules/utilities/schema.js +65 -0
  1688. package/vendor/zotero/modules/utilities/utilities.js +1841 -0
  1689. package/vendor/zotero/modules/utilities/utilities_item.js +1082 -0
  1690. package/vendor/zotero/modules/utilities/xregexp-all.js +4652 -0
  1691. package/vendor/zotero/modules/utilities/xregexp-unicode-zotero.js +58 -0
  1692. package/vendor/zotero/modules/zotero-schema/README.md +15 -0
  1693. package/vendor/zotero/modules/zotero-schema/schema.json +12072 -0
  1694. package/vendor/zotero/package-lock.json +4332 -0
  1695. package/vendor/zotero/package.json +44 -0
  1696. package/vendor/zotero/spec.yaml +142 -0
  1697. package/vendor/zotero/src/args.js +43 -0
  1698. package/vendor/zotero/src/cors.js +28 -0
  1699. package/vendor/zotero/src/debug.js +189 -0
  1700. package/vendor/zotero/src/exportEndpoint.js +97 -0
  1701. package/vendor/zotero/src/formats.js +43 -0
  1702. package/vendor/zotero/src/http.js +478 -0
  1703. package/vendor/zotero/src/importEndpoint.js +54 -0
  1704. package/vendor/zotero/src/lambda.js +75 -0
  1705. package/vendor/zotero/src/proxy.js +356 -0
  1706. package/vendor/zotero/src/searchEndpoint.js +97 -0
  1707. package/vendor/zotero/src/server.js +85 -0
  1708. package/vendor/zotero/src/specEndpoint.js +135 -0
  1709. package/vendor/zotero/src/testEndpoint.js +50 -0
  1710. package/vendor/zotero/src/textSearch.js +527 -0
  1711. package/vendor/zotero/src/translation/sandboxManager.js +109 -0
  1712. package/vendor/zotero/src/translation/translate.js +101 -0
  1713. package/vendor/zotero/src/translation/translate_item.js +88 -0
  1714. package/vendor/zotero/src/translators.js +264 -0
  1715. package/vendor/zotero/src/utilities.js +49 -0
  1716. package/vendor/zotero/src/webEndpoint.js +113 -0
  1717. package/vendor/zotero/src/webSession.js +476 -0
  1718. package/vendor/zotero/src/zotero.js +117 -0
  1719. package/vendor/zotero/translate_export +10 -0
  1720. package/vendor/zotero/translate_search +9 -0
  1721. package/vendor/zotero/translate_url +9 -0
  1722. package/vendor/zotero/translate_url_multiple +9 -0
  1723. package/vendor/zotero/translate_url_single +9 -0
@@ -0,0 +1,3433 @@
1
+ {
2
+ "translatorID": "eb876bd2-644c-458e-8d05-bf54b10176f3",
3
+ "label": "Wanfang Data",
4
+ "creator": "Ace Strong, rnicrosoft, Xingzhong Lin, jiaojiaodubai",
5
+ "target": "^https?://(d|s|sns|c)\\.wanfangdata\\.com\\.cn",
6
+ "minVersion": "2.0rc1",
7
+ "maxVersion": "",
8
+ "priority": 100,
9
+ "inRepository": true,
10
+ "translatorType": 4,
11
+ "browserSupport": "gcsibv",
12
+ "lastUpdated": "2025-12-06 01:59:00"
13
+ }
14
+
15
+ /*
16
+ ***** BEGIN LICENSE BLOCK *****
17
+
18
+ Copyright © 2014 jiaojiaodubai<jiaojiaodubai23@gmial.com>
19
+
20
+ This file is part of Zotero.
21
+
22
+ Zotero is free software: you can redistribute it and/or modify
23
+ it under the terms of the GNU Affero General Public License as published by
24
+ the Free Software Foundation, either version 3 of the License, or
25
+ (at your option) any later version.
26
+
27
+ Zotero is distributed in the hope that it will be useful,
28
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
29
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30
+ GNU Affero General Public License for more details.
31
+
32
+ You should have received a copy of the GNU Affero General Public License
33
+ along with Zotero. If not, see <http://www.gnu.org/licenses/>.
34
+
35
+ ***** END LICENSE BLOCK *****
36
+ */
37
+
38
+ const typeMap = {
39
+ periodical: {
40
+ attachmentType: 'perio',
41
+ itemType: 'journalArticle'
42
+ },
43
+ thesis: {
44
+ attachmentType: 'degree',
45
+ itemType: 'thesis'
46
+ },
47
+ conference: {
48
+ attachmentType: 'conference',
49
+ itemType: 'conferencePaper'
50
+ },
51
+ patent: {
52
+ attachmentType: 'patent',
53
+ itemType: 'patent'
54
+ },
55
+ nstr: {
56
+ // 不支持下载
57
+ itemType: 'report'
58
+ },
59
+ cstad: {
60
+ // 不支持下载
61
+ itemType: 'report'
62
+ },
63
+ standard: {
64
+ attachmentType: 'standard',
65
+ itemType: 'standard'
66
+ },
67
+ claw: {
68
+ attachmentType: 'legislations',
69
+ itemType: 'statute'
70
+ }
71
+ };
72
+
73
+ function detectWeb(doc, url) {
74
+ const dynamic = doc.querySelector('#app, .container-flex, .periodical');
75
+ if (dynamic) {
76
+ Z.monitorDOMChanges(dynamic, { childList: true, subtree: true });
77
+ }
78
+ for (const key in typeMap) {
79
+ if (new RegExp(`/${key}/`, 'i').test(url)) {
80
+ return typeMap[key].itemType;
81
+ }
82
+ }
83
+ if (getSearchResults(doc, true)) {
84
+ return 'multiple';
85
+ }
86
+ return false;
87
+ }
88
+
89
+ function getSearchResults(doc, checkOnly) {
90
+ const items = {};
91
+ let found = false;
92
+ // search results
93
+ if (doc.querySelector('.result-list-container')) {
94
+ const rows = doc.querySelectorAll('div.normal-list');
95
+ for (const row of rows) {
96
+ const title = text(row, '.title');
97
+ const hiddenId = text(row, 'span.title-id-hidden');
98
+ const [type, id] = hiddenId.split('_');
99
+ if (!title || !hiddenId) continue;
100
+ if (checkOnly) return true;
101
+ found = true;
102
+ items[JSON.stringify({
103
+ type,
104
+ id
105
+ })] = title;
106
+ }
107
+ }
108
+ // journal navigation
109
+ else if (doc.querySelector('wf-article-list')) {
110
+ const rows = doc.querySelectorAll('wf-article-list > wf-article-item');
111
+ for (const row of rows) {
112
+ const title = attr(row, 'input', 'value');
113
+ const id = attr(row, 'input', 'docuid');
114
+ if (!title || !id) continue;
115
+ if (checkOnly) return true;
116
+ found = true;
117
+ items[JSON.stringify({
118
+ type: 'periodical',
119
+ id
120
+ })] = title;
121
+ }
122
+ }
123
+ // cstr navigation
124
+ else if (doc.querySelector('.ivu-table')) {
125
+ const rows = doc.querySelectorAll('.ivu-table-row');
126
+ for (const row of rows) {
127
+ const title = text(row, '.title-link');
128
+ const href = attr(row, '.title-link', 'href');
129
+ const { id } = getUrlParam(href);
130
+ if (!title || !id) continue;
131
+ if (checkOnly) return true;
132
+ found = true;
133
+ items[JSON.stringify({
134
+ type: 'nstr',
135
+ id
136
+ })] = title;
137
+ }
138
+ }
139
+ return found ? items : false;
140
+ }
141
+
142
+ async function doWeb(doc, url) {
143
+ if (detectWeb(doc, url) === 'multiple') {
144
+ const items = await Zotero.selectItems(getSearchResults(doc, false));
145
+ if (!items) return;
146
+ for (const key in items) {
147
+ const { type, id } = JSON.parse(key);
148
+ await scrapeExportApi(type, id);
149
+ }
150
+ }
151
+ else {
152
+ const pathParts = new URL(attr(doc, 'meta[property="og\\:url"]', 'content')).pathname.split('/');
153
+ const type = pathParts[1].toLowerCase();
154
+ const id = pathParts[2];
155
+ try {
156
+ // throw new Error('debug');
157
+ if (type === 'standard') {
158
+ throw new Error('for standard, it is better to scrape data from webpage');
159
+ }
160
+ await scrapeDetilApi(type, id);
161
+ }
162
+ catch (error) {
163
+ Z.debug(error);
164
+ await scrapePage(doc, type, id);
165
+ }
166
+ }
167
+ }
168
+
169
+ async function scrapePage(doc, type, id) {
170
+ const data = getLabeledData(
171
+ doc.querySelectorAll('.detailList .list'),
172
+ row => text(row, '.item').slice(0, -1),
173
+ row => row.querySelector('.item+*'),
174
+ doc.createElement('div')
175
+ );
176
+ const extra = new Extra();
177
+ const newItem = new Zotero.Item(typeMap[type].itemType);
178
+ const titleElm = doc.querySelector('.detailTitleCN').cloneNode(true);
179
+ const icon = titleElm.querySelector('.miner');
180
+ if (icon) {
181
+ icon.remove();
182
+ }
183
+ newItem.title = ZU.trimInternal(titleElm.textContent);
184
+ extra.set('original-title', ZU.capitalizeTitle(text(doc, '.detailTitleEN')), true);
185
+ newItem.abstractNote = ZU.trimInternal(text(doc, '.summary > .item+*'));
186
+ doc.querySelectorAll('.author.detailTitle > .itemUrl > a').forEach((elm) => {
187
+ newItem.creators.push(cleanAuthor(elm.innerText.replace(/[\s\d,]*$/, ''), 'author'));
188
+ });
189
+ newItem.language = {
190
+ eng: 'en-US',
191
+ chi: 'zh-CN'
192
+ }[data('语种')] || 'zh-CN';
193
+ switch (newItem.itemType) {
194
+ case 'journalArticle': {
195
+ const pubInfo = text(doc, '.publishData > .item+*');
196
+ newItem.date = tryMatch(pubInfo, /^\d{4}/);
197
+ newItem.volume = tryMatch(pubInfo, /,0*(\d+)\(/, 1);
198
+ newItem.issue = tryMatch(pubInfo, /\((.+?)\)/, 1).replace(/0*(\d+)/, '$1');
199
+ newItem.publicationTitle = text(doc, '.periodicalName').replace(/\(([^)]+)\)$/, '($1)');
200
+ newItem.pages = tryMatch(data('页数'), /\((.+)\)/, 1)
201
+ .replace(/\b0*(\d+)/, '$1')
202
+ .replace(/\+/g, ',')
203
+ .replace(/~/g, '-');
204
+ newItem.DOI = ZU.cleanDOI(text(doc, '.doiStyle > a'));
205
+ newItem.ISSN = ZU.cleanISSN(text(doc, '.periodicalDataItem'));
206
+ break;
207
+ }
208
+ case 'thesis':
209
+ newItem.thesisType = `${text(doc, '.degree > .itemUrl')}学位论文`;
210
+ newItem.university = text(doc, '.detailOrganization');
211
+ doc.querySelectorAll('.tutor > .itemUrl > a').forEach((element) => {
212
+ newItem.creators.push(cleanAuthor(element.innerText, 'contributor'));
213
+ });
214
+ newItem.date = tryMatch(text(doc, '.thesisYear'), /\d+/);
215
+ extra.set('major', text(doc, '.major > .itemUrl'));
216
+ break;
217
+ case 'conferencePaper':
218
+ newItem.date = text(doc, '.meetingDate > .itemUrl');
219
+ newItem.proceedingsTitle = text(doc, '.mettingCorpus > .itemUrl');
220
+ newItem.conferenceName = data('会议名称');
221
+ newItem.place = text(doc, '.meetingArea > .itemUrl');
222
+ newItem.pages = text(doc, '.pageNum > .itemUrl');
223
+ extra.set('organizer', text(doc, '.sponsor > .itemUrl'), true);
224
+ break;
225
+ case 'patent':
226
+ data('发明/设计人', true).querySelectorAll('a').forEach((elemant) => {
227
+ newItem.creators.push(cleanAuthor(elemant.innerText, 'inventor'));
228
+ });
229
+ data('代理人', true).querySelectorAll('.multi-sep').forEach((elemant) => {
230
+ newItem.creators.push(cleanAuthor(elemant.innerText, 'attorneyAgent'));
231
+ });
232
+ newItem.patentNumber = text(doc, '.publicationNo > .itemUrl a') || tryMatch(text(doc, '.publicationNo > .itemUrl'), /\w+/);
233
+ newItem.applicationNumber = text(doc, '.patentCode > .itemUrl');
234
+ newItem.country = newItem.place = patentCountry(newItem.patentNumber || newItem.applicationNumber);
235
+ newItem.assignee = data('申请/专利权人');
236
+ newItem.filingDate = data('申请日期');
237
+ newItem.priorityNumbers = data('优先权');
238
+ newItem.issueDate = data('公开/公告日');
239
+ newItem.legalStatus = text(doc, '.periodicalContent .messageTime > span:last-child');
240
+ newItem.rights = text(doc, '.signoryItem > .itemUrl');
241
+ extra.set('genre', text(doc, '.patentType > .itemUrl'), true);
242
+ break;
243
+ case 'report':
244
+ newItem.institution = text(doc, '.organization > .itemUrl');
245
+ if (type === 'nstr') {
246
+ newItem.reportType = {
247
+ 'en-US': 'Science and technology report',
248
+ 'zh-CN': '科技报告'
249
+ }[newItem.language];
250
+ newItem.date = text(doc, '.preparationTime > .itemUrl');
251
+ newItem.archiveLocation = text(doc, '.libNum > .itemUrl');
252
+ }
253
+ else if (type === 'cstad') {
254
+ newItem.abstractNote = text(doc, '.abstract > .itemUrl');
255
+ newItem.reportType = {
256
+ 'en-US': 'Achievement report',
257
+ 'zh-CN': '成果报告'
258
+ }[newItem.language];
259
+ newItem.reportNumber = text(doc, '.id > .itemUrl');
260
+ newItem.date = text(doc, '.publishYear > .itemUrl');
261
+ extra.set('project', text(doc, '.projectName > .itemUrl'));
262
+ doc.querySelectorAll('.creator.list .multi-sep').forEach((elm) => {
263
+ newItem.creators.push(cleanAuthor(elm.innerText));
264
+ });
265
+ }
266
+ break;
267
+ case 'standard':
268
+ newItem.title = text(doc, '.detailTitleCN').replace(/(\p{Unified_Ideograph})\s+(\p{Unified_Ideograph})/u, '$1 $2');
269
+ newItem.number = text(doc, '.standardId > .itemUrl').replace('-', '—');
270
+ newItem.date = text(doc, '.issueDate > .itemUrl');
271
+ newItem.publisher = data('出版单位');
272
+ newItem.status = text(doc, '.status > .itemUrl');
273
+ extra.set('CCS', text(doc, '.ccsCode > .itemUrl'));
274
+ extra.set('ICS', text(doc, '.ICSCode > .itemUrl'));
275
+ extra.set('applyDate', text(doc, '.applyDate > .itemUrl'));
276
+ extra.set('substitute', text(doc, '.newStandard > .itemUrl'));
277
+ extra.set('reference', text(doc, '.citeStandard > .itemKeyword'));
278
+ extra.set('adopted', text(doc, '.adoptStandard > .itemUrl'));
279
+ newItem.creators.push(cleanAuthor(text(doc, '.technicalCommittee > .itemUrl').replace(/\(.+?\)$/, '')));
280
+ break;
281
+ case 'statute':
282
+ if (/(\d{4}.*)$/.test(newItem.title)) {
283
+ extra.set('edition', tryMatch(newItem.title, /((\d{4}.*))$/, 1), true);
284
+ newItem.title = tryMatch(newItem.title, /(^.+)(.+?)$/, 1);
285
+ }
286
+ if (newItem.title.startsWith('中华人民共和国')) {
287
+ newItem.shortTitle = newItem.title.substring(7);
288
+ }
289
+ newItem.publicLawNumber = text(doc, '.issueNumber > .itemUrl');
290
+ newItem.dateEnacted = text(doc, '.issueDate > .itemUrl');
291
+ if (!text(doc, '.effectLevel > .itemUrl').includes('法律')) {
292
+ extra.set('type', 'regulation', true);
293
+ }
294
+ if (text(doc, '.effect > .itemUrl') === '失效') {
295
+ extra.set('status', '已废止', true);
296
+ }
297
+ extra.set('applyDate', text(doc, '.applyDate > .itemUrl'));
298
+ text(doc, '.issueUnit > .itemUrl').split(/[;,;、]\s?/).forEach(string => newItem.creators.push(cleanAuthor(string)));
299
+ break;
300
+ }
301
+ newItem.url = `https://d.wanfangdata.com.cn/${type}/${id}`;
302
+ extra.set('CLC', text(doc, '.classify > .itemUrl, .classCodeMapping > .itemUrl'));
303
+ doc.querySelectorAll('.keyword > .item+* > a, .keywordEN > .item+* > a').forEach((elm) => {
304
+ newItem.tags.push(elm.innerText);
305
+ });
306
+ const attachmentType = typeMap[type].attachmentType;
307
+ if (attachmentType) {
308
+ newItem.attachments.push({
309
+ url: encodeURI('https://oss.wanfangdata.com.cn/www/'
310
+ + `${doc.title}.ashx?`
311
+ + `&type=${attachmentType}`
312
+ + `&resourceId=${id}`),
313
+ title: 'Full Text PDF',
314
+ mimeType: 'application/pdf'
315
+ });
316
+ }
317
+ newItem.extra = extra.toString();
318
+ newItem.complete();
319
+ }
320
+
321
+ function getLabeledData(rows, labelGetter, dataGetter, defaultElm) {
322
+ const labeledElm = {};
323
+ for (const row of rows) {
324
+ labeledElm[labelGetter(row, rows)] = dataGetter(row, rows);
325
+ }
326
+ const data = (labels, element = false) => {
327
+ if (Array.isArray(labels)) {
328
+ for (const label of labels) {
329
+ const result = data(label, element);
330
+ if (
331
+ (element && /\S/.test(result.textContent))
332
+ || (!element && /\S/.test(result))) {
333
+ return result;
334
+ }
335
+ }
336
+ return element ? defaultElm : '';
337
+ }
338
+ const targetElm = labeledElm[labels];
339
+ return targetElm
340
+ ? element ? targetElm : ZU.trimInternal(targetElm.textContent)
341
+ : element ? defaultElm : '';
342
+ };
343
+ return data;
344
+ }
345
+
346
+ async function scrapeDetilApi(type, id) {
347
+ const reqMassage = DetailInfoRequest.create({
348
+ resourcetype: type.charAt(0).toUpperCase() + type.substring(1),
349
+ id: id
350
+ });
351
+ const decoder = new TextDecoder();
352
+ const reqBuffer = prependHead(DetailInfoRequest.encode(reqMassage).finish());
353
+ const respond = await request('/Detail.DetailService/getDetailInFormation', {
354
+ method: 'POST',
355
+ body: decoder.decode(reqBuffer),
356
+ headers: {
357
+ 'Content-Type': 'application/grpc-web+proto',
358
+ Referer: `https://d.wanfangdata.com.cn/${type}/${id}`
359
+ },
360
+ // responseType: 'arraybuffer',
361
+ responseCharset: 'x-user-defined'
362
+ });
363
+ const headLength = 5;
364
+ // https://groups.google.com/g/zotero-dev/c/gjfM2QK08p4
365
+ const resBuffer = new Uint8Array(respond.body.length - headLength);
366
+ for (let x = 0; x < respond.body.length; x++) {
367
+ resBuffer[x] = respond.body.charCodeAt(x + headLength) & 0xff;
368
+ }
369
+ const resObject = DetailResponse.toObject(DetailResponse.decode(resBuffer), { defaults: true });
370
+ parseJson(resObject.detail[0][type === 'cstad' ? 'cstadt' : type], type, id);
371
+ }
372
+
373
+ async function scrapeExportApi(type, id) {
374
+ const reqMsg = ExportRequest.create({ hiddenid: `${type}_${id}` });
375
+ const reqBuffer = prependHead(ExportRequest.encode(reqMsg).finish());
376
+ const decoder = new TextDecoder('utf-8');
377
+ const respond = await request('https://s.wanfangdata.com.cn/WwwService.ExportService/export', {
378
+ method: 'POST',
379
+ body: decoder.decode(reqBuffer),
380
+ headers: {
381
+ 'Content-Type': 'application/grpc-web+proto'
382
+ },
383
+ responseCharset: 'x-user-defined'
384
+ });
385
+ // https://groups.google.com/g/zotero-dev/c/gjfM2QK08p4
386
+ const resBuffer = new Uint8Array(respond.body.length);
387
+ for (let i = 0; i < respond.body.length; i++) {
388
+ resBuffer[i] = respond.body.charCodeAt(i) & 0xff;
389
+ }
390
+ const head = resBuffer.slice(0, 5);
391
+ let hexStrHead = '';
392
+ for (let i = 0; i < head.length; i++) {
393
+ hexStrHead += head[i].toString(16).padStart(2, '0');
394
+ }
395
+ const pbLength = parseInt(hexStrHead, 16);
396
+ const targetBuffer = resBuffer.slice(5, 5 + pbLength);
397
+ const resObject = ExportResponse.toObject(ExportResponse.decode(targetBuffer), { defaults: true });
398
+ parseJson(resObject.resourceList[0][type === 'cstad' ? 'cstadt' : type], type, id);
399
+ }
400
+
401
+ function prependHead(body) {
402
+ let length = body.length;
403
+ const head = new Uint8Array(5);
404
+ for (let i = 0; i < 5; ++i) {
405
+ head[4 - i] = length & 0xff;
406
+ length >>= 8;
407
+ }
408
+ const fullBuffer = new Uint8Array(head.length + body.length);
409
+ fullBuffer.set(head, 0);
410
+ fullBuffer.set(body, head.length);
411
+ return fullBuffer;
412
+ }
413
+
414
+ function parseJson(json, type, id) {
415
+ const extra = new Extra();
416
+ const newItem = new Z.Item(typeMap[type].itemType);
417
+ newItem.title = json.titleList[0];
418
+ extra.set('original-title', ZU.capitalizeTitle(json.titleList[1] || ''), true);
419
+ newItem.abstractNote = ZU.trimInternal(json.abstractList[0] || '');
420
+ newItem.language = {
421
+ eng: 'en-US',
422
+ chi: 'zh-CN'
423
+ }[json.language] || 'zh-CN';
424
+ switch (newItem.itemType) {
425
+ case 'journalArticle': {
426
+ newItem.publicationTitle = json.periodicaltitleList[0].replace(/\(([^)]+)\)$/, '($1)');
427
+ extra.set('original-container-title', json.periodicaltitleList[1], true);
428
+ newItem.volume = json.volum;
429
+ newItem.issue = json.issue;
430
+ newItem.pages = json.page;
431
+ newItem.date = ZU.strToISO(json.publishdate || '');
432
+ newItem.ISSN = json.issn;
433
+ extra.set('fund', json.fundList.join(', '));
434
+ const creators = [];
435
+ for (let i = 0; i < json.creatorList.length; i++) {
436
+ const creator = cleanAuthor(json.creatorList[i]);
437
+ newItem.creators.push(JSON.parse(JSON.stringify(creator)));
438
+ if (json.foreigncreatorList[i]) {
439
+ const enCreator = cleanAuthor(ZU.capitalizeName(json.foreigncreatorList[i]));
440
+ const enCreatorStr = `${enCreator.firstName} || ${enCreator.lastName}`;
441
+ creator.original = enCreatorStr;
442
+ extra.push('original-creator', enCreatorStr, true);
443
+ }
444
+ creators.push(creator);
445
+ }
446
+ if (creators.some(creator => creator.original)) {
447
+ extra.set('creatorsExt', JSON.stringify(creators));
448
+ }
449
+ break;
450
+ }
451
+ case 'thesis':
452
+ newItem.thesisType = `${json.degree}学位论文`;
453
+ newItem.date = ZU.strToISO(json.publishdate || '');
454
+ newItem.university = json.organizationnewList[0];
455
+ newItem.numPages = json.pageno;
456
+ json.creatorList.forEach(name => newItem.creators.push(cleanAuthor(name)));
457
+ json.tutorList.forEach(name => newItem.creators.push(cleanAuthor(name, 'contributor')));
458
+ extra.set('major', json.major);
459
+ break;
460
+ case 'conferencePaper':
461
+ newItem.date = ZU.strToISO(json.publishdate || '');
462
+ newItem.proceedingsTitle = json.meetingcorpus;
463
+ newItem.conferenceName = json.meetingtitleList[0];
464
+ newItem.place = json.meetingarea;
465
+ newItem.pages = json.page;
466
+ json.creatorList.forEach(name => newItem.creators.push(cleanAuthor(name)));
467
+ break;
468
+ case 'patent':
469
+ newItem.patentNumber = json.publicationno;
470
+ newItem.applicationNumber = json.patentcode;
471
+ newItem.place = newItem.country = patentCountry(newItem.patentNumber || newItem.applicationNumber);
472
+ newItem.assignee = json.applicantList.join(', ');
473
+ newItem.filingDate = ZU.strToISO(json.applicationdate);
474
+ if (json.priorityList) {
475
+ newItem.priorityNumbers = json.priorityList.join(', ');
476
+ }
477
+ newItem.issueDate = ZU.strToISO(json.publicationdate);
478
+ newItem.legalStatus = json.legalstatus;
479
+ extra.set('genre', json.patenttype, true);
480
+ json.inventorList.forEach(name => newItem.creators.push(cleanAuthor(name, 'inventor')));
481
+ json.agent.split('%').forEach(name => newItem.creators.push(cleanAuthor(name, 'attorneyAgent')));
482
+ break;
483
+ case 'report':
484
+ if (type === 'nstr') {
485
+ newItem.reportType = {
486
+ 'en-US': 'Science and technology report',
487
+ 'zh-CN': '科技报告'
488
+ }[newItem.language];
489
+ newItem.reportNumber = json.id;
490
+ newItem.place = json.area;
491
+ newItem.institution = json.organizationList.join(', ');
492
+ newItem.date = ZU.strToISO(json.publishdate);
493
+ extra.set('project', json.projectname);
494
+ json.creatorList.forEach(name => newItem.creators.push(cleanAuthor(name)));
495
+ }
496
+ else if (type === 'cstad') {
497
+ newItem.date = ZU.strToISO(json.publishdate);
498
+ newItem.reportType = {
499
+ 'en-US': 'Achievement report',
500
+ 'zh-CN': '成果报告'
501
+ }[newItem.language];
502
+ extra.set('fund', json.page);
503
+ json.creatorList.forEach(name => newItem.creators.push(cleanAuthor(name)));
504
+ }
505
+ break;
506
+ case 'standard':
507
+ newItem.title = json.titleList[0].replace(/([\u4e00-\u9fff])\s+([\u4e00-\u9fff])/, '$1 $2');
508
+ newItem.number = json.standardno;
509
+ newItem.date = ZU.strToISO(json.publishdate);
510
+ newItem.publisher = json.sourcedbList[0];
511
+ newItem.status = json.status;
512
+ extra.set('CCS', json.ccscodeList.at(-1));
513
+ extra.set('CCS', json.icscodeList.at(-1));
514
+ // Viewing paid fields requires sending a request with transaction information, but simulating transactions is difficult
515
+ extra.set('applyDate', ZU.strToISO(json.applydate || ''));
516
+ break;
517
+ case 'statute':
518
+ if (/(\d{4}.*)$/.test(newItem.title)) {
519
+ extra.set('edition', tryMatch(newItem.title, /((\d{4}.*))$/, 1), true);
520
+ newItem.title = tryMatch(newItem.title, /(^.+)(.+?)$/, 1);
521
+ }
522
+ if (newItem.title.startsWith('中华人民共和国')) {
523
+ newItem.shortTitle = newItem.title.substring(7);
524
+ }
525
+ newItem.publicLawNumber = json.issuenumber;
526
+ newItem.dateEnacted = ZU.strToISO(json.issuedate || '');
527
+ if (json.effectlevel.includes('法律')) {
528
+ extra.set('type', 'regulation', true);
529
+ }
530
+ if (json.effect === '失效') {
531
+ extra.set('status', '已废止', true);
532
+ }
533
+ extra.set('applyDate', json.applydate);
534
+ json.issueunitList.forEach(name => newItem.creators.push(cleanAuthor(name)));
535
+ break;
536
+ }
537
+ if (ZU.fieldIsValidForType('DOI', newItem.itemType)) {
538
+ newItem.DOI = json.doi;
539
+ }
540
+ else {
541
+ extra.set('DOI', json.doi, true);
542
+ }
543
+ newItem.url = `https://d.wanfangdata.com.cn/${type}/${id}`;
544
+ extra.set('citation', json.citedcount);
545
+ json.classcodeList && extra.set('CLC', json.classcodeList.join(', '));
546
+ newItem.tags = json.keywordsList;
547
+ if (json.hasfulltext) {
548
+ newItem.attachments.push({
549
+ url: json.fulltextpath,
550
+ title: 'Full Text PDF',
551
+ mimeType: 'application/pdf'
552
+ });
553
+ }
554
+ newItem.extra = extra.toString();
555
+ newItem.complete();
556
+ }
557
+
558
+ class Extra {
559
+ constructor() {
560
+ this.fields = [];
561
+ }
562
+
563
+ push(key, val, csl = false) {
564
+ this.fields.push({ key: key, val: val, csl: csl });
565
+ }
566
+
567
+ set(key, val, csl = false) {
568
+ let target = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key));
569
+ if (target) {
570
+ target.val = val;
571
+ }
572
+ else {
573
+ this.push(key, val, csl);
574
+ }
575
+ }
576
+
577
+ get(key) {
578
+ let result = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key));
579
+ return result
580
+ ? result.val
581
+ : undefined;
582
+ }
583
+
584
+ toString(history = '') {
585
+ this.fields = this.fields.filter(obj => obj.val);
586
+ return [
587
+ this.fields.filter(obj => obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n'),
588
+ history,
589
+ this.fields.filter(obj => !obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n')
590
+ ].filter(obj => obj).join('\n');
591
+ }
592
+ }
593
+
594
+ function tryMatch(string, pattern, index = 0) {
595
+ let match = string.match(pattern);
596
+ return match && match[index]
597
+ ? match[index]
598
+ : '';
599
+ }
600
+
601
+ function cleanAuthor(creator, creatorType = 'author') {
602
+ creator = ZU.cleanAuthor(creator, creatorType);
603
+ if (/[\u4e00-\u9fff]/.test(creator.lastName)) {
604
+ creator.fieldMode = 1;
605
+ }
606
+ return creator;
607
+ }
608
+
609
+ function patentCountry(idNumber) {
610
+ return {
611
+ AD: '安道尔', AE: '阿拉伯联合酋长国', AF: '阿富汗', AG: '安提瓜和巴布达', AI: '安圭拉', AL: '阿尔巴尼亚', AM: '亚美尼亚', AN: '菏属安的列斯群岛', AO: '安哥拉', AR: '阿根廷', AT: '奥地利', AU: '澳大利亚', AW: '阿鲁巴', AZ: '阿塞拜疆', BB: '巴巴多斯', BD: '孟加拉国', BE: '比利时', BF: '布莱基纳法索', BG: '保加利亚', BH: '巴林', BI: '布隆迪', BJ: '贝宁', BM: '百慕大', BN: '文莱', BO: '玻利维亚', BR: '巴西', BS: '巴哈马', BT: '不丹', BU: '缅甸', BW: '博茨瓦纳', BY: '白俄罗斯', BZ: '伯利兹', CA: '加拿大', CF: '中非共和国', CG: '刚果', CH: '瑞士', CI: '科特迪瓦', CL: '智利', CM: '喀麦隆', CN: '中国', CO: '哥伦比亚', CR: '哥斯达黎加', CS: '捷克斯洛伐克', CU: '古巴', CV: '怫得角', CY: '塞浦路斯',
612
+ DE: '联邦德国', DJ: '吉布提', DK: '丹麦', DM: '多米尼加岛', DO: '多米尼加共和国', DZ: '阿尔及利亚', EC: '厄瓜多尔', EE: '爱沙尼亚', EG: '埃及', EP: '欧洲专利局', ES: '西班牙', ET: '埃塞俄比亚', FI: '芬兰', FJ: '斐济', FK: '马尔维纳斯群岛', FR: '法国',
613
+ GA: '加蓬', GB: '英国', GD: '格林那达', GE: '格鲁吉亚', GH: '加纳', GI: '直布罗陀', GM: '冈比亚', GN: '几内亚', GQ: '赤道几内亚', GR: '希腊', GT: '危地马拉', GW: '几内亚比绍', GY: '圭亚那', HK: '香港', HN: '洪都拉斯', HR: '克罗地亚', HT: '海地', HU: '匈牙利', HV: '上沃尔特', ID: '印度尼西亚', IE: '爱尔兰', IL: '以色列', IN: '印度', IQ: '伊拉克', IR: '伊朗', IS: '冰岛', IT: '意大利',
614
+ JE: '泽西岛', JM: '牙买加', JO: '约旦', JP: '日本', KE: '肯尼亚', KG: '吉尔吉斯', KH: '柬埔寨', KI: '吉尔伯特群岛', KM: '科摩罗', KN: '圣克里斯托夫岛', KP: '朝鲜', KR: '韩国', KW: '科威特', KY: '开曼群岛', KZ: '哈萨克', LA: '老挝', LB: '黎巴嫩', LC: '圣卢西亚岛', LI: '列支敦士登', LK: '斯里兰卡', LR: '利比里亚', LS: '莱索托', LT: '立陶宛', LU: '卢森堡', LV: '拉脱维亚', LY: '利比亚',
615
+ MA: '摩洛哥', MC: '摩纳哥', MD: '莫尔多瓦', MG: '马达加斯加', ML: '马里', MN: '蒙古', MO: '澳门', MR: '毛里塔尼亚', MS: '蒙特塞拉特岛', MT: '马耳他', MU: '毛里求斯', MV: '马尔代夫', MW: '马拉维', MX: '墨西哥', MY: '马来西亚', MZ: '莫桑比克', NA: '纳米比亚', NE: '尼日尔', NG: '尼日利亚', NH: '新赫布里底', NI: '尼加拉瓜', NL: '荷兰', NO: '挪威', NP: '尼泊尔', NR: '瑙鲁', NZ: '新西兰', OA: '非洲知识产权组织', OM: '阿曼',
616
+ PA: '巴拿马', PC: 'PCT', PE: '秘鲁', PG: '巴布亚新几内亚', PH: '菲律宾', PK: '巴基斯坦', PL: '波兰', PT: '葡萄牙', PY: '巴拉圭', QA: '卡塔尔', RO: '罗马尼亚', RU: '俄罗斯联邦', RW: '卢旺达',
617
+ SA: '沙特阿拉伯', SB: '所罗门群岛', SC: '塞舌尔', SD: '苏丹', SE: '瑞典', SG: '新加坡', SH: '圣赫勒拿岛', SI: '斯洛文尼亚', SL: '塞拉利昂', SM: '圣马利诺', SN: '塞内加尔', SO: '索马里', SR: '苏里南', ST: '圣多美和普林西比岛', SU: '苏联', SV: '萨尔瓦多', SY: '叙利亚', SZ: '斯威士兰', TD: '乍得', TG: '多哥', TH: '泰国', TJ: '塔吉克', TM: '土库曼', TN: '突尼斯', TO: '汤加', TR: '土耳其', TT: '特立尼达和多巴哥', TV: '图瓦卢', TZ: '坦桑尼亚', UA: '乌克兰', UG: '乌干达', US: '美国', UY: '乌拉圭', UZ: '乌兹别克',
618
+ VA: '梵蒂冈', VC: '圣文森特岛和格林纳达', VE: '委内瑞拉', VG: '维尔京群岛', VN: '越南', VU: '瓦努阿图', WO: '世界知识产权组织', WS: '萨摩亚', YD: '民主也门', YE: '也门', YU: '南斯拉夫', ZA: '南非', ZM: '赞比亚', ZR: '扎伊尔', ZW: '津巴布韦'
619
+ }[idNumber.substring(0, 2).toUpperCase()] || '';
620
+ }
621
+
622
+ function getUrlParam(url) {
623
+ const urlObj = new URL(url);
624
+ const pathParts = urlObj.pathname.split('/');
625
+ const deURI = decodeURIComponent(pathParts[2]);
626
+ const deBase64 = atob(deURI);
627
+ const encoder = new TextEncoder();
628
+ const buffer = encoder.encode(deBase64);
629
+ // make a cocy to avoid Error: Accessing TypedArray data over Xrays is slow, and forbidden in order to encourage performant code.
630
+ const urlMsg = Url.decode(new Uint8Array(buffer));
631
+ return Url.toObject(urlMsg);
632
+ }
633
+
634
+ /**
635
+ * for visually viewing binary data during debugging
636
+ */
637
+ // eslint-disable-next-line no-unused-vars
638
+ function bytesToHex(bytes) {
639
+ const hex = [];
640
+ for (let i = 0; i < bytes.length; i++) {
641
+ hex.push((bytes[i] >>> 4).toString(16));
642
+ hex.push((bytes[i] & 0xF).toString(16));
643
+ }
644
+ return hex.join('');
645
+ }
646
+
647
+ /* eslint-disable */
648
+
649
+ /*!
650
+ * protobuf.js v7.4.0 (c) 2016, daniel wirtz
651
+ * compiled thu, 22 aug 2024 20:30:39 utc
652
+ * licensed under the bsd-3-clause license
653
+ * see: https://github.com/dcodeio/protobuf.js for details
654
+ */
655
+ !function(d){"use strict";!function(r,u,t){var n=function t(n){var i=u[n];return i||r[n][0].call(i=u[n]={exports:{}},t,i,i.exports),i.exports}(t[0]);n.util.global.protobuf=n,"function"==typeof define&&define.amd&&define(["long"],function(t){return t&&t.isLong&&(n.util.Long=t,n.configure()),n}),"object"==typeof module&&module&&module.exports&&(module.exports=n)}({1:[function(t,n,i){n.exports=function(t,n){var i=Array(arguments.length-1),e=0,r=2,s=!0;for(;r<arguments.length;)i[e++]=arguments[r++];return new Promise(function(r,u){i[e]=function(t){if(s)if(s=!1,t)u(t);else{for(var n=Array(arguments.length-1),i=0;i<n.length;)n[i++]=arguments[i];r.apply(null,n)}};try{t.apply(n||null,i)}catch(t){s&&(s=!1,u(t))}})}},{}],2:[function(t,n,i){i.length=function(t){var n=t.length;if(!n)return 0;for(var i=0;1<--n%4&&"="==(t[0|n]||"");)++i;return Math.ceil(3*t.length)/4-i};for(var f=Array(64),o=Array(123),r=0;r<64;)o[f[r]=r<26?r+65:r<52?r+71:r<62?r-4:r-59|43]=r++;i.encode=function(t,n,i){for(var r,u=null,e=[],s=0,h=0;n<i;){var o=t[n++];switch(h){case 0:e[s++]=f[o>>2],r=(3&o)<<4,h=1;break;case 1:e[s++]=f[r|o>>4],r=(15&o)<<2,h=2;break;case 2:e[s++]=f[r|o>>6],e[s++]=f[63&o],h=0}8191<s&&((u=u||[]).push(String.fromCharCode.apply(String,e)),s=0)}return h&&(e[s++]=f[r],e[s++]=61,1===h&&(e[s++]=61)),u?(s&&u.push(String.fromCharCode.apply(String,e.slice(0,s))),u.join("")):String.fromCharCode.apply(String,e.slice(0,s))};var c="invalid encoding";i.decode=function(t,n,i){for(var r,u=i,e=0,s=0;s<t.length;){var h=t.charCodeAt(s++);if(61==h&&1<e)break;if((h=o[h])===d)throw Error(c);switch(e){case 0:r=h,e=1;break;case 1:n[i++]=r<<2|(48&h)>>4,r=h,e=2;break;case 2:n[i++]=(15&r)<<4|(60&h)>>2,r=h,e=3;break;case 3:n[i++]=(3&r)<<6|h,e=0}}if(1===e)throw Error(c);return i-u},i.test=function(t){return/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(t)}},{}],3:[function(t,n,i){function r(){this.t={}}(n.exports=r).prototype.on=function(t,n,i){return(this.t[t]||(this.t[t]=[])).push({fn:n,ctx:i||this}),this},r.prototype.off=function(t,n){if(t===d)this.t={};else if(n===d)this.t[t]=[];else for(var i=this.t[t],r=0;r<i.length;)i[r].fn===n?i.splice(r,1):++r;return this},r.prototype.emit=function(t){var n=this.t[t];if(n){for(var i=[],r=1;r<arguments.length;)i.push(arguments[r++]);for(r=0;r<n.length;)n[r].fn.apply(n[r++].ctx,i)}return this}},{}],4:[function(t,n,i){function r(t){function n(t,n,i,r){var u=n<0?1:0;t(0===(n=u?-n:n)?0<1/n?0:2147483648:isNaN(n)?2143289344:34028234663852886e22<n?(u<<31|2139095040)>>>0:n<11754943508222875e-54?(u<<31|Math.round(n/1401298464324817e-60))>>>0:(u<<31|127+(t=Math.floor(Math.log(n)/Math.LN2))<<23|8388607&Math.round(n*Math.pow(2,-t)*8388608))>>>0,i,r)}function i(t,n,i){t=t(n,i),n=2*(t>>31)+1,i=t>>>23&255,t&=8388607;return 255==i?t?NaN:1/0*n:0==i?1401298464324817e-60*n*t:n*Math.pow(2,i-150)*(8388608+t)}function r(t,n,i){h[0]=t,n[i]=o[0],n[i+1]=o[1],n[i+2]=o[2],n[i+3]=o[3]}function u(t,n,i){h[0]=t,n[i]=o[3],n[i+1]=o[2],n[i+2]=o[1],n[i+3]=o[0]}function e(t,n){return o[0]=t[n],o[1]=t[n+1],o[2]=t[n+2],o[3]=t[n+3],h[0]}function s(t,n){return o[3]=t[n],o[2]=t[n+1],o[1]=t[n+2],o[0]=t[n+3],h[0]}var h,o,f,c,a;function l(t,n,i,r,u,e){var s,h=r<0?1:0;0===(r=h?-r:r)?(t(0,u,e+n),t(0<1/r?0:2147483648,u,e+i)):isNaN(r)?(t(0,u,e+n),t(2146959360,u,e+i)):17976931348623157e292<r?(t(0,u,e+n),t((h<<31|2146435072)>>>0,u,e+i)):r<22250738585072014e-324?(t((s=r/5e-324)>>>0,u,e+n),t((h<<31|s/4294967296)>>>0,u,e+i)):(t(4503599627370496*(s=r*Math.pow(2,-(r=1024===(r=Math.floor(Math.log(r)/Math.LN2))?1023:r)))>>>0,u,e+n),t((h<<31|r+1023<<20|1048576*s&1048575)>>>0,u,e+i))}function v(t,n,i,r,u){n=t(r,u+n),t=t(r,u+i),r=2*(t>>31)+1,u=t>>>20&2047,i=4294967296*(1048575&t)+n;return 2047==u?i?NaN:1/0*r:0==u?5e-324*r*i:r*Math.pow(2,u-1075)*(i+4503599627370496)}function w(t,n,i){f[0]=t,n[i]=c[0],n[i+1]=c[1],n[i+2]=c[2],n[i+3]=c[3],n[i+4]=c[4],n[i+5]=c[5],n[i+6]=c[6],n[i+7]=c[7]}function b(t,n,i){f[0]=t,n[i]=c[7],n[i+1]=c[6],n[i+2]=c[5],n[i+3]=c[4],n[i+4]=c[3],n[i+5]=c[2],n[i+6]=c[1],n[i+7]=c[0]}function y(t,n){return c[0]=t[n],c[1]=t[n+1],c[2]=t[n+2],c[3]=t[n+3],c[4]=t[n+4],c[5]=t[n+5],c[6]=t[n+6],c[7]=t[n+7],f[0]}function g(t,n){return c[7]=t[n],c[6]=t[n+1],c[5]=t[n+2],c[4]=t[n+3],c[3]=t[n+4],c[2]=t[n+5],c[1]=t[n+6],c[0]=t[n+7],f[0]}return"undefined"!=typeof Float32Array?(h=new Float32Array([-0]),o=new Uint8Array(h.buffer),a=128===o[3],t.writeFloatLE=a?r:u,t.writeFloatBE=a?u:r,t.readFloatLE=a?e:s,t.readFloatBE=a?s:e):(t.writeFloatLE=n.bind(null,d),t.writeFloatBE=n.bind(null,A),t.readFloatLE=i.bind(null,p),t.readFloatBE=i.bind(null,m)),"undefined"!=typeof Float64Array?(f=new Float64Array([-0]),c=new Uint8Array(f.buffer),a=128===c[7],t.writeDoubleLE=a?w:b,t.writeDoubleBE=a?b:w,t.readDoubleLE=a?y:g,t.readDoubleBE=a?g:y):(t.writeDoubleLE=l.bind(null,d,0,4),t.writeDoubleBE=l.bind(null,A,4,0),t.readDoubleLE=v.bind(null,p,0,4),t.readDoubleBE=v.bind(null,m,4,0)),t}function d(t,n,i){n[i]=255&t,n[i+1]=t>>>8&255,n[i+2]=t>>>16&255,n[i+3]=t>>>24}function A(t,n,i){n[i]=t>>>24,n[i+1]=t>>>16&255,n[i+2]=t>>>8&255,n[i+3]=255&t}function p(t,n){return(t[n]|t[n+1]<<8|t[n+2]<<16|t[n+3]<<24)>>>0}function m(t,n){return(t[n]<<24|t[n+1]<<16|t[n+2]<<8|t[n+3])>>>0}n.exports=r(r)},{}],5:[function(t,n,i){function r(t){try{var n=eval("require")(t);if(n&&(n.length||Object.keys(n).length))return n}catch(t){}return null}n.exports=r},{}],6:[function(t,n,i){n.exports=function(n,i,t){var r=t||8192,u=r>>>1,e=null,s=r;return function(t){if(t<1||u<t)return n(t);r<s+t&&(e=n(r),s=0);t=i.call(e,s,s+=t);return 7&s&&(s=1+(7|s)),t}}},{}],7:[function(t,n,i){i.length=function(t){for(var n,i=0,r=0;r<t.length;++r)(n=t.charCodeAt(r))<128?i+=1:n<2048?i+=2:55296==(64512&n)&&56320==(64512&t.charCodeAt(r+1))?(++r,i+=4):i+=3;return i},i.read=function(t,n,i){if(i-n<1)return"";for(var r,u=null,e=[],s=0;n<i;)(r=t[n++])<128?e[s++]=r:191<r&&r<224?e[s++]=(31&r)<<6|63&t[n++]:239<r&&r<365?(r=((7&r)<<18|(63&t[n++])<<12|(63&t[n++])<<6|63&t[n++])-65536,e[s++]=55296+(r>>10),e[s++]=56320+(1023&r)):e[s++]=(15&r)<<12|(63&t[n++])<<6|63&t[n++],8191<s&&((u=u||[]).push(String.fromCharCode.apply(String,e)),s=0);return u?(s&&u.push(String.fromCharCode.apply(String,e.slice(0,s))),u.join("")):String.fromCharCode.apply(String,e.slice(0,s))},i.write=function(t,n,i){for(var r,u,e=i,s=0;s<t.length;++s)(r=t.charCodeAt(s))<128?n[i++]=r:(r<2048?n[i++]=r>>6|192:(55296==(64512&r)&&56320==(64512&(u=t.charCodeAt(s+1)))?(++s,n[i++]=(r=65536+((1023&r)<<10)+(1023&u))>>18|240,n[i++]=r>>12&63|128):n[i++]=r>>12|224,n[i++]=r>>6&63|128),n[i++]=63&r|128);return i-e}},{}],8:[function(t,n,i){var r=i;function u(){r.util.n(),r.Writer.n(r.BufferWriter),r.Reader.n(r.BufferReader)}r.build="minimal",r.Writer=t(16),r.BufferWriter=t(17),r.Reader=t(9),r.BufferReader=t(10),r.util=t(15),r.rpc=t(12),r.roots=t(11),r.configure=u,u()},{10:10,11:11,12:12,15:15,16:16,17:17,9:9}],9:[function(t,n,i){n.exports=o;var r,u=t(15),e=u.LongBits,s=u.utf8;function h(t,n){return RangeError("index out of range: "+t.pos+" + "+(n||1)+" > "+t.len)}function o(t){this.buf=t,this.pos=0,this.len=t.length}function f(){return u.Buffer?function(t){return(o.create=function(t){return u.Buffer.isBuffer(t)?new r(t):a(t)})(t)}:a}var c,a="undefined"!=typeof Uint8Array?function(t){if(t instanceof Uint8Array||Array.isArray(t))return new o(t);throw Error("illegal buffer")}:function(t){if(Array.isArray(t))return new o(t);throw Error("illegal buffer")};function l(){var t=new e(0,0),n=0;if(!(4<this.len-this.pos)){for(;n<3;++n){if(this.pos>=this.len)throw h(this);if(t.lo=(t.lo|(127&this.buf[this.pos])<<7*n)>>>0,this.buf[this.pos++]<128)return t}return t.lo=(t.lo|(127&this.buf[this.pos++])<<7*n)>>>0,t}for(;n<4;++n)if(t.lo=(t.lo|(127&this.buf[this.pos])<<7*n)>>>0,this.buf[this.pos++]<128)return t;if(t.lo=(t.lo|(127&this.buf[this.pos])<<28)>>>0,t.hi=(t.hi|(127&this.buf[this.pos])>>4)>>>0,this.buf[this.pos++]<128)return t;if(n=0,4<this.len-this.pos){for(;n<5;++n)if(t.hi=(t.hi|(127&this.buf[this.pos])<<7*n+3)>>>0,this.buf[this.pos++]<128)return t}else for(;n<5;++n){if(this.pos>=this.len)throw h(this);if(t.hi=(t.hi|(127&this.buf[this.pos])<<7*n+3)>>>0,this.buf[this.pos++]<128)return t}throw Error("invalid varint encoding")}function v(t,n){return(t[n-4]|t[n-3]<<8|t[n-2]<<16|t[n-1]<<24)>>>0}function w(){if(this.pos+8>this.len)throw h(this,8);return new e(v(this.buf,this.pos+=4),v(this.buf,this.pos+=4))}o.create=f(),o.prototype.i=u.Array.prototype.subarray||u.Array.prototype.slice,o.prototype.uint32=(c=4294967295,function(){if(c=(127&this.buf[this.pos])>>>0,this.buf[this.pos++]<128||(c=(c|(127&this.buf[this.pos])<<7)>>>0,this.buf[this.pos++]<128||(c=(c|(127&this.buf[this.pos])<<14)>>>0,this.buf[this.pos++]<128||(c=(c|(127&this.buf[this.pos])<<21)>>>0,this.buf[this.pos++]<128||(c=(c|(15&this.buf[this.pos])<<28)>>>0,this.buf[this.pos++]<128||!((this.pos+=5)>this.len))))))return c;throw this.pos=this.len,h(this,10)}),o.prototype.int32=function(){return 0|this.uint32()},o.prototype.sint32=function(){var t=this.uint32();return t>>>1^-(1&t)|0},o.prototype.bool=function(){return 0!==this.uint32()},o.prototype.fixed32=function(){if(this.pos+4>this.len)throw h(this,4);return v(this.buf,this.pos+=4)},o.prototype.sfixed32=function(){if(this.pos+4>this.len)throw h(this,4);return 0|v(this.buf,this.pos+=4)},o.prototype.float=function(){if(this.pos+4>this.len)throw h(this,4);var t=u.float.readFloatLE(this.buf,this.pos);return this.pos+=4,t},o.prototype.double=function(){if(this.pos+8>this.len)throw h(this,4);var t=u.float.readDoubleLE(this.buf,this.pos);return this.pos+=8,t},o.prototype.bytes=function(){var t=this.uint32(),n=this.pos,i=this.pos+t;if(i>this.len)throw h(this,t);return this.pos+=t,Array.isArray(this.buf)?this.buf.slice(n,i):n===i?(t=u.Buffer)?t.alloc(0):new this.buf.constructor(0):this.i.call(this.buf,n,i)},o.prototype.string=function(){var t=this.bytes();return s.read(t,0,t.length)},o.prototype.skip=function(t){if("number"==typeof t){if(this.pos+t>this.len)throw h(this,t);this.pos+=t}else do{if(this.pos>=this.len)throw h(this)}while(128&this.buf[this.pos++]);return this},o.prototype.skipType=function(t){switch(t){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;4!=(t=7&this.uint32());)this.skipType(t);break;case 5:this.skip(4);break;default:throw Error("invalid wire type "+t+" at offset "+this.pos)}return this},o.n=function(t){r=t,o.create=f(),r.n();var n=u.Long?"toLong":"toNumber";u.merge(o.prototype,{int64:function(){return l.call(this)[n](!1)},uint64:function(){return l.call(this)[n](!0)},sint64:function(){return l.call(this).zzDecode()[n](!1)},fixed64:function(){return w.call(this)[n](!0)},sfixed64:function(){return w.call(this)[n](!1)}})}},{15:15}],10:[function(t,n,i){n.exports=e;var r=t(9),u=((e.prototype=Object.create(r.prototype)).constructor=e,t(15));function e(t){r.call(this,t)}e.n=function(){u.Buffer&&(e.prototype.i=u.Buffer.prototype.slice)},e.prototype.string=function(){var t=this.uint32();return this.buf.utf8Slice?this.buf.utf8Slice(this.pos,this.pos=Math.min(this.pos+t,this.len)):this.buf.toString("utf-8",this.pos,this.pos=Math.min(this.pos+t,this.len))},e.n()},{15:15,9:9}],11:[function(t,n,i){n.exports={}},{}],12:[function(t,n,i){i.Service=t(13)},{13:13}],13:[function(t,n,i){n.exports=r;var h=t(15);function r(t,n,i){if("function"!=typeof t)throw TypeError("rpcImpl must be a function");h.EventEmitter.call(this),this.rpcImpl=t,this.requestDelimited=!!n,this.responseDelimited=!!i}((r.prototype=Object.create(h.EventEmitter.prototype)).constructor=r).prototype.rpcCall=function t(i,n,r,u,e){if(!u)throw TypeError("request must be specified");var s=this;if(!e)return h.asPromise(t,s,i,n,r,u);if(!s.rpcImpl)return setTimeout(function(){e(Error("already ended"))},0),d;try{return s.rpcImpl(i,n[s.requestDelimited?"encodeDelimited":"encode"](u).finish(),function(t,n){if(t)return s.emit("error",t,i),e(t);if(null===n)return s.end(!0),d;if(!(n instanceof r))try{n=r[s.responseDelimited?"decodeDelimited":"decode"](n)}catch(t){return s.emit("error",t,i),e(t)}return s.emit("data",n,i),e(null,n)})}catch(t){return s.emit("error",t,i),setTimeout(function(){e(t)},0),d}},r.prototype.end=function(t){return this.rpcImpl&&(t||this.rpcImpl(null,null,null),this.rpcImpl=null,this.emit("end").off()),this}},{15:15}],14:[function(t,n,i){n.exports=u;var r=t(15);function u(t,n){this.lo=t>>>0,this.hi=n>>>0}var e=u.zero=new u(0,0),s=(e.toNumber=function(){return 0},e.zzEncode=e.zzDecode=function(){return this},e.length=function(){return 1},u.zeroHash="\0\0\0\0\0\0\0\0",u.fromNumber=function(t){var n,i;return 0===t?e:(i=(t=(n=t<0)?-t:t)>>>0,t=(t-i)/4294967296>>>0,n&&(t=~t>>>0,i=~i>>>0,4294967295<++i&&(i=0,4294967295<++t&&(t=0))),new u(i,t))},u.from=function(t){if("number"==typeof t)return u.fromNumber(t);if(r.isString(t)){if(!r.Long)return u.fromNumber(parseInt(t,10));t=r.Long.fromString(t)}return t.low||t.high?new u(t.low>>>0,t.high>>>0):e},u.prototype.toNumber=function(t){var n;return!t&&this.hi>>>31?(t=1+~this.lo>>>0,n=~this.hi>>>0,-(t+4294967296*(n=t?n:n+1>>>0))):this.lo+4294967296*this.hi},u.prototype.toLong=function(t){return r.Long?new r.Long(0|this.lo,0|this.hi,!!t):{low:0|this.lo,high:0|this.hi,unsigned:!!t}},String.prototype.charCodeAt);u.fromHash=function(t){return"\0\0\0\0\0\0\0\0"===t?e:new u((s.call(t,0)|s.call(t,1)<<8|s.call(t,2)<<16|s.call(t,3)<<24)>>>0,(s.call(t,4)|s.call(t,5)<<8|s.call(t,6)<<16|s.call(t,7)<<24)>>>0)},u.prototype.toHash=function(){return String.fromCharCode(255&this.lo,this.lo>>>8&255,this.lo>>>16&255,this.lo>>>24,255&this.hi,this.hi>>>8&255,this.hi>>>16&255,this.hi>>>24)},u.prototype.zzEncode=function(){var t=this.hi>>31;return this.hi=((this.hi<<1|this.lo>>>31)^t)>>>0,this.lo=(this.lo<<1^t)>>>0,this},u.prototype.zzDecode=function(){var t=-(1&this.lo);return this.lo=((this.lo>>>1|this.hi<<31)^t)>>>0,this.hi=(this.hi>>>1^t)>>>0,this},u.prototype.length=function(){var t=this.lo,n=(this.lo>>>28|this.hi<<4)>>>0,i=this.hi>>>24;return 0==i?0==n?t<16384?t<128?1:2:t<2097152?3:4:n<16384?n<128?5:6:n<2097152?7:8:i<128?9:10}},{15:15}],15:[function(t,n,i){var r=i;function u(t,n,i){for(var r=Object.keys(n),u=0;u<r.length;++u)t[r[u]]!==d&&i||(t[r[u]]=n[r[u]]);return t}function e(t){function i(t,n){if(!(this instanceof i))return new i(t,n);Object.defineProperty(this,"message",{get:function(){return t}}),Error.captureStackTrace?Error.captureStackTrace(this,i):Object.defineProperty(this,"stack",{value:Error().stack||""}),n&&u(this,n)}return i.prototype=Object.create(Error.prototype,{constructor:{value:i,writable:!0,enumerable:!1,configurable:!0},name:{get:function(){return t},set:d,enumerable:!1,configurable:!0},toString:{value:function(){return this.name+": "+this.message},writable:!0,enumerable:!1,configurable:!0}}),i}r.asPromise=t(1),r.base64=t(2),r.EventEmitter=t(3),r.float=t(4),r.inquire=t(5),r.utf8=t(7),r.pool=t(6),r.LongBits=t(14),r.isNode=!!("undefined"!=typeof global&&global&&global.process&&global.process.versions&&global.process.versions.node),r.global=r.isNode&&global||"undefined"!=typeof window&&window||"undefined"!=typeof self&&self||this,r.emptyArray=Object.freeze?Object.freeze([]):[],r.emptyObject=Object.freeze?Object.freeze({}):{},r.isInteger=Number.isInteger||function(t){return"number"==typeof t&&isFinite(t)&&Math.floor(t)===t},r.isString=function(t){return"string"==typeof t||t instanceof String},r.isObject=function(t){return t&&"object"==typeof t},r.isset=r.isSet=function(t,n){var i=t[n];return null!=i&&t.hasOwnProperty(n)&&("object"!=typeof i||0<(Array.isArray(i)?i:Object.keys(i)).length)},r.Buffer=function(){try{var t=r.inquire("buffer").Buffer;return t.prototype.utf8Write?t:null}catch(t){return null}}(),r.r=null,r.u=null,r.newBuffer=function(t){return"number"==typeof t?r.Buffer?r.u(t):new r.Array(t):r.Buffer?r.r(t):"undefined"==typeof Uint8Array?t:new Uint8Array(t)},r.Array="undefined"!=typeof Uint8Array?Uint8Array:Array,r.Long=r.global.dcodeIO&&r.global.dcodeIO.Long||r.global.Long||r.inquire("long"),r.key2Re=/^true|false|0|1$/,r.key32Re=/^-?(?:0|[1-9][0-9]*)$/,r.key64Re=/^(?:[\\x00-\\xff]{8}|-?(?:0|[1-9][0-9]*))$/,r.longToHash=function(t){return t?r.LongBits.from(t).toHash():r.LongBits.zeroHash},r.longFromHash=function(t,n){t=r.LongBits.fromHash(t);return r.Long?r.Long.fromBits(t.lo,t.hi,n):t.toNumber(!!n)},r.merge=u,r.lcFirst=function(t){return(t[0]||"").toLowerCase()+t.substring(1)},r.newError=e,r.ProtocolError=e("ProtocolError"),r.oneOfGetter=function(t){for(var i={},n=0;n<t.length;++n)i[t[n]]=1;return function(){for(var t=Object.keys(this),n=t.length-1;-1<n;--n)if(1===i[t[n]]&&this[t[n]]!==d&&null!==this[t[n]])return t[n]}},r.oneOfSetter=function(i){return function(t){for(var n=0;n<i.length;++n)i[n]!==t&&delete this[i[n]]}},r.toJSONOptions={longs:String,enums:String,bytes:String,json:!0},r.n=function(){var i=r.Buffer;i?(r.r=i.from!==Uint8Array.from&&i.from||function(t,n){return new i(t,n)},r.u=i.allocUnsafe||function(t){return new i(t)}):r.r=r.u=null}},{1:1,14:14,2:2,3:3,4:4,5:5,6:6,7:7}],16:[function(t,n,i){n.exports=a;var r,u=t(15),e=u.LongBits,s=u.base64,h=u.utf8;function o(t,n,i){this.fn=t,this.len=n,this.next=d,this.val=i}function f(){}function c(t){this.head=t.head,this.tail=t.tail,this.len=t.len,this.next=t.states}function a(){this.len=0,this.head=new o(f,0,0),this.tail=this.head,this.states=null}function l(){return u.Buffer?function(){return(a.create=function(){return new r})()}:function(){return new a}}function v(t,n,i){n[i]=255&t}function w(t,n){this.len=t,this.next=d,this.val=n}function b(t,n,i){for(;t.hi;)n[i++]=127&t.lo|128,t.lo=(t.lo>>>7|t.hi<<25)>>>0,t.hi>>>=7;for(;127<t.lo;)n[i++]=127&t.lo|128,t.lo=t.lo>>>7;n[i++]=t.lo}function y(t,n,i){n[i]=255&t,n[i+1]=t>>>8&255,n[i+2]=t>>>16&255,n[i+3]=t>>>24}a.create=l(),a.alloc=function(t){return new u.Array(t)},u.Array!==Array&&(a.alloc=u.pool(a.alloc,u.Array.prototype.subarray)),a.prototype.e=function(t,n,i){return this.tail=this.tail.next=new o(t,n,i),this.len+=n,this},(w.prototype=Object.create(o.prototype)).fn=function(t,n,i){for(;127<t;)n[i++]=127&t|128,t>>>=7;n[i]=t},a.prototype.uint32=function(t){return this.len+=(this.tail=this.tail.next=new w((t>>>=0)<128?1:t<16384?2:t<2097152?3:t<268435456?4:5,t)).len,this},a.prototype.int32=function(t){return t<0?this.e(b,10,e.fromNumber(t)):this.uint32(t)},a.prototype.sint32=function(t){return this.uint32((t<<1^t>>31)>>>0)},a.prototype.int64=a.prototype.uint64=function(t){t=e.from(t);return this.e(b,t.length(),t)},a.prototype.sint64=function(t){t=e.from(t).zzEncode();return this.e(b,t.length(),t)},a.prototype.bool=function(t){return this.e(v,1,t?1:0)},a.prototype.sfixed32=a.prototype.fixed32=function(t){return this.e(y,4,t>>>0)},a.prototype.sfixed64=a.prototype.fixed64=function(t){t=e.from(t);return this.e(y,4,t.lo).e(y,4,t.hi)},a.prototype.float=function(t){return this.e(u.float.writeFloatLE,4,t)},a.prototype.double=function(t){return this.e(u.float.writeDoubleLE,8,t)};var g=u.Array.prototype.set?function(t,n,i){n.set(t,i)}:function(t,n,i){for(var r=0;r<t.length;++r)n[i+r]=t[r]};a.prototype.bytes=function(t){var n,i=t.length>>>0;return i?(u.isString(t)&&(n=a.alloc(i=s.length(t)),s.decode(t,n,0),t=n),this.uint32(i).e(g,i,t)):this.e(v,1,0)},a.prototype.string=function(t){var n=h.length(t);return n?this.uint32(n).e(h.write,n,t):this.e(v,1,0)},a.prototype.fork=function(){return this.states=new c(this),this.head=this.tail=new o(f,0,0),this.len=0,this},a.prototype.reset=function(){return this.states?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new o(f,0,0),this.len=0),this},a.prototype.ldelim=function(){var t=this.head,n=this.tail,i=this.len;return this.reset().uint32(i),i&&(this.tail.next=t.next,this.tail=n,this.len+=i),this},a.prototype.finish=function(){for(var t=this.head.next,n=this.constructor.alloc(this.len),i=0;t;)t.fn(t.val,n,i),i+=t.len,t=t.next;return n},a.n=function(t){r=t,a.create=l(),r.n()}},{15:15}],17:[function(t,n,i){n.exports=e;var r=t(16),u=((e.prototype=Object.create(r.prototype)).constructor=e,t(15));function e(){r.call(this)}function s(t,n,i){t.length<40?u.utf8.write(t,n,i):n.utf8Write?n.utf8Write(t,i):n.write(t,i)}e.n=function(){e.alloc=u.u,e.writeBytesBuffer=u.Buffer&&u.Buffer.prototype instanceof Uint8Array&&"set"===u.Buffer.prototype.set.name?function(t,n,i){n.set(t,i)}:function(t,n,i){if(t.copy)t.copy(n,i,0,t.length);else for(var r=0;r<t.length;)n[i++]=t[r++]}},e.prototype.bytes=function(t){var n=(t=u.isString(t)?u.r(t,"base64"):t).length>>>0;return this.uint32(n),n&&this.e(e.writeBytesBuffer,n,t),this},e.prototype.string=function(t){var n=u.Buffer.byteLength(t);return this.uint32(n),n&&this.e(s,n,t),this},e.n()},{15:15,16:16}]},{},[8])}();
656
+ //# sourceMappingURL=protobuf.min.js.map
657
+
658
+ // Common aliases
659
+ const $Reader = protobuf.Reader, $util = protobuf.util, $Writer = protobuf.Writer;
660
+ const $root = protobuf.roots.default || (protobuf.roots.default = {});
661
+
662
+ /* below codes are generated by protobuf-cli */
663
+ const DetailInfoRequest = $root.DetailInfoRequest = (() => {
664
+
665
+ function DetailInfoRequest(properties) {
666
+ if (properties)
667
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
668
+ if (properties[keys[i]] != null)
669
+ this[keys[i]] = properties[keys[i]];
670
+ }
671
+
672
+ DetailInfoRequest.prototype.resourcetype = "";
673
+ DetailInfoRequest.prototype.id = "";
674
+ DetailInfoRequest.prototype.referer = "";
675
+ DetailInfoRequest.prototype.md5id = "";
676
+ DetailInfoRequest.prototype.transaction = "";
677
+ DetailInfoRequest.prototype.isFetchAccountField = false;
678
+
679
+ DetailInfoRequest.create = function create(properties) {
680
+ return new DetailInfoRequest(properties);
681
+ };
682
+
683
+ DetailInfoRequest.encode = function encode(message, writer) {
684
+ if (!writer)
685
+ writer = $Writer.create();
686
+ if (message.resourcetype != null && Object.hasOwnProperty.call(message, "resourcetype"))
687
+ writer.uint32(10).string(message.resourcetype);
688
+ if (message.id != null && Object.hasOwnProperty.call(message, "id"))
689
+ writer.uint32(18).string(message.id);
690
+ if (message.referer != null && Object.hasOwnProperty.call(message, "referer"))
691
+ writer.uint32(26).string(message.referer);
692
+ if (message.md5id != null && Object.hasOwnProperty.call(message, "md5id"))
693
+ writer.uint32(34).string(message.md5id);
694
+ if (message.transaction != null && Object.hasOwnProperty.call(message, "transaction"))
695
+ writer.uint32(42).string(message.transaction);
696
+ if (message.isFetchAccountField != null && Object.hasOwnProperty.call(message, "isFetchAccountField"))
697
+ writer.uint32(48).bool(message.isFetchAccountField);
698
+ return writer;
699
+ };
700
+
701
+ return DetailInfoRequest;
702
+ })();
703
+ const DetailResponse = $root.DetailResponse = (() => {
704
+ function DetailResponse(properties) {
705
+ this.detail = [];
706
+ this.extradataMap = {};
707
+ if (properties)
708
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
709
+ if (properties[keys[i]] != null)
710
+ this[keys[i]] = properties[keys[i]];
711
+ }
712
+ DetailResponse.prototype.detail = $util.emptyArray;
713
+ DetailResponse.prototype.extradataMap = $util.emptyObject;
714
+ DetailResponse.decode = function decode(reader, length) {
715
+ if (!(reader instanceof $Reader))
716
+ reader = $Reader.create(reader);
717
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.DetailResponse(), key, value;
718
+ while (reader.pos < end) {
719
+ let tag = reader.uint32();
720
+ switch (tag >>> 3) {
721
+ case 1:
722
+ if (!(message.detail && message.detail.length))
723
+ message.detail = [];
724
+ message.detail.push($root.Resource.decode(reader, reader.uint32()));
725
+ break;
726
+ case 2:
727
+ if (message.extradataMap === $util.emptyObject)
728
+ message.extradataMap = {};
729
+ let end2 = reader.uint32() + reader.pos;
730
+ key = '';
731
+ value = '';
732
+ while (reader.pos < end2) {
733
+ let tag2 = reader.uint32();
734
+ switch (tag2 >>> 3) {
735
+ case 1:
736
+ key = reader.string();
737
+ break;
738
+ case 2:
739
+ value = reader.string();
740
+ break;
741
+ default:
742
+ reader.skipType(tag2 & 7);
743
+ break;
744
+ }
745
+ }
746
+ message.extradataMap[key] = value;
747
+ break;
748
+ default:
749
+ reader.skipType(tag & 7);
750
+ break;
751
+ }
752
+ }
753
+ return message;
754
+ };
755
+ DetailResponse.toObject = function toObject(message, options) {
756
+ if (!options)
757
+ options = {};
758
+ let object = {};
759
+ if (options.arrays || options.defaults)
760
+ object.detail = [];
761
+ if (options.objects || options.defaults)
762
+ object.extradataMap = {};
763
+ if (message.detail && message.detail.length) {
764
+ object.detail = [];
765
+ for (let j = 0; j < message.detail.length; ++j)
766
+ object.detail[j] = $root.Resource.toObject(message.detail[j], options);
767
+ }
768
+ let keys2;
769
+ if (message.extradataMap && (keys2 = Object.keys(message.extradataMap)).length) {
770
+ object.extradataMap = {};
771
+ for (let j = 0; j < keys2.length; ++j)
772
+ object.extradataMap[keys2[j]] = message.extradataMap[keys2[j]];
773
+ }
774
+ return object;
775
+ };
776
+ return DetailResponse;
777
+ })();
778
+ const Resource = $root.Resource = (() => {
779
+ function Resource(properties) {
780
+ if (properties)
781
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
782
+ if (properties[keys[i]] != null)
783
+ this[keys[i]] = properties[keys[i]];
784
+ }
785
+ Resource.prototype.periodical = null;
786
+ Resource.prototype.thesis = null;
787
+ Resource.prototype.patent = null;
788
+ Resource.prototype.conference = null;
789
+ Resource.prototype.standard = null;
790
+ Resource.prototype.nstr = null;
791
+ Resource.prototype.cstadt = null;
792
+ Resource.prototype.claw = null;
793
+ Resource.decode = function decode(reader, length) {
794
+ if (!(reader instanceof $Reader))
795
+ reader = $Reader.create(reader);
796
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.Resource();
797
+ while (reader.pos < end) {
798
+ let tag = reader.uint32();
799
+ switch (tag >>> 3) {
800
+ case 103:
801
+ message.periodical = $root.Periodical.decode(reader, reader.uint32());
802
+ break;
803
+ case 104:
804
+ message.thesis = $root.Thesis.decode(reader, reader.uint32());
805
+ break;
806
+ case 105:
807
+ message.patent = $root.Patent.decode(reader, reader.uint32());
808
+ break;
809
+ case 109:
810
+ message.conference = $root.Conference.decode(reader, reader.uint32());
811
+ break;
812
+ case 110:
813
+ message.standard = $root.Standard.decode(reader, reader.uint32());
814
+ break;
815
+ case 111:
816
+ message.nstr = $root.Nstr.decode(reader, reader.uint32());
817
+ break;
818
+ case 112:
819
+ message.cstadt = $root.Cstad.decode(reader, reader.uint32());
820
+ break;
821
+ case 113:
822
+ message.claw = $root.Claw.decode(reader, reader.uint32());
823
+ break;
824
+ default:
825
+ reader.skipType(tag & 7);
826
+ break;
827
+ }
828
+ }
829
+ return message;
830
+ };
831
+ Resource.toObject = function toObject(message, options) {
832
+ if (!options)
833
+ options = {};
834
+ let object = {};
835
+ if (options.defaults) {
836
+ object.periodical = null;
837
+ object.thesis = null;
838
+ object.patent = null;
839
+ object.conference = null;
840
+ object.standard = null;
841
+ object.nstr = null;
842
+ object.cstadt = null;
843
+ object.claw = null;
844
+ }
845
+ if (message.periodical != null && message.hasOwnProperty('periodical'))
846
+ object.periodical = $root.Periodical.toObject(message.periodical, options);
847
+ if (message.thesis != null && message.hasOwnProperty('thesis'))
848
+ object.thesis = $root.Thesis.toObject(message.thesis, options);
849
+ if (message.patent != null && message.hasOwnProperty('patent'))
850
+ object.patent = $root.Patent.toObject(message.patent, options);
851
+ if (message.conference != null && message.hasOwnProperty('conference'))
852
+ object.conference = $root.Conference.toObject(message.conference, options);
853
+ if (message.standard != null && message.hasOwnProperty('standard'))
854
+ object.standard = $root.Standard.toObject(message.standard, options);
855
+ if (message.nstr != null && message.hasOwnProperty('nstr'))
856
+ object.nstr = $root.Nstr.toObject(message.nstr, options);
857
+ if (message.cstadt != null && message.hasOwnProperty('cstadt'))
858
+ object.cstadt = $root.Cstad.toObject(message.cstadt, options);
859
+ if (message.claw != null && message.hasOwnProperty('claw'))
860
+ object.claw = $root.Claw.toObject(message.claw, options);
861
+ return object;
862
+ };
863
+ return Resource;
864
+ })();
865
+
866
+ const ExportRequest = $root.ExportRequest = (() => {
867
+
868
+ function ExportRequest(properties) {
869
+ if (properties)
870
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
871
+ if (properties[keys[i]] != null)
872
+ this[keys[i]] = properties[keys[i]];
873
+ }
874
+
875
+ ExportRequest.prototype.hiddenid = "";
876
+
877
+ ExportRequest.create = function create(properties) {
878
+ return new ExportRequest(properties);
879
+ };
880
+
881
+ ExportRequest.encode = function encode(message, writer) {
882
+ if (!writer)
883
+ writer = $Writer.create();
884
+ if (message.hiddenid != null && Object.hasOwnProperty.call(message, "hiddenid"))
885
+ writer.uint32(10).string(message.hiddenid);
886
+ return writer;
887
+ };
888
+
889
+ return ExportRequest;
890
+ })();
891
+ const ExportResponse = $root.ExportResponse = (() => {
892
+
893
+ function ExportResponse(properties) {
894
+ this.resourceList = [];
895
+ if (properties)
896
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
897
+ if (properties[keys[i]] != null)
898
+ this[keys[i]] = properties[keys[i]];
899
+ }
900
+
901
+ ExportResponse.prototype.resourceList = $util.emptyArray;
902
+
903
+ ExportResponse.decode = function decode(reader, length) {
904
+ if (!(reader instanceof $Reader))
905
+ reader = $Reader.create(reader);
906
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.ExportResponse();
907
+ while (reader.pos < end) {
908
+ let tag = reader.uint32();
909
+ switch (tag >>> 3) {
910
+ case 1: {
911
+ if (!(message.resourceList && message.resourceList.length))
912
+ message.resourceList = [];
913
+ message.resourceList.push($root.ExportResource.decode(reader, reader.uint32()));
914
+ break;
915
+ }
916
+ default:
917
+ reader.skipType(tag & 7);
918
+ break;
919
+ }
920
+ }
921
+ return message;
922
+ };
923
+
924
+ ExportResponse.toObject = function toObject(message, options) {
925
+ if (!options)
926
+ options = {};
927
+ let object = {};
928
+ if (options.arrays || options.defaults)
929
+ object.resourceList = [];
930
+ if (message.resourceList && message.resourceList.length) {
931
+ object.resourceList = [];
932
+ for (let j = 0; j < message.resourceList.length; ++j)
933
+ object.resourceList[j] = $root.ExportResource.toObject(message.resourceList[j], options);
934
+ }
935
+ return object;
936
+ };
937
+ return ExportResponse;
938
+ })();
939
+ const ExportResource = $root.ExportResource = (() => {
940
+
941
+ function ExportResource(properties) {
942
+ if (properties)
943
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
944
+ if (properties[keys[i]] != null)
945
+ this[keys[i]] = properties[keys[i]];
946
+ }
947
+
948
+ ExportResource.prototype.type = "";
949
+ ExportResource.prototype.uid = "";
950
+ ExportResource.prototype.periodical = null;
951
+ ExportResource.prototype.thesis = null;
952
+ ExportResource.prototype.conference = null;
953
+ ExportResource.prototype.patent = null;
954
+ ExportResource.prototype.standard = null;
955
+ ExportResource.prototype.nstr = null;
956
+ ExportResource.prototype.cstad = null;
957
+
958
+ ExportResource.decode = function decode(reader, length) {
959
+ if (!(reader instanceof $Reader))
960
+ reader = $Reader.create(reader);
961
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.ExportResource();
962
+ while (reader.pos < end) {
963
+ let tag = reader.uint32();
964
+ switch (tag >>> 3) {
965
+ case 1: {
966
+ message.type = reader.string();
967
+ break;
968
+ }
969
+ case 3: {
970
+ message.uid = reader.string();
971
+ break;
972
+ }
973
+ case 101: {
974
+ message.periodical = $root.Periodical.decode(reader, reader.uint32());
975
+ break;
976
+ }
977
+ case 102: {
978
+ message.thesis = $root.Thesis.decode(reader, reader.uint32());
979
+ break;
980
+ }
981
+ case 104: {
982
+ message.conference = $root.Conference.decode(reader, reader.uint32());
983
+ break;
984
+ }
985
+ case 119: {
986
+ message.patent = $root.Patent.decode(reader, reader.uint32());
987
+ break;
988
+ }
989
+ case 120: {
990
+ message.standard = $root.Standard.decode(reader, reader.uint32());
991
+ break;
992
+ }
993
+ case 121: {
994
+ message.nstr = $root.Nstr.decode(reader, reader.uint32());
995
+ break;
996
+ }
997
+ case 122: {
998
+ message.cstad = $root.Cstad.decode(reader, reader.uint32());
999
+ break;
1000
+ }
1001
+ default:
1002
+ reader.skipType(tag & 7);
1003
+ break;
1004
+ }
1005
+ }
1006
+ return message;
1007
+ };
1008
+
1009
+ ExportResource.toObject = function toObject(message, options) {
1010
+ if (!options)
1011
+ options = {};
1012
+ let object = {};
1013
+ if (options.defaults) {
1014
+ object.type = "";
1015
+ object.uid = "";
1016
+ object.periodical = null;
1017
+ object.thesis = null;
1018
+ object.conference = null;
1019
+ object.patent = null;
1020
+ object.standard = null;
1021
+ object.nstr = null;
1022
+ object.cstad = null;
1023
+ }
1024
+ if (message.type != null && message.hasOwnProperty("type"))
1025
+ object.type = message.type;
1026
+ if (message.uid != null && message.hasOwnProperty("uid"))
1027
+ object.uid = message.uid;
1028
+ if (message.periodical != null && message.hasOwnProperty("periodical"))
1029
+ object.periodical = $root.Periodical.toObject(message.periodical, options);
1030
+ if (message.thesis != null && message.hasOwnProperty("thesis"))
1031
+ object.thesis = $root.Thesis.toObject(message.thesis, options);
1032
+ if (message.conference != null && message.hasOwnProperty("conference"))
1033
+ object.conference = $root.Conference.toObject(message.conference, options);
1034
+ if (message.patent != null && message.hasOwnProperty("patent"))
1035
+ object.patent = $root.Patent.toObject(message.patent, options);
1036
+ if (message.standard != null && message.hasOwnProperty("standard"))
1037
+ object.standard = $root.Standard.toObject(message.standard, options);
1038
+ if (message.nstr != null && message.hasOwnProperty("nstr"))
1039
+ object.nstr = $root.Nstr.toObject(message.nstr, options);
1040
+ if (message.cstad != null && message.hasOwnProperty("cstad"))
1041
+ object.cstad = $root.Cstad.toObject(message.cstad, options);
1042
+ return object;
1043
+ };
1044
+
1045
+ return ExportResource;
1046
+ })();
1047
+
1048
+ const Periodical = $root.Periodical = (() => {
1049
+ function Periodical(properties) {
1050
+ this.titleList = [];
1051
+ this.creatorList = [];
1052
+ this.foreigncreatorList = [];
1053
+ this.organizationnormList = [];
1054
+ this.originalorganizationList = [];
1055
+ this.originalclasscodeList = [];
1056
+ this.keywordsList = [];
1057
+ this.abstractList = [];
1058
+ this.periodicaltitleList = [];
1059
+ this.fundList = [];
1060
+ this.coreperiodicalList = [];
1061
+ this.leadtitleList = [];
1062
+ this.subtitleList = [];
1063
+ if (properties)
1064
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
1065
+ if (properties[keys[i]] != null)
1066
+ this[keys[i]] = properties[keys[i]];
1067
+ }
1068
+ Periodical.prototype.id = '';
1069
+ Periodical.prototype.titleList = $util.emptyArray;
1070
+ Periodical.prototype.creatorList = $util.emptyArray;
1071
+ Periodical.prototype.foreigncreatorList = $util.emptyArray;
1072
+ Periodical.prototype.organizationnormList = $util.emptyArray;
1073
+ Periodical.prototype.originalorganizationList = $util.emptyArray;
1074
+ Periodical.prototype.originalclasscodeList = $util.emptyArray;
1075
+ Periodical.prototype.keywordsList = $util.emptyArray;
1076
+ Periodical.prototype.abstractList = $util.emptyArray;
1077
+ Periodical.prototype.citedcount = 0;
1078
+ Periodical.prototype.periodicaltitleList = $util.emptyArray;
1079
+ Periodical.prototype.fundList = $util.emptyArray;
1080
+ Periodical.prototype.publishdate = '';
1081
+ Periodical.prototype.metadataonlinedate = '';
1082
+ Periodical.prototype.hasfulltext = false;
1083
+ Periodical.prototype.issue = '';
1084
+ Periodical.prototype.volum = '';
1085
+ Periodical.prototype.page = '';
1086
+ Periodical.prototype.coreperiodicalList = $util.emptyArray;
1087
+ Periodical.prototype.fulltextpath = '';
1088
+ Periodical.prototype.doi = '';
1089
+ Periodical.prototype.language = '';
1090
+ Periodical.prototype.issn = '';
1091
+ Periodical.prototype.metadataviewcount = 0;
1092
+ Periodical.prototype.downloadcount = 0;
1093
+ Periodical.prototype.prepublishversion = '';
1094
+ Periodical.prototype.publishstatus = '';
1095
+ Periodical.prototype.type = '';
1096
+ Periodical.prototype.leadtitleList = $util.emptyArray;
1097
+ Periodical.prototype.subtitleList = $util.emptyArray;
1098
+ Periodical.decode = function decode(reader, length) {
1099
+ if (!(reader instanceof $Reader))
1100
+ reader = $Reader.create(reader);
1101
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.Periodical();
1102
+ while (reader.pos < end) {
1103
+ let tag = reader.uint32();
1104
+ switch (tag >>> 3) {
1105
+ case 1:
1106
+ message.id = reader.string();
1107
+ break;
1108
+ case 2:
1109
+ if (!(message.titleList && message.titleList.length))
1110
+ message.titleList = [];
1111
+ message.titleList.push(reader.string());
1112
+ break;
1113
+ case 3:
1114
+ if (!(message.creatorList && message.creatorList.length))
1115
+ message.creatorList = [];
1116
+ message.creatorList.push(reader.string());
1117
+ break;
1118
+ case 6:
1119
+ if (!(message.foreigncreatorList && message.foreigncreatorList.length))
1120
+ message.foreigncreatorList = [];
1121
+ message.foreigncreatorList.push(reader.string());
1122
+ break;
1123
+ case 8:
1124
+ if (!(message.organizationnormList && message.organizationnormList.length))
1125
+ message.organizationnormList = [];
1126
+ message.organizationnormList.push(reader.string());
1127
+ break;
1128
+ case 10:
1129
+ if (!(message.originalorganizationList && message.originalorganizationList.length))
1130
+ message.originalorganizationList = [];
1131
+ message.originalorganizationList.push(reader.string());
1132
+ break;
1133
+ case 12:
1134
+ if (!(message.originalclasscodeList && message.originalclasscodeList.length))
1135
+ message.originalclasscodeList = [];
1136
+ message.originalclasscodeList.push(reader.string());
1137
+ break;
1138
+ case 16:
1139
+ if (!(message.keywordsList && message.keywordsList.length))
1140
+ message.keywordsList = [];
1141
+ message.keywordsList.push(reader.string());
1142
+ break;
1143
+ case 20:
1144
+ if (!(message.abstractList && message.abstractList.length))
1145
+ message.abstractList = [];
1146
+ message.abstractList.push(reader.string());
1147
+ break;
1148
+ case 21:
1149
+ message.citedcount = reader.int32();
1150
+ break;
1151
+ case 24:
1152
+ if (!(message.periodicaltitleList && message.periodicaltitleList.length))
1153
+ message.periodicaltitleList = [];
1154
+ message.periodicaltitleList.push(reader.string());
1155
+ break;
1156
+ case 27:
1157
+ if (!(message.fundList && message.fundList.length))
1158
+ message.fundList = [];
1159
+ message.fundList.push(reader.string());
1160
+ break;
1161
+ case 28:
1162
+ message.publishdate = reader.string();
1163
+ break;
1164
+ case 29:
1165
+ message.metadataonlinedate = reader.string();
1166
+ break;
1167
+ case 32:
1168
+ message.hasfulltext = reader.bool();
1169
+ break;
1170
+ case 34:
1171
+ message.issue = reader.string();
1172
+ break;
1173
+ case 35:
1174
+ message.volum = reader.string();
1175
+ break;
1176
+ case 36:
1177
+ message.page = reader.string();
1178
+ break;
1179
+ case 39:
1180
+ if (!(message.coreperiodicalList && message.coreperiodicalList.length))
1181
+ message.coreperiodicalList = [];
1182
+ message.coreperiodicalList.push(reader.string());
1183
+ break;
1184
+ case 40:
1185
+ message.fulltextpath = reader.string();
1186
+ break;
1187
+ case 41:
1188
+ message.doi = reader.string();
1189
+ break;
1190
+ case 44:
1191
+ message.language = reader.string();
1192
+ break;
1193
+ case 45:
1194
+ message.issn = reader.string();
1195
+ break;
1196
+ case 48:
1197
+ message.metadataviewcount = reader.int32();
1198
+ break;
1199
+ case 50:
1200
+ message.downloadcount = reader.int32();
1201
+ break;
1202
+ case 51:
1203
+ message.prepublishversion = reader.string();
1204
+ break;
1205
+ case 53:
1206
+ message.publishstatus = reader.string();
1207
+ break;
1208
+ case 54:
1209
+ message.type = reader.string();
1210
+ break;
1211
+ case 76:
1212
+ if (!(message.leadtitleList && message.leadtitleList.length))
1213
+ message.leadtitleList = [];
1214
+ message.leadtitleList.push(reader.string());
1215
+ break;
1216
+ case 77:
1217
+ if (!(message.subtitleList && message.subtitleList.length))
1218
+ message.subtitleList = [];
1219
+ message.subtitleList.push(reader.string());
1220
+ break;
1221
+ default:
1222
+ reader.skipType(tag & 7);
1223
+ break;
1224
+ }
1225
+ }
1226
+ return message;
1227
+ };
1228
+ Periodical.toObject = function toObject(message, options) {
1229
+ if (!options)
1230
+ options = {};
1231
+ let object = {};
1232
+ if (options.arrays || options.defaults) {
1233
+ object.titleList = [];
1234
+ object.creatorList = [];
1235
+ object.foreigncreatorList = [];
1236
+ object.organizationnormList = [];
1237
+ object.originalorganizationList = [];
1238
+ object.originalclasscodeList = [];
1239
+ object.keywordsList = [];
1240
+ object.abstractList = [];
1241
+ object.periodicaltitleList = [];
1242
+ object.fundList = [];
1243
+ object.coreperiodicalList = [];
1244
+ object.leadtitleList = [];
1245
+ object.subtitleList = [];
1246
+ }
1247
+ if (options.defaults) {
1248
+ object.id = '';
1249
+ object.citedcount = 0;
1250
+ object.publishdate = '';
1251
+ object.metadataonlinedate = '';
1252
+ object.hasfulltext = false;
1253
+ object.issue = '';
1254
+ object.volum = '';
1255
+ object.page = '';
1256
+ object.fulltextpath = '';
1257
+ object.doi = '';
1258
+ object.language = '';
1259
+ object.issn = '';
1260
+ object.metadataviewcount = 0;
1261
+ object.downloadcount = 0;
1262
+ object.prepublishversion = '';
1263
+ object.publishstatus = '';
1264
+ object.type = '';
1265
+ }
1266
+ if (message.id != null && message.hasOwnProperty('id'))
1267
+ object.id = message.id;
1268
+ if (message.titleList && message.titleList.length) {
1269
+ object.titleList = [];
1270
+ for (let j = 0; j < message.titleList.length; ++j)
1271
+ object.titleList[j] = message.titleList[j];
1272
+ }
1273
+ if (message.creatorList && message.creatorList.length) {
1274
+ object.creatorList = [];
1275
+ for (let j = 0; j < message.creatorList.length; ++j)
1276
+ object.creatorList[j] = message.creatorList[j];
1277
+ }
1278
+ if (message.foreigncreatorList && message.foreigncreatorList.length) {
1279
+ object.foreigncreatorList = [];
1280
+ for (let j = 0; j < message.foreigncreatorList.length; ++j)
1281
+ object.foreigncreatorList[j] = message.foreigncreatorList[j];
1282
+ }
1283
+ if (message.organizationnormList && message.organizationnormList.length) {
1284
+ object.organizationnormList = [];
1285
+ for (let j = 0; j < message.organizationnormList.length; ++j)
1286
+ object.organizationnormList[j] = message.organizationnormList[j];
1287
+ }
1288
+ if (message.originalorganizationList && message.originalorganizationList.length) {
1289
+ object.originalorganizationList = [];
1290
+ for (let j = 0; j < message.originalorganizationList.length; ++j)
1291
+ object.originalorganizationList[j] = message.originalorganizationList[j];
1292
+ }
1293
+ if (message.originalclasscodeList && message.originalclasscodeList.length) {
1294
+ object.originalclasscodeList = [];
1295
+ for (let j = 0; j < message.originalclasscodeList.length; ++j)
1296
+ object.originalclasscodeList[j] = message.originalclasscodeList[j];
1297
+ }
1298
+ if (message.keywordsList && message.keywordsList.length) {
1299
+ object.keywordsList = [];
1300
+ for (let j = 0; j < message.keywordsList.length; ++j)
1301
+ object.keywordsList[j] = message.keywordsList[j];
1302
+ }
1303
+ if (message.abstractList && message.abstractList.length) {
1304
+ object.abstractList = [];
1305
+ for (let j = 0; j < message.abstractList.length; ++j)
1306
+ object.abstractList[j] = message.abstractList[j];
1307
+ }
1308
+ if (message.citedcount != null && message.hasOwnProperty('citedcount'))
1309
+ object.citedcount = message.citedcount;
1310
+ if (message.periodicaltitleList && message.periodicaltitleList.length) {
1311
+ object.periodicaltitleList = [];
1312
+ for (let j = 0; j < message.periodicaltitleList.length; ++j)
1313
+ object.periodicaltitleList[j] = message.periodicaltitleList[j];
1314
+ }
1315
+ if (message.fundList && message.fundList.length) {
1316
+ object.fundList = [];
1317
+ for (let j = 0; j < message.fundList.length; ++j)
1318
+ object.fundList[j] = message.fundList[j];
1319
+ }
1320
+ if (message.publishdate != null && message.hasOwnProperty('publishdate'))
1321
+ object.publishdate = message.publishdate;
1322
+ if (message.metadataonlinedate != null && message.hasOwnProperty('metadataonlinedate'))
1323
+ object.metadataonlinedate = message.metadataonlinedate;
1324
+ if (message.hasfulltext != null && message.hasOwnProperty('hasfulltext'))
1325
+ object.hasfulltext = message.hasfulltext;
1326
+ if (message.issue != null && message.hasOwnProperty('issue'))
1327
+ object.issue = message.issue;
1328
+ if (message.volum != null && message.hasOwnProperty('volum'))
1329
+ object.volum = message.volum;
1330
+ if (message.page != null && message.hasOwnProperty('page'))
1331
+ object.page = message.page;
1332
+ if (message.coreperiodicalList && message.coreperiodicalList.length) {
1333
+ object.coreperiodicalList = [];
1334
+ for (let j = 0; j < message.coreperiodicalList.length; ++j)
1335
+ object.coreperiodicalList[j] = message.coreperiodicalList[j];
1336
+ }
1337
+ if (message.fulltextpath != null && message.hasOwnProperty('fulltextpath'))
1338
+ object.fulltextpath = message.fulltextpath;
1339
+ if (message.doi != null && message.hasOwnProperty('doi'))
1340
+ object.doi = message.doi;
1341
+ if (message.language != null && message.hasOwnProperty('language'))
1342
+ object.language = message.language;
1343
+ if (message.issn != null && message.hasOwnProperty('issn'))
1344
+ object.issn = message.issn;
1345
+ if (message.metadataviewcount != null && message.hasOwnProperty('metadataviewcount'))
1346
+ object.metadataviewcount = message.metadataviewcount;
1347
+ if (message.downloadcount != null && message.hasOwnProperty('downloadcount'))
1348
+ object.downloadcount = message.downloadcount;
1349
+ if (message.prepublishversion != null && message.hasOwnProperty('prepublishversion'))
1350
+ object.prepublishversion = message.prepublishversion;
1351
+ if (message.publishstatus != null && message.hasOwnProperty('publishstatus'))
1352
+ object.publishstatus = message.publishstatus;
1353
+ if (message.type != null && message.hasOwnProperty('type'))
1354
+ object.type = message.type;
1355
+ if (message.leadtitleList && message.leadtitleList.length) {
1356
+ object.leadtitleList = [];
1357
+ for (let j = 0; j < message.leadtitleList.length; ++j)
1358
+ object.leadtitleList[j] = message.leadtitleList[j];
1359
+ }
1360
+ if (message.subtitleList && message.subtitleList.length) {
1361
+ object.subtitleList = [];
1362
+ for (let j = 0; j < message.subtitleList.length; ++j)
1363
+ object.subtitleList[j] = message.subtitleList[j];
1364
+ }
1365
+ return object;
1366
+ };
1367
+ return Periodical;
1368
+ })();
1369
+ const Thesis = $root.Thesis = (() => {
1370
+ function Thesis(properties) {
1371
+ this.titleList = [];
1372
+ this.creatorList = [];
1373
+ this.creatorforsearchList = [];
1374
+ this.organizationnewList = [];
1375
+ this.originalorganizationList = [];
1376
+ this.classcodeList = [];
1377
+ this.keywordsList = [];
1378
+ this.abstractList = [];
1379
+ this.tutorList = [];
1380
+ if (properties)
1381
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
1382
+ if (properties[keys[i]] != null)
1383
+ this[keys[i]] = properties[keys[i]];
1384
+ }
1385
+ Thesis.prototype.id = '';
1386
+ Thesis.prototype.type = '';
1387
+ Thesis.prototype.titleList = $util.emptyArray;
1388
+ Thesis.prototype.creatorList = $util.emptyArray;
1389
+ Thesis.prototype.creatorforsearchList = $util.emptyArray;
1390
+ Thesis.prototype.organizationnewList = $util.emptyArray;
1391
+ Thesis.prototype.originalorganizationList = $util.emptyArray;
1392
+ Thesis.prototype.classcodeList = $util.emptyArray;
1393
+ Thesis.prototype.keywordsList = $util.emptyArray;
1394
+ Thesis.prototype.abstractList = $util.emptyArray;
1395
+ Thesis.prototype.citedcount = 0;
1396
+ Thesis.prototype.publishdate = '';
1397
+ Thesis.prototype.metadataonlinedate = '';
1398
+ Thesis.prototype.hasfulltext = false;
1399
+ Thesis.prototype.pageno = '';
1400
+ Thesis.prototype.fulltextpath = '';
1401
+ Thesis.prototype.doi = '';
1402
+ Thesis.prototype.degree = '';
1403
+ Thesis.prototype.language = '';
1404
+ Thesis.prototype.major = '';
1405
+ Thesis.prototype.tutorList = $util.emptyArray;
1406
+ Thesis.prototype.metadataviewcount = 0;
1407
+ Thesis.prototype.downloadcount = 0;
1408
+ Thesis.decode = function decode(reader, length) {
1409
+ if (!(reader instanceof $Reader))
1410
+ reader = $Reader.create(reader);
1411
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.Thesis();
1412
+ while (reader.pos < end) {
1413
+ let tag = reader.uint32();
1414
+ switch (tag >>> 3) {
1415
+ case 1:
1416
+ message.id = reader.string();
1417
+ break;
1418
+ case 2:
1419
+ message.type = reader.string();
1420
+ break;
1421
+ case 3:
1422
+ if (!(message.titleList && message.titleList.length))
1423
+ message.titleList = [];
1424
+ message.titleList.push(reader.string());
1425
+ break;
1426
+ case 4:
1427
+ if (!(message.creatorList && message.creatorList.length))
1428
+ message.creatorList = [];
1429
+ message.creatorList.push(reader.string());
1430
+ break;
1431
+ case 5:
1432
+ if (!(message.creatorforsearchList && message.creatorforsearchList.length))
1433
+ message.creatorforsearchList = [];
1434
+ message.creatorforsearchList.push(reader.string());
1435
+ break;
1436
+ case 7:
1437
+ if (!(message.organizationnewList && message.organizationnewList.length))
1438
+ message.organizationnewList = [];
1439
+ message.organizationnewList.push(reader.string());
1440
+ break;
1441
+ case 8:
1442
+ if (!(message.originalorganizationList && message.originalorganizationList.length))
1443
+ message.originalorganizationList = [];
1444
+ message.originalorganizationList.push(reader.string());
1445
+ break;
1446
+ case 10:
1447
+ if (!(message.classcodeList && message.classcodeList.length))
1448
+ message.classcodeList = [];
1449
+ message.classcodeList.push(reader.string());
1450
+ break;
1451
+ case 14:
1452
+ if (!(message.keywordsList && message.keywordsList.length))
1453
+ message.keywordsList = [];
1454
+ message.keywordsList.push(reader.string());
1455
+ break;
1456
+ case 18:
1457
+ if (!(message.abstractList && message.abstractList.length))
1458
+ message.abstractList = [];
1459
+ message.abstractList.push(reader.string());
1460
+ break;
1461
+ case 19:
1462
+ message.citedcount = reader.int32();
1463
+ break;
1464
+ case 21:
1465
+ message.publishdate = reader.string();
1466
+ break;
1467
+ case 22:
1468
+ message.metadataonlinedate = reader.string();
1469
+ break;
1470
+ case 25:
1471
+ message.hasfulltext = reader.bool();
1472
+ break;
1473
+ case 27:
1474
+ message.pageno = reader.string();
1475
+ break;
1476
+ case 28:
1477
+ message.fulltextpath = reader.string();
1478
+ break;
1479
+ case 29:
1480
+ message.doi = reader.string();
1481
+ break;
1482
+ case 30:
1483
+ message.degree = reader.string();
1484
+ break;
1485
+ case 31:
1486
+ message.language = reader.string();
1487
+ break;
1488
+ case 34:
1489
+ message.major = reader.string();
1490
+ break;
1491
+ case 36:
1492
+ if (!(message.tutorList && message.tutorList.length))
1493
+ message.tutorList = [];
1494
+ message.tutorList.push(reader.string());
1495
+ break;
1496
+ case 37:
1497
+ message.metadataviewcount = reader.int32();
1498
+ break;
1499
+ case 39:
1500
+ message.downloadcount = reader.int32();
1501
+ break;
1502
+ default:
1503
+ reader.skipType(tag & 7);
1504
+ break;
1505
+ }
1506
+ }
1507
+ return message;
1508
+ };
1509
+ Thesis.toObject = function toObject(message, options) {
1510
+ if (!options)
1511
+ options = {};
1512
+ let object = {};
1513
+ if (options.arrays || options.defaults) {
1514
+ object.titleList = [];
1515
+ object.creatorList = [];
1516
+ object.creatorforsearchList = [];
1517
+ object.organizationnewList = [];
1518
+ object.originalorganizationList = [];
1519
+ object.classcodeList = [];
1520
+ object.keywordsList = [];
1521
+ object.abstractList = [];
1522
+ object.tutorList = [];
1523
+ }
1524
+ if (options.defaults) {
1525
+ object.id = '';
1526
+ object.type = '';
1527
+ object.citedcount = 0;
1528
+ object.publishdate = '';
1529
+ object.metadataonlinedate = '';
1530
+ object.hasfulltext = false;
1531
+ object.pageno = '';
1532
+ object.fulltextpath = '';
1533
+ object.doi = '';
1534
+ object.degree = '';
1535
+ object.language = '';
1536
+ object.major = '';
1537
+ object.metadataviewcount = 0;
1538
+ object.downloadcount = 0;
1539
+ }
1540
+ if (message.id != null && message.hasOwnProperty('id'))
1541
+ object.id = message.id;
1542
+ if (message.type != null && message.hasOwnProperty('type'))
1543
+ object.type = message.type;
1544
+ if (message.titleList && message.titleList.length) {
1545
+ object.titleList = [];
1546
+ for (let j = 0; j < message.titleList.length; ++j)
1547
+ object.titleList[j] = message.titleList[j];
1548
+ }
1549
+ if (message.creatorList && message.creatorList.length) {
1550
+ object.creatorList = [];
1551
+ for (let j = 0; j < message.creatorList.length; ++j)
1552
+ object.creatorList[j] = message.creatorList[j];
1553
+ }
1554
+ if (message.creatorforsearchList && message.creatorforsearchList.length) {
1555
+ object.creatorforsearchList = [];
1556
+ for (let j = 0; j < message.creatorforsearchList.length; ++j)
1557
+ object.creatorforsearchList[j] = message.creatorforsearchList[j];
1558
+ }
1559
+ if (message.organizationnewList && message.organizationnewList.length) {
1560
+ object.organizationnewList = [];
1561
+ for (let j = 0; j < message.organizationnewList.length; ++j)
1562
+ object.organizationnewList[j] = message.organizationnewList[j];
1563
+ }
1564
+ if (message.originalorganizationList && message.originalorganizationList.length) {
1565
+ object.originalorganizationList = [];
1566
+ for (let j = 0; j < message.originalorganizationList.length; ++j)
1567
+ object.originalorganizationList[j] = message.originalorganizationList[j];
1568
+ }
1569
+ if (message.classcodeList && message.classcodeList.length) {
1570
+ object.classcodeList = [];
1571
+ for (let j = 0; j < message.classcodeList.length; ++j)
1572
+ object.classcodeList[j] = message.classcodeList[j];
1573
+ }
1574
+ if (message.keywordsList && message.keywordsList.length) {
1575
+ object.keywordsList = [];
1576
+ for (let j = 0; j < message.keywordsList.length; ++j)
1577
+ object.keywordsList[j] = message.keywordsList[j];
1578
+ }
1579
+ if (message.abstractList && message.abstractList.length) {
1580
+ object.abstractList = [];
1581
+ for (let j = 0; j < message.abstractList.length; ++j)
1582
+ object.abstractList[j] = message.abstractList[j];
1583
+ }
1584
+ if (message.citedcount != null && message.hasOwnProperty('citedcount'))
1585
+ object.citedcount = message.citedcount;
1586
+ if (message.publishdate != null && message.hasOwnProperty('publishdate'))
1587
+ object.publishdate = message.publishdate;
1588
+ if (message.metadataonlinedate != null && message.hasOwnProperty('metadataonlinedate'))
1589
+ object.metadataonlinedate = message.metadataonlinedate;
1590
+ if (message.hasfulltext != null && message.hasOwnProperty('hasfulltext'))
1591
+ object.hasfulltext = message.hasfulltext;
1592
+ if (message.pageno != null && message.hasOwnProperty('pageno'))
1593
+ object.pageno = message.pageno;
1594
+ if (message.fulltextpath != null && message.hasOwnProperty('fulltextpath'))
1595
+ object.fulltextpath = message.fulltextpath;
1596
+ if (message.doi != null && message.hasOwnProperty('doi'))
1597
+ object.doi = message.doi;
1598
+ if (message.degree != null && message.hasOwnProperty('degree'))
1599
+ object.degree = message.degree;
1600
+ if (message.language != null && message.hasOwnProperty('language'))
1601
+ object.language = message.language;
1602
+ if (message.major != null && message.hasOwnProperty('major'))
1603
+ object.major = message.major;
1604
+ if (message.tutorList && message.tutorList.length) {
1605
+ object.tutorList = [];
1606
+ for (let j = 0; j < message.tutorList.length; ++j)
1607
+ object.tutorList[j] = message.tutorList[j];
1608
+ }
1609
+ if (message.metadataviewcount != null && message.hasOwnProperty('metadataviewcount'))
1610
+ object.metadataviewcount = message.metadataviewcount;
1611
+ if (message.downloadcount != null && message.hasOwnProperty('downloadcount'))
1612
+ object.downloadcount = message.downloadcount;
1613
+ return object;
1614
+ };
1615
+ return Thesis;
1616
+ })();
1617
+ const Conference = $root.Conference = (() => {
1618
+ function Conference(properties) {
1619
+ this.titleList = [];
1620
+ this.creatorList = [];
1621
+ this.classcodeList = [];
1622
+ this.keywordsList = [];
1623
+ this.abstractList = [];
1624
+ this.meetingtitleList = [];
1625
+ this.sponsorList = [];
1626
+ if (properties)
1627
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
1628
+ if (properties[keys[i]] != null)
1629
+ this[keys[i]] = properties[keys[i]];
1630
+ }
1631
+ Conference.prototype.id = '';
1632
+ Conference.prototype.titleList = $util.emptyArray;
1633
+ Conference.prototype.creatorList = $util.emptyArray;
1634
+ Conference.prototype.classcodeList = $util.emptyArray;
1635
+ Conference.prototype.keywordsList = $util.emptyArray;
1636
+ Conference.prototype.abstractList = $util.emptyArray;
1637
+ Conference.prototype.citedcount = 0;
1638
+ Conference.prototype.publishdate = '';
1639
+ Conference.prototype.metadataonlinedate = '';
1640
+ Conference.prototype.hasfulltext = false;
1641
+ Conference.prototype.page = '';
1642
+ Conference.prototype.fulltextpath = '';
1643
+ Conference.prototype.doi = '';
1644
+ Conference.prototype.language = '';
1645
+ Conference.prototype.meetingtitleList = $util.emptyArray;
1646
+ Conference.prototype.meetingarea = '';
1647
+ Conference.prototype.meetingdate = '';
1648
+ Conference.prototype.sponsorList = $util.emptyArray;
1649
+ Conference.prototype.meetingcorpus = '';
1650
+ Conference.prototype.metadataviewcount = 0;
1651
+ Conference.prototype.downloadcount = 0;
1652
+ Conference.prototype.type = '';
1653
+ Conference.decode = function decode(reader, length) {
1654
+ if (!(reader instanceof $Reader))
1655
+ reader = $Reader.create(reader);
1656
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.Conference();
1657
+ while (reader.pos < end) {
1658
+ let tag = reader.uint32();
1659
+ switch (tag >>> 3) {
1660
+ case 1:
1661
+ message.id = reader.string();
1662
+ break;
1663
+ case 3:
1664
+ if (!(message.titleList && message.titleList.length))
1665
+ message.titleList = [];
1666
+ message.titleList.push(reader.string());
1667
+ break;
1668
+ case 4:
1669
+ if (!(message.creatorList && message.creatorList.length))
1670
+ message.creatorList = [];
1671
+ message.creatorList.push(reader.string());
1672
+ break;
1673
+ case 12:
1674
+ if (!(message.classcodeList && message.classcodeList.length))
1675
+ message.classcodeList = [];
1676
+ message.classcodeList.push(reader.string());
1677
+ break;
1678
+ case 16:
1679
+ if (!(message.keywordsList && message.keywordsList.length))
1680
+ message.keywordsList = [];
1681
+ message.keywordsList.push(reader.string());
1682
+ break;
1683
+ case 20:
1684
+ if (!(message.abstractList && message.abstractList.length))
1685
+ message.abstractList = [];
1686
+ message.abstractList.push(reader.string());
1687
+ break;
1688
+ case 21:
1689
+ message.citedcount = reader.int32();
1690
+ break;
1691
+ case 23:
1692
+ message.publishdate = reader.string();
1693
+ break;
1694
+ case 24:
1695
+ message.metadataonlinedate = reader.string();
1696
+ break;
1697
+ case 27:
1698
+ message.hasfulltext = reader.bool();
1699
+ break;
1700
+ case 29:
1701
+ message.page = reader.string();
1702
+ break;
1703
+ case 31:
1704
+ message.fulltextpath = reader.string();
1705
+ break;
1706
+ case 32:
1707
+ message.doi = reader.string();
1708
+ break;
1709
+ case 35:
1710
+ message.language = reader.string();
1711
+ break;
1712
+ case 37:
1713
+ if (!(message.meetingtitleList && message.meetingtitleList.length))
1714
+ message.meetingtitleList = [];
1715
+ message.meetingtitleList.push(reader.string());
1716
+ break;
1717
+ case 38:
1718
+ message.meetingarea = reader.string();
1719
+ break;
1720
+ case 39:
1721
+ message.meetingdate = reader.string();
1722
+ break;
1723
+ case 41:
1724
+ if (!(message.sponsorList && message.sponsorList.length))
1725
+ message.sponsorList = [];
1726
+ message.sponsorList.push(reader.string());
1727
+ break;
1728
+ case 42:
1729
+ message.meetingcorpus = reader.string();
1730
+ break;
1731
+ case 43:
1732
+ message.metadataviewcount = reader.int32();
1733
+ break;
1734
+ case 45:
1735
+ message.downloadcount = reader.int32();
1736
+ break;
1737
+ case 2:
1738
+ message.type = reader.string();
1739
+ break;
1740
+ default:
1741
+ reader.skipType(tag & 7);
1742
+ break;
1743
+ }
1744
+ }
1745
+ return message;
1746
+ };
1747
+ Conference.toObject = function toObject(message, options) {
1748
+ if (!options)
1749
+ options = {};
1750
+ let object = {};
1751
+ if (options.arrays || options.defaults) {
1752
+ object.titleList = [];
1753
+ object.creatorList = [];
1754
+ object.classcodeList = [];
1755
+ object.keywordsList = [];
1756
+ object.abstractList = [];
1757
+ object.meetingtitleList = [];
1758
+ object.sponsorList = [];
1759
+ }
1760
+ if (options.defaults) {
1761
+ object.id = '';
1762
+ object.type = '';
1763
+ object.citedcount = 0;
1764
+ object.publishdate = '';
1765
+ object.metadataonlinedate = '';
1766
+ object.hasfulltext = false;
1767
+ object.page = '';
1768
+ object.fulltextpath = '';
1769
+ object.doi = '';
1770
+ object.language = '';
1771
+ object.meetingarea = '';
1772
+ object.meetingdate = '';
1773
+ object.meetingcorpus = '';
1774
+ object.metadataviewcount = 0;
1775
+ object.downloadcount = 0;
1776
+ }
1777
+ if (message.id != null && message.hasOwnProperty('id'))
1778
+ object.id = message.id;
1779
+ if (message.type != null && message.hasOwnProperty('type'))
1780
+ object.type = message.type;
1781
+ if (message.titleList && message.titleList.length) {
1782
+ object.titleList = [];
1783
+ for (let j = 0; j < message.titleList.length; ++j)
1784
+ object.titleList[j] = message.titleList[j];
1785
+ }
1786
+ if (message.creatorList && message.creatorList.length) {
1787
+ object.creatorList = [];
1788
+ for (let j = 0; j < message.creatorList.length; ++j)
1789
+ object.creatorList[j] = message.creatorList[j];
1790
+ }
1791
+ if (message.classcodeList && message.classcodeList.length) {
1792
+ object.classcodeList = [];
1793
+ for (let j = 0; j < message.classcodeList.length; ++j)
1794
+ object.classcodeList[j] = message.classcodeList[j];
1795
+ }
1796
+ if (message.keywordsList && message.keywordsList.length) {
1797
+ object.keywordsList = [];
1798
+ for (let j = 0; j < message.keywordsList.length; ++j)
1799
+ object.keywordsList[j] = message.keywordsList[j];
1800
+ }
1801
+ if (message.abstractList && message.abstractList.length) {
1802
+ object.abstractList = [];
1803
+ for (let j = 0; j < message.abstractList.length; ++j)
1804
+ object.abstractList[j] = message.abstractList[j];
1805
+ }
1806
+ if (message.citedcount != null && message.hasOwnProperty('citedcount'))
1807
+ object.citedcount = message.citedcount;
1808
+ if (message.publishdate != null && message.hasOwnProperty('publishdate'))
1809
+ object.publishdate = message.publishdate;
1810
+ if (message.metadataonlinedate != null && message.hasOwnProperty('metadataonlinedate'))
1811
+ object.metadataonlinedate = message.metadataonlinedate;
1812
+ if (message.hasfulltext != null && message.hasOwnProperty('hasfulltext'))
1813
+ object.hasfulltext = message.hasfulltext;
1814
+ if (message.page != null && message.hasOwnProperty('page'))
1815
+ object.page = message.page;
1816
+ if (message.fulltextpath != null && message.hasOwnProperty('fulltextpath'))
1817
+ object.fulltextpath = message.fulltextpath;
1818
+ if (message.doi != null && message.hasOwnProperty('doi'))
1819
+ object.doi = message.doi;
1820
+ if (message.language != null && message.hasOwnProperty('language'))
1821
+ object.language = message.language;
1822
+ if (message.meetingtitleList && message.meetingtitleList.length) {
1823
+ object.meetingtitleList = [];
1824
+ for (let j = 0; j < message.meetingtitleList.length; ++j)
1825
+ object.meetingtitleList[j] = message.meetingtitleList[j];
1826
+ }
1827
+ if (message.meetingarea != null && message.hasOwnProperty('meetingarea'))
1828
+ object.meetingarea = message.meetingarea;
1829
+ if (message.meetingdate != null && message.hasOwnProperty('meetingdate'))
1830
+ object.meetingdate = message.meetingdate;
1831
+ if (message.sponsorList && message.sponsorList.length) {
1832
+ object.sponsorList = [];
1833
+ for (let j = 0; j < message.sponsorList.length; ++j)
1834
+ object.sponsorList[j] = message.sponsorList[j];
1835
+ }
1836
+ if (message.meetingcorpus != null && message.hasOwnProperty('meetingcorpus'))
1837
+ object.meetingcorpus = message.meetingcorpus;
1838
+ if (message.metadataviewcount != null && message.hasOwnProperty('metadataviewcount'))
1839
+ object.metadataviewcount = message.metadataviewcount;
1840
+ if (message.downloadcount != null && message.hasOwnProperty('downloadcount'))
1841
+ object.downloadcount = message.downloadcount;
1842
+ return object;
1843
+ };
1844
+ return Conference;
1845
+ })();
1846
+ const Patent = $root.Patent = (() => {
1847
+ function Patent(properties) {
1848
+ this.titleList = [];
1849
+ this.inventorList = [];
1850
+ this.applicantList = [];
1851
+ this.classcodeList = [];
1852
+ this.abstractList = [];
1853
+ if (properties)
1854
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
1855
+ if (properties[keys[i]] != null)
1856
+ this[keys[i]] = properties[keys[i]];
1857
+ }
1858
+ Patent.prototype.id = '';
1859
+ Patent.prototype.titleList = $util.emptyArray;
1860
+ Patent.prototype.patentcode = '';
1861
+ Patent.prototype.publicationno = '';
1862
+ Patent.prototype.inventorList = $util.emptyArray;
1863
+ Patent.prototype.applicantList = $util.emptyArray;
1864
+ Patent.prototype.classcodeList = $util.emptyArray;
1865
+ Patent.prototype.abstractList = $util.emptyArray;
1866
+ Patent.prototype.patenttype = '';
1867
+ Patent.prototype.applicationdate = '';
1868
+ Patent.prototype.publicationdate = '';
1869
+ Patent.prototype.applicantarea = '';
1870
+ Patent.prototype.applicantaddress = '';
1871
+ Patent.prototype.agency = '';
1872
+ Patent.prototype.agent = '';
1873
+ Patent.prototype.signoryitem = '';
1874
+ Patent.prototype.legalstatus = '';
1875
+ Patent.prototype.validity = '';
1876
+ Patent.prototype.fulltextpath = '';
1877
+ Patent.prototype.hasfulltext = false;
1878
+ Patent.prototype.type = '';
1879
+ Patent.prototype.citedcount = '';
1880
+ Patent.decode = function decode(reader, length) {
1881
+ if (!(reader instanceof $Reader))
1882
+ reader = $Reader.create(reader);
1883
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.Patent();
1884
+ while (reader.pos < end) {
1885
+ let tag = reader.uint32();
1886
+ switch (tag >>> 3) {
1887
+ case 1:
1888
+ message.id = reader.string();
1889
+ break;
1890
+ case 2:
1891
+ if (!(message.titleList && message.titleList.length))
1892
+ message.titleList = [];
1893
+ message.titleList.push(reader.string());
1894
+ break;
1895
+ case 3:
1896
+ message.patentcode = reader.string();
1897
+ break;
1898
+ case 4:
1899
+ message.publicationno = reader.string();
1900
+ break;
1901
+ case 5:
1902
+ if (!(message.inventorList && message.inventorList.length))
1903
+ message.inventorList = [];
1904
+ message.inventorList.push(reader.string());
1905
+ break;
1906
+ case 7:
1907
+ if (!(message.applicantList && message.applicantList.length))
1908
+ message.applicantList = [];
1909
+ message.applicantList.push(reader.string());
1910
+ break;
1911
+ case 10:
1912
+ if (!(message.classcodeList && message.classcodeList.length))
1913
+ message.classcodeList = [];
1914
+ message.classcodeList.push(reader.string());
1915
+ break;
1916
+ case 12:
1917
+ if (!(message.abstractList && message.abstractList.length))
1918
+ message.abstractList = [];
1919
+ message.abstractList.push(reader.string());
1920
+ break;
1921
+ case 13:
1922
+ message.patenttype = reader.string();
1923
+ break;
1924
+ case 15:
1925
+ message.applicationdate = reader.string();
1926
+ break;
1927
+ case 16:
1928
+ message.publicationdate = reader.string();
1929
+ break;
1930
+ case 18:
1931
+ message.applicantarea = reader.string();
1932
+ break;
1933
+ case 19:
1934
+ message.applicantaddress = reader.string();
1935
+ break;
1936
+ case 20:
1937
+ message.agency = reader.string();
1938
+ break;
1939
+ case 21:
1940
+ message.agent = reader.string();
1941
+ break;
1942
+ case 22:
1943
+ message.signoryitem = reader.string();
1944
+ break;
1945
+ case 23:
1946
+ message.legalstatus = reader.string();
1947
+ break;
1948
+ case 46:
1949
+ message.validity = reader.string();
1950
+ break;
1951
+ case 25:
1952
+ message.fulltextpath = reader.string();
1953
+ break;
1954
+ case 26:
1955
+ message.hasfulltext = reader.bool();
1956
+ break;
1957
+ case 27:
1958
+ message.type = reader.string();
1959
+ break;
1960
+ case 33:
1961
+ message.citedcount = reader.string();
1962
+ break;
1963
+ default:
1964
+ reader.skipType(tag & 7);
1965
+ break;
1966
+ }
1967
+ }
1968
+ return message;
1969
+ };
1970
+ Patent.toObject = function toObject(message, options) {
1971
+ if (!options)
1972
+ options = {};
1973
+ let object = {};
1974
+ if (options.arrays || options.defaults) {
1975
+ object.titleList = [];
1976
+ object.inventorList = [];
1977
+ object.applicantList = [];
1978
+ object.classcodeList = [];
1979
+ object.abstractList = [];
1980
+ }
1981
+ if (options.defaults) {
1982
+ object.id = '';
1983
+ object.patentcode = '';
1984
+ object.publicationno = '';
1985
+ object.patenttype = '';
1986
+ object.applicationdate = '';
1987
+ object.publicationdate = '';
1988
+ object.applicantarea = '';
1989
+ object.applicantaddress = '';
1990
+ object.agency = '';
1991
+ object.agent = '';
1992
+ object.signoryitem = '';
1993
+ object.legalstatus = '';
1994
+ object.fulltextpath = '';
1995
+ object.hasfulltext = false;
1996
+ object.type = '';
1997
+ object.citedcount = '';
1998
+ object.validity = '';
1999
+ }
2000
+ if (message.id != null && message.hasOwnProperty('id'))
2001
+ object.id = message.id;
2002
+ if (message.titleList && message.titleList.length) {
2003
+ object.titleList = [];
2004
+ for (let j = 0; j < message.titleList.length; ++j)
2005
+ object.titleList[j] = message.titleList[j];
2006
+ }
2007
+ if (message.patentcode != null && message.hasOwnProperty('patentcode'))
2008
+ object.patentcode = message.patentcode;
2009
+ if (message.publicationno != null && message.hasOwnProperty('publicationno'))
2010
+ object.publicationno = message.publicationno;
2011
+ if (message.inventorList && message.inventorList.length) {
2012
+ object.inventorList = [];
2013
+ for (let j = 0; j < message.inventorList.length; ++j)
2014
+ object.inventorList[j] = message.inventorList[j];
2015
+ }
2016
+ if (message.applicantList && message.applicantList.length) {
2017
+ object.applicantList = [];
2018
+ for (let j = 0; j < message.applicantList.length; ++j)
2019
+ object.applicantList[j] = message.applicantList[j];
2020
+ }
2021
+ if (message.classcodeList && message.classcodeList.length) {
2022
+ object.classcodeList = [];
2023
+ for (let j = 0; j < message.classcodeList.length; ++j)
2024
+ object.classcodeList[j] = message.classcodeList[j];
2025
+ }
2026
+ if (message.abstractList && message.abstractList.length) {
2027
+ object.abstractList = [];
2028
+ for (let j = 0; j < message.abstractList.length; ++j)
2029
+ object.abstractList[j] = message.abstractList[j];
2030
+ }
2031
+ if (message.patenttype != null && message.hasOwnProperty('patenttype'))
2032
+ object.patenttype = message.patenttype;
2033
+ if (message.applicationdate != null && message.hasOwnProperty('applicationdate'))
2034
+ object.applicationdate = message.applicationdate;
2035
+ if (message.publicationdate != null && message.hasOwnProperty('publicationdate'))
2036
+ object.publicationdate = message.publicationdate;
2037
+ if (message.applicantarea != null && message.hasOwnProperty('applicantarea'))
2038
+ object.applicantarea = message.applicantarea;
2039
+ if (message.applicantaddress != null && message.hasOwnProperty('applicantaddress'))
2040
+ object.applicantaddress = message.applicantaddress;
2041
+ if (message.agency != null && message.hasOwnProperty('agency'))
2042
+ object.agency = message.agency;
2043
+ if (message.agent != null && message.hasOwnProperty('agent'))
2044
+ object.agent = message.agent;
2045
+ if (message.signoryitem != null && message.hasOwnProperty('signoryitem'))
2046
+ object.signoryitem = message.signoryitem;
2047
+ if (message.legalstatus != null && message.hasOwnProperty('legalstatus'))
2048
+ object.legalstatus = message.legalstatus;
2049
+ if (message.fulltextpath != null && message.hasOwnProperty('fulltextpath'))
2050
+ object.fulltextpath = message.fulltextpath;
2051
+ if (message.hasfulltext != null && message.hasOwnProperty('hasfulltext'))
2052
+ object.hasfulltext = message.hasfulltext;
2053
+ if (message.type != null && message.hasOwnProperty('type'))
2054
+ object.type = message.type;
2055
+ if (message.citedcount != null && message.hasOwnProperty('citedcount'))
2056
+ object.citedcount = message.citedcount;
2057
+ if (message.validity != null && message.hasOwnProperty('validity'))
2058
+ object.validity = message.validity;
2059
+ return object;
2060
+ };
2061
+ return Patent;
2062
+ })();
2063
+ const Nstr = $root.Nstr = (() => {
2064
+ function Nstr(properties) {
2065
+ this.titleList = [];
2066
+ this.creatorList = [];
2067
+ this.organizationList = [];
2068
+ this.classcodeList = [];
2069
+ this.keywordsList = [];
2070
+ this.abstractList = [];
2071
+ if (properties)
2072
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
2073
+ if (properties[keys[i]] != null)
2074
+ this[keys[i]] = properties[keys[i]];
2075
+ }
2076
+ Nstr.prototype.id = '';
2077
+ Nstr.prototype.titleList = $util.emptyArray;
2078
+ Nstr.prototype.creatorList = $util.emptyArray;
2079
+ Nstr.prototype.organizationList = $util.emptyArray;
2080
+ Nstr.prototype.classcodeList = $util.emptyArray;
2081
+ Nstr.prototype.keywordsList = $util.emptyArray;
2082
+ Nstr.prototype.abstractList = $util.emptyArray;
2083
+ Nstr.prototype.planname = '';
2084
+ Nstr.prototype.projectname = '';
2085
+ Nstr.prototype.publishdate = '';
2086
+ Nstr.prototype.technicalfield = '';
2087
+ Nstr.prototype.pagenum = '';
2088
+ Nstr.prototype.language = '';
2089
+ Nstr.prototype.metadataviewcount = 0;
2090
+ Nstr.prototype.type = '';
2091
+ Nstr.prototype.area = '';
2092
+ Nstr.prototype.subject = '';
2093
+ Nstr.decode = function decode(reader, length) {
2094
+ if (!(reader instanceof $Reader))
2095
+ reader = $Reader.create(reader);
2096
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.Nstr();
2097
+ while (reader.pos < end) {
2098
+ let tag = reader.uint32();
2099
+ switch (tag >>> 3) {
2100
+ case 1:
2101
+ message.id = reader.string();
2102
+ break;
2103
+ case 2:
2104
+ if (!(message.titleList && message.titleList.length))
2105
+ message.titleList = [];
2106
+ message.titleList.push(reader.string());
2107
+ break;
2108
+ case 3:
2109
+ if (!(message.creatorList && message.creatorList.length))
2110
+ message.creatorList = [];
2111
+ message.creatorList.push(reader.string());
2112
+ break;
2113
+ case 5:
2114
+ if (!(message.organizationList && message.organizationList.length))
2115
+ message.organizationList = [];
2116
+ message.organizationList.push(reader.string());
2117
+ break;
2118
+ case 7:
2119
+ if (!(message.classcodeList && message.classcodeList.length))
2120
+ message.classcodeList = [];
2121
+ message.classcodeList.push(reader.string());
2122
+ break;
2123
+ case 8:
2124
+ if (!(message.keywordsList && message.keywordsList.length))
2125
+ message.keywordsList = [];
2126
+ message.keywordsList.push(reader.string());
2127
+ break;
2128
+ case 11:
2129
+ if (!(message.abstractList && message.abstractList.length))
2130
+ message.abstractList = [];
2131
+ message.abstractList.push(reader.string());
2132
+ break;
2133
+ case 12:
2134
+ message.planname = reader.string();
2135
+ break;
2136
+ case 13:
2137
+ message.projectname = reader.string();
2138
+ break;
2139
+ case 33:
2140
+ message.publishdate = reader.string();
2141
+ break;
2142
+ case 35:
2143
+ message.technicalfield = reader.string();
2144
+ break;
2145
+ case 24:
2146
+ message.pagenum = reader.string();
2147
+ break;
2148
+ case 26:
2149
+ message.language = reader.string();
2150
+ break;
2151
+ case 29:
2152
+ message.metadataviewcount = reader.int32();
2153
+ break;
2154
+ case 31:
2155
+ message.type = reader.string();
2156
+ break;
2157
+ case 37:
2158
+ message.area = reader.string();
2159
+ break;
2160
+ case 38:
2161
+ message.subject = reader.string();
2162
+ break;
2163
+ default:
2164
+ reader.skipType(tag & 7);
2165
+ break;
2166
+ }
2167
+ }
2168
+ return message;
2169
+ };
2170
+ Nstr.toObject = function toObject(message, options) {
2171
+ if (!options)
2172
+ options = {};
2173
+ let object = {};
2174
+ if (options.arrays || options.defaults) {
2175
+ object.titleList = [];
2176
+ object.creatorList = [];
2177
+ object.organizationList = [];
2178
+ object.classcodeList = [];
2179
+ object.keywordsList = [];
2180
+ object.abstractList = [];
2181
+ }
2182
+ if (options.defaults) {
2183
+ object.id = '';
2184
+ object.planname = '';
2185
+ object.projectname = '';
2186
+ object.pagenum = '';
2187
+ object.language = '';
2188
+ object.metadataviewcount = 0;
2189
+ object.type = '';
2190
+ object.publishdate = '';
2191
+ object.technicalfield = '';
2192
+ object.area = '';
2193
+ object.subject = '';
2194
+ }
2195
+ if (message.id != null && message.hasOwnProperty('id'))
2196
+ object.id = message.id;
2197
+ if (message.titleList && message.titleList.length) {
2198
+ object.titleList = [];
2199
+ for (let j = 0; j < message.titleList.length; ++j)
2200
+ object.titleList[j] = message.titleList[j];
2201
+ }
2202
+ if (message.creatorList && message.creatorList.length) {
2203
+ object.creatorList = [];
2204
+ for (let j = 0; j < message.creatorList.length; ++j)
2205
+ object.creatorList[j] = message.creatorList[j];
2206
+ }
2207
+ if (message.organizationList && message.organizationList.length) {
2208
+ object.organizationList = [];
2209
+ for (let j = 0; j < message.organizationList.length; ++j)
2210
+ object.organizationList[j] = message.organizationList[j];
2211
+ }
2212
+ if (message.classcodeList && message.classcodeList.length) {
2213
+ object.classcodeList = [];
2214
+ for (let j = 0; j < message.classcodeList.length; ++j)
2215
+ object.classcodeList[j] = message.classcodeList[j];
2216
+ }
2217
+ if (message.keywordsList && message.keywordsList.length) {
2218
+ object.keywordsList = [];
2219
+ for (let j = 0; j < message.keywordsList.length; ++j)
2220
+ object.keywordsList[j] = message.keywordsList[j];
2221
+ }
2222
+ if (message.abstractList && message.abstractList.length) {
2223
+ object.abstractList = [];
2224
+ for (let j = 0; j < message.abstractList.length; ++j)
2225
+ object.abstractList[j] = message.abstractList[j];
2226
+ }
2227
+ if (message.planname != null && message.hasOwnProperty('planname'))
2228
+ object.planname = message.planname;
2229
+ if (message.projectname != null && message.hasOwnProperty('projectname'))
2230
+ object.projectname = message.projectname;
2231
+ if (message.pagenum != null && message.hasOwnProperty('pagenum'))
2232
+ object.pagenum = message.pagenum;
2233
+ if (message.language != null && message.hasOwnProperty('language'))
2234
+ object.language = message.language;
2235
+ if (message.metadataviewcount != null && message.hasOwnProperty('metadataviewcount'))
2236
+ object.metadataviewcount = message.metadataviewcount;
2237
+ if (message.type != null && message.hasOwnProperty('type'))
2238
+ object.type = message.type;
2239
+ if (message.publishdate != null && message.hasOwnProperty('publishdate'))
2240
+ object.publishdate = message.publishdate;
2241
+ if (message.technicalfield != null && message.hasOwnProperty('technicalfield'))
2242
+ object.technicalfield = message.technicalfield;
2243
+ if (message.area != null && message.hasOwnProperty('area'))
2244
+ object.area = message.area;
2245
+ if (message.subject != null && message.hasOwnProperty('subject'))
2246
+ object.subject = message.subject;
2247
+ return object;
2248
+ };
2249
+ return Nstr;
2250
+ })();
2251
+ const Standard = $root.Standard = (() => {
2252
+ function Standard(properties) {
2253
+ this.titleList = [];
2254
+ this.classcodeList = [];
2255
+ this.keywordsList = [];
2256
+ this.abstractList = [];
2257
+ if (properties)
2258
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
2259
+ if (properties[keys[i]] != null)
2260
+ this[keys[i]] = properties[keys[i]];
2261
+ }
2262
+ Standard.prototype.id = '';
2263
+ Standard.prototype.standardno = '';
2264
+ Standard.prototype.titleList = $util.emptyArray;
2265
+ Standard.prototype.publisher = '';
2266
+ Standard.prototype.status = '';
2267
+ Standard.prototype.classcodeList = $util.emptyArray;
2268
+ Standard.prototype.keywordsList = $util.emptyArray;
2269
+ Standard.prototype.abstractList = $util.emptyArray;
2270
+ Standard.prototype.citedcount = 0;
2271
+ Standard.prototype.singlesourcedb = '';
2272
+ Standard.prototype.issuedate = '';
2273
+ Standard.prototype.publishdate = '';
2274
+ Standard.prototype.fulltextpath = '';
2275
+ Standard.prototype.hasfulltext = false;
2276
+ Standard.prototype.language = '';
2277
+ Standard.prototype.technicalcommittee = '';
2278
+ Standard.prototype.citestandard = '';
2279
+ Standard.prototype.adoptstandard = '';
2280
+ Standard.prototype.oldstandard = '';
2281
+ Standard.prototype.newstandard = '';
2282
+ Standard.prototype.type = '';
2283
+ Standard.prototype.applydate = '';
2284
+ Standard.prototype.pageno = '';
2285
+ Standard.prototype.metadataviewcount = 0;
2286
+ Standard.prototype.downloadcount = 0;
2287
+ Standard.decode = function decode(reader, length) {
2288
+ if (!(reader instanceof $Reader))
2289
+ reader = $Reader.create(reader);
2290
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.Standard();
2291
+ while (reader.pos < end) {
2292
+ let tag = reader.uint32();
2293
+ switch (tag >>> 3) {
2294
+ case 1:
2295
+ message.id = reader.string();
2296
+ break;
2297
+ case 45:
2298
+ message.standardno = reader.string();
2299
+ break;
2300
+ case 2:
2301
+ if (!(message.titleList && message.titleList.length))
2302
+ message.titleList = [];
2303
+ message.titleList.push(reader.string());
2304
+ break;
2305
+ case 46:
2306
+ message.publisher = reader.string();
2307
+ break;
2308
+ case 7:
2309
+ message.status = reader.string();
2310
+ break;
2311
+ case 8:
2312
+ if (!(message.classcodeList && message.classcodeList.length))
2313
+ message.classcodeList = [];
2314
+ message.classcodeList.push(reader.string());
2315
+ break;
2316
+ case 10:
2317
+ if (!(message.keywordsList && message.keywordsList.length))
2318
+ message.keywordsList = [];
2319
+ message.keywordsList.push(reader.string());
2320
+ break;
2321
+ case 13:
2322
+ if (!(message.abstractList && message.abstractList.length))
2323
+ message.abstractList = [];
2324
+ message.abstractList.push(reader.string());
2325
+ break;
2326
+ case 14:
2327
+ message.citedcount = reader.int32();
2328
+ break;
2329
+ case 35:
2330
+ message.singlesourcedb = reader.string();
2331
+ break;
2332
+ case 16:
2333
+ message.issuedate = reader.string();
2334
+ break;
2335
+ case 36:
2336
+ message.publishdate = reader.string();
2337
+ break;
2338
+ case 20:
2339
+ message.fulltextpath = reader.string();
2340
+ break;
2341
+ case 21:
2342
+ message.hasfulltext = reader.bool();
2343
+ break;
2344
+ case 23:
2345
+ message.language = reader.string();
2346
+ break;
2347
+ case 24:
2348
+ message.technicalcommittee = reader.string();
2349
+ break;
2350
+ case 25:
2351
+ message.citestandard = reader.string();
2352
+ break;
2353
+ case 26:
2354
+ message.adoptstandard = reader.string();
2355
+ break;
2356
+ case 27:
2357
+ message.oldstandard = reader.string();
2358
+ break;
2359
+ case 28:
2360
+ message.newstandard = reader.string();
2361
+ break;
2362
+ case 29:
2363
+ message.type = reader.string();
2364
+ break;
2365
+ case 33:
2366
+ message.applydate = reader.string();
2367
+ break;
2368
+ case 34:
2369
+ message.pageno = reader.string();
2370
+ break;
2371
+ case 38:
2372
+ message.metadataviewcount = reader.int32();
2373
+ break;
2374
+ case 39:
2375
+ message.downloadcount = reader.int32();
2376
+ break;
2377
+ default:
2378
+ reader.skipType(tag & 7);
2379
+ break;
2380
+ }
2381
+ }
2382
+ return message;
2383
+ };
2384
+ Standard.toObject = function toObject(message, options) {
2385
+ if (!options)
2386
+ options = {};
2387
+ let object = {};
2388
+ if (options.arrays || options.defaults) {
2389
+ object.titleList = [];
2390
+ object.classcodeList = [];
2391
+ object.keywordsList = [];
2392
+ object.abstractList = [];
2393
+ }
2394
+ if (options.defaults) {
2395
+ object.id = '';
2396
+ object.status = '';
2397
+ object.citedcount = 0;
2398
+ object.issuedate = '';
2399
+ object.fulltextpath = '';
2400
+ object.hasfulltext = false;
2401
+ object.language = '';
2402
+ object.technicalcommittee = '';
2403
+ object.citestandard = '';
2404
+ object.adoptstandard = '';
2405
+ object.oldstandard = '';
2406
+ object.newstandard = '';
2407
+ object.type = '';
2408
+ object.applydate = '';
2409
+ object.pageno = '';
2410
+ object.singlesourcedb = '';
2411
+ object.publishdate = '';
2412
+ object.metadataviewcount = 0;
2413
+ object.downloadcount = 0;
2414
+ object.standardno = '';
2415
+ object.publisher = '';
2416
+ }
2417
+ if (message.id != null && message.hasOwnProperty('id'))
2418
+ object.id = message.id;
2419
+ if (message.titleList && message.titleList.length) {
2420
+ object.titleList = [];
2421
+ for (let j = 0; j < message.titleList.length; ++j)
2422
+ object.titleList[j] = message.titleList[j];
2423
+ }
2424
+ if (message.status != null && message.hasOwnProperty('status'))
2425
+ object.status = message.status;
2426
+ if (message.classcodeList && message.classcodeList.length) {
2427
+ object.classcodeList = [];
2428
+ for (let j = 0; j < message.classcodeList.length; ++j)
2429
+ object.classcodeList[j] = message.classcodeList[j];
2430
+ }
2431
+ if (message.keywordsList && message.keywordsList.length) {
2432
+ object.keywordsList = [];
2433
+ for (let j = 0; j < message.keywordsList.length; ++j)
2434
+ object.keywordsList[j] = message.keywordsList[j];
2435
+ }
2436
+ if (message.abstractList && message.abstractList.length) {
2437
+ object.abstractList = [];
2438
+ for (let j = 0; j < message.abstractList.length; ++j)
2439
+ object.abstractList[j] = message.abstractList[j];
2440
+ }
2441
+ if (message.citedcount != null && message.hasOwnProperty('citedcount'))
2442
+ object.citedcount = message.citedcount;
2443
+ if (message.issuedate != null && message.hasOwnProperty('issuedate'))
2444
+ object.issuedate = message.issuedate;
2445
+ if (message.fulltextpath != null && message.hasOwnProperty('fulltextpath'))
2446
+ object.fulltextpath = message.fulltextpath;
2447
+ if (message.hasfulltext != null && message.hasOwnProperty('hasfulltext'))
2448
+ object.hasfulltext = message.hasfulltext;
2449
+ if (message.language != null && message.hasOwnProperty('language'))
2450
+ object.language = message.language;
2451
+ if (message.technicalcommittee != null && message.hasOwnProperty('technicalcommittee'))
2452
+ object.technicalcommittee = message.technicalcommittee;
2453
+ if (message.citestandard != null && message.hasOwnProperty('citestandard'))
2454
+ object.citestandard = message.citestandard;
2455
+ if (message.adoptstandard != null && message.hasOwnProperty('adoptstandard'))
2456
+ object.adoptstandard = message.adoptstandard;
2457
+ if (message.oldstandard != null && message.hasOwnProperty('oldstandard'))
2458
+ object.oldstandard = message.oldstandard;
2459
+ if (message.newstandard != null && message.hasOwnProperty('newstandard'))
2460
+ object.newstandard = message.newstandard;
2461
+ if (message.type != null && message.hasOwnProperty('type'))
2462
+ object.type = message.type;
2463
+ if (message.applydate != null && message.hasOwnProperty('applydate'))
2464
+ object.applydate = message.applydate;
2465
+ if (message.pageno != null && message.hasOwnProperty('pageno'))
2466
+ object.pageno = message.pageno;
2467
+ if (message.singlesourcedb != null && message.hasOwnProperty('singlesourcedb'))
2468
+ object.singlesourcedb = message.singlesourcedb;
2469
+ if (message.publishdate != null && message.hasOwnProperty('publishdate'))
2470
+ object.publishdate = message.publishdate;
2471
+ if (message.metadataviewcount != null && message.hasOwnProperty('metadataviewcount'))
2472
+ object.metadataviewcount = message.metadataviewcount;
2473
+ if (message.downloadcount != null && message.hasOwnProperty('downloadcount'))
2474
+ object.downloadcount = message.downloadcount;
2475
+ if (message.standardno != null && message.hasOwnProperty('standardno'))
2476
+ object.standardno = message.standardno;
2477
+ if (message.publisher != null && message.hasOwnProperty('publisher'))
2478
+ object.publisher = message.publisher;
2479
+ return object;
2480
+ };
2481
+ return Standard;
2482
+ })();
2483
+ const Cstad = $root.Cstad = (() => {
2484
+ function Cstad(properties) {
2485
+ this.titleList = [];
2486
+ this.creatorList = [];
2487
+ this.classcodeList = [];
2488
+ this.abstractList = [];
2489
+ this.keywordsList = [];
2490
+ if (properties)
2491
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
2492
+ if (properties[keys[i]] != null)
2493
+ this[keys[i]] = properties[keys[i]];
2494
+ }
2495
+ Cstad.prototype.id = '';
2496
+ Cstad.prototype.type = '';
2497
+ Cstad.prototype.titleList = $util.emptyArray;
2498
+ Cstad.prototype.creatorList = $util.emptyArray;
2499
+ Cstad.prototype.planname = '';
2500
+ Cstad.prototype.classcodeList = $util.emptyArray;
2501
+ Cstad.prototype.abstractList = $util.emptyArray;
2502
+ Cstad.prototype.keywordsList = $util.emptyArray;
2503
+ Cstad.prototype.publishdate = '';
2504
+ Cstad.prototype.page = '';
2505
+ Cstad.prototype.achievementtype = '';
2506
+ Cstad.prototype.achievementlevel = '';
2507
+ Cstad.prototype.province = '';
2508
+ Cstad.prototype.metadataviewcount = 0;
2509
+ Cstad.prototype.citedcount = 0;
2510
+ Cstad.prototype.metadataonlinedate = '';
2511
+ Cstad.decode = function decode(reader, length) {
2512
+ if (!(reader instanceof $Reader))
2513
+ reader = $Reader.create(reader);
2514
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.Cstad();
2515
+ while (reader.pos < end) {
2516
+ let tag = reader.uint32();
2517
+ switch (tag >>> 3) {
2518
+ case 1:
2519
+ message.id = reader.string();
2520
+ break;
2521
+ case 2:
2522
+ message.type = reader.string();
2523
+ break;
2524
+ case 3:
2525
+ if (!(message.titleList && message.titleList.length))
2526
+ message.titleList = [];
2527
+ message.titleList.push(reader.string());
2528
+ break;
2529
+ case 4:
2530
+ if (!(message.creatorList && message.creatorList.length))
2531
+ message.creatorList = [];
2532
+ message.creatorList.push(reader.string());
2533
+ break;
2534
+ case 24:
2535
+ message.planname = reader.string();
2536
+ break;
2537
+ case 29:
2538
+ if (!(message.classcodeList && message.classcodeList.length))
2539
+ message.classcodeList = [];
2540
+ message.classcodeList.push(reader.string());
2541
+ break;
2542
+ case 32:
2543
+ if (!(message.abstractList && message.abstractList.length))
2544
+ message.abstractList = [];
2545
+ message.abstractList.push(reader.string());
2546
+ break;
2547
+ case 33:
2548
+ if (!(message.keywordsList && message.keywordsList.length))
2549
+ message.keywordsList = [];
2550
+ message.keywordsList.push(reader.string());
2551
+ break;
2552
+ case 67:
2553
+ message.publishdate = reader.string();
2554
+ break;
2555
+ case 36:
2556
+ message.page = reader.string();
2557
+ break;
2558
+ case 38:
2559
+ message.achievementtype = reader.string();
2560
+ break;
2561
+ case 39:
2562
+ message.achievementlevel = reader.string();
2563
+ break;
2564
+ case 46:
2565
+ message.province = reader.string();
2566
+ break;
2567
+ case 65:
2568
+ message.metadataviewcount = reader.int32();
2569
+ break;
2570
+ case 81:
2571
+ message.citedcount = reader.int32();
2572
+ break;
2573
+ case 74:
2574
+ message.metadataonlinedate = reader.string();
2575
+ break;
2576
+ default:
2577
+ reader.skipType(tag & 7);
2578
+ break;
2579
+ }
2580
+ }
2581
+ return message;
2582
+ };
2583
+ Cstad.toObject = function toObject(message, options) {
2584
+ if (!options)
2585
+ options = {};
2586
+ let object = {};
2587
+ if (options.arrays || options.defaults) {
2588
+ object.titleList = [];
2589
+ object.creatorList = [];
2590
+ object.classcodeList = [];
2591
+ object.abstractList = [];
2592
+ object.keywordsList = [];
2593
+ }
2594
+ if (options.defaults) {
2595
+ object.id = '';
2596
+ object.type = '';
2597
+ object.planname = '';
2598
+ object.page = '';
2599
+ object.achievementtype = '';
2600
+ object.achievementlevel = '';
2601
+ object.province = '';
2602
+ object.metadataviewcount = 0;
2603
+ object.publishdate = '';
2604
+ object.metadataonlinedate = '';
2605
+ object.citedcount = 0;
2606
+ }
2607
+ if (message.id != null && message.hasOwnProperty('id'))
2608
+ object.id = message.id;
2609
+ if (message.type != null && message.hasOwnProperty('type'))
2610
+ object.type = message.type;
2611
+ if (message.titleList && message.titleList.length) {
2612
+ object.titleList = [];
2613
+ for (let j = 0; j < message.titleList.length; ++j)
2614
+ object.titleList[j] = message.titleList[j];
2615
+ }
2616
+ if (message.creatorList && message.creatorList.length) {
2617
+ object.creatorList = [];
2618
+ for (let j = 0; j < message.creatorList.length; ++j)
2619
+ object.creatorList[j] = message.creatorList[j];
2620
+ }
2621
+ if (message.planname != null && message.hasOwnProperty('planname'))
2622
+ object.planname = message.planname;
2623
+ if (message.classcodeList && message.classcodeList.length) {
2624
+ object.classcodeList = [];
2625
+ for (let j = 0; j < message.classcodeList.length; ++j)
2626
+ object.classcodeList[j] = message.classcodeList[j];
2627
+ }
2628
+ if (message.abstractList && message.abstractList.length) {
2629
+ object.abstractList = [];
2630
+ for (let j = 0; j < message.abstractList.length; ++j)
2631
+ object.abstractList[j] = message.abstractList[j];
2632
+ }
2633
+ if (message.keywordsList && message.keywordsList.length) {
2634
+ object.keywordsList = [];
2635
+ for (let j = 0; j < message.keywordsList.length; ++j)
2636
+ object.keywordsList[j] = message.keywordsList[j];
2637
+ }
2638
+ if (message.page != null && message.hasOwnProperty('page'))
2639
+ object.page = message.page;
2640
+ if (message.achievementtype != null && message.hasOwnProperty('achievementtype'))
2641
+ object.achievementtype = message.achievementtype;
2642
+ if (message.achievementlevel != null && message.hasOwnProperty('achievementlevel'))
2643
+ object.achievementlevel = message.achievementlevel;
2644
+ if (message.province != null && message.hasOwnProperty('province'))
2645
+ object.province = message.province;
2646
+ if (message.metadataviewcount != null && message.hasOwnProperty('metadataviewcount'))
2647
+ object.metadataviewcount = message.metadataviewcount;
2648
+ if (message.publishdate != null && message.hasOwnProperty('publishdate'))
2649
+ object.publishdate = message.publishdate;
2650
+ if (message.metadataonlinedate != null && message.hasOwnProperty('metadataonlinedate'))
2651
+ object.metadataonlinedate = message.metadataonlinedate;
2652
+ if (message.citedcount != null && message.hasOwnProperty('citedcount'))
2653
+ object.citedcount = message.citedcount;
2654
+ return object;
2655
+ };
2656
+ return Cstad;
2657
+ })();
2658
+ const Claw = $root.Claw = (() => {
2659
+ function Claw(properties) {
2660
+ this.titleList = [];
2661
+ this.issueunitList = [];
2662
+ if (properties)
2663
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
2664
+ if (properties[keys[i]] != null)
2665
+ this[keys[i]] = properties[keys[i]];
2666
+ }
2667
+ Claw.prototype.id = '';
2668
+ Claw.prototype.type = '';
2669
+ Claw.prototype.titleList = $util.emptyArray;
2670
+ Claw.prototype.issueunitList = $util.emptyArray;
2671
+ Claw.prototype.issuenumber = '';
2672
+ Claw.prototype.finalcourt = '';
2673
+ Claw.prototype.effectlevel = '';
2674
+ Claw.prototype.effectcode = '';
2675
+ Claw.prototype.effect = '';
2676
+ Claw.prototype.issuedate = '';
2677
+ Claw.prototype.publishdate = '';
2678
+ Claw.prototype.applydate = '';
2679
+ Claw.prototype.pdfpath = '';
2680
+ Claw.prototype.hasfulltext = false;
2681
+ Claw.prototype.metadataviewcount = 0;
2682
+ Claw.prototype.downloadcount = 0;
2683
+ Claw.decode = function decode(reader, length) {
2684
+ if (!(reader instanceof $Reader))
2685
+ reader = $Reader.create(reader);
2686
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.Claw();
2687
+ while (reader.pos < end) {
2688
+ let tag = reader.uint32();
2689
+ switch (tag >>> 3) {
2690
+ case 1:
2691
+ message.id = reader.string();
2692
+ break;
2693
+ case 2:
2694
+ message.type = reader.string();
2695
+ break;
2696
+ case 3:
2697
+ if (!(message.titleList && message.titleList.length))
2698
+ message.titleList = [];
2699
+ message.titleList.push(reader.string());
2700
+ break;
2701
+ case 4:
2702
+ if (!(message.issueunitList && message.issueunitList.length))
2703
+ message.issueunitList = [];
2704
+ message.issueunitList.push(reader.string());
2705
+ break;
2706
+ case 5:
2707
+ message.issuenumber = reader.string();
2708
+ break;
2709
+ case 10:
2710
+ message.finalcourt = reader.string();
2711
+ break;
2712
+ case 13:
2713
+ message.effectlevel = reader.string();
2714
+ break;
2715
+ case 14:
2716
+ message.effectcode = reader.string();
2717
+ break;
2718
+ case 15:
2719
+ message.effect = reader.string();
2720
+ break;
2721
+ case 18:
2722
+ message.issuedate = reader.string();
2723
+ break;
2724
+ case 30:
2725
+ message.publishdate = reader.string();
2726
+ break;
2727
+ case 19:
2728
+ message.applydate = reader.string();
2729
+ break;
2730
+ case 24:
2731
+ message.pdfpath = reader.string();
2732
+ break;
2733
+ case 25:
2734
+ message.hasfulltext = reader.bool();
2735
+ break;
2736
+ case 27:
2737
+ message.metadataviewcount = reader.int32();
2738
+ break;
2739
+ case 28:
2740
+ message.downloadcount = reader.int32();
2741
+ break;
2742
+ default:
2743
+ reader.skipType(tag & 7);
2744
+ break;
2745
+ }
2746
+ }
2747
+ return message;
2748
+ };
2749
+ Claw.toObject = function toObject(message, options) {
2750
+ if (!options)
2751
+ options = {};
2752
+ let object = {};
2753
+ if (options.arrays || options.defaults) {
2754
+ object.titleList = [];
2755
+ object.issueunitList = [];
2756
+ }
2757
+ if (options.defaults) {
2758
+ object.id = '';
2759
+ object.type = '';
2760
+ object.issuenumber = '';
2761
+ object.finalcourt = '';
2762
+ object.effectlevel = '';
2763
+ object.effectcode = '';
2764
+ object.effect = '';
2765
+ object.issuedate = '';
2766
+ object.applydate = '';
2767
+ object.pdfpath = '';
2768
+ object.hasfulltext = false;
2769
+ object.metadataviewcount = 0;
2770
+ object.downloadcount = 0;
2771
+ object.publishdate = '';
2772
+ }
2773
+ if (message.id != null && message.hasOwnProperty('id'))
2774
+ object.id = message.id;
2775
+ if (message.type != null && message.hasOwnProperty('type'))
2776
+ object.type = message.type;
2777
+ if (message.titleList && message.titleList.length) {
2778
+ object.titleList = [];
2779
+ for (let j = 0; j < message.titleList.length; ++j)
2780
+ object.titleList[j] = message.titleList[j];
2781
+ }
2782
+ if (message.issueunitList && message.issueunitList.length) {
2783
+ object.issueunitList = [];
2784
+ for (let j = 0; j < message.issueunitList.length; ++j)
2785
+ object.issueunitList[j] = message.issueunitList[j];
2786
+ }
2787
+ if (message.issuenumber != null && message.hasOwnProperty('issuenumber'))
2788
+ object.issuenumber = message.issuenumber;
2789
+ if (message.finalcourt != null && message.hasOwnProperty('finalcourt'))
2790
+ object.finalcourt = message.finalcourt;
2791
+ if (message.effectlevel != null && message.hasOwnProperty('effectlevel'))
2792
+ object.effectlevel = message.effectlevel;
2793
+ if (message.effectcode != null && message.hasOwnProperty('effectcode'))
2794
+ object.effectcode = message.effectcode;
2795
+ if (message.effect != null && message.hasOwnProperty('effect'))
2796
+ object.effect = message.effect;
2797
+ if (message.issuedate != null && message.hasOwnProperty('issuedate'))
2798
+ object.issuedate = message.issuedate;
2799
+ if (message.applydate != null && message.hasOwnProperty('applydate'))
2800
+ object.applydate = message.applydate;
2801
+ if (message.pdfpath != null && message.hasOwnProperty('pdfpath'))
2802
+ object.pdfpath = message.pdfpath;
2803
+ if (message.hasfulltext != null && message.hasOwnProperty('hasfulltext'))
2804
+ object.hasfulltext = message.hasfulltext;
2805
+ if (message.metadataviewcount != null && message.hasOwnProperty('metadataviewcount'))
2806
+ object.metadataviewcount = message.metadataviewcount;
2807
+ if (message.downloadcount != null && message.hasOwnProperty('downloadcount'))
2808
+ object.downloadcount = message.downloadcount;
2809
+ if (message.publishdate != null && message.hasOwnProperty('publishdate'))
2810
+ object.publishdate = message.publishdate;
2811
+ return object;
2812
+ };
2813
+ return Claw;
2814
+ })();
2815
+
2816
+ const Url = $root.Url = (() => {
2817
+
2818
+ function Url(properties) {
2819
+ if (properties)
2820
+ for (let keys = Object.keys(properties), i = 0; i < keys.length; ++i)
2821
+ if (properties[keys[i]] != null)
2822
+ this[keys[i]] = properties[keys[i]];
2823
+ }
2824
+
2825
+ Url.prototype.unknown1 = "";
2826
+ Url.prototype.id = "";
2827
+ Url.prototype.unknown3 = "";
2828
+
2829
+ Url.decode = function decode(reader, length) {
2830
+ if (!(reader instanceof $Reader))
2831
+ reader = $Reader.create(reader);
2832
+ let end = length === undefined ? reader.len : reader.pos + length, message = new $root.Url();
2833
+ while (reader.pos < end) {
2834
+ let tag = reader.uint32();
2835
+ switch (tag >>> 3) {
2836
+ case 1: {
2837
+ message.unknown1 = reader.string();
2838
+ break;
2839
+ }
2840
+ case 2: {
2841
+ message.id = reader.string();
2842
+ break;
2843
+ }
2844
+ case 3: {
2845
+ message.unknown3 = reader.string();
2846
+ break;
2847
+ }
2848
+ default:
2849
+ reader.skipType(tag & 7);
2850
+ break;
2851
+ }
2852
+ }
2853
+ return message;
2854
+ };
2855
+
2856
+ Url.toObject = function toObject(message, options) {
2857
+ if (!options)
2858
+ options = {};
2859
+ let object = {};
2860
+ if (options.defaults) {
2861
+ object.unknown1 = "";
2862
+ object.id = "";
2863
+ object.unknown3 = "";
2864
+ }
2865
+ if (message.unknown1 != null && message.hasOwnProperty("unknown1"))
2866
+ object.unknown1 = message.unknown1;
2867
+ if (message.id != null && message.hasOwnProperty("id"))
2868
+ object.id = message.id;
2869
+ if (message.unknown3 != null && message.hasOwnProperty("unknown3"))
2870
+ object.unknown3 = message.unknown3;
2871
+ return object;
2872
+ };
2873
+
2874
+ return Url;
2875
+ })();
2876
+
2877
+ /* eslint-enable */
2878
+
2879
+ /** BEGIN TEST CASES **/
2880
+ var testCases = [
2881
+ {
2882
+ "type": "web",
2883
+ "url": "https://d.wanfangdata.com.cn/periodical/hgxb2019z1002",
2884
+ "defer": true,
2885
+ "items": [
2886
+ {
2887
+ "itemType": "journalArticle",
2888
+ "title": "微波法制备生物柴油研究进展",
2889
+ "creators": [
2890
+ {
2891
+ "firstName": "",
2892
+ "lastName": "商辉",
2893
+ "creatorType": "author",
2894
+ "fieldMode": 1
2895
+ },
2896
+ {
2897
+ "firstName": "",
2898
+ "lastName": "丁禹",
2899
+ "creatorType": "author",
2900
+ "fieldMode": 1
2901
+ },
2902
+ {
2903
+ "firstName": "",
2904
+ "lastName": "张文慧",
2905
+ "creatorType": "author",
2906
+ "fieldMode": 1
2907
+ }
2908
+ ],
2909
+ "date": "2019",
2910
+ "DOI": "10.11949/j.issn.0438?1157.20181400",
2911
+ "ISSN": "0438-1157",
2912
+ "abstractNote": "基于微波的选择性、瞬时性及体积性加热的特点,可以有效提高反应分子的平均能量、分子的碰撞频率,加快反应速率,采用微波辅助催化酯交换反应制备生物柴油近几年得到了国内外学者的广泛关注.将微波能应用于生物柴油制备过程具有显著的优势,与传统加热方式相比,采用微波辐射加热,反应时间明显缩短,产物组成也有所变化.因此主要从酸碱催化剂催化酯交换反应和酯化反应的角度,综述了国内外对微波辅助生物柴油制备的研究进展,并对微波优势及未来发展趋势进行了展望.",
2913
+ "extra": "CLC: TQ51(燃料化学工业(总论))",
2914
+ "issue": "z1",
2915
+ "libraryCatalog": "Wanfang Data",
2916
+ "pages": "15-22",
2917
+ "publicationTitle": "化工学报",
2918
+ "url": "https://d.wanfangdata.com.cn/periodical/hgxb2019z1002",
2919
+ "volume": "70",
2920
+ "attachments": [
2921
+ {
2922
+ "title": "Full Text PDF",
2923
+ "mimeType": "application/pdf"
2924
+ }
2925
+ ],
2926
+ "tags": [
2927
+ {
2928
+ "tag": "催化剂"
2929
+ },
2930
+ {
2931
+ "tag": "微波"
2932
+ },
2933
+ {
2934
+ "tag": "生物柴油"
2935
+ },
2936
+ {
2937
+ "tag": "酯交换"
2938
+ },
2939
+ {
2940
+ "tag": "酯化"
2941
+ }
2942
+ ],
2943
+ "notes": [],
2944
+ "seeAlso": []
2945
+ }
2946
+ ]
2947
+ },
2948
+ {
2949
+ "type": "web",
2950
+ "url": "https://d.wanfangdata.com.cn/thesis/D01698671",
2951
+ "defer": true,
2952
+ "items": [
2953
+ {
2954
+ "itemType": "thesis",
2955
+ "title": "济南市生物多样性评价及与生物入侵关系研究",
2956
+ "creators": [
2957
+ {
2958
+ "firstName": "",
2959
+ "lastName": "孟令玉",
2960
+ "creatorType": "author",
2961
+ "fieldMode": 1
2962
+ },
2963
+ {
2964
+ "firstName": "",
2965
+ "lastName": "曲爱军",
2966
+ "creatorType": "contributor",
2967
+ "fieldMode": 1
2968
+ }
2969
+ ],
2970
+ "date": "2019",
2971
+ "abstractNote": "生物多样性是我国生态环境的重要组成部分,也是生态文明建设的重要内容。如何更合理的建立评价生物多样性体系及确定威胁生物多样性相关因素,对政府科学制定生物多样性保护战略规划及行动计划极其重要,对生态文明建设具有重要意义。同时,生物多样性是一种资源,是生物资源的基础,具有多种多样的生态和环境服务功能。 通过济南市生物多样性现状评价,可明确济南市生物多样性现状、威胁因素和保护现状,有助于济南市资源有效利用与保护,以及相关政府部门科学的制定生物多样性保护战略与具体行动计划。本研究依据环保部生物多样性省域评价体系,组建了暖温带生物多样...",
2972
+ "extra": "major: 植物保护\nCLC: X176(环境生物学)",
2973
+ "libraryCatalog": "Wanfang Data",
2974
+ "thesisType": "硕士学位论文",
2975
+ "university": "山东农业大学",
2976
+ "url": "https://d.wanfangdata.com.cn/thesis/D01698671",
2977
+ "attachments": [
2978
+ {
2979
+ "title": "Full Text PDF",
2980
+ "mimeType": "application/pdf"
2981
+ }
2982
+ ],
2983
+ "tags": [
2984
+ {
2985
+ "tag": "生物入侵"
2986
+ },
2987
+ {
2988
+ "tag": "生物多样性"
2989
+ },
2990
+ {
2991
+ "tag": "评价指标体系"
2992
+ },
2993
+ {
2994
+ "tag": "资源利用"
2995
+ }
2996
+ ],
2997
+ "notes": [],
2998
+ "seeAlso": []
2999
+ }
3000
+ ]
3001
+ },
3002
+ {
3003
+ "type": "web",
3004
+ "url": "https://d.wanfangdata.com.cn/conference/9534067",
3005
+ "defer": true,
3006
+ "items": [
3007
+ {
3008
+ "itemType": "conferencePaper",
3009
+ "title": "生物发酵提高芦笋汁生物利用率研究",
3010
+ "creators": [
3011
+ {
3012
+ "firstName": "",
3013
+ "lastName": "吴晓春",
3014
+ "creatorType": "author",
3015
+ "fieldMode": 1
3016
+ },
3017
+ {
3018
+ "firstName": "",
3019
+ "lastName": "黄惠华",
3020
+ "creatorType": "author",
3021
+ "fieldMode": 1
3022
+ }
3023
+ ],
3024
+ "date": "2018-12-04",
3025
+ "abstractNote": "本研究在单因素试验的基础上通过响应面法优化安琪酵母发酵芦笋汁生产工艺,以芦笋汁中总皂苷元含量作为响应值,各影响因素为自变量,设计响应面实验方案.结果表明一次项X1(接种量)、X2(发酵温度)、X3(发酵时间)和所有因素的二次项都达到了极显著水平(P<0.01).并得到安琪酵母发酵芦笋汁的最优生产工艺条件:利用R2A琼脂作为基础培养基接种量0.2%、发酵温度30℃、发酵时间7天.在此条件下重复实验3次,整理结果可知芦笋总皂苷元含量可达到(361.68±8.62)μg.",
3026
+ "conferenceName": "2018年广东省食品学会年会",
3027
+ "extra": "organizer: 广东省食品学会\nCLC: TS275.5(食品工业)",
3028
+ "libraryCatalog": "Wanfang Data",
3029
+ "pages": "69-74",
3030
+ "place": "广州",
3031
+ "proceedingsTitle": "2018年广东省食品学会年会论文集",
3032
+ "url": "https://d.wanfangdata.com.cn/conference/9534067",
3033
+ "attachments": [
3034
+ {
3035
+ "title": "Full Text PDF",
3036
+ "mimeType": "application/pdf"
3037
+ }
3038
+ ],
3039
+ "tags": [
3040
+ {
3041
+ "tag": "总皂苷元含量"
3042
+ },
3043
+ {
3044
+ "tag": "生物利用率"
3045
+ },
3046
+ {
3047
+ "tag": "生物发酵"
3048
+ },
3049
+ {
3050
+ "tag": "芦笋汁"
3051
+ }
3052
+ ],
3053
+ "notes": [],
3054
+ "seeAlso": []
3055
+ }
3056
+ ]
3057
+ },
3058
+ {
3059
+ "type": "web",
3060
+ "url": "https://d.wanfangdata.com.cn/patent/CN201880013080.0",
3061
+ "defer": true,
3062
+ "items": [
3063
+ {
3064
+ "itemType": "patent",
3065
+ "title": "生物体签名系统及生物体签名方法",
3066
+ "creators": [
3067
+ {
3068
+ "firstName": "",
3069
+ "lastName": "加贺阳介",
3070
+ "creatorType": "inventor",
3071
+ "fieldMode": 1
3072
+ },
3073
+ {
3074
+ "firstName": "",
3075
+ "lastName": "高桥健太",
3076
+ "creatorType": "inventor",
3077
+ "fieldMode": 1
3078
+ },
3079
+ {
3080
+ "firstName": "",
3081
+ "lastName": "藤尾正和",
3082
+ "creatorType": "inventor",
3083
+ "fieldMode": 1
3084
+ },
3085
+ {
3086
+ "firstName": "",
3087
+ "lastName": "陈伟",
3088
+ "creatorType": "attorneyAgent",
3089
+ "fieldMode": 1
3090
+ },
3091
+ {
3092
+ "firstName": "",
3093
+ "lastName": "沈静",
3094
+ "creatorType": "attorneyAgent",
3095
+ "fieldMode": 1
3096
+ }
3097
+ ],
3098
+ "issueDate": "2019-10-11",
3099
+ "abstractNote": "生物体签名系统保持将从用户的部位得到的第一生物体信息转换而得到的第一模板和通过单向性转换将从该用户的该部位得到的第二生物体信息进行转换而得到的第二模板,根据认证对象的第一生物体信息生成第一模板,对使用参数修正后的认证对象的第一模板与生物体签名系统保持的第一模板之间的相似度高的该参数进行特定,分别根据分别使用包括该特定出的参数在内的规定范围所包括的参数修正后的认证对象的第二生物体信息,生成第二模板,并将该生成的第二模板分别与生物体签名系统保持的第二模板进行比较来判定认证对象的认证成功与否。",
3100
+ "applicationNumber": "CN201880013080.0",
3101
+ "assignee": "株式会社日立制作所",
3102
+ "country": "中国",
3103
+ "extra": "genre: 发明专利\nCLC: H04L9/32(2006.01)G06F21/32(2013.01)H04L9/32G06F21/32",
3104
+ "filingDate": "2018-02-14",
3105
+ "legalStatus": "授权",
3106
+ "patentNumber": "CN110326254B",
3107
+ "place": "中国",
3108
+ "priorityNumbers": "2017-114023 2017.06.09 JP",
3109
+ "rights": "1.一种生物体签名系统,其特征在于, 包括处理器和存储器, 所述存储器保持第一模板和第二模板,该第一模板表示通过规定的转换将从用户的规定部位得到的第一生物体信息进行转换后的结果,该第二模板表示通过规定的单向性转换将从所述用户的所述规定部位得到的第二生物体信息进行转换后的结果, 所述处理器进行以下处理: 获取认证对象的所述第一生物体信息和所述第二生物体信息, 根据获取到的所述第一生物体信息生成所述认证对象的第一模板, 对使用参数修正后的所述认证对象的第一模板与所述存储器保持的第一模板之间的相似度比规定条件高的所述参数进行特定, 分别使用包括特定出的所述参数在内的规定范围所包括的参数来修正所述认证对象的第二生物体信息, 分别根据修正后的所述第二生物体信息生成所述认证对象的第二模板, 将生成的所述第二模板分别与所述存储器保持的第二模板进行比较来判定所述认证对象的认证成功与否。 2.根据权利要求1所述的生物体签名系统,其特征在于, 所述处理器通过所述规定的转换对获取到的所述第一生物体信息进行转换而生成所述认证对象的第一模板。 3.根据权利要求1所述的生物体签名系统,其特征在于, 所述处理器通过所述规定的单向性转换对修正后的所述第二生物体信息分别进行转换而生成所述认证对象的第二模板。 4.根据权利要求1所述的生物体签名系统,其特征在于, 储存于所述存储器内的第一生物体信息与第二生物体信息的相关系数为规定值以下。 5.根据权利要求1所述的生物体签名系统,其特征在于, 所述参数包括所述第一模板及所述第二模板的修正中的、表示平行移动量的参数和表示旋转量的参数。 6.根据权利要求1所述的生物体签名系统,其特征在于, 所述存储器保持多个用户的第一模板和第二模板, 所述处理器进行以下处理: 对与所述存储器保持的多个第一模板中的、存在所述相似度比规定条件高的所述参数的第一模板对应的用户群进行特定, 关于特定出的所述用户群的每个用户,分别使用包括特定出的参数在内的规定范围所包括的参数来修正所述认证对象的第二生物体信息并生成第二模板,并且将该生成的第二模板分别与该用户的第二模板进行比较, 基于分别针对特定出的所述用户群的比较结果来判定所述认证对象的认证成功与否。 7.一种生物体签名方法,由生物体签名系统进行生物体签名,其特征在于, 所述生物体签名系统保持第一模板和第二模板,该第一模板表示通过规定的转换将从用户的规定部位得到的第一生物体信息进行转换后的结果,该第二模板表示通过规定的单向性转换将从所述用户的所述规定部位得到的第二生物体信息进行转换后的结果, 在所述方法中,所述生物体签名系统进行以下处理: 获取认证对象的所述第一生物体信息和所述第二生物体信息, 根据获取到的所述第一生物体信息生成所述认证对象的第一模板, 对使用参数修正后的所述认证对象的第一模板与所述生物体签名系统保持的第一模板之间的相似度比规定条件高的所述参数进行特定, 分别使用包括特定出的所述参数在内的规定范围所包括的参数来修正所述认证对象的第二生物体信息, 分别从修正后的所述第二生物体信息生成所述认证对象的第二模板, 将生成的所述第二模板分别与所述生物体签名系统保持的第二模板进行比较来判定所述认证对象的认证成功与否。 8.根据权利要求7所述的方法,其特征在于, 在所述方法中,所述生物体签名系统通过所述规定的转换对获取到的所述第一生物体信息进行转换而生成所述认证对象的第一模板。 9.根据权利要求7所述的方法,其特征在于, 在所述方法中,所述生物体签名系统通过所述规定的单向性转换对修正后的所述第二生物体信息分别进行转换而生成所述认证对象的第二模板。 10.根据权利要求7所述的方法,其特征在于, 储存于所述生物体签名系统内的第一生物体信息与第二生物体信息的相关系数为规定值以下。 11.根据权利要求7所述的方法,其特征在于, 所述参数包括所述第一模板及所述第二模板的修正中的、表示平行移动量的参数和表示旋转量的参数。 12.根据权利要求7所述的方法,其特征在于, 所述生物体签名系统保持多个用户的第一模板和第二模板, 在所述方法中,所述生物体签名系统进行以下处理: 对与所述生物体签名系统保持的多个第一模板中的、存在所述相似度比规定条件高的所述参数的第一模板对应的用户群进行特定, 关于特定出的所述用户群的每个用户,分别使用包括特定出的参数在内的规定范围所包括的参数来修正所述认证对象的第二生物体信息并生成第二模板,并且将该生成的第二模板分别与该用户的第二模板进行比较, 基于分别针对特定出的所述用户群的比较结果来判定所述认证对象的认证成功与否。",
3110
+ "url": "https://d.wanfangdata.com.cn/patent/CN201880013080.0",
3111
+ "attachments": [
3112
+ {
3113
+ "title": "Full Text PDF",
3114
+ "mimeType": "application/pdf"
3115
+ }
3116
+ ],
3117
+ "tags": [],
3118
+ "notes": [],
3119
+ "seeAlso": []
3120
+ }
3121
+ ]
3122
+ },
3123
+ {
3124
+ "type": "web",
3125
+ "url": "https://d.wanfangdata.com.cn/nstr/09146D75-84AB-48CE-A321-369457FD6551",
3126
+ "defer": true,
3127
+ "items": [
3128
+ {
3129
+ "itemType": "report",
3130
+ "title": "人体安全重要技术标准研制最终报告",
3131
+ "creators": [
3132
+ {
3133
+ "firstName": "",
3134
+ "lastName": "汤万金",
3135
+ "creatorType": "author",
3136
+ "fieldMode": 1
3137
+ },
3138
+ {
3139
+ "firstName": "",
3140
+ "lastName": "杨跃翔",
3141
+ "creatorType": "author",
3142
+ "fieldMode": 1
3143
+ },
3144
+ {
3145
+ "firstName": "",
3146
+ "lastName": "刘文",
3147
+ "creatorType": "author",
3148
+ "fieldMode": 1
3149
+ },
3150
+ {
3151
+ "firstName": "",
3152
+ "lastName": "郑建国",
3153
+ "creatorType": "author",
3154
+ "fieldMode": 1
3155
+ },
3156
+ {
3157
+ "firstName": "",
3158
+ "lastName": "王赟松",
3159
+ "creatorType": "author",
3160
+ "fieldMode": 1
3161
+ }
3162
+ ],
3163
+ "date": "2013-09-30",
3164
+ "abstractNote": "本研究通过制定我国人体安全急需的技术标准,解决影响我国人体安全的重点产品的技术标准缺失、滞后的问题,完善不安全产品召回制度相关管理标准,提高我国人体安全的整体水平,促进社会和谐稳定,促进企业技术创新和技术改造、实现产业结构调整、提高我国产品国际竞争力,保证经济健康持续发展。 1.从消费品安全的角度,构建了消费品安全标准体系,并制定了急需的消费品安全关键标准,满足有效控制消费品安全危害,提高产品安全水平,保障消费者健康和权益,推动产品行业持续健康发展。 2.通过电子电气产品中有毒有害物质的检测技术标准研究,结合之前完成的电子电气产...",
3165
+ "archiveLocation": "306--2013-007964",
3166
+ "extra": "project: 人体安全重要技术标准研制",
3167
+ "institution": "中国标准化研究院中国标准化研究院中国标准化研究院广东出入境检验检疫局中国标准化研究院",
3168
+ "language": "zh-CN",
3169
+ "libraryCatalog": "Wanfang Data",
3170
+ "reportType": "科技报告",
3171
+ "url": "https://d.wanfangdata.com.cn/nstr/09146D75-84AB-48CE-A321-369457FD6551",
3172
+ "attachments": [],
3173
+ "tags": [
3174
+ {
3175
+ "tag": "产品安全"
3176
+ },
3177
+ {
3178
+ "tag": "人身安全"
3179
+ },
3180
+ {
3181
+ "tag": "消费品"
3182
+ }
3183
+ ],
3184
+ "notes": [],
3185
+ "seeAlso": []
3186
+ }
3187
+ ]
3188
+ },
3189
+ {
3190
+ "type": "web",
3191
+ "url": "https://d.wanfangdata.com.cn/cstad/1500520180",
3192
+ "defer": true,
3193
+ "items": [
3194
+ {
3195
+ "itemType": "report",
3196
+ "title": "全钒液流电池储能技术及应用",
3197
+ "creators": [
3198
+ {
3199
+ "firstName": "",
3200
+ "lastName": "张华民",
3201
+ "creatorType": "author",
3202
+ "fieldMode": 1
3203
+ },
3204
+ {
3205
+ "firstName": "",
3206
+ "lastName": "马相坤",
3207
+ "creatorType": "author",
3208
+ "fieldMode": 1
3209
+ },
3210
+ {
3211
+ "firstName": "",
3212
+ "lastName": "李先锋",
3213
+ "creatorType": "author",
3214
+ "fieldMode": 1
3215
+ },
3216
+ {
3217
+ "firstName": "",
3218
+ "lastName": "刘宗浩",
3219
+ "creatorType": "author",
3220
+ "fieldMode": 1
3221
+ },
3222
+ {
3223
+ "firstName": "",
3224
+ "lastName": "高素军",
3225
+ "creatorType": "author",
3226
+ "fieldMode": 1
3227
+ },
3228
+ {
3229
+ "firstName": "",
3230
+ "lastName": "陈剑",
3231
+ "creatorType": "author",
3232
+ "fieldMode": 1
3233
+ }
3234
+ ],
3235
+ "date": "2015",
3236
+ "abstractNote": "该项目属于电化学储能技术领域。能源与环境是人类社会生存的两项基本要素。随着社会与经济的发展,人类对能源的需求量显著增加。化石能源的大量消耗,不仅造成了能源资源匮乏,还造成了严重的环境污染,也严重影响到了人们的身体健康。因此,普及应用可再生能源、提高其在能源消耗中的比重是实现社会可持续发展的必然选择。但是,风能、太阳能等可再生能源发电具有不稳定、不可控的特性,可再生能源大规模并入电网会给电网的安全稳定运行带来严重的冲击。大规模储能系统可有效实现可再生能源发电的调幅调频、平滑输出、跟踪计划发电,提高电网对可再生能源发电的消纳能力,解决弃风、弃光问题,因此是国家实现能源安全、经济可持续发展的重大需求。储能和大容量储能技术是国家《能源发展战略行动计划(2014-2020)》中的重点创新领域和重点创新方向之一。全钒液流电池储能技术具有储能系统的输出功率和储能容量相互独立、储能规模大、设计和安置灵活,使用寿命长,安全可靠,材料和部件可循环利用、环境友好等突出的优势,成为规模储能的首选技术之一。通过多年创新性的研究开发,在液流电池离子传导膜、电极双极板、电解液制造,大功率电堆设计集成,大规模储能系统集成控制等方面取得了一系列技术发明和创新,形成了具有完整自主知识产权体系的全钒液流电池储能技术。1.突破了液流电池关键材料包括非氟离子传导膜、液流电池双极板的制备技术,原创性的研制成功液流电池用高选择性、高传导性、高稳定性非氟多孔离子传导膜,高导电性、高稳定性碳素复合双极板材料。突破了关键材料的规模放大技术,实现了关键材料的工业生产。2.突破了全钒液流电池电堆的设计集成技术,发明了大功率、高功率密度电堆结构设计方法和制造技术,设计集成出32千瓦大功率液流电池单体电堆,突破了单体电堆工程化制造技术,实现了批量化生产,并向国外出口。3.突破了高功率、大容量、高集成度全钒液流电池储能系统设计方法及多体系耦合控制技术,发明了大规模储能系统控制管理策略,实施了迄今为止世界上最大规模的5MW/10MWh全钒液流电池储能系统的商业化应用工程,率先实现了液流电池储能技术的产业化。该项目共获授权发明专利28件,其中日本专利1件。2008年完成国内首套100kW系统的示范应用,2012年完成全球最大规模5MW/10MWh全钒液流电池商业化示范工程,技术指标和工业化进程均处于国际领先水平。已实施20余套应用示范项目。领军能源行业、国家及国际液流电池标准的制定,起草了3项行业标准,5项国家标准和1项国际标准。通过该技术成果的应用,2012年实现销售收入4613万元,2013年销售收入4249万元,2014年销售收入4369万元。对推进中国可再生能源发电的普及应用,实现节能减排重大国策具有十分重要的意义。",
3237
+ "extra": "CLC: TM911.3(独立电源技术(直接发电))",
3238
+ "institution": "中国科学院大连化学物理研究所大连融科储能技术发展有限公司",
3239
+ "language": "zh-CN",
3240
+ "libraryCatalog": "Wanfang Data",
3241
+ "reportNumber": "1500520180",
3242
+ "reportType": "成果报告",
3243
+ "url": "https://d.wanfangdata.com.cn/cstad/1500520180",
3244
+ "attachments": [],
3245
+ "tags": [
3246
+ {
3247
+ "tag": "储能系统"
3248
+ },
3249
+ {
3250
+ "tag": "全钒液流电池"
3251
+ },
3252
+ {
3253
+ "tag": "单体电堆"
3254
+ },
3255
+ {
3256
+ "tag": "可再生能源发电"
3257
+ }
3258
+ ],
3259
+ "notes": [],
3260
+ "seeAlso": []
3261
+ }
3262
+ ]
3263
+ },
3264
+ {
3265
+ "type": "web",
3266
+ "url": "https://d.wanfangdata.com.cn/standard/ChRTdGFuZGFyZE5ld1MyMDI0MDMyMBIOR0IvVCA3NzE0LTIwMTUaCGZlYnc3YTd3?transaction=%7B%22id%22%3A%22%22,%22transferOutAccountsStatus%22%3A%5B%5D,%22transaction%22%3A%7B%22id%22%3A%221884571522132209664%22,%22status%22%3A1,%22createDateTime%22%3A1738151839179,%22payDateTime%22%3A1738151839179,%22authToken%22%3A%22TGT-339072-wK5gGSNT00XbAevIb7VfQcXiBKEAHShVXTklExGNX3OJ6SdBcb-auth-iploginservice-557b48647-sbpx7%22,%22user%22%3A%7B%22accountType%22%3A%22Group%22,%22key%22%3A%22Yikedaxue%22%7D,%22transferIn%22%3A%7B%22accountType%22%3A%22Income%22,%22key%22%3A%22StandardDigest%22%7D,%22transferOut%22%3A%7B%22GTimeLimit.Yikedaxue%22%3A1.0%7D,%22turnover%22%3A1.0,%22orderTurnover%22%3A1.0,%22productDetail%22%3A%22Standard_GB%2FT%207714-2015%22,%22productTitle%22%3A%22%E4%BF%A1%E6%81%AF%E4%B8%8E%E6%96%87%E7%8C%AE%20%20%E5%8F%82%E8%80%83%E6%96%87%E7%8C%AE%E8%91%97%E5%BD%95%E8%A7%84%E5%88%99%22,%22userIP%22%3A%22116.11.70.137%22,%22organName%22%3A%22%E7%A6%8F%E5%BB%BA%E5%8C%BB%E7%A7%91%E5%A4%A7%E5%AD%A6%22,%22memo%22%3A%22%7B%5C%22expired%5C%22%3A%5C%221800%5C%22%7D%22,%22orderUser%22%3A%22Yikedaxue%22,%22orderChannel%22%3A%22pc%22,%22payTag%22%3A%22Shibboleth%22,%22webTransactionRequest%22%3A%22%22,%22signature%22%3A%22VmfpcNDZ4%2FOJleFm6LQtSSdhjpOpjSI84hmJfCZKPOakLV6ueExBWnmut7khcDrPwtfbbHCVhNLE%5CnKKK9ZsnNSDTmm9kXoP2luwVSuQVP2HlZzo2B0XQNTdqVpXA5165fD7kIBX31UmWya3fxVUcziPSP%5CnDnLn%2BbRezOQxdXNvq58%3D%22%7D,%22isCache%22%3Afalse%7D",
3267
+ "defer": true,
3268
+ "items": [
3269
+ {
3270
+ "itemType": "standard",
3271
+ "title": "信息与文献 参考文献著录规则",
3272
+ "creators": [
3273
+ {
3274
+ "firstName": "",
3275
+ "lastName": "全国信息与文献标准化技术委员会",
3276
+ "creatorType": "author",
3277
+ "fieldMode": 1
3278
+ }
3279
+ ],
3280
+ "date": "2015-05-15",
3281
+ "abstractNote": "本标准规定了各个学科、各种类型信息资源的参考文献的著录项目、著录顺序、著录用符号、著录用文字、各个著录项目的著录方法以及参考文献在正文中的标注法。 本标准适用于著者和编辑著录参考文献,而不是供图书馆员、文献目录编制者以及索引编辑者使用的文献著录规则。",
3282
+ "extra": "ICS: 0101.140.20\napplyDate: 2015-12-01\nsubstitute: 该标准替代了如下标准: GB/T 7714-2005;\nreference: GB/T 7408-2005GB/T 28039-2011ISO 4\nadopted: ISO 690:2010(E);",
3283
+ "libraryCatalog": "Wanfang Data",
3284
+ "number": "GB/T 7714—2015",
3285
+ "publisher": "质检出版社",
3286
+ "status": "现行",
3287
+ "url": "https://d.wanfangdata.com.cn/standard/GB/T 7714-2015",
3288
+ "attachments": [
3289
+ {
3290
+ "title": "Full Text PDF",
3291
+ "mimeType": "application/pdf"
3292
+ }
3293
+ ],
3294
+ "tags": [
3295
+ {
3296
+ "tag": "书目标准"
3297
+ },
3298
+ {
3299
+ "tag": "参考文献"
3300
+ },
3301
+ {
3302
+ "tag": "规则"
3303
+ }
3304
+ ],
3305
+ "notes": [],
3306
+ "seeAlso": []
3307
+ }
3308
+ ]
3309
+ },
3310
+ {
3311
+ "type": "web",
3312
+ "url": "https://d.wanfangdata.com.cn/claw/G001007091",
3313
+ "defer": true,
3314
+ "items": [
3315
+ {
3316
+ "itemType": "statute",
3317
+ "nameOfAct": "中华人民共和国刑法修正案(十一)",
3318
+ "creators": [
3319
+ {
3320
+ "firstName": "",
3321
+ "lastName": "全国人大常委会",
3322
+ "creatorType": "author",
3323
+ "fieldMode": 1
3324
+ }
3325
+ ],
3326
+ "dateEnacted": "2020-12-26",
3327
+ "extra": "applyDate: 2021-03-01",
3328
+ "publicLawNumber": "中华人民共和国主席令[2020]第66号",
3329
+ "shortTitle": "刑法修正案(十一)",
3330
+ "url": "https://d.wanfangdata.com.cn/claw/G001007091",
3331
+ "attachments": [
3332
+ {
3333
+ "title": "Full Text PDF",
3334
+ "mimeType": "application/pdf"
3335
+ }
3336
+ ],
3337
+ "tags": [],
3338
+ "notes": [],
3339
+ "seeAlso": []
3340
+ }
3341
+ ]
3342
+ },
3343
+ {
3344
+ "type": "web",
3345
+ "url": "https://d.wanfangdata.com.cn/claw/g100001548",
3346
+ "defer": true,
3347
+ "items": [
3348
+ {
3349
+ "itemType": "statute",
3350
+ "nameOfAct": "最高人民法院、最高人民检察院关于依法严惩破坏计划生育犯罪活动的通知",
3351
+ "creators": [
3352
+ {
3353
+ "firstName": "",
3354
+ "lastName": "最高人民法院",
3355
+ "creatorType": "author",
3356
+ "fieldMode": 1
3357
+ },
3358
+ {
3359
+ "firstName": "",
3360
+ "lastName": "最高人民检察院",
3361
+ "creatorType": "author",
3362
+ "fieldMode": 1
3363
+ }
3364
+ ],
3365
+ "dateEnacted": "1993-11-12",
3366
+ "extra": "type: regulation\nstatus: 已废止\napplyDate: 1993-11-12",
3367
+ "publicLawNumber": "法发[1993]第36号",
3368
+ "url": "https://d.wanfangdata.com.cn/claw/g100001548",
3369
+ "attachments": [
3370
+ {
3371
+ "title": "Full Text PDF",
3372
+ "mimeType": "application/pdf"
3373
+ }
3374
+ ],
3375
+ "tags": [],
3376
+ "notes": [],
3377
+ "seeAlso": []
3378
+ }
3379
+ ]
3380
+ },
3381
+ {
3382
+ "type": "web",
3383
+ "url": "https://d.wanfangdata.com.cn/claw/G000286112",
3384
+ "defer": true,
3385
+ "items": [
3386
+ {
3387
+ "itemType": "statute",
3388
+ "nameOfAct": "中华人民共和国公司法",
3389
+ "creators": [
3390
+ {
3391
+ "firstName": "",
3392
+ "lastName": "全国人民代表大会常务委员会",
3393
+ "creatorType": "author",
3394
+ "fieldMode": 1
3395
+ }
3396
+ ],
3397
+ "dateEnacted": "2018-10-26",
3398
+ "extra": "Edition: 2018修正\napplyDate: 2018-10-26",
3399
+ "publicLawNumber": "主席令[2018]第15号",
3400
+ "shortTitle": "公司法",
3401
+ "url": "https://d.wanfangdata.com.cn/claw/G000286112",
3402
+ "attachments": [
3403
+ {
3404
+ "title": "Full Text PDF",
3405
+ "mimeType": "application/pdf"
3406
+ }
3407
+ ],
3408
+ "tags": [],
3409
+ "notes": [],
3410
+ "seeAlso": []
3411
+ }
3412
+ ]
3413
+ },
3414
+ {
3415
+ "type": "web",
3416
+ "url": "https://s.wanfangdata.com.cn/paper?q=%E9%A3%8E%E6%B9%BF&p=1",
3417
+ "defer": true,
3418
+ "items": "multiple"
3419
+ },
3420
+ {
3421
+ "type": "web",
3422
+ "url": "https://sns.wanfangdata.com.cn/perio/gclx",
3423
+ "defer": true,
3424
+ "items": "multiple"
3425
+ },
3426
+ {
3427
+ "type": "web",
3428
+ "url": "https://c.wanfangdata.com.cn/nstr",
3429
+ "defer": true,
3430
+ "items": "multiple"
3431
+ }
3432
+ ]
3433
+ /** END TEST CASES **/