scitex 2.13.0__py3-none-any.whl → 2.15.1__py3-none-any.whl

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 (1429) hide show
  1. scitex/__init__.py +80 -2
  2. scitex/__version__.py +11 -8
  3. scitex/_env_loader.py +156 -0
  4. scitex/_mcp_resources/__init__.py +37 -0
  5. scitex/_mcp_resources/_cheatsheet.py +135 -0
  6. scitex/_mcp_resources/_figrecipe.py +138 -0
  7. scitex/_mcp_resources/_formats.py +102 -0
  8. scitex/_mcp_resources/_modules.py +337 -0
  9. scitex/_mcp_resources/_session.py +149 -0
  10. scitex/_mcp_tools/__init__.py +40 -0
  11. scitex/_mcp_tools/audio.py +200 -0
  12. scitex/_mcp_tools/canvas.py +128 -0
  13. scitex/_mcp_tools/capture.py +174 -0
  14. scitex/_mcp_tools/diagram.py +22 -0
  15. scitex/_mcp_tools/introspect.py +191 -0
  16. scitex/_mcp_tools/plt.py +305 -0
  17. scitex/_mcp_tools/scholar.py +447 -0
  18. scitex/_mcp_tools/social.py +244 -0
  19. scitex/_mcp_tools/stats.py +206 -0
  20. scitex/_mcp_tools/template.py +66 -0
  21. scitex/_mcp_tools/ui.py +80 -0
  22. scitex/_mcp_tools/writer.py +37 -0
  23. scitex/ai/_gen_ai/_PARAMS.py +10 -7
  24. scitex/ai/classification/reporters/_ClassificationReporter.py +0 -0
  25. scitex/ai/classification/reporters/_SingleClassificationReporter.py +45 -1603
  26. scitex/ai/classification/reporters/_mixins/__init__.py +36 -0
  27. scitex/ai/classification/reporters/_mixins/_constants.py +67 -0
  28. scitex/ai/classification/reporters/_mixins/_cv_summary.py +387 -0
  29. scitex/ai/classification/reporters/_mixins/_feature_importance.py +119 -0
  30. scitex/ai/classification/reporters/_mixins/_metrics.py +275 -0
  31. scitex/ai/classification/reporters/_mixins/_plotting.py +179 -0
  32. scitex/ai/classification/reporters/_mixins/_reports.py +153 -0
  33. scitex/ai/classification/reporters/_mixins/_storage.py +160 -0
  34. scitex/ai/classification/timeseries/_TimeSeriesBlockingSplit.py +0 -0
  35. scitex/ai/classification/timeseries/_TimeSeriesCalendarSplit.py +0 -0
  36. scitex/ai/classification/timeseries/_TimeSeriesSlidingWindowSplit.py +0 -0
  37. scitex/ai/classification/timeseries/_TimeSeriesSlidingWindowSplit_v01-not-using-n_splits.py +0 -0
  38. scitex/ai/classification/timeseries/_TimeSeriesStratifiedSplit.py +0 -0
  39. scitex/ai/classification/timeseries/_normalize_timestamp.py +0 -0
  40. scitex/ai/metrics/_calc_seizure_prediction_metrics.py +0 -0
  41. scitex/ai/plt/_plot_feature_importance.py +0 -0
  42. scitex/ai/plt/_plot_learning_curve.py +0 -0
  43. scitex/ai/plt/_plot_optuna_study.py +0 -0
  44. scitex/ai/plt/_plot_pre_rec_curve.py +0 -0
  45. scitex/ai/plt/_plot_roc_curve.py +0 -0
  46. scitex/ai/plt/_stx_conf_mat.py +0 -0
  47. scitex/ai/training/_LearningCurveLogger.py +0 -0
  48. scitex/audio/README.md +88 -7
  49. scitex/audio/__init__.py +127 -60
  50. scitex/audio/__main__.py +17 -21
  51. scitex/audio/_branding.py +185 -0
  52. scitex/audio/_mcp/__init__.py +36 -0
  53. scitex/audio/_mcp/handlers.py +419 -0
  54. scitex/audio/_mcp/speak_handlers.py +238 -0
  55. scitex/audio/_mcp/tool_schemas.py +203 -0
  56. scitex/audio/_relay.py +225 -0
  57. scitex/audio/engines/elevenlabs_engine.py +6 -1
  58. scitex/audio/mcp_server.py +355 -337
  59. scitex/bridge/_figrecipe.py +40 -8
  60. scitex/bridge/_stats_plt.py +2 -4
  61. scitex/bridge/_stats_vis.py +7 -5
  62. scitex/browser/automation/CookieHandler.py +0 -0
  63. scitex/browser/collaboration/__init__.py +0 -1
  64. scitex/browser/core/BrowserMixin.py +0 -0
  65. scitex/browser/core/ChromeProfileManager.py +10 -3
  66. scitex/browser/debugging/_browser_logger.py +6 -9
  67. scitex/browser/debugging/_highlight_element.py +0 -0
  68. scitex/browser/debugging/_show_grid.py +0 -0
  69. scitex/browser/interaction/click_center.py +0 -0
  70. scitex/browser/interaction/click_with_fallbacks.py +0 -0
  71. scitex/browser/interaction/close_popups.py +0 -0
  72. scitex/browser/interaction/fill_with_fallbacks.py +0 -0
  73. scitex/browser/pdf/click_download_for_chrome_pdf_viewer.py +0 -0
  74. scitex/browser/pdf/detect_chrome_pdf_viewer.py +0 -0
  75. scitex/browser/stealth/HumanBehavior.py +0 -0
  76. scitex/browser/stealth/StealthManager.py +0 -0
  77. scitex/canvas/README.md +1 -1
  78. scitex/canvas/_mcp/__init__.py +4 -0
  79. scitex/canvas/_mcp/handlers.py +372 -0
  80. scitex/canvas/_mcp/tool_schemas.py +219 -0
  81. scitex/canvas/editor/_dearpygui/__init__.py +25 -0
  82. scitex/canvas/editor/_dearpygui/_editor.py +147 -0
  83. scitex/canvas/editor/_dearpygui/_handlers.py +476 -0
  84. scitex/canvas/editor/_dearpygui/_panels/__init__.py +17 -0
  85. scitex/canvas/editor/_dearpygui/_panels/_control.py +119 -0
  86. scitex/canvas/editor/_dearpygui/_panels/_element_controls.py +190 -0
  87. scitex/canvas/editor/_dearpygui/_panels/_preview.py +43 -0
  88. scitex/canvas/editor/_dearpygui/_panels/_sections.py +390 -0
  89. scitex/canvas/editor/_dearpygui/_plotting.py +187 -0
  90. scitex/canvas/editor/_dearpygui/_rendering.py +504 -0
  91. scitex/canvas/editor/_dearpygui/_selection.py +295 -0
  92. scitex/canvas/editor/_dearpygui/_state.py +93 -0
  93. scitex/canvas/editor/_dearpygui/_utils.py +61 -0
  94. scitex/canvas/editor/flask_editor/templates/__init__.py +32 -70
  95. scitex/canvas/mcp_server.py +2 -2
  96. scitex/capture/__init__.py +0 -1
  97. scitex/capture/_mcp/__init__.py +11 -0
  98. scitex/capture/_mcp/handlers.py +438 -0
  99. scitex/capture/_mcp/tool_schemas.py +270 -0
  100. scitex/cli/__init__.py +44 -2
  101. scitex/cli/audio.py +150 -3
  102. scitex/cli/browser.py +310 -0
  103. scitex/cli/capture.py +14 -3
  104. scitex/cli/introspect.py +443 -0
  105. scitex/cli/main.py +230 -103
  106. scitex/cli/mcp.py +362 -0
  107. scitex/cli/repro.py +18 -0
  108. scitex/cli/resource.py +18 -0
  109. scitex/cli/scholar/__init__.py +97 -0
  110. scitex/cli/scholar/_crossref_scitex.py +296 -0
  111. scitex/cli/scholar/_fetch.py +369 -0
  112. scitex/cli/scholar/_jobs.py +306 -0
  113. scitex/cli/scholar/_library.py +152 -0
  114. scitex/cli/scholar/_utils.py +35 -0
  115. scitex/cli/social.py +314 -0
  116. scitex/cli/stats.py +18 -0
  117. scitex/cli/template.py +18 -0
  118. scitex/cli/tex.py +18 -0
  119. scitex/cli/writer.py +190 -20
  120. scitex/compat/__init__.py +74 -0
  121. scitex/config/README.md +1 -1
  122. scitex/config/__init__.py +16 -2
  123. scitex/config/_env_registry.py +191 -0
  124. scitex/config/default.yaml +31 -0
  125. scitex/cv/__init__.py +87 -0
  126. scitex/cv/_draw.py +236 -0
  127. scitex/cv/_filters.py +217 -0
  128. scitex/cv/_io.py +157 -0
  129. scitex/cv/_transform.py +184 -0
  130. scitex/dev/__init__.py +2 -0
  131. scitex/dev/cv/__init__.py +60 -0
  132. scitex/dev/cv/_compose.py +330 -0
  133. scitex/dev/cv/_title_card.py +351 -0
  134. scitex/dev/plt/__init__.py +0 -0
  135. scitex/dev/plt/demo_plotters/__init__.py +0 -0
  136. scitex/dev/plt/mpl/get_dir_ax.py +0 -0
  137. scitex/dev/plt/mpl/get_signatures.py +0 -0
  138. scitex/dev/plt/mpl/get_signatures_details.py +0 -0
  139. scitex/diagram/__init__.py +42 -19
  140. scitex/diagram/mcp_server.py +13 -125
  141. scitex/dt/_normalize_timestamp.py +0 -0
  142. scitex/gen/__init__.py +0 -0
  143. scitex/gen/misc.py +0 -0
  144. scitex/git/_init.py +2 -2
  145. scitex/git/_session.py +0 -0
  146. scitex/introspect/__init__.py +75 -0
  147. scitex/introspect/_call_graph.py +303 -0
  148. scitex/introspect/_class_hierarchy.py +163 -0
  149. scitex/introspect/_core.py +42 -0
  150. scitex/introspect/_docstring.py +131 -0
  151. scitex/introspect/_examples.py +113 -0
  152. scitex/introspect/_imports.py +271 -0
  153. scitex/introspect/_mcp/__init__.py +37 -0
  154. scitex/introspect/_mcp/handlers.py +208 -0
  155. scitex/introspect/_members.py +151 -0
  156. scitex/introspect/_resolve.py +89 -0
  157. scitex/introspect/_signature.py +131 -0
  158. scitex/introspect/_source.py +80 -0
  159. scitex/introspect/_type_hints.py +172 -0
  160. scitex/io/bundle/README.md +1 -1
  161. scitex/io/bundle/kinds/__init__.py +0 -0
  162. scitex/io/bundle/kinds/_figure/__init__.py +0 -0
  163. scitex/io/bundle/kinds/_plot/__init__.py +0 -0
  164. scitex/io/bundle/kinds/_shape/__init__.py +0 -0
  165. scitex/io/bundle/kinds/_text/__init__.py +0 -0
  166. scitex/logging/_context.py +5 -4
  167. scitex/mcp_server.py +170 -145
  168. scitex/plt/__init__.py +249 -548
  169. scitex/plt/_figrecipe_integration.py +121 -0
  170. scitex/plt/_subplots/_AxisWrapperMixins/_SeabornMixin/_wrappers.py +5 -10
  171. scitex/plt/_subplots/_FigWrapper.py +139 -88
  172. scitex/plt/_subplots/_export_as_csv_formatters/_format_pcolormesh.py +0 -0
  173. scitex/plt/_subplots/_export_as_csv_formatters/_format_stackplot.py +0 -0
  174. scitex/plt/docs/EXTERNAL_PACKAGE_BRANDING.md +149 -0
  175. scitex/plt/gallery/README.md +1 -1
  176. scitex/plt/styles/_plot_postprocess.py +35 -117
  177. scitex/plt/styles/_postprocess_helpers.py +158 -0
  178. scitex/plt/utils/_hitmap/__init__.py +82 -0
  179. scitex/plt/utils/_hitmap/_artist_extraction.py +343 -0
  180. scitex/plt/utils/_hitmap/_color_application.py +346 -0
  181. scitex/plt/utils/_hitmap/_color_conversion.py +121 -0
  182. scitex/plt/utils/_hitmap/_constants.py +40 -0
  183. scitex/plt/utils/_hitmap/_hitmap_core.py +334 -0
  184. scitex/plt/utils/_hitmap/_path_extraction.py +357 -0
  185. scitex/plt/utils/_hitmap/_query.py +113 -0
  186. scitex/plt/utils/_hitmap.py +46 -1616
  187. scitex/plt/utils/_metadata/__init__.py +80 -0
  188. scitex/plt/utils/_metadata/_artists/__init__.py +25 -0
  189. scitex/plt/utils/_metadata/_artists/_base.py +195 -0
  190. scitex/plt/utils/_metadata/_artists/_collections.py +356 -0
  191. scitex/plt/utils/_metadata/_artists/_extract.py +57 -0
  192. scitex/plt/utils/_metadata/_artists/_images.py +80 -0
  193. scitex/plt/utils/_metadata/_artists/_lines.py +261 -0
  194. scitex/plt/utils/_metadata/_artists/_patches.py +247 -0
  195. scitex/plt/utils/_metadata/_artists/_text.py +106 -0
  196. scitex/plt/utils/_metadata/_csv.py +416 -0
  197. scitex/plt/utils/_metadata/_detect.py +225 -0
  198. scitex/plt/utils/_metadata/_legend.py +127 -0
  199. scitex/plt/utils/_metadata/_rounding.py +117 -0
  200. scitex/plt/utils/_metadata/_verification.py +202 -0
  201. scitex/repro/_RandomStateManager.py +0 -0
  202. scitex/repro/_gen_ID.py +0 -0
  203. scitex/repro/_gen_timestamp.py +0 -0
  204. scitex/repro/_hash_array.py +0 -0
  205. scitex/schema/README.md +1 -1
  206. scitex/scholar/__init__.py +8 -0
  207. scitex/scholar/_mcp/__init__.py +4 -0
  208. scitex/scholar/_mcp/all_handlers.py +74 -0
  209. scitex/scholar/_mcp/crossref_handlers.py +265 -0
  210. scitex/scholar/_mcp/handlers.py +1478 -0
  211. scitex/scholar/_mcp/job_handlers.py +172 -0
  212. scitex/scholar/_mcp/job_tool_schemas.py +166 -0
  213. scitex/scholar/_mcp/tool_schemas.py +505 -0
  214. scitex/scholar/auth/core/BrowserAuthenticator.py +126 -9
  215. scitex/scholar/auth/providers/OpenAthensAuthenticator.py +55 -210
  216. scitex/scholar/auth/providers/_notifications.py +417 -0
  217. scitex/scholar/auth/sso/BaseSSOAutomator.py +36 -17
  218. scitex/scholar/auth/sso/UniversityOfMelbourneSSOAutomator.py +8 -15
  219. scitex/scholar/citation_graph/__init__.py +0 -1
  220. scitex/scholar/config/core/_PathManager.py +5 -1
  221. scitex/scholar/config/default.yaml +1 -1
  222. scitex/scholar/core/Paper.py +19 -41
  223. scitex/scholar/core/Scholar.py +64 -1688
  224. scitex/scholar/core/_mixins/__init__.py +36 -0
  225. scitex/scholar/core/_mixins/_enrichers.py +270 -0
  226. scitex/scholar/core/_mixins/_library_handlers.py +100 -0
  227. scitex/scholar/core/_mixins/_loaders.py +103 -0
  228. scitex/scholar/core/_mixins/_pdf_download.py +375 -0
  229. scitex/scholar/core/_mixins/_pipeline.py +312 -0
  230. scitex/scholar/core/_mixins/_project_handlers.py +125 -0
  231. scitex/scholar/core/_mixins/_savers.py +69 -0
  232. scitex/scholar/core/_mixins/_search.py +103 -0
  233. scitex/scholar/core/_mixins/_services.py +88 -0
  234. scitex/scholar/core/_mixins/_url_finding.py +105 -0
  235. scitex/scholar/core/journal_normalizer.py +36 -25
  236. scitex/scholar/crossref_scitex.py +367 -0
  237. scitex/scholar/docs/EXTERNAL_PACKAGE_BRANDING.md +149 -0
  238. scitex/scholar/examples/00_run_all.sh +120 -0
  239. scitex/scholar/examples/07_storage_integration.py +0 -0
  240. scitex/scholar/impact_factor/estimation/__init__.py +0 -1
  241. scitex/scholar/impact_factor/jcr/ImpactFactorJCREngine.py +19 -6
  242. scitex/scholar/impact_factor/jcr/build_database.py +0 -0
  243. scitex/scholar/jobs/_Job.py +266 -0
  244. scitex/scholar/jobs/_JobManager.py +458 -0
  245. scitex/scholar/jobs/__init__.py +74 -0
  246. scitex/scholar/jobs/_errors.py +346 -0
  247. scitex/scholar/jobs/_executors.py +397 -0
  248. scitex/scholar/mcp_server.py +52 -2
  249. scitex/scholar/pdf_download/ScholarPDFDownloader.py +38 -416
  250. scitex/scholar/pdf_download/_cli.py +154 -0
  251. scitex/scholar/pdf_download/strategies/__init__.py +11 -8
  252. scitex/scholar/pdf_download/strategies/chrome_pdf_viewer.py +11 -11
  253. scitex/scholar/pdf_download/strategies/manual_download_fallback.py +80 -3
  254. scitex/scholar/pipelines/ScholarPipelineBibTeX.py +73 -121
  255. scitex/scholar/pipelines/ScholarPipelineParallel.py +83 -140
  256. scitex/scholar/pipelines/ScholarPipelineSearchParallel.py +11 -13
  257. scitex/scholar/pipelines/ScholarPipelineSingle.py +83 -656
  258. scitex/scholar/pipelines/_single_steps.py +465 -0
  259. scitex/scholar/storage/BibTeXHandler.py +71 -23
  260. scitex/scholar/storage/PaperIO.py +53 -18
  261. scitex/scholar/storage/_BibTeXValidator.py +571 -0
  262. scitex/scholar/storage/_LibraryManager.py +97 -1695
  263. scitex/scholar/storage/__init__.py +17 -3
  264. scitex/scholar/storage/_mixins/__init__.py +30 -0
  265. scitex/scholar/storage/_mixins/_bibtex_handlers.py +128 -0
  266. scitex/scholar/storage/_mixins/_library_operations.py +218 -0
  267. scitex/scholar/storage/_mixins/_metadata_conversion.py +226 -0
  268. scitex/scholar/storage/_mixins/_paper_saving.py +456 -0
  269. scitex/scholar/storage/_mixins/_resolution.py +376 -0
  270. scitex/scholar/storage/_mixins/_storage_helpers.py +121 -0
  271. scitex/scholar/storage/_mixins/_symlink_handlers.py +226 -0
  272. scitex/scholar/url_finder/translators/individual/cell_press.py +131 -4
  273. scitex/security/README.md +3 -3
  274. scitex/security/__init__.py +0 -1
  275. scitex/session/README.md +1 -1
  276. scitex/session/__init__.py +0 -0
  277. scitex/session/_decorator.py +0 -0
  278. scitex/session/_lifecycle.py +0 -0
  279. scitex/sh/README.md +1 -1
  280. scitex/social/__init__.py +153 -0
  281. scitex/social/docs/EXTERNAL_PACKAGE_BRANDING.md +149 -0
  282. scitex/stats/__init__.py +14 -2
  283. scitex/stats/__main__.py +2 -2
  284. scitex/stats/_figrecipe_integration.py +116 -0
  285. scitex/stats/_mcp/__init__.py +4 -0
  286. scitex/stats/_mcp/handlers.py +1191 -0
  287. scitex/stats/_mcp/tool_schemas.py +384 -0
  288. scitex/stats/auto/__init__.py +0 -1
  289. scitex/stats/correct/_correct_bonferroni.py +0 -0
  290. scitex/stats/correct/_correct_fdr.py +0 -0
  291. scitex/stats/correct/_correct_fdr_.py +0 -0
  292. scitex/stats/correct/_correct_holm.py +0 -0
  293. scitex/stats/correct/_correct_sidak.py +0 -0
  294. scitex/stats/effect_sizes/_cliffs_delta.py +0 -0
  295. scitex/stats/effect_sizes/_cohens_d.py +0 -0
  296. scitex/stats/effect_sizes/_epsilon_squared.py +0 -0
  297. scitex/stats/effect_sizes/_eta_squared.py +0 -0
  298. scitex/stats/effect_sizes/_prob_superiority.py +0 -0
  299. scitex/stats/mcp_server.py +2 -2
  300. scitex/stats/posthoc/_dunnett.py +0 -0
  301. scitex/stats/posthoc/_games_howell.py +0 -0
  302. scitex/stats/posthoc/_tukey_hsd.py +0 -0
  303. scitex/stats/power/_power.py +0 -0
  304. scitex/stats/utils/_effect_size.py +0 -0
  305. scitex/stats/utils/_formatters.py +0 -0
  306. scitex/stats/utils/_power.py +0 -0
  307. scitex/template/README.md +1 -1
  308. scitex/template/_mcp/__init__.py +4 -0
  309. scitex/template/_mcp/handlers.py +259 -0
  310. scitex/template/_mcp/tool_schemas.py +112 -0
  311. scitex/template/clone_writer_directory.py +6 -6
  312. scitex/template/mcp_server.py +2 -2
  313. scitex/ui/__init__.py +173 -0
  314. scitex/ui/_backends/__init__.py +66 -0
  315. scitex/ui/_backends/_audio.py +86 -0
  316. scitex/ui/_backends/_config.py +250 -0
  317. scitex/ui/_backends/_desktop.py +184 -0
  318. scitex/ui/_backends/_emacs.py +210 -0
  319. scitex/ui/_backends/_email.py +78 -0
  320. scitex/ui/_backends/_matplotlib.py +118 -0
  321. scitex/ui/_backends/_playwright.py +109 -0
  322. scitex/ui/_backends/_types.py +58 -0
  323. scitex/ui/_backends/_webhook.py +77 -0
  324. scitex/ui/_backends.py +37 -0
  325. scitex/ui/_mcp/__init__.py +23 -0
  326. scitex/ui/_mcp/handlers.py +260 -0
  327. scitex/ui/_mcp/tool_schemas.py +107 -0
  328. scitex/ui/mcp_server.py +151 -0
  329. scitex/utils/_email.py +85 -7
  330. scitex/utils/_notify.py +16 -5
  331. scitex/utils/_search.py +11 -9
  332. scitex/utils/_verify_scitex_format.py +0 -0
  333. scitex/writer/README.md +1 -1
  334. scitex/writer/Writer.py +110 -111
  335. scitex/writer/__init__.py +26 -48
  336. scitex/writer/_clone_writer_project.py +0 -0
  337. scitex/writer/_compile/__init__.py +5 -4
  338. scitex/writer/_compile/_compile_async.py +130 -0
  339. scitex/writer/_compile/_compile_unified.py +148 -0
  340. scitex/writer/_compile/_runner.py +2 -2
  341. scitex/writer/_compile/_validator.py +3 -3
  342. scitex/writer/_compile/manuscript.py +1 -1
  343. scitex/writer/_compile/revision.py +1 -1
  344. scitex/writer/_compile/supplementary.py +1 -1
  345. scitex/writer/_dataclasses/config/_WriterConfig.py +175 -0
  346. scitex/writer/_dataclasses/contents/_ManuscriptContents.py +236 -0
  347. scitex/writer/_dataclasses/core/_Document.py +146 -0
  348. scitex/writer/_dataclasses/core/_DocumentSection.py +546 -0
  349. scitex/writer/_dataclasses/results/_CompilationResult.py +165 -0
  350. scitex/writer/_dataclasses/results/_LaTeXIssue.py +102 -0
  351. scitex/writer/_dataclasses/tree/MINIMUM_FILES.md +121 -0
  352. scitex/writer/_mcp/__init__.py +4 -0
  353. scitex/writer/_mcp/handlers.py +32 -0
  354. scitex/writer/_mcp/tool_schemas.py +33 -0
  355. scitex/writer/_project/_trees.py +2 -2
  356. scitex/writer/utils/__init__.py +19 -2
  357. scitex/writer/utils/_converters.py +635 -0
  358. scitex/writer/utils/_parse_latex_logs.py +1 -1
  359. scitex/writer/utils/_verify_tree_structure.py +205 -0
  360. scitex-2.15.1.dist-info/METADATA +648 -0
  361. scitex-2.15.1.dist-info/RECORD +2553 -0
  362. scitex-2.15.1.dist-info/entry_points.txt +12 -0
  363. scitex/audio/_mcp_handlers.py +0 -256
  364. scitex/audio/_mcp_tool_schemas.py +0 -203
  365. scitex/canvas/_mcp_handlers.py +0 -372
  366. scitex/canvas/_mcp_tool_schemas.py +0 -219
  367. scitex/canvas/editor/flask_editor/templates/_scripts.py +0 -4933
  368. scitex/canvas/editor/flask_editor/templates/_styles.py +0 -1658
  369. scitex/capture/mcp_handlers.py +0 -401
  370. scitex/capture/mcp_tool_defs.py +0 -192
  371. scitex/capture/mcp_tools.py +0 -241
  372. scitex/capture/mcp_utils.py +0 -30
  373. scitex/cli/scholar.py +0 -313
  374. scitex/diagram/_compile.py +0 -312
  375. scitex/diagram/_diagram.py +0 -355
  376. scitex/diagram/_mcp_handlers.py +0 -400
  377. scitex/diagram/_mcp_tool_schemas.py +0 -157
  378. scitex/diagram/_presets.py +0 -173
  379. scitex/diagram/_schema.py +0 -182
  380. scitex/diagram/_split.py +0 -278
  381. scitex/plt/_mcp_handlers.py +0 -361
  382. scitex/plt/_mcp_tool_schemas.py +0 -169
  383. scitex/plt/mcp_server.py +0 -205
  384. scitex/scholar/.legacy/Scholar.py +0 -400
  385. scitex/scholar/.legacy/_Scholar.py +0 -1763
  386. scitex/scholar/.legacy/_ScholarAPI.py +0 -316
  387. scitex/scholar/.legacy/_tmp/search_engine/_BaseSearchEngine.py +0 -101
  388. scitex/scholar/.legacy/_tmp/search_engine/_UnifiedSearcher.py +0 -392
  389. scitex/scholar/.legacy/_tmp/search_engine/__init__.py +0 -53
  390. scitex/scholar/.legacy/_tmp/search_engine/local/_LocalSearchEngine.py +0 -134
  391. scitex/scholar/.legacy/_tmp/search_engine/local/_VectorSearchEngine.py +0 -129
  392. scitex/scholar/.legacy/_tmp/search_engine/web/_ArxivSearchEngine.py +0 -279
  393. scitex/scholar/.legacy/_tmp/search_engine/web/_CrossRefSearchEngine.py +0 -319
  394. scitex/scholar/.legacy/_tmp/search_engine/web/_GoogleScholarSearchEngine.py +0 -209
  395. scitex/scholar/.legacy/_tmp/search_engine/web/_PubMedSearchEngine.py +0 -374
  396. scitex/scholar/.legacy/_tmp/search_engine/web/_SemanticScholarSearchEngine.py +0 -362
  397. scitex/scholar/.legacy/database/README.md +0 -121
  398. scitex/scholar/.legacy/database/README_CONCURRENT_ACCESS.md +0 -103
  399. scitex/scholar/.legacy/database/_DatabaseEntry.py +0 -232
  400. scitex/scholar/.legacy/database/_DatabaseIndex.py +0 -426
  401. scitex/scholar/.legacy/database/_LibraryManager.py +0 -276
  402. scitex/scholar/.legacy/database/_PaperDatabase.py +0 -543
  403. scitex/scholar/.legacy/database/_ScholarDatabaseIntegration.py +0 -391
  404. scitex/scholar/.legacy/database/_StorageIntegratedDB.py +0 -619
  405. scitex/scholar/.legacy/database/_ZoteroCompatibleDB.py +0 -1194
  406. scitex/scholar/.legacy/database/__init__.py +0 -28
  407. scitex/scholar/.legacy/database/manage.py +0 -274
  408. scitex/scholar/.legacy/lookup/_LookupIndex.py +0 -470
  409. scitex/scholar/.legacy/lookup/__init__.py +0 -22
  410. scitex/scholar/.legacy/metadata/README.md +0 -62
  411. scitex/scholar/.legacy/metadata/__init__.py +0 -1
  412. scitex/scholar/.legacy/metadata/doi/README.md +0 -368
  413. scitex/scholar/.legacy/metadata/doi/__init__.py +0 -7
  414. scitex/scholar/.legacy/metadata/doi/batch/_MetadataHandlerForBatchDOIResolution.py +0 -304
  415. scitex/scholar/.legacy/metadata/doi/batch/_ProgressManagerForBatchDOIResolution.py +0 -304
  416. scitex/scholar/.legacy/metadata/doi/batch/_SourceStatsManagerForBatchDOIResolution.py +0 -299
  417. scitex/scholar/.legacy/metadata/doi/batch/__init__.py +0 -26
  418. scitex/scholar/.legacy/metadata/doi/resolvers/_BatchDOIResolver.py +0 -586
  419. scitex/scholar/.legacy/metadata/doi/resolvers/_BibTeXDOIResolver.py +0 -609
  420. scitex/scholar/.legacy/metadata/doi/resolvers/_DOIResolver.py +0 -192
  421. scitex/scholar/.legacy/metadata/doi/resolvers/_SingleDOIResolver.py +0 -395
  422. scitex/scholar/.legacy/metadata/doi/resolvers/__init__.py +0 -2
  423. scitex/scholar/.legacy/metadata/doi/sources/.combined-SemanticScholarSource/_SemanticScholarSource.py +0 -289
  424. scitex/scholar/.legacy/metadata/doi/sources/.combined-SemanticScholarSource/_SemanticScholarSourceEnhanced.py +0 -229
  425. scitex/scholar/.legacy/metadata/doi/sources/_ArXivSource.py +0 -306
  426. scitex/scholar/.legacy/metadata/doi/sources/_BaseDOISource.py +0 -347
  427. scitex/scholar/.legacy/metadata/doi/sources/_CrossRefLocalSource.py +0 -79
  428. scitex/scholar/.legacy/metadata/doi/sources/_CrossRefSource.py +0 -225
  429. scitex/scholar/.legacy/metadata/doi/sources/_OpenAlexSource.py +0 -306
  430. scitex/scholar/.legacy/metadata/doi/sources/_PubMedSource.py +0 -302
  431. scitex/scholar/.legacy/metadata/doi/sources/_SemanticScholarSource.py +0 -341
  432. scitex/scholar/.legacy/metadata/doi/sources/_SourceManager.py +0 -317
  433. scitex/scholar/.legacy/metadata/doi/sources/_SourceResolutionStrategy.py +0 -595
  434. scitex/scholar/.legacy/metadata/doi/sources/_SourceRotationManager.py +0 -585
  435. scitex/scholar/.legacy/metadata/doi/sources/_URLDOISource.py +0 -394
  436. scitex/scholar/.legacy/metadata/doi/sources/_UnifiedSource.py +0 -412
  437. scitex/scholar/.legacy/metadata/doi/sources/__init__.py +0 -38
  438. scitex/scholar/.legacy/metadata/doi/utils/_PubMedConverter.py +0 -465
  439. scitex/scholar/.legacy/metadata/doi/utils/_RateLimitHandler.py +0 -707
  440. scitex/scholar/.legacy/metadata/doi/utils/_TextNormalizer.py +0 -587
  441. scitex/scholar/.legacy/metadata/doi/utils/_URLDOIExtractor.py +0 -278
  442. scitex/scholar/.legacy/metadata/doi/utils/__init__.py +0 -40
  443. scitex/scholar/.legacy/metadata/doi/utils/_to_complete_metadata_structure.py +0 -315
  444. scitex/scholar/.legacy/metadata/enrichment/README.md +0 -51
  445. scitex/scholar/.legacy/metadata/enrichment/_LibraryEnricher.py +0 -99
  446. scitex/scholar/.legacy/metadata/enrichment/__init__.py +0 -2
  447. scitex/scholar/.legacy/metadata/enrichment/enrichers/_ImpactFactorEnricher.py +0 -107
  448. scitex/scholar/.legacy/metadata/enrichment/enrichers/_SmartEnricher.py +0 -164
  449. scitex/scholar/.legacy/metadata/enrichment/enrichers/__init__.py +0 -4
  450. scitex/scholar/.legacy/metadata/enrichment/sources/_UnifiedMetadataSource.py +0 -126
  451. scitex/scholar/.legacy/metadata/enrichment/sources/__init__.py +0 -3
  452. scitex/scholar/.legacy/metadata/query_to_full_meta_json.py +0 -184
  453. scitex/scholar/.legacy/metadata/urls/.tmp/open_url/KNOWN_RESOLVERS.py +0 -462
  454. scitex/scholar/.legacy/metadata/urls/.tmp/open_url/README.md +0 -223
  455. scitex/scholar/.legacy/metadata/urls/.tmp/open_url/_DOIToURLResolver.py +0 -694
  456. scitex/scholar/.legacy/metadata/urls/.tmp/open_url/_OpenURLResolver.py +0 -1160
  457. scitex/scholar/.legacy/metadata/urls/.tmp/open_url/_ResolverLinkFinder.py +0 -344
  458. scitex/scholar/.legacy/metadata/urls/.tmp/open_url/__init__.py +0 -24
  459. scitex/scholar/.legacy/metadata/urls/README.md +0 -142
  460. scitex/scholar/.legacy/metadata/urls/_URLMetadataHandler.py +0 -383
  461. scitex/scholar/.legacy/metadata/urls/_ZoteroTranslatorRunner.py +0 -294
  462. scitex/scholar/.legacy/metadata/urls/__init__.py +0 -39
  463. scitex/scholar/.legacy/metadata/urls/_finder.py +0 -319
  464. scitex/scholar/.legacy/metadata/urls/_handler.py +0 -326
  465. scitex/scholar/.legacy/metadata/urls/_resolver.py +0 -287
  466. scitex/scholar/.legacy/metadata/urls/docs/CORE_URL_TYPES.md +0 -187
  467. scitex/scholar/.legacy/metadata/urls/docs/URL_SCHEMA.md +0 -223
  468. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/.eslintrc +0 -11
  469. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/AGPL +0 -22
  470. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/checkDeletedTxt.sh +0 -46
  471. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/eslint-plugin-zotero-translator/bin/teslint.js +0 -9
  472. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/eslint-plugin-zotero-translator/index.js +0 -15
  473. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/eslint-plugin-zotero-translator/package-lock.json +0 -151
  474. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/eslint-plugin-zotero-translator/package.json +0 -21
  475. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/eslint-plugin-zotero-translator/processor.js +0 -257
  476. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/helper.sh +0 -29
  477. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/lint.sh +0 -12
  478. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/pull-request-check/check-pull-request.sh +0 -39
  479. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/pull-request-check/selenium-test.js +0 -147
  480. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/pull-request-check/translator-server.js +0 -72
  481. scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/updateTypes.mjs +0 -75
  482. scitex/scholar/.legacy/metadata/urls/zotero_translators/.editorconfig +0 -8
  483. scitex/scholar/.legacy/metadata/urls/zotero_translators/.eslintrc +0 -70
  484. scitex/scholar/.legacy/metadata/urls/zotero_translators/ABC News Australia.js +0 -224
  485. scitex/scholar/.legacy/metadata/urls/zotero_translators/ACLS Humanities EBook.js +0 -165
  486. scitex/scholar/.legacy/metadata/urls/zotero_translators/ACLWeb.js +0 -600
  487. scitex/scholar/.legacy/metadata/urls/zotero_translators/ACM Digital Library.js +0 -710
  488. scitex/scholar/.legacy/metadata/urls/zotero_translators/ACS Publications.js +0 -633
  489. scitex/scholar/.legacy/metadata/urls/zotero_translators/ADS Bibcode.js +0 -664
  490. scitex/scholar/.legacy/metadata/urls/zotero_translators/AEA Web.js +0 -450
  491. scitex/scholar/.legacy/metadata/urls/zotero_translators/AGRIS.js +0 -311
  492. scitex/scholar/.legacy/metadata/urls/zotero_translators/AIP.js +0 -295
  493. scitex/scholar/.legacy/metadata/urls/zotero_translators/AMS Journals.js +0 -136
  494. scitex/scholar/.legacy/metadata/urls/zotero_translators/AMS MathSciNet (Legacy).js +0 -313
  495. scitex/scholar/.legacy/metadata/urls/zotero_translators/AMS MathSciNet.js +0 -288
  496. scitex/scholar/.legacy/metadata/urls/zotero_translators/APA PsycNET.js +0 -915
  497. scitex/scholar/.legacy/metadata/urls/zotero_translators/APN.ru.js +0 -132
  498. scitex/scholar/.legacy/metadata/urls/zotero_translators/APS-Physics.js +0 -204
  499. scitex/scholar/.legacy/metadata/urls/zotero_translators/APS.js +0 -542
  500. scitex/scholar/.legacy/metadata/urls/zotero_translators/ARTFL Encyclopedie.js +0 -283
  501. scitex/scholar/.legacy/metadata/urls/zotero_translators/ARTnews.js +0 -155
  502. scitex/scholar/.legacy/metadata/urls/zotero_translators/ARTstor.js +0 -619
  503. scitex/scholar/.legacy/metadata/urls/zotero_translators/ASCE.js +0 -199
  504. scitex/scholar/.legacy/metadata/urls/zotero_translators/ASCO Meeting Library.js +0 -153
  505. scitex/scholar/.legacy/metadata/urls/zotero_translators/ASTIS.js +0 -337
  506. scitex/scholar/.legacy/metadata/urls/zotero_translators/ATS International Journal.js +0 -290
  507. scitex/scholar/.legacy/metadata/urls/zotero_translators/Access Engineering.js +0 -384
  508. scitex/scholar/.legacy/metadata/urls/zotero_translators/Access Medicine.js +0 -343
  509. scitex/scholar/.legacy/metadata/urls/zotero_translators/Access Science.js +0 -391
  510. scitex/scholar/.legacy/metadata/urls/zotero_translators/Adam Matthew Digital.js +0 -405
  511. scitex/scholar/.legacy/metadata/urls/zotero_translators/Agencia del ISBN.js +0 -77
  512. scitex/scholar/.legacy/metadata/urls/zotero_translators/Ahval News.js +0 -309
  513. scitex/scholar/.legacy/metadata/urls/zotero_translators/Air University Journals.js +0 -236
  514. scitex/scholar/.legacy/metadata/urls/zotero_translators/Airiti.js +0 -423
  515. scitex/scholar/.legacy/metadata/urls/zotero_translators/Alexander Street Press.js +0 -198
  516. scitex/scholar/.legacy/metadata/urls/zotero_translators/AllAfrica.js +0 -291
  517. scitex/scholar/.legacy/metadata/urls/zotero_translators/Alsharekh.js +0 -242
  518. scitex/scholar/.legacy/metadata/urls/zotero_translators/AlterNet.js +0 -134
  519. scitex/scholar/.legacy/metadata/urls/zotero_translators/Aluka.js +0 -261
  520. scitex/scholar/.legacy/metadata/urls/zotero_translators/Amazon.js +0 -1043
  521. scitex/scholar/.legacy/metadata/urls/zotero_translators/American Archive of Public Broadcasting.js +0 -592
  522. scitex/scholar/.legacy/metadata/urls/zotero_translators/American Institute of Aeronautics and Astronautics.js +0 -210
  523. scitex/scholar/.legacy/metadata/urls/zotero_translators/American Prospect.js +0 -114
  524. scitex/scholar/.legacy/metadata/urls/zotero_translators/Ancestry.com US Federal Census.js +0 -164
  525. scitex/scholar/.legacy/metadata/urls/zotero_translators/Annual Reviews.js +0 -329
  526. scitex/scholar/.legacy/metadata/urls/zotero_translators/Antikvarium.hu.js +0 -280
  527. scitex/scholar/.legacy/metadata/urls/zotero_translators/AquaDocs.js +0 -390
  528. scitex/scholar/.legacy/metadata/urls/zotero_translators/Archeion.js +0 -249
  529. scitex/scholar/.legacy/metadata/urls/zotero_translators/Archiv fuer Sozialgeschichte.js +0 -157
  530. scitex/scholar/.legacy/metadata/urls/zotero_translators/Archive Ouverte en Sciences de l'Information et de la Communication (AOSIC).js +0 -179
  531. scitex/scholar/.legacy/metadata/urls/zotero_translators/Archives Canada.js +0 -142
  532. scitex/scholar/.legacy/metadata/urls/zotero_translators/Ariana News.js +0 -203
  533. scitex/scholar/.legacy/metadata/urls/zotero_translators/Art Institute of Chicago.js +0 -279
  534. scitex/scholar/.legacy/metadata/urls/zotero_translators/Artefacts Canada.js +0 -192
  535. scitex/scholar/.legacy/metadata/urls/zotero_translators/Artforum.js +0 -438
  536. scitex/scholar/.legacy/metadata/urls/zotero_translators/Atlanta Journal-Constitution.js +0 -311
  537. scitex/scholar/.legacy/metadata/urls/zotero_translators/Atypon Journals.js +0 -1204
  538. scitex/scholar/.legacy/metadata/urls/zotero_translators/AustLII and NZLII.js +0 -604
  539. scitex/scholar/.legacy/metadata/urls/zotero_translators/Australian Dictionary of Biography.js +0 -196
  540. scitex/scholar/.legacy/metadata/urls/zotero_translators/BAILII.js +0 -176
  541. scitex/scholar/.legacy/metadata/urls/zotero_translators/BBC Genome.js +0 -254
  542. scitex/scholar/.legacy/metadata/urls/zotero_translators/BBC.js +0 -430
  543. scitex/scholar/.legacy/metadata/urls/zotero_translators/BIBSYS.js +0 -112
  544. scitex/scholar/.legacy/metadata/urls/zotero_translators/BOCC.js +0 -217
  545. scitex/scholar/.legacy/metadata/urls/zotero_translators/BOE.js +0 -229
  546. scitex/scholar/.legacy/metadata/urls/zotero_translators/BOFiP-Impots.js +0 -132
  547. scitex/scholar/.legacy/metadata/urls/zotero_translators/Baidu Scholar.js +0 -276
  548. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bangkok Post.js +0 -216
  549. scitex/scholar/.legacy/metadata/urls/zotero_translators/Baruch Foundation.js +0 -175
  550. scitex/scholar/.legacy/metadata/urls/zotero_translators/Beobachter.js +0 -175
  551. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bezneng Gajit.js +0 -92
  552. scitex/scholar/.legacy/metadata/urls/zotero_translators/BibLaTeX.js +0 -888
  553. scitex/scholar/.legacy/metadata/urls/zotero_translators/BibTeX.js +0 -4236
  554. scitex/scholar/.legacy/metadata/urls/zotero_translators/Biblio.com.js +0 -216
  555. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bibliontology RDF.js +0 -1166
  556. scitex/scholar/.legacy/metadata/urls/zotero_translators/Biblioteca Nacional de Maestros.js +0 -213
  557. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bibliotheque et Archives Nationale du Quebec (Pistard).js +0 -147
  558. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bibliotheque et Archives Nationales du Quebec.js +0 -266
  559. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bibliotheque nationale de France.js +0 -872
  560. scitex/scholar/.legacy/metadata/urls/zotero_translators/BioMed Central.js +0 -585
  561. scitex/scholar/.legacy/metadata/urls/zotero_translators/BioOne.js +0 -233
  562. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bioconductor.js +0 -343
  563. scitex/scholar/.legacy/metadata/urls/zotero_translators/Blaetter.js +0 -192
  564. scitex/scholar/.legacy/metadata/urls/zotero_translators/Blogger.js +0 -244
  565. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bloomberg.js +0 -205
  566. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bloomsbury Food Library.js +0 -296
  567. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bluesky.js +0 -195
  568. scitex/scholar/.legacy/metadata/urls/zotero_translators/BnF ISBN.js +0 -129
  569. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bookmarks.js +0 -282
  570. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bookshop.org.js +0 -223
  571. scitex/scholar/.legacy/metadata/urls/zotero_translators/Boston Review.js +0 -332
  572. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bosworth Toller's Anglo-Saxon Dictionary Online.js +0 -496
  573. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bracero History Archive.js +0 -200
  574. scitex/scholar/.legacy/metadata/urls/zotero_translators/Brill.js +0 -434
  575. scitex/scholar/.legacy/metadata/urls/zotero_translators/Brukerhandboken.js +0 -153
  576. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bryn Mawr Classical Review.js +0 -303
  577. scitex/scholar/.legacy/metadata/urls/zotero_translators/Bundesgesetzblatt.js +0 -231
  578. scitex/scholar/.legacy/metadata/urls/zotero_translators/Business Standard.js +0 -151
  579. scitex/scholar/.legacy/metadata/urls/zotero_translators/CABI - CAB Abstracts.js +0 -317
  580. scitex/scholar/.legacy/metadata/urls/zotero_translators/CAOD.js +0 -260
  581. scitex/scholar/.legacy/metadata/urls/zotero_translators/CBC.js +0 -439
  582. scitex/scholar/.legacy/metadata/urls/zotero_translators/CCfr (BnF).js +0 -162
  583. scitex/scholar/.legacy/metadata/urls/zotero_translators/CERN Document Server.js +0 -277
  584. scitex/scholar/.legacy/metadata/urls/zotero_translators/CEUR Workshop Proceedings.js +0 -145
  585. scitex/scholar/.legacy/metadata/urls/zotero_translators/CFF References.js +0 -170
  586. scitex/scholar/.legacy/metadata/urls/zotero_translators/CFF.js +0 -113
  587. scitex/scholar/.legacy/metadata/urls/zotero_translators/CIA World Factbook.js +0 -128
  588. scitex/scholar/.legacy/metadata/urls/zotero_translators/CLACSO.js +0 -226
  589. scitex/scholar/.legacy/metadata/urls/zotero_translators/CLASE.js +0 -135
  590. scitex/scholar/.legacy/metadata/urls/zotero_translators/CNKI.js +0 -731
  591. scitex/scholar/.legacy/metadata/urls/zotero_translators/COBISS.js +0 -1945
  592. scitex/scholar/.legacy/metadata/urls/zotero_translators/COinS.js +0 -336
  593. scitex/scholar/.legacy/metadata/urls/zotero_translators/CQ Press.js +0 -418
  594. scitex/scholar/.legacy/metadata/urls/zotero_translators/CROSBI.js +0 -227
  595. scitex/scholar/.legacy/metadata/urls/zotero_translators/CSIRO Publishing.js +0 -139
  596. scitex/scholar/.legacy/metadata/urls/zotero_translators/CSL JSON.js +0 -203
  597. scitex/scholar/.legacy/metadata/urls/zotero_translators/CSV.js +0 -294
  598. scitex/scholar/.legacy/metadata/urls/zotero_translators/Cairn.info.js +0 -368
  599. scitex/scholar/.legacy/metadata/urls/zotero_translators/CalMatters.js +0 -228
  600. scitex/scholar/.legacy/metadata/urls/zotero_translators/Calisphere.js +0 -355
  601. scitex/scholar/.legacy/metadata/urls/zotero_translators/Camara Brasileira do Livro ISBN.js +0 -842
  602. scitex/scholar/.legacy/metadata/urls/zotero_translators/Cambridge Core.js +0 -580
  603. scitex/scholar/.legacy/metadata/urls/zotero_translators/Cambridge Engage Preprints.js +0 -276
  604. scitex/scholar/.legacy/metadata/urls/zotero_translators/CanLII.js +0 -284
  605. scitex/scholar/.legacy/metadata/urls/zotero_translators/Canada.com.js +0 -171
  606. scitex/scholar/.legacy/metadata/urls/zotero_translators/Canadian Letters and Images.js +0 -148
  607. scitex/scholar/.legacy/metadata/urls/zotero_translators/Canadiana.ca.js +0 -196
  608. scitex/scholar/.legacy/metadata/urls/zotero_translators/Cascadilla Proceedings Project.js +0 -390
  609. scitex/scholar/.legacy/metadata/urls/zotero_translators/Cell Press.js +0 -516
  610. scitex/scholar/.legacy/metadata/urls/zotero_translators/Central and Eastern European Online Library Journals.js +0 -313
  611. scitex/scholar/.legacy/metadata/urls/zotero_translators/Champlain Society - Collection.js +0 -220
  612. scitex/scholar/.legacy/metadata/urls/zotero_translators/Chicago Journal of Theoretical Computer Science.js +0 -203
  613. scitex/scholar/.legacy/metadata/urls/zotero_translators/Christian Science Monitor.js +0 -148
  614. scitex/scholar/.legacy/metadata/urls/zotero_translators/Chronicling America.js +0 -131
  615. scitex/scholar/.legacy/metadata/urls/zotero_translators/CiNii Research.js +0 -168
  616. scitex/scholar/.legacy/metadata/urls/zotero_translators/Citavi 5 XML.js +0 -516
  617. scitex/scholar/.legacy/metadata/urls/zotero_translators/CiteSeer.js +0 -196
  618. scitex/scholar/.legacy/metadata/urls/zotero_translators/Citizen Lab.js +0 -347
  619. scitex/scholar/.legacy/metadata/urls/zotero_translators/Civilization.ca.js +0 -146
  620. scitex/scholar/.legacy/metadata/urls/zotero_translators/Climate Change and Human Health Literature Portal.js +0 -283
  621. scitex/scholar/.legacy/metadata/urls/zotero_translators/Clinical Key.js +0 -367
  622. scitex/scholar/.legacy/metadata/urls/zotero_translators/Code4Lib Journal.js +0 -143
  623. scitex/scholar/.legacy/metadata/urls/zotero_translators/Colorado State Legislature.js +0 -215
  624. scitex/scholar/.legacy/metadata/urls/zotero_translators/Columbia University Press.js +0 -238
  625. scitex/scholar/.legacy/metadata/urls/zotero_translators/Common-Place.js +0 -218
  626. scitex/scholar/.legacy/metadata/urls/zotero_translators/Computer History Museum Archive.js +0 -1319
  627. scitex/scholar/.legacy/metadata/urls/zotero_translators/Copernicus.js +0 -461
  628. scitex/scholar/.legacy/metadata/urls/zotero_translators/Cornell LII.js +0 -252
  629. scitex/scholar/.legacy/metadata/urls/zotero_translators/Cornell University Press.js +0 -235
  630. scitex/scholar/.legacy/metadata/urls/zotero_translators/CourtListener.js +0 -265
  631. scitex/scholar/.legacy/metadata/urls/zotero_translators/Crossref REST.js +0 -1757
  632. scitex/scholar/.legacy/metadata/urls/zotero_translators/Crossref Unixref XML.js +0 -965
  633. scitex/scholar/.legacy/metadata/urls/zotero_translators/Current Affairs.js +0 -160
  634. scitex/scholar/.legacy/metadata/urls/zotero_translators/DABI.js +0 -476
  635. scitex/scholar/.legacy/metadata/urls/zotero_translators/DAI-Zenon.js +0 -392
  636. scitex/scholar/.legacy/metadata/urls/zotero_translators/DART-Europe.js +0 -176
  637. scitex/scholar/.legacy/metadata/urls/zotero_translators/DBLP Computer Science Bibliography.js +0 -462
  638. scitex/scholar/.legacy/metadata/urls/zotero_translators/DBpia.js +0 -233
  639. scitex/scholar/.legacy/metadata/urls/zotero_translators/DEPATISnet.js +0 -373
  640. scitex/scholar/.legacy/metadata/urls/zotero_translators/DOAJ.js +0 -242
  641. scitex/scholar/.legacy/metadata/urls/zotero_translators/DOI Content Negotiation.js +0 -352
  642. scitex/scholar/.legacy/metadata/urls/zotero_translators/DOI.js +0 -322
  643. scitex/scholar/.legacy/metadata/urls/zotero_translators/DPLA.js +0 -425
  644. scitex/scholar/.legacy/metadata/urls/zotero_translators/DSpace Intermediate Metadata.js +0 -208
  645. scitex/scholar/.legacy/metadata/urls/zotero_translators/Dagens Nyheter.js +0 -369
  646. scitex/scholar/.legacy/metadata/urls/zotero_translators/Dagstuhl Research Online Publication Server.js +0 -278
  647. scitex/scholar/.legacy/metadata/urls/zotero_translators/Dar Almandumah.js +0 -253
  648. scitex/scholar/.legacy/metadata/urls/zotero_translators/Data.gov.js +0 -225
  649. scitex/scholar/.legacy/metadata/urls/zotero_translators/Databrary.js +0 -184
  650. scitex/scholar/.legacy/metadata/urls/zotero_translators/Datacite JSON.js +0 -1182
  651. scitex/scholar/.legacy/metadata/urls/zotero_translators/Dataverse.js +0 -418
  652. scitex/scholar/.legacy/metadata/urls/zotero_translators/Daum News.js +0 -139
  653. scitex/scholar/.legacy/metadata/urls/zotero_translators/De Gruyter Brill.js +0 -674
  654. scitex/scholar/.legacy/metadata/urls/zotero_translators/Defense Technical Information Center.js +0 -146
  655. scitex/scholar/.legacy/metadata/urls/zotero_translators/Delpher.js +0 -413
  656. scitex/scholar/.legacy/metadata/urls/zotero_translators/Demographic Research.js +0 -164
  657. scitex/scholar/.legacy/metadata/urls/zotero_translators/Denik CZ.js +0 -273
  658. scitex/scholar/.legacy/metadata/urls/zotero_translators/Der Freitag.js +0 -236
  659. scitex/scholar/.legacy/metadata/urls/zotero_translators/Der Spiegel.js +0 -479
  660. scitex/scholar/.legacy/metadata/urls/zotero_translators/Desiring God.js +0 -216
  661. scitex/scholar/.legacy/metadata/urls/zotero_translators/Deutsche Fotothek.js +0 -364
  662. scitex/scholar/.legacy/metadata/urls/zotero_translators/Deutsche Nationalbibliothek.js +0 -594
  663. scitex/scholar/.legacy/metadata/urls/zotero_translators/Dialnet.js +0 -258
  664. scitex/scholar/.legacy/metadata/urls/zotero_translators/Die Zeit.js +0 -378
  665. scitex/scholar/.legacy/metadata/urls/zotero_translators/DigiZeitschriften.js +0 -269
  666. scitex/scholar/.legacy/metadata/urls/zotero_translators/Digital Humanities Quarterly.js +0 -207
  667. scitex/scholar/.legacy/metadata/urls/zotero_translators/Digital Spy.js +0 -215
  668. scitex/scholar/.legacy/metadata/urls/zotero_translators/Dimensions.js +0 -233
  669. scitex/scholar/.legacy/metadata/urls/zotero_translators/Douban.js +0 -316
  670. scitex/scholar/.legacy/metadata/urls/zotero_translators/Dreier Neuerscheinungsdienst.js +0 -209
  671. scitex/scholar/.legacy/metadata/urls/zotero_translators/DrugBank.ca.js +0 -209
  672. scitex/scholar/.legacy/metadata/urls/zotero_translators/Dryad Digital Repository.js +0 -323
  673. scitex/scholar/.legacy/metadata/urls/zotero_translators/Duke University Press Books.js +0 -250
  674. scitex/scholar/.legacy/metadata/urls/zotero_translators/E-periodica Switzerland.js +0 -347
  675. scitex/scholar/.legacy/metadata/urls/zotero_translators/EBSCO Discovery Layer.js +0 -147
  676. scitex/scholar/.legacy/metadata/urls/zotero_translators/EBSCOhost.js +0 -592
  677. scitex/scholar/.legacy/metadata/urls/zotero_translators/EIDR.js +0 -184
  678. scitex/scholar/.legacy/metadata/urls/zotero_translators/EPA National Library Catalog.js +0 -245
  679. scitex/scholar/.legacy/metadata/urls/zotero_translators/ERIC.js +0 -986
  680. scitex/scholar/.legacy/metadata/urls/zotero_translators/ESpacenet.js +0 -465
  681. scitex/scholar/.legacy/metadata/urls/zotero_translators/EUR-Lex.js +0 -423
  682. scitex/scholar/.legacy/metadata/urls/zotero_translators/Eastview.js +0 -336
  683. scitex/scholar/.legacy/metadata/urls/zotero_translators/Edinburgh University Press Journals.js +0 -178
  684. scitex/scholar/.legacy/metadata/urls/zotero_translators/Education Week.js +0 -197
  685. scitex/scholar/.legacy/metadata/urls/zotero_translators/El Comercio (Peru).js +0 -347
  686. scitex/scholar/.legacy/metadata/urls/zotero_translators/El Pais.js +0 -262
  687. scitex/scholar/.legacy/metadata/urls/zotero_translators/Electronic Colloquium on Computational Complexity.js +0 -230
  688. scitex/scholar/.legacy/metadata/urls/zotero_translators/Elicit.js +0 -120
  689. scitex/scholar/.legacy/metadata/urls/zotero_translators/Elsevier Health Journals.js +0 -531
  690. scitex/scholar/.legacy/metadata/urls/zotero_translators/Elsevier Pure.js +0 -420
  691. scitex/scholar/.legacy/metadata/urls/zotero_translators/Embedded Metadata.js +0 -1951
  692. scitex/scholar/.legacy/metadata/urls/zotero_translators/Emerald Insight.js +0 -626
  693. scitex/scholar/.legacy/metadata/urls/zotero_translators/Encyclopedia of Chicago.js +0 -162
  694. scitex/scholar/.legacy/metadata/urls/zotero_translators/Encyclopedia of Korean Culture.js +0 -221
  695. scitex/scholar/.legacy/metadata/urls/zotero_translators/Endnote XML.js +0 -1407
  696. scitex/scholar/.legacy/metadata/urls/zotero_translators/Engineering Village.js +0 -139
  697. scitex/scholar/.legacy/metadata/urls/zotero_translators/Envidat.js +0 -331
  698. scitex/scholar/.legacy/metadata/urls/zotero_translators/Epicurious.js +0 -144
  699. scitex/scholar/.legacy/metadata/urls/zotero_translators/Erudit.js +0 -272
  700. scitex/scholar/.legacy/metadata/urls/zotero_translators/Euclid.js +0 -220
  701. scitex/scholar/.legacy/metadata/urls/zotero_translators/EurasiaNet.js +0 -109
  702. scitex/scholar/.legacy/metadata/urls/zotero_translators/EurogamerUSgamer.js +0 -380
  703. scitex/scholar/.legacy/metadata/urls/zotero_translators/Europe PMC.js +0 -448
  704. scitex/scholar/.legacy/metadata/urls/zotero_translators/Evernote.js +0 -104
  705. scitex/scholar/.legacy/metadata/urls/zotero_translators/F1000 Research.js +0 -655
  706. scitex/scholar/.legacy/metadata/urls/zotero_translators/FAO Publications.js +0 -1139
  707. scitex/scholar/.legacy/metadata/urls/zotero_translators/FAZ.NET.js +0 -231
  708. scitex/scholar/.legacy/metadata/urls/zotero_translators/Fachportal Padagogik.js +0 -839
  709. scitex/scholar/.legacy/metadata/urls/zotero_translators/Factiva.js +0 -302
  710. scitex/scholar/.legacy/metadata/urls/zotero_translators/Failed Architecture.js +0 -114
  711. scitex/scholar/.legacy/metadata/urls/zotero_translators/Fairfax Australia.js +0 -200
  712. scitex/scholar/.legacy/metadata/urls/zotero_translators/Fatcat.js +0 -425
  713. scitex/scholar/.legacy/metadata/urls/zotero_translators/Figshare.js +0 -191
  714. scitex/scholar/.legacy/metadata/urls/zotero_translators/Financial Times.js +0 -187
  715. scitex/scholar/.legacy/metadata/urls/zotero_translators/Finna.js +0 -357
  716. scitex/scholar/.legacy/metadata/urls/zotero_translators/Flickr.js +0 -318
  717. scitex/scholar/.legacy/metadata/urls/zotero_translators/Foreign Affairs.js +0 -485
  718. scitex/scholar/.legacy/metadata/urls/zotero_translators/Foreign Policy.js +0 -146
  719. scitex/scholar/.legacy/metadata/urls/zotero_translators/FreeCite.js +0 -95
  720. scitex/scholar/.legacy/metadata/urls/zotero_translators/FreePatentsOnline.js +0 -265
  721. scitex/scholar/.legacy/metadata/urls/zotero_translators/Frieze.js +0 -243
  722. scitex/scholar/.legacy/metadata/urls/zotero_translators/Frontiers.js +0 -667
  723. scitex/scholar/.legacy/metadata/urls/zotero_translators/GMS German Medical Science.js +0 -319
  724. scitex/scholar/.legacy/metadata/urls/zotero_translators/GPO Access e-CFR.js +0 -134
  725. scitex/scholar/.legacy/metadata/urls/zotero_translators/Gale Databases.js +0 -324
  726. scitex/scholar/.legacy/metadata/urls/zotero_translators/GaleGDC.js +0 -189
  727. scitex/scholar/.legacy/metadata/urls/zotero_translators/Galegroup.js +0 -327
  728. scitex/scholar/.legacy/metadata/urls/zotero_translators/Gallica.js +0 -194
  729. scitex/scholar/.legacy/metadata/urls/zotero_translators/Game Studies.js +0 -155
  730. scitex/scholar/.legacy/metadata/urls/zotero_translators/GameSpot.js +0 -199
  731. scitex/scholar/.legacy/metadata/urls/zotero_translators/GameStar GamePro.js +0 -198
  732. scitex/scholar/.legacy/metadata/urls/zotero_translators/Gasyrlar Awazy.js +0 -156
  733. scitex/scholar/.legacy/metadata/urls/zotero_translators/Gemeinsamer Bibliotheksverbund ISBN.js +0 -23
  734. scitex/scholar/.legacy/metadata/urls/zotero_translators/Gene Ontology.js +0 -128
  735. scitex/scholar/.legacy/metadata/urls/zotero_translators/GitHub.js +0 -501
  736. scitex/scholar/.legacy/metadata/urls/zotero_translators/Globes.js +0 -243
  737. scitex/scholar/.legacy/metadata/urls/zotero_translators/Gmail.js +0 -64
  738. scitex/scholar/.legacy/metadata/urls/zotero_translators/Goodreads.js +0 -219
  739. scitex/scholar/.legacy/metadata/urls/zotero_translators/Google Books.js +0 -552
  740. scitex/scholar/.legacy/metadata/urls/zotero_translators/Google Patents.js +0 -959
  741. scitex/scholar/.legacy/metadata/urls/zotero_translators/Google Play.js +0 -186
  742. scitex/scholar/.legacy/metadata/urls/zotero_translators/Google Presentation.js +0 -104
  743. scitex/scholar/.legacy/metadata/urls/zotero_translators/Google Research.js +0 -221
  744. scitex/scholar/.legacy/metadata/urls/zotero_translators/Google Scholar.js +0 -1361
  745. scitex/scholar/.legacy/metadata/urls/zotero_translators/Gulag Many Days, Many Lives.js +0 -179
  746. scitex/scholar/.legacy/metadata/urls/zotero_translators/HAL Archives Ouvertes.js +0 -429
  747. scitex/scholar/.legacy/metadata/urls/zotero_translators/HCSP.js +0 -312
  748. scitex/scholar/.legacy/metadata/urls/zotero_translators/HUDOC.js +0 -650
  749. scitex/scholar/.legacy/metadata/urls/zotero_translators/Haaretz.js +0 -562
  750. scitex/scholar/.legacy/metadata/urls/zotero_translators/Habr.js +0 -232
  751. scitex/scholar/.legacy/metadata/urls/zotero_translators/Handelszeitung.js +0 -273
  752. scitex/scholar/.legacy/metadata/urls/zotero_translators/Hanrei Watch.js +0 -123
  753. scitex/scholar/.legacy/metadata/urls/zotero_translators/Harper's Magazine.js +0 -365
  754. scitex/scholar/.legacy/metadata/urls/zotero_translators/Harvard Business Review.js +0 -326
  755. scitex/scholar/.legacy/metadata/urls/zotero_translators/Harvard Caselaw Access Project.js +0 -244
  756. scitex/scholar/.legacy/metadata/urls/zotero_translators/Harvard University Press Books.js +0 -286
  757. scitex/scholar/.legacy/metadata/urls/zotero_translators/HathiTrust.js +0 -311
  758. scitex/scholar/.legacy/metadata/urls/zotero_translators/HeinOnline.js +0 -266
  759. scitex/scholar/.legacy/metadata/urls/zotero_translators/Heise.js +0 -200
  760. scitex/scholar/.legacy/metadata/urls/zotero_translators/Herder.js +0 -236
  761. scitex/scholar/.legacy/metadata/urls/zotero_translators/HighBeam.js +0 -198
  762. scitex/scholar/.legacy/metadata/urls/zotero_translators/HighWire 2.0.js +0 -1355
  763. scitex/scholar/.legacy/metadata/urls/zotero_translators/HighWire.js +0 -209
  764. scitex/scholar/.legacy/metadata/urls/zotero_translators/Hindawi Publishers.js +0 -177
  765. scitex/scholar/.legacy/metadata/urls/zotero_translators/Hispanic-American Periodical Index.js +0 -236
  766. scitex/scholar/.legacy/metadata/urls/zotero_translators/Homeland Security Digital Library.js +0 -426
  767. scitex/scholar/.legacy/metadata/urls/zotero_translators/Huff Post.js +0 -223
  768. scitex/scholar/.legacy/metadata/urls/zotero_translators/Human Rights Watch.js +0 -450
  769. scitex/scholar/.legacy/metadata/urls/zotero_translators/IBISWorld.js +0 -171
  770. scitex/scholar/.legacy/metadata/urls/zotero_translators/IDEA ALM.js +0 -536
  771. scitex/scholar/.legacy/metadata/urls/zotero_translators/IEEE Computer Society.js +0 -429
  772. scitex/scholar/.legacy/metadata/urls/zotero_translators/IEEE Xplore.js +0 -1000
  773. scitex/scholar/.legacy/metadata/urls/zotero_translators/IETF.js +0 -451
  774. scitex/scholar/.legacy/metadata/urls/zotero_translators/IGN.js +0 -136
  775. scitex/scholar/.legacy/metadata/urls/zotero_translators/IMDb.js +0 -566
  776. scitex/scholar/.legacy/metadata/urls/zotero_translators/INSPIRE.js +0 -247
  777. scitex/scholar/.legacy/metadata/urls/zotero_translators/IPCC.js +0 -757
  778. scitex/scholar/.legacy/metadata/urls/zotero_translators/ISTC.js +0 -181
  779. scitex/scholar/.legacy/metadata/urls/zotero_translators/Idref.js +0 -179
  780. scitex/scholar/.legacy/metadata/urls/zotero_translators/In These Times.js +0 -196
  781. scitex/scholar/.legacy/metadata/urls/zotero_translators/InfoTrac.js +0 -279
  782. scitex/scholar/.legacy/metadata/urls/zotero_translators/Informationssystem Medienpaedagogik.js +0 -305
  783. scitex/scholar/.legacy/metadata/urls/zotero_translators/IngentaConnect.js +0 -312
  784. scitex/scholar/.legacy/metadata/urls/zotero_translators/Inside Higher Ed.js +0 -167
  785. scitex/scholar/.legacy/metadata/urls/zotero_translators/Insignia OPAC.js +0 -114
  786. scitex/scholar/.legacy/metadata/urls/zotero_translators/Institute of Contemporary Art.js +0 -180
  787. scitex/scholar/.legacy/metadata/urls/zotero_translators/Institute of Physics.js +0 -340
  788. scitex/scholar/.legacy/metadata/urls/zotero_translators/Integrum.js +0 -173
  789. scitex/scholar/.legacy/metadata/urls/zotero_translators/Intellixir.js +0 -264
  790. scitex/scholar/.legacy/metadata/urls/zotero_translators/Inter-Research Science Center.js +0 -185
  791. scitex/scholar/.legacy/metadata/urls/zotero_translators/International Nuclear Information System.js +0 -285
  792. scitex/scholar/.legacy/metadata/urls/zotero_translators/Internet Archive Scholar.js +0 -106
  793. scitex/scholar/.legacy/metadata/urls/zotero_translators/Internet Archive Wayback Machine.js +0 -152
  794. scitex/scholar/.legacy/metadata/urls/zotero_translators/Internet Archive.js +0 -552
  795. scitex/scholar/.legacy/metadata/urls/zotero_translators/InvenioRDM.js +0 -1260
  796. scitex/scholar/.legacy/metadata/urls/zotero_translators/Isidore.js +0 -235
  797. scitex/scholar/.legacy/metadata/urls/zotero_translators/J-Stage.js +0 -272
  798. scitex/scholar/.legacy/metadata/urls/zotero_translators/JETS.js +0 -122
  799. scitex/scholar/.legacy/metadata/urls/zotero_translators/JISC Historical Texts.js +0 -273
  800. scitex/scholar/.legacy/metadata/urls/zotero_translators/JRC Publications Repository.js +0 -569
  801. scitex/scholar/.legacy/metadata/urls/zotero_translators/JSTOR.js +0 -821
  802. scitex/scholar/.legacy/metadata/urls/zotero_translators/Jahrbuch.js +0 -213
  803. scitex/scholar/.legacy/metadata/urls/zotero_translators/Japan Times Online.js +0 -138
  804. scitex/scholar/.legacy/metadata/urls/zotero_translators/Journal of Electronic Publishing.js +0 -147
  805. scitex/scholar/.legacy/metadata/urls/zotero_translators/Journal of Extension.js +0 -288
  806. scitex/scholar/.legacy/metadata/urls/zotero_translators/Journal of Machine Learning Research.js +0 -441
  807. scitex/scholar/.legacy/metadata/urls/zotero_translators/Journal of Religion and Society.js +0 -174
  808. scitex/scholar/.legacy/metadata/urls/zotero_translators/JurPC.js +0 -274
  809. scitex/scholar/.legacy/metadata/urls/zotero_translators/Juricaf.js +0 -141
  810. scitex/scholar/.legacy/metadata/urls/zotero_translators/Juris.js +0 -728
  811. scitex/scholar/.legacy/metadata/urls/zotero_translators/K10plus ISBN.js +0 -386
  812. scitex/scholar/.legacy/metadata/urls/zotero_translators/KStudy.js +0 -632
  813. scitex/scholar/.legacy/metadata/urls/zotero_translators/Kanopy.js +0 -358
  814. scitex/scholar/.legacy/metadata/urls/zotero_translators/Khaama Press.js +0 -249
  815. scitex/scholar/.legacy/metadata/urls/zotero_translators/KitapYurdu.com.js +0 -376
  816. scitex/scholar/.legacy/metadata/urls/zotero_translators/Kommersant.js +0 -174
  817. scitex/scholar/.legacy/metadata/urls/zotero_translators/Korean National Library.js +0 -621
  818. scitex/scholar/.legacy/metadata/urls/zotero_translators/L'Annee Philologique.js +0 -267
  819. scitex/scholar/.legacy/metadata/urls/zotero_translators/LA Times.js +0 -239
  820. scitex/scholar/.legacy/metadata/urls/zotero_translators/LIBRIS ISBN.js +0 -103
  821. scitex/scholar/.legacy/metadata/urls/zotero_translators/LIVIVO.js +0 -260
  822. scitex/scholar/.legacy/metadata/urls/zotero_translators/LWN.net.js +0 -315
  823. scitex/scholar/.legacy/metadata/urls/zotero_translators/La Croix.js +0 -237
  824. scitex/scholar/.legacy/metadata/urls/zotero_translators/La Nacion (Argentina).js +0 -231
  825. scitex/scholar/.legacy/metadata/urls/zotero_translators/La Presse.js +0 -218
  826. scitex/scholar/.legacy/metadata/urls/zotero_translators/La Republica (Peru).js +0 -174
  827. scitex/scholar/.legacy/metadata/urls/zotero_translators/Lagen.nu.js +0 -214
  828. scitex/scholar/.legacy/metadata/urls/zotero_translators/Landesbibliographie Baden-Wurttemberg.js +0 -324
  829. scitex/scholar/.legacy/metadata/urls/zotero_translators/Lapham's Quarterly.js +0 -1062
  830. scitex/scholar/.legacy/metadata/urls/zotero_translators/Le Devoir.js +0 -167
  831. scitex/scholar/.legacy/metadata/urls/zotero_translators/Le Figaro.js +0 -225
  832. scitex/scholar/.legacy/metadata/urls/zotero_translators/Le Maitron.js +0 -484
  833. scitex/scholar/.legacy/metadata/urls/zotero_translators/Le Monde.js +0 -258
  834. scitex/scholar/.legacy/metadata/urls/zotero_translators/Le monde diplomatique.js +0 -200
  835. scitex/scholar/.legacy/metadata/urls/zotero_translators/Legifrance.js +0 -641
  836. scitex/scholar/.legacy/metadata/urls/zotero_translators/Legislative Insight.js +0 -406
  837. scitex/scholar/.legacy/metadata/urls/zotero_translators/Lexis+.js +0 -264
  838. scitex/scholar/.legacy/metadata/urls/zotero_translators/LexisNexis.js +0 -505
  839. scitex/scholar/.legacy/metadata/urls/zotero_translators/Libraries Tasmania.js +0 -778
  840. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Aleph).js +0 -385
  841. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Amicus).js +0 -254
  842. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Aquabrowser).js +0 -253
  843. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (BiblioCommons).js +0 -249
  844. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Blacklight).js +0 -341
  845. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Capita Prism).js +0 -162
  846. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (DRA).js +0 -203
  847. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Dynix).js +0 -315
  848. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Encore).js +0 -211
  849. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (InnoPAC).js +0 -305
  850. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Koha).js +0 -225
  851. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Mango).js +0 -285
  852. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (OPALS).js +0 -200
  853. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (PICA).js +0 -2120
  854. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (PICA2).js +0 -331
  855. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Pika).js +0 -488
  856. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Polaris).js +0 -183
  857. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Quolto).js +0 -320
  858. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (RERO ILS).js +0 -754
  859. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (SIRSI eLibrary).js +0 -407
  860. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (SIRSI).js +0 -452
  861. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (SLIMS).js +0 -146
  862. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (TIND ILS).js +0 -773
  863. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (TLCYouSeeMore).js +0 -132
  864. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (TinREAD).js +0 -277
  865. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (VTLS).js +0 -125
  866. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Visual Library 2021).js +0 -765
  867. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Voyager 7).js +0 -199
  868. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Catalog (Voyager).js +0 -212
  869. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Genesis.js +0 -337
  870. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library Hub Discover.js +0 -359
  871. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library of Congress Digital Collections.js +0 -869
  872. scitex/scholar/.legacy/metadata/urls/zotero_translators/Library of Congress ISBN.js +0 -86
  873. scitex/scholar/.legacy/metadata/urls/zotero_translators/LingBuzz.js +0 -359
  874. scitex/scholar/.legacy/metadata/urls/zotero_translators/Lippincott Williams and Wilkins.js +0 -341
  875. scitex/scholar/.legacy/metadata/urls/zotero_translators/Literary Hub.js +0 -950
  876. scitex/scholar/.legacy/metadata/urls/zotero_translators/Litres.js +0 -236
  877. scitex/scholar/.legacy/metadata/urls/zotero_translators/LiveJournal.js +0 -219
  878. scitex/scholar/.legacy/metadata/urls/zotero_translators/London Review of Books.js +0 -291
  879. scitex/scholar/.legacy/metadata/urls/zotero_translators/LookUs.js +0 -260
  880. scitex/scholar/.legacy/metadata/urls/zotero_translators/Lulu.js +0 -264
  881. scitex/scholar/.legacy/metadata/urls/zotero_translators/MAB2.js +0 -373
  882. scitex/scholar/.legacy/metadata/urls/zotero_translators/MARC.js +0 -1080
  883. scitex/scholar/.legacy/metadata/urls/zotero_translators/MARCXML.js +0 -489
  884. scitex/scholar/.legacy/metadata/urls/zotero_translators/MCV.js +0 -258
  885. scitex/scholar/.legacy/metadata/urls/zotero_translators/MDPI Journals.js +0 -356
  886. scitex/scholar/.legacy/metadata/urls/zotero_translators/MEDLINEnbib.js +0 -1561
  887. scitex/scholar/.legacy/metadata/urls/zotero_translators/METS.js +0 -384
  888. scitex/scholar/.legacy/metadata/urls/zotero_translators/MIDAS Journals.js +0 -343
  889. scitex/scholar/.legacy/metadata/urls/zotero_translators/MIT Press Books.js +0 -637
  890. scitex/scholar/.legacy/metadata/urls/zotero_translators/MODS.js +0 -2545
  891. scitex/scholar/.legacy/metadata/urls/zotero_translators/MPG PuRe.js +0 -541
  892. scitex/scholar/.legacy/metadata/urls/zotero_translators/Mailman.js +0 -136
  893. scitex/scholar/.legacy/metadata/urls/zotero_translators/Mainichi Daily News.js +0 -189
  894. scitex/scholar/.legacy/metadata/urls/zotero_translators/Mastodon.js +0 -198
  895. scitex/scholar/.legacy/metadata/urls/zotero_translators/Matbugat.ru.js +0 -110
  896. scitex/scholar/.legacy/metadata/urls/zotero_translators/Max Planck Institute for the History of Science Virtual Laboratory Library.js +0 -136
  897. scitex/scholar/.legacy/metadata/urls/zotero_translators/Medium.js +0 -208
  898. scitex/scholar/.legacy/metadata/urls/zotero_translators/MetaLib.js +0 -126
  899. scitex/scholar/.legacy/metadata/urls/zotero_translators/Microbiology Society Journals.js +0 -343
  900. scitex/scholar/.legacy/metadata/urls/zotero_translators/Microsoft Academic.js +0 -424
  901. scitex/scholar/.legacy/metadata/urls/zotero_translators/Mikromarc.js +0 -207
  902. scitex/scholar/.legacy/metadata/urls/zotero_translators/Milli Kutuphane.js +0 -244
  903. scitex/scholar/.legacy/metadata/urls/zotero_translators/Musee du Louvre.js +0 -265
  904. scitex/scholar/.legacy/metadata/urls/zotero_translators/NASA ADS.js +0 -889
  905. scitex/scholar/.legacy/metadata/urls/zotero_translators/NASA NTRS.js +0 -610
  906. scitex/scholar/.legacy/metadata/urls/zotero_translators/NCBI Nucleotide.js +0 -227
  907. scitex/scholar/.legacy/metadata/urls/zotero_translators/NPR.js +0 -341
  908. scitex/scholar/.legacy/metadata/urls/zotero_translators/NRC Research Press.js +0 -181
  909. scitex/scholar/.legacy/metadata/urls/zotero_translators/NRC.nl.js +0 -226
  910. scitex/scholar/.legacy/metadata/urls/zotero_translators/NTSB Accident Reports.js +0 -226
  911. scitex/scholar/.legacy/metadata/urls/zotero_translators/NYPL Menus.js +0 -275
  912. scitex/scholar/.legacy/metadata/urls/zotero_translators/NYPL Research Catalog.js +0 -458
  913. scitex/scholar/.legacy/metadata/urls/zotero_translators/NYTimes.com.js +0 -858
  914. scitex/scholar/.legacy/metadata/urls/zotero_translators/NZZ.ch.js +0 -272
  915. scitex/scholar/.legacy/metadata/urls/zotero_translators/Nagoya University OPAC.js +0 -336
  916. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Academies Press.js +0 -243
  917. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Agriculture Library.js +0 -524
  918. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Archives of Australia.js +0 -522
  919. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Archives of South Africa.js +0 -122
  920. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Bureau of Economic Research.js +0 -363
  921. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Diet Library Catalogue.js +0 -333
  922. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Gallery of Art - USA.js +0 -149
  923. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Gallery of Australia.js +0 -252
  924. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Library of Australia (new catalog).js +0 -223
  925. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Library of Belarus.js +0 -171
  926. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Library of Norway.js +0 -310
  927. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Library of Poland ISBN.js +0 -140
  928. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Post.js +0 -186
  929. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Technical Reports Library.js +0 -276
  930. scitex/scholar/.legacy/metadata/urls/zotero_translators/National Transportation Library ROSA P.js +0 -562
  931. scitex/scholar/.legacy/metadata/urls/zotero_translators/Nature Publishing Group.js +0 -3394
  932. scitex/scholar/.legacy/metadata/urls/zotero_translators/Neural Information Processing Systems.js +0 -385
  933. scitex/scholar/.legacy/metadata/urls/zotero_translators/New Left Review.js +0 -245
  934. scitex/scholar/.legacy/metadata/urls/zotero_translators/New Zealand Herald.js +0 -282
  935. scitex/scholar/.legacy/metadata/urls/zotero_translators/Newlines Magazine.js +0 -190
  936. scitex/scholar/.legacy/metadata/urls/zotero_translators/News Corp Australia.js +0 -251
  937. scitex/scholar/.legacy/metadata/urls/zotero_translators/NewsBank.js +0 -202
  938. scitex/scholar/.legacy/metadata/urls/zotero_translators/NewsnetTamedia.js +0 -509
  939. scitex/scholar/.legacy/metadata/urls/zotero_translators/Noor Digital Library.js +0 -267
  940. scitex/scholar/.legacy/metadata/urls/zotero_translators/Note HTML.js +0 -206
  941. scitex/scholar/.legacy/metadata/urls/zotero_translators/Note Markdown.js +0 -1638
  942. scitex/scholar/.legacy/metadata/urls/zotero_translators/Notre Dame Philosophical Reviews.js +0 -201
  943. scitex/scholar/.legacy/metadata/urls/zotero_translators/OAPEN.js +0 -331
  944. scitex/scholar/.legacy/metadata/urls/zotero_translators/OCLC WorldCat FirstSearch.js +0 -213
  945. scitex/scholar/.legacy/metadata/urls/zotero_translators/OECD.js +0 -216
  946. scitex/scholar/.legacy/metadata/urls/zotero_translators/ORCID.js +0 -104
  947. scitex/scholar/.legacy/metadata/urls/zotero_translators/OSF Preprints.js +0 -417
  948. scitex/scholar/.legacy/metadata/urls/zotero_translators/OSTI Energy Citations.js +0 -202
  949. scitex/scholar/.legacy/metadata/urls/zotero_translators/OVID Tagged.js +0 -1226
  950. scitex/scholar/.legacy/metadata/urls/zotero_translators/OZON.ru.js +0 -465
  951. scitex/scholar/.legacy/metadata/urls/zotero_translators/OhioLINK.js +0 -43
  952. scitex/scholar/.legacy/metadata/urls/zotero_translators/Old Bailey Online.js +0 -315
  953. scitex/scholar/.legacy/metadata/urls/zotero_translators/Open Conf.js +0 -172
  954. scitex/scholar/.legacy/metadata/urls/zotero_translators/Open Knowledge Repository.js +0 -811
  955. scitex/scholar/.legacy/metadata/urls/zotero_translators/Open WorldCat.js +0 -1401
  956. scitex/scholar/.legacy/metadata/urls/zotero_translators/OpenAlex JSON.js +0 -740
  957. scitex/scholar/.legacy/metadata/urls/zotero_translators/OpenAlex.js +0 -444
  958. scitex/scholar/.legacy/metadata/urls/zotero_translators/OpenEdition Books.js +0 -155
  959. scitex/scholar/.legacy/metadata/urls/zotero_translators/OpenEdition Journals.js +0 -432
  960. scitex/scholar/.legacy/metadata/urls/zotero_translators/Optical Society of America.js +0 -562
  961. scitex/scholar/.legacy/metadata/urls/zotero_translators/Optimization Online.js +0 -418
  962. scitex/scholar/.legacy/metadata/urls/zotero_translators/Ovid.js +0 -302
  963. scitex/scholar/.legacy/metadata/urls/zotero_translators/Oxford Dictionaries Premium.js +0 -194
  964. scitex/scholar/.legacy/metadata/urls/zotero_translators/Oxford English Dictionary.js +0 -122
  965. scitex/scholar/.legacy/metadata/urls/zotero_translators/Oxford Music and Art Online.js +0 -120
  966. scitex/scholar/.legacy/metadata/urls/zotero_translators/Oxford Reference.js +0 -202
  967. scitex/scholar/.legacy/metadata/urls/zotero_translators/Oxford University Press.js +0 -277
  968. scitex/scholar/.legacy/metadata/urls/zotero_translators/PC Gamer.js +0 -302
  969. scitex/scholar/.legacy/metadata/urls/zotero_translators/PC Games.js +0 -128
  970. scitex/scholar/.legacy/metadata/urls/zotero_translators/PEI Archival Information Network.js +0 -242
  971. scitex/scholar/.legacy/metadata/urls/zotero_translators/PEP Web.js +0 -165
  972. scitex/scholar/.legacy/metadata/urls/zotero_translators/PKP Catalog Systems.js +0 -1455
  973. scitex/scholar/.legacy/metadata/urls/zotero_translators/PLoS Journals.js +0 -284
  974. scitex/scholar/.legacy/metadata/urls/zotero_translators/PRC History Review.js +0 -298
  975. scitex/scholar/.legacy/metadata/urls/zotero_translators/Pajhwok Afghan News.js +0 -198
  976. scitex/scholar/.legacy/metadata/urls/zotero_translators/Papers Past.js +0 -297
  977. scitex/scholar/.legacy/metadata/urls/zotero_translators/Paris Review.js +0 -227
  978. scitex/scholar/.legacy/metadata/urls/zotero_translators/Pastebin.js +0 -199
  979. scitex/scholar/.legacy/metadata/urls/zotero_translators/Patents - USPTO.js +0 -210
  980. scitex/scholar/.legacy/metadata/urls/zotero_translators/Peeters.js +0 -587
  981. scitex/scholar/.legacy/metadata/urls/zotero_translators/Perceiving Systems.js +0 -350
  982. scitex/scholar/.legacy/metadata/urls/zotero_translators/Perlego.js +0 -416
  983. scitex/scholar/.legacy/metadata/urls/zotero_translators/PhilPapers.js +0 -249
  984. scitex/scholar/.legacy/metadata/urls/zotero_translators/Philosopher's Imprint.js +0 -169
  985. scitex/scholar/.legacy/metadata/urls/zotero_translators/Pleade.js +0 -329
  986. scitex/scholar/.legacy/metadata/urls/zotero_translators/Polygon.js +0 -270
  987. scitex/scholar/.legacy/metadata/urls/zotero_translators/Potsdamer Neueste Nachrichten.js +0 -188
  988. scitex/scholar/.legacy/metadata/urls/zotero_translators/Preprints.org.js +0 -305
  989. scitex/scholar/.legacy/metadata/urls/zotero_translators/Primo 2018.js +0 -126
  990. scitex/scholar/.legacy/metadata/urls/zotero_translators/Primo Normalized XML.js +0 -987
  991. scitex/scholar/.legacy/metadata/urls/zotero_translators/Primo.js +0 -322
  992. scitex/scholar/.legacy/metadata/urls/zotero_translators/ProMED.js +0 -66
  993. scitex/scholar/.legacy/metadata/urls/zotero_translators/ProQuest Ebook Central.js +0 -226
  994. scitex/scholar/.legacy/metadata/urls/zotero_translators/ProQuest PolicyFile.js +0 -115
  995. scitex/scholar/.legacy/metadata/urls/zotero_translators/ProQuest.js +0 -2210
  996. scitex/scholar/.legacy/metadata/urls/zotero_translators/Probing the Past.js +0 -151
  997. scitex/scholar/.legacy/metadata/urls/zotero_translators/Project Gutenberg.js +0 -191
  998. scitex/scholar/.legacy/metadata/urls/zotero_translators/Project MUSE.js +0 -451
  999. scitex/scholar/.legacy/metadata/urls/zotero_translators/Protein Data Bank.js +0 -445
  1000. scitex/scholar/.legacy/metadata/urls/zotero_translators/PubFactory Journals.js +0 -712
  1001. scitex/scholar/.legacy/metadata/urls/zotero_translators/PubMed Central.js +0 -577
  1002. scitex/scholar/.legacy/metadata/urls/zotero_translators/PubMed XML.js +0 -1139
  1003. scitex/scholar/.legacy/metadata/urls/zotero_translators/PubMed.js +0 -1317
  1004. scitex/scholar/.legacy/metadata/urls/zotero_translators/PubPub.js +0 -530
  1005. scitex/scholar/.legacy/metadata/urls/zotero_translators/Public Record Office Victoria.js +0 -252
  1006. scitex/scholar/.legacy/metadata/urls/zotero_translators/Publications Office of the European Union.js +0 -540
  1007. scitex/scholar/.legacy/metadata/urls/zotero_translators/Publications du Quebec.js +0 -225
  1008. scitex/scholar/.legacy/metadata/urls/zotero_translators/PyPI.js +0 -288
  1009. scitex/scholar/.legacy/metadata/urls/zotero_translators/Qatar Digital Library.js +0 -802
  1010. scitex/scholar/.legacy/metadata/urls/zotero_translators/Queensland State Archives.js +0 -303
  1011. scitex/scholar/.legacy/metadata/urls/zotero_translators/R-Packages.js +0 -410
  1012. scitex/scholar/.legacy/metadata/urls/zotero_translators/RAND.js +0 -283
  1013. scitex/scholar/.legacy/metadata/urls/zotero_translators/RDF.js +0 -1777
  1014. scitex/scholar/.legacy/metadata/urls/zotero_translators/REDALYC.js +0 -196
  1015. scitex/scholar/.legacy/metadata/urls/zotero_translators/RIS.js +0 -7265
  1016. scitex/scholar/.legacy/metadata/urls/zotero_translators/RSC Publishing.js +0 -250
  1017. scitex/scholar/.legacy/metadata/urls/zotero_translators/Radio Free Europe Radio Liberty.js +0 -706
  1018. scitex/scholar/.legacy/metadata/urls/zotero_translators/RePEc - Econpapers.js +0 -725
  1019. scitex/scholar/.legacy/metadata/urls/zotero_translators/RePEc - IDEAS.js +0 -337
  1020. scitex/scholar/.legacy/metadata/urls/zotero_translators/Rechtspraak.nl.js +0 -295
  1021. scitex/scholar/.legacy/metadata/urls/zotero_translators/RefWorks Tagged.js +0 -1185
  1022. scitex/scholar/.legacy/metadata/urls/zotero_translators/ReferBibIX.js +0 -463
  1023. scitex/scholar/.legacy/metadata/urls/zotero_translators/Regeringskansliet.js +0 -89
  1024. scitex/scholar/.legacy/metadata/urls/zotero_translators/Research Square.js +0 -335
  1025. scitex/scholar/.legacy/metadata/urls/zotero_translators/ResearchGate.js +0 -394
  1026. scitex/scholar/.legacy/metadata/urls/zotero_translators/Retsinformation.js +0 -348
  1027. scitex/scholar/.legacy/metadata/urls/zotero_translators/Reuters.js +0 -255
  1028. scitex/scholar/.legacy/metadata/urls/zotero_translators/Rock, Paper, Shotgun.js +0 -304
  1029. scitex/scholar/.legacy/metadata/urls/zotero_translators/Roll Call.js +0 -173
  1030. scitex/scholar/.legacy/metadata/urls/zotero_translators/Russian State Library.js +0 -1517
  1031. scitex/scholar/.legacy/metadata/urls/zotero_translators/SAE Papers.js +0 -241
  1032. scitex/scholar/.legacy/metadata/urls/zotero_translators/SAGE Journals.js +0 -427
  1033. scitex/scholar/.legacy/metadata/urls/zotero_translators/SAGE Knowledge.js +0 -505
  1034. scitex/scholar/.legacy/metadata/urls/zotero_translators/SAILDART.js +0 -364
  1035. scitex/scholar/.legacy/metadata/urls/zotero_translators/SALT Research Archives.js +0 -196
  1036. scitex/scholar/.legacy/metadata/urls/zotero_translators/SFU IPinCH.js +0 -946
  1037. scitex/scholar/.legacy/metadata/urls/zotero_translators/SIPRI.js +0 -256
  1038. scitex/scholar/.legacy/metadata/urls/zotero_translators/SIRS Knowledge Source.js +0 -546
  1039. scitex/scholar/.legacy/metadata/urls/zotero_translators/SLUB Dresden.js +0 -300
  1040. scitex/scholar/.legacy/metadata/urls/zotero_translators/SORA.js +0 -340
  1041. scitex/scholar/.legacy/metadata/urls/zotero_translators/SSOAR.js +0 -399
  1042. scitex/scholar/.legacy/metadata/urls/zotero_translators/SSRN.js +0 -235
  1043. scitex/scholar/.legacy/metadata/urls/zotero_translators/SVT Nyheter.js +0 -381
  1044. scitex/scholar/.legacy/metadata/urls/zotero_translators/Sacramento Bee.js +0 -274
  1045. scitex/scholar/.legacy/metadata/urls/zotero_translators/Safari Books Online.js +0 -391
  1046. scitex/scholar/.legacy/metadata/urls/zotero_translators/Scholars Portal Journals.js +0 -220
  1047. scitex/scholar/.legacy/metadata/urls/zotero_translators/Scholia.js +0 -189
  1048. scitex/scholar/.legacy/metadata/urls/zotero_translators/Schweizer Radio und Fernsehen SRF.js +0 -152
  1049. scitex/scholar/.legacy/metadata/urls/zotero_translators/SciELO.js +0 -440
  1050. scitex/scholar/.legacy/metadata/urls/zotero_translators/ScienceDirect.js +0 -1304
  1051. scitex/scholar/.legacy/metadata/urls/zotero_translators/Scopus.js +0 -418
  1052. scitex/scholar/.legacy/metadata/urls/zotero_translators/Semantic Scholar.js +0 -513
  1053. scitex/scholar/.legacy/metadata/urls/zotero_translators/Silverchair.js +0 -886
  1054. scitex/scholar/.legacy/metadata/urls/zotero_translators/Slate.js +0 -228
  1055. scitex/scholar/.legacy/metadata/urls/zotero_translators/SlideShare.js +0 -112
  1056. scitex/scholar/.legacy/metadata/urls/zotero_translators/Springer Link.js +0 -696
  1057. scitex/scholar/.legacy/metadata/urls/zotero_translators/Stack Exchange.js +0 -134
  1058. scitex/scholar/.legacy/metadata/urls/zotero_translators/Standard Ebooks.js +0 -198
  1059. scitex/scholar/.legacy/metadata/urls/zotero_translators/Stanford Encyclopedia of Philosophy.js +0 -285
  1060. scitex/scholar/.legacy/metadata/urls/zotero_translators/Stanford University Press.js +0 -343
  1061. scitex/scholar/.legacy/metadata/urls/zotero_translators/State Records Office of Western Australia.js +0 -439
  1062. scitex/scholar/.legacy/metadata/urls/zotero_translators/Stitcher.js +0 -141
  1063. scitex/scholar/.legacy/metadata/urls/zotero_translators/Store norske leksikon.js +0 -291
  1064. scitex/scholar/.legacy/metadata/urls/zotero_translators/Stuff.co.nz.js +0 -446
  1065. scitex/scholar/.legacy/metadata/urls/zotero_translators/Substack.js +0 -237
  1066. scitex/scholar/.legacy/metadata/urls/zotero_translators/Sud Ouest.js +0 -181
  1067. scitex/scholar/.legacy/metadata/urls/zotero_translators/Sueddeutsche.de.js +0 -205
  1068. scitex/scholar/.legacy/metadata/urls/zotero_translators/Summon 2.js +0 -117
  1069. scitex/scholar/.legacy/metadata/urls/zotero_translators/Superlib.js +0 -647
  1070. scitex/scholar/.legacy/metadata/urls/zotero_translators/Svenska Dagbladet.js +0 -274
  1071. scitex/scholar/.legacy/metadata/urls/zotero_translators/Sveriges radio.js +0 -416
  1072. scitex/scholar/.legacy/metadata/urls/zotero_translators/TEI.js +0 -648
  1073. scitex/scholar/.legacy/metadata/urls/zotero_translators/TV by the Numbers.js +0 -194
  1074. scitex/scholar/.legacy/metadata/urls/zotero_translators/TVNZ.js +0 -165
  1075. scitex/scholar/.legacy/metadata/urls/zotero_translators/Tagesspiegel.js +0 -249
  1076. scitex/scholar/.legacy/metadata/urls/zotero_translators/Talis Aspire.js +0 -316
  1077. scitex/scholar/.legacy/metadata/urls/zotero_translators/TalisPrism.js +0 -445
  1078. scitex/scholar/.legacy/metadata/urls/zotero_translators/Tatknigafund.js +0 -174
  1079. scitex/scholar/.legacy/metadata/urls/zotero_translators/Tatpressa.ru.js +0 -121
  1080. scitex/scholar/.legacy/metadata/urls/zotero_translators/Taylor & Francis eBooks.js +0 -334
  1081. scitex/scholar/.legacy/metadata/urls/zotero_translators/Taylor and Francis+NEJM.js +0 -813
  1082. scitex/scholar/.legacy/metadata/urls/zotero_translators/Tesis Doctorals en Xarxa.js +0 -233
  1083. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Art Newspaper.js +0 -268
  1084. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Atlantic.js +0 -535
  1085. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Boston Globe.js +0 -285
  1086. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Chronicle of Higher Education.js +0 -308
  1087. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Daily Beast.js +0 -183
  1088. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Economic Times - The Times of India.js +0 -305
  1089. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Economist.js +0 -207
  1090. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Free Dictionary.js +0 -58
  1091. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Globe and Mail.js +0 -241
  1092. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Guardian.js +0 -717
  1093. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Hamilton Spectator.js +0 -129
  1094. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Hindu.js +0 -318
  1095. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Independent.js +0 -184
  1096. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Intercept.js +0 -258
  1097. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Met.js +0 -300
  1098. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Microfinance Gateway.js +0 -174
  1099. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Nation.js +0 -188
  1100. scitex/scholar/.legacy/metadata/urls/zotero_translators/The National Archives (UK).js +0 -242
  1101. scitex/scholar/.legacy/metadata/urls/zotero_translators/The New Republic.js +0 -160
  1102. scitex/scholar/.legacy/metadata/urls/zotero_translators/The New York Review of Books.js +0 -467
  1103. scitex/scholar/.legacy/metadata/urls/zotero_translators/The New Yorker.js +0 -360
  1104. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Open Library.js +0 -220
  1105. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Straits Times.js +0 -528
  1106. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Telegraph.js +0 -337
  1107. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Times and Sunday Times.js +0 -180
  1108. scitex/scholar/.legacy/metadata/urls/zotero_translators/The Times of Israel.js +0 -151
  1109. scitex/scholar/.legacy/metadata/urls/zotero_translators/TheMarker.js +0 -108
  1110. scitex/scholar/.legacy/metadata/urls/zotero_translators/Theory of Computing.js +0 -488
  1111. scitex/scholar/.legacy/metadata/urls/zotero_translators/ThesesFR.js +0 -298
  1112. scitex/scholar/.legacy/metadata/urls/zotero_translators/Thieme.js +0 -326
  1113. scitex/scholar/.legacy/metadata/urls/zotero_translators/Time.com.js +0 -557
  1114. scitex/scholar/.legacy/metadata/urls/zotero_translators/TimesMachine.js +0 -222
  1115. scitex/scholar/.legacy/metadata/urls/zotero_translators/Tony Blair Institute for Global Change.js +0 -195
  1116. scitex/scholar/.legacy/metadata/urls/zotero_translators/Toronto Star.js +0 -331
  1117. scitex/scholar/.legacy/metadata/urls/zotero_translators/Transportation Research Board.js +0 -253
  1118. scitex/scholar/.legacy/metadata/urls/zotero_translators/Treesearch.js +0 -535
  1119. scitex/scholar/.legacy/metadata/urls/zotero_translators/Trove.js +0 -616
  1120. scitex/scholar/.legacy/metadata/urls/zotero_translators/Tumblr.js +0 -179
  1121. scitex/scholar/.legacy/metadata/urls/zotero_translators/Twitter.js +0 -413
  1122. scitex/scholar/.legacy/metadata/urls/zotero_translators/UChicago VuFind.js +0 -907
  1123. scitex/scholar/.legacy/metadata/urls/zotero_translators/UNZ Print Archive.js +0 -276
  1124. scitex/scholar/.legacy/metadata/urls/zotero_translators/UPCommons.js +0 -227
  1125. scitex/scholar/.legacy/metadata/urls/zotero_translators/US National Archives Research Catalog.js +0 -275
  1126. scitex/scholar/.legacy/metadata/urls/zotero_translators/USENIX.js +0 -151
  1127. scitex/scholar/.legacy/metadata/urls/zotero_translators/Ubiquity Journals.js +0 -228
  1128. scitex/scholar/.legacy/metadata/urls/zotero_translators/University Press Scholarship.js +0 -301
  1129. scitex/scholar/.legacy/metadata/urls/zotero_translators/University of California Press Books.js +0 -403
  1130. scitex/scholar/.legacy/metadata/urls/zotero_translators/University of Chicago Press Books.js +0 -378
  1131. scitex/scholar/.legacy/metadata/urls/zotero_translators/University of Wisconsin-Madison Libraries Catalog.js +0 -298
  1132. scitex/scholar/.legacy/metadata/urls/zotero_translators/Unqualified Dublin Core RDF.js +0 -153
  1133. scitex/scholar/.legacy/metadata/urls/zotero_translators/UpToDate References.js +0 -203
  1134. scitex/scholar/.legacy/metadata/urls/zotero_translators/Vanity Fair.js +0 -242
  1135. scitex/scholar/.legacy/metadata/urls/zotero_translators/Verniana-Jules Verne Studies.js +0 -190
  1136. scitex/scholar/.legacy/metadata/urls/zotero_translators/Verso Books.js +0 -311
  1137. scitex/scholar/.legacy/metadata/urls/zotero_translators/Vice.js +0 -445
  1138. scitex/scholar/.legacy/metadata/urls/zotero_translators/Victoria & Albert Museum.js +0 -277
  1139. scitex/scholar/.legacy/metadata/urls/zotero_translators/Vimeo.js +0 -188
  1140. scitex/scholar/.legacy/metadata/urls/zotero_translators/VoxEU.js +0 -151
  1141. scitex/scholar/.legacy/metadata/urls/zotero_translators/WHO.js +0 -458
  1142. scitex/scholar/.legacy/metadata/urls/zotero_translators/WIPO.js +0 -189
  1143. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wall Street Journal.js +0 -525
  1144. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wanfang Data.js +0 -310
  1145. scitex/scholar/.legacy/metadata/urls/zotero_translators/Washington Monthly.js +0 -195
  1146. scitex/scholar/.legacy/metadata/urls/zotero_translators/Washington Post.js +0 -447
  1147. scitex/scholar/.legacy/metadata/urls/zotero_translators/Web of Science Nextgen.js +0 -715
  1148. scitex/scholar/.legacy/metadata/urls/zotero_translators/Web of Science Tagged.js +0 -1242
  1149. scitex/scholar/.legacy/metadata/urls/zotero_translators/Web of Science.js +0 -228
  1150. scitex/scholar/.legacy/metadata/urls/zotero_translators/Welt Online.js +0 -161
  1151. scitex/scholar/.legacy/metadata/urls/zotero_translators/WestLaw UK.js +0 -190
  1152. scitex/scholar/.legacy/metadata/urls/zotero_translators/WikiLeaks PlusD.js +0 -182
  1153. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wikidata QuickStatements.js +0 -306
  1154. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wikidata.js +0 -911
  1155. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wikimedia Commons.js +0 -285
  1156. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wikipedia Citation Templates.js +0 -432
  1157. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wikipedia.js +0 -385
  1158. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wikisource.js +0 -399
  1159. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wikiwand.js +0 -122
  1160. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wiktionary.js +0 -141
  1161. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wildlife Biology in Practice.js +0 -172
  1162. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wiley Online Library.js +0 -1412
  1163. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wilson Center Digital Archive.js +0 -321
  1164. scitex/scholar/.legacy/metadata/urls/zotero_translators/Winnipeg Free Press.js +0 -204
  1165. scitex/scholar/.legacy/metadata/urls/zotero_translators/Wired.js +0 -249
  1166. scitex/scholar/.legacy/metadata/urls/zotero_translators/Womennews.js +0 -230
  1167. scitex/scholar/.legacy/metadata/urls/zotero_translators/World Digital Library.js +0 -403
  1168. scitex/scholar/.legacy/metadata/urls/zotero_translators/World History Connected.js +0 -185
  1169. scitex/scholar/.legacy/metadata/urls/zotero_translators/World Shakespeare Bibliography Online.js +0 -595
  1170. scitex/scholar/.legacy/metadata/urls/zotero_translators/WorldCat Discovery Service.js +0 -630
  1171. scitex/scholar/.legacy/metadata/urls/zotero_translators/XML ContextObject.js +0 -274
  1172. scitex/scholar/.legacy/metadata/urls/zotero_translators/YPSF.js +0 -224
  1173. scitex/scholar/.legacy/metadata/urls/zotero_translators/Yandex Books.js +0 -265
  1174. scitex/scholar/.legacy/metadata/urls/zotero_translators/Ynet.js +0 -171
  1175. scitex/scholar/.legacy/metadata/urls/zotero_translators/YouTube.js +0 -209
  1176. scitex/scholar/.legacy/metadata/urls/zotero_translators/ZIPonline.js +0 -267
  1177. scitex/scholar/.legacy/metadata/urls/zotero_translators/ZOBODAT.js +0 -341
  1178. scitex/scholar/.legacy/metadata/urls/zotero_translators/Zotero RDF.js +0 -583
  1179. scitex/scholar/.legacy/metadata/urls/zotero_translators/ZoteroBib.js +0 -94
  1180. scitex/scholar/.legacy/metadata/urls/zotero_translators/arXiv.org.js +0 -1099
  1181. scitex/scholar/.legacy/metadata/urls/zotero_translators/artnet.js +0 -207
  1182. scitex/scholar/.legacy/metadata/urls/zotero_translators/beck-online.js +0 -1339
  1183. scitex/scholar/.legacy/metadata/urls/zotero_translators/clinicaltrials.gov.js +0 -331
  1184. scitex/scholar/.legacy/metadata/urls/zotero_translators/dLibra.js +0 -367
  1185. scitex/scholar/.legacy/metadata/urls/zotero_translators/dejure.org.js +0 -242
  1186. scitex/scholar/.legacy/metadata/urls/zotero_translators/deleted.txt +0 -132
  1187. scitex/scholar/.legacy/metadata/urls/zotero_translators/dhistory.js +0 -103
  1188. scitex/scholar/.legacy/metadata/urls/zotero_translators/digibib.net.js +0 -245
  1189. scitex/scholar/.legacy/metadata/urls/zotero_translators/eLibrary.ru.js +0 -867
  1190. scitex/scholar/.legacy/metadata/urls/zotero_translators/eLife.js +0 -462
  1191. scitex/scholar/.legacy/metadata/urls/zotero_translators/eMJA.js +0 -246
  1192. scitex/scholar/.legacy/metadata/urls/zotero_translators/eMedicine.js +0 -123
  1193. scitex/scholar/.legacy/metadata/urls/zotero_translators/ePrint IACR.js +0 -608
  1194. scitex/scholar/.legacy/metadata/urls/zotero_translators/ebrary.js +0 -140
  1195. scitex/scholar/.legacy/metadata/urls/zotero_translators/etatar.ru.js +0 -104
  1196. scitex/scholar/.legacy/metadata/urls/zotero_translators/feb-web.ru.js +0 -167
  1197. scitex/scholar/.legacy/metadata/urls/zotero_translators/fishpond.co.nz.js +0 -224
  1198. scitex/scholar/.legacy/metadata/urls/zotero_translators/fr-online.de.js +0 -209
  1199. scitex/scholar/.legacy/metadata/urls/zotero_translators/govinfo.js +0 -189
  1200. scitex/scholar/.legacy/metadata/urls/zotero_translators/index.d.ts +0 -1646
  1201. scitex/scholar/.legacy/metadata/urls/zotero_translators/informIT database.js +0 -248
  1202. scitex/scholar/.legacy/metadata/urls/zotero_translators/io-port.js +0 -68
  1203. scitex/scholar/.legacy/metadata/urls/zotero_translators/jsconfig.json +0 -10
  1204. scitex/scholar/.legacy/metadata/urls/zotero_translators/jurion.js +0 -377
  1205. scitex/scholar/.legacy/metadata/urls/zotero_translators/mEDRA.js +0 -597
  1206. scitex/scholar/.legacy/metadata/urls/zotero_translators/magazines.russ.ru.js +0 -120
  1207. scitex/scholar/.legacy/metadata/urls/zotero_translators/medes.js +0 -284
  1208. scitex/scholar/.legacy/metadata/urls/zotero_translators/newshub.co.nz.js +0 -206
  1209. scitex/scholar/.legacy/metadata/urls/zotero_translators/newspapers.com.js +0 -335
  1210. scitex/scholar/.legacy/metadata/urls/zotero_translators/openJur.js +0 -161
  1211. scitex/scholar/.legacy/metadata/urls/zotero_translators/package-lock.json +0 -2345
  1212. scitex/scholar/.legacy/metadata/urls/zotero_translators/package.json +0 -24
  1213. scitex/scholar/.legacy/metadata/urls/zotero_translators/reddit.js +0 -275
  1214. scitex/scholar/.legacy/metadata/urls/zotero_translators/sbn.it.js +0 -186
  1215. scitex/scholar/.legacy/metadata/urls/zotero_translators/scinapse.js +0 -273
  1216. scitex/scholar/.legacy/metadata/urls/zotero_translators/semantics Visual Library.js +0 -643
  1217. scitex/scholar/.legacy/metadata/urls/zotero_translators/taz.de.js +0 -200
  1218. scitex/scholar/.legacy/metadata/urls/zotero_translators/unAPI.js +0 -481
  1219. scitex/scholar/.legacy/metadata/urls/zotero_translators/wiso.js +0 -314
  1220. scitex/scholar/.legacy/metadata/urls/zotero_translators/zbMATH.js +0 -278
  1221. scitex/scholar/.legacy/metadata/urls/zotero_translators/zotero.org.js +0 -311
  1222. scitex/scholar/.legacy/search/README.md +0 -205
  1223. scitex/scholar/.legacy/search/_Embedder.py +0 -329
  1224. scitex/scholar/.legacy/search/_SemanticSearch.py +0 -278
  1225. scitex/scholar/.legacy/search/_SemanticSearchEngine.py +0 -452
  1226. scitex/scholar/.legacy/search/_UnifiedSearcher.py +0 -1353
  1227. scitex/scholar/.legacy/search/_VectorDatabase.py +0 -443
  1228. scitex/scholar/.legacy/search/__init__.py +0 -25
  1229. scitex/scholar/.legacy/storage/_EnhancedStorageManager.py +0 -617
  1230. scitex/scholar/.legacy/storage/__init__.py +0 -19
  1231. scitex/scholar/CLAUDE.md +0 -257
  1232. scitex/scholar/TODO.md +0 -174
  1233. scitex/scholar/_mcp_handlers.py +0 -685
  1234. scitex/scholar/_mcp_tool_schemas.py +0 -339
  1235. scitex/scholar/docs/backup/papers-orig.bib +0 -698
  1236. scitex/scholar/docs/backup/papers.bib.zip +0 -0
  1237. scitex/scholar/docs/to_claude/bin/elisp/check_parens.sh +0 -56
  1238. scitex/scholar/docs/to_claude/bin/elisp/elisp-ci/README.md +0 -412
  1239. scitex/scholar/docs/to_claude/bin/elisp/elisp-ci/elisp-ci +0 -622
  1240. scitex/scholar/docs/to_claude/bin/elisp/elisp-ci/elisp-ci-simple +0 -105
  1241. scitex/scholar/docs/to_claude/bin/elisp/find_incorrect_require_provide_statements.sh +0 -113
  1242. scitex/scholar/docs/to_claude/bin/elisp/run_tests_elisp.sh +0 -532
  1243. scitex/scholar/docs/to_claude/bin/elisp/run_tests_elisp_v02.sh +0 -555
  1244. scitex/scholar/docs/to_claude/bin/elisp/sync_elisp_tdd.sh +0 -626
  1245. scitex/scholar/docs/to_claude/bin/general/claude_emacs_server.sh +0 -192
  1246. scitex/scholar/docs/to_claude/bin/general/create_github_release.sh +0 -36
  1247. scitex/scholar/docs/to_claude/bin/general/find_errors.sh +0 -75
  1248. scitex/scholar/docs/to_claude/bin/general/rename.sh +0 -145
  1249. scitex/scholar/docs/to_claude/bin/general/render_mermaid.sh +0 -116
  1250. scitex/scholar/docs/to_claude/bin/general/safe_rm.sh +0 -75
  1251. scitex/scholar/docs/to_claude/bin/general/view_repo.sh +0 -4
  1252. scitex/scholar/docs/to_claude/bin/general/wsl2-buzzer.sh +0 -73
  1253. scitex/scholar/docs/to_claude/bin/python/black_all.sh +0 -41
  1254. scitex/scholar/docs/to_claude/bin/python/run_tests_python_pip_package.sh +0 -291
  1255. scitex/scholar/docs/to_claude/bin/safe_rm.sh +0 -3
  1256. scitex/scholar/docs/to_claude/bin/slurm/README.md +0 -54
  1257. scitex/scholar/docs/to_claude/bin/slurm/login.sh +0 -23
  1258. scitex/scholar/docs/to_claude/bin/slurm/request.sh +0 -62
  1259. scitex/scholar/docs/to_claude/bin/slurm/run.sh +0 -73
  1260. scitex/scholar/docs/to_claude/examples/README.md +0 -9
  1261. scitex/scholar/docs/to_claude/examples/example-elisp-project-emacs-hello-world/ELISP-TEST-REPORT-20250513-012234-48-PASSED-49-TOTAL-97-PERCENT.org +0 -105
  1262. scitex/scholar/docs/to_claude/examples/example-elisp-project-emacs-hello-world/LATEST-ELISP-REPORT.org +0 -105
  1263. scitex/scholar/docs/to_claude/examples/example-elisp-project-emacs-hello-world/README.md +0 -11
  1264. scitex/scholar/docs/to_claude/examples/example-elisp-project-emacs-hello-world/run_tests.sh +0 -652
  1265. scitex/scholar/docs/to_claude/examples/example-elisp-project-emacs-hello-world/tests/test-ehw-core/ELISP-TEST-REPORT-20250512-235622-0-SUCCESS-4-TOTAL-0-PERCENT.org +0 -25
  1266. scitex/scholar/docs/to_claude/examples/example-elisp-project-emacs-hello-world/tests/test-ehw-friends/ELISP-TEST-REPORT-20250512-235622-0-SUCCESS-34-TOTAL-0-PERCENT.org +0 -66
  1267. scitex/scholar/docs/to_claude/examples/example-elisp-project-emacs-hello-world/tests/test-ehw-prep/ELISP-TEST-REPORT-20250512-235622-0-SUCCESS-5-TOTAL-0-PERCENT.org +0 -26
  1268. scitex/scholar/docs/to_claude/examples/example-elisp-project-emacs-hello-world/tests/test-ehw-utils/ELISP-TEST-REPORT-20250512-235622-0-SUCCESS-4-TOTAL-0-PERCENT.org +0 -25
  1269. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/.gitignore +0 -626
  1270. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/README.md +0 -155
  1271. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/config/MNIST.yaml +0 -24
  1272. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/config/PATH.yaml +0 -30
  1273. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/data/.gitkeep +0 -0
  1274. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/clf_svm.py +0 -124
  1275. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/download.py +0 -165
  1276. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/main.sh +0 -26
  1277. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/plot_conf_mat.py +0 -86
  1278. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/plot_digits.py +0 -118
  1279. scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/plot_umap_space.py +0 -110
  1280. scitex/scholar/docs/to_claude/guidelines/README.md +0 -9
  1281. scitex/scholar/docs/to_claude/guidelines/USER_PHILOSOPHY/01_DEVELOPMENT_CYCLE.md +0 -47
  1282. scitex/scholar/docs/to_claude/guidelines/USER_PHILOSOPHY/02_NAMING_CONVENSIONS.md +0 -91
  1283. scitex/scholar/docs/to_claude/guidelines/USER_PHILOSOPHY/03_ARCHITECTUAL_AGREEMENT_PROCESS.md +0 -86
  1284. scitex/scholar/docs/to_claude/guidelines/USER_PHILOSOPHY/04_ARCHITECTURE_PREDEFINED.md +0 -77
  1285. scitex/scholar/docs/to_claude/guidelines/USER_PHILOSOPHY/05_PRIORITY_CONFIG.md +0 -22
  1286. scitex/scholar/docs/to_claude/guidelines/USER_PHILOSOPHY/06_MULTIPLE_SPECIAL_AGENTS.md +0 -35
  1287. scitex/scholar/docs/to_claude/guidelines/USER_PHILOSOPHY/07_DEBUGGING_TECHNIQUES.md +0 -153
  1288. scitex/scholar/docs/to_claude/guidelines/command/IMPORTANT-rm.md +0 -69
  1289. scitex/scholar/docs/to_claude/guidelines/command/IMPORTANT-tree.md +0 -162
  1290. scitex/scholar/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-01-basic.md +0 -65
  1291. scitex/scholar/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-02-project-structure.md +0 -97
  1292. scitex/scholar/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-03-file-template.md +0 -70
  1293. scitex/scholar/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-04-coding-style.md +0 -42
  1294. scitex/scholar/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-05-testing-guide.md +0 -190
  1295. scitex/scholar/docs/to_claude/guidelines/elisp/IMPORTANT-ELISP-99-example-project.md +0 -15
  1296. scitex/scholar/docs/to_claude/guidelines/elisp/ci.md +0 -650
  1297. scitex/scholar/docs/to_claude/guidelines/elisp/testing-with-docker.md +0 -243
  1298. scitex/scholar/docs/to_claude/guidelines/programming_common/EXAMPLE-README-MODULE-ROOT.md +0 -32
  1299. scitex/scholar/docs/to_claude/guidelines/programming_common/EXAMPLE-README-REPOSITORY-ROOT.md +0 -60
  1300. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-art-of-readable-code.md +0 -1317
  1301. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-art-of-testing.md +0 -799
  1302. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-cleanliness.md +0 -18
  1303. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-documentation-performance-claims.md +0 -163
  1304. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-general.md +0 -156
  1305. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-refactoring.md +0 -32
  1306. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-regression-prevention.md +0 -14
  1307. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-slurm.md +0 -73
  1308. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-start-from-small.md +0 -30
  1309. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-test-driven-workflow.md +0 -80
  1310. scitex/scholar/docs/to_claude/guidelines/programming_common/IMPORTANT-version-control.md +0 -47
  1311. scitex/scholar/docs/to_claude/guidelines/programming_common/clean-code.md +0 -305
  1312. scitex/scholar/docs/to_claude/guidelines/programming_common/debugging-message.md +0 -52
  1313. scitex/scholar/docs/to_claude/guidelines/programming_common/do-not-repeat-yourself.md +0 -27
  1314. scitex/scholar/docs/to_claude/guidelines/programming_common/emacs-server.md +0 -39
  1315. scitex/scholar/docs/to_claude/guidelines/programming_common/keep-it-simple-stupid.md +0 -19
  1316. scitex/scholar/docs/to_claude/guidelines/programming_common/renaming-and-cleaning-workflow.md +0 -311
  1317. scitex/scholar/docs/to_claude/guidelines/programming_common/screen.md +0 -32
  1318. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-CLAUDE_ID.md +0 -15
  1319. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-beyond-control.md +0 -14
  1320. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-bug-report.md +0 -43
  1321. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-cleanliness.md +0 -162
  1322. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-communication.md +0 -13
  1323. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-do-not-create-any-new-file-nor-directory-in-project-root.md +0 -9
  1324. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-documentation.md +0 -11
  1325. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-feature-request.md +0 -33
  1326. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-general-multi-agent-coordination.md +0 -311
  1327. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-multi-agent-protocol.md +0 -97
  1328. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-project-management-bulletin-board.md +0 -48
  1329. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-project-management-markdown.md +0 -156
  1330. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-project-management-org.org +0 -161
  1331. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-tools.md +0 -10
  1332. scitex/scholar/docs/to_claude/guidelines/project/IMPORTANT-understand-message-in-filename.md +0 -12
  1333. scitex/scholar/docs/to_claude/guidelines/project/general.md +0 -7
  1334. scitex/scholar/docs/to_claude/guidelines/project/report.md +0 -50
  1335. scitex/scholar/docs/to_claude/guidelines/project/timeline-gantt-chart.md +0 -49
  1336. scitex/scholar/docs/to_claude/guidelines/python/CHECKLIST.md +0 -51
  1337. scitex/scholar/docs/to_claude/guidelines/python/HOW-TO-DEBUG-with-MULTIPLE_AGENTS.md +0 -191
  1338. scitex/scholar/docs/to_claude/guidelines/python/Machine-Learning.md +0 -15
  1339. scitex/scholar/docs/to_claude/guidelines/python/NOT-FULL-PYTEST-BUT-PARTIAL-PYTEST.md +0 -21
  1340. scitex/scholar/docs/to_claude/guidelines/python/django.md +0 -217
  1341. scitex/scholar/docs/to_claude/guidelines/python/env.md +0 -10
  1342. scitex/scholar/docs/to_claude/guidelines/python/general.md +0 -55
  1343. scitex/scholar/docs/to_claude/guidelines/python/official/cipdb-README.md +0 -219
  1344. scitex/scholar/docs/to_claude/guidelines/python/official/fastmcp-README.md +0 -442
  1345. scitex/scholar/docs/to_claude/guidelines/python/official/fastmcp-TESTING.md +0 -146
  1346. scitex/scholar/docs/to_claude/guidelines/python/official/icecream-README.md +0 -433
  1347. scitex/scholar/docs/to_claude/guidelines/python/official/priority_config-README.md +0 -126
  1348. scitex/scholar/docs/to_claude/guidelines/python/scitex/01-basic.md +0 -42
  1349. scitex/scholar/docs/to_claude/guidelines/python/scitex/02-file-template.md +0 -132
  1350. scitex/scholar/docs/to_claude/guidelines/python/scitex/03-configuration.md +0 -53
  1351. scitex/scholar/docs/to_claude/guidelines/python/scitex/04-coding-style.md +0 -126
  1352. scitex/scholar/docs/to_claude/guidelines/python/scitex/05-testing-guide.md +0 -56
  1353. scitex/scholar/docs/to_claude/guidelines/python/scitex/06-examples-guide.md +0 -42
  1354. scitex/scholar/docs/to_claude/guidelines/python/scitex/11-gen-module.md +0 -15
  1355. scitex/scholar/docs/to_claude/guidelines/python/scitex/11-session-module.md +0 -24
  1356. scitex/scholar/docs/to_claude/guidelines/python/scitex/12-io-module.md +0 -112
  1357. scitex/scholar/docs/to_claude/guidelines/python/scitex/13-plt-module.md +0 -101
  1358. scitex/scholar/docs/to_claude/guidelines/python/scitex/14-dsp-module.md +0 -78
  1359. scitex/scholar/docs/to_claude/guidelines/python/scitex/15-pd-module.md +0 -24
  1360. scitex/scholar/docs/to_claude/guidelines/python/scitex/16-stats-module.md +0 -79
  1361. scitex/scholar/docs/to_claude/guidelines/python/scitex/17-other-modules.md +0 -23
  1362. scitex/scholar/docs/to_claude/guidelines/python/scitex/17-str-module.md +0 -24
  1363. scitex/scholar/docs/to_claude/guidelines/python/scitex/18-directory-structure-for-scientific-work.md +0 -48
  1364. scitex/scholar/docs/to_claude/guidelines/python/scitex/19-directory-structure-for-pip-package.md +0 -234
  1365. scitex/scholar/docs/to_claude/guidelines/python/scitex/99-example-project.md +0 -19
  1366. scitex/scholar/docs/to_claude/guidelines/python/zen_of_python.md +0 -82
  1367. scitex/scholar/docs/to_claude/guidelines/science/IMPORTANT-general.md +0 -16
  1368. scitex/scholar/docs/to_claude/guidelines/science/IMPORTANT-scientific-attitude.md +0 -25
  1369. scitex/scholar/docs/to_claude/guidelines/science/scientific-writing-abstract.md +0 -93
  1370. scitex/scholar/docs/to_claude/guidelines/science/scientific-writing-discussion.md +0 -116
  1371. scitex/scholar/docs/to_claude/guidelines/science/scientific-writing-general-1.md +0 -157
  1372. scitex/scholar/docs/to_claude/guidelines/science/scientific-writing-general-2.md +0 -83
  1373. scitex/scholar/docs/to_claude/guidelines/science/scientific-writing-introduction.md +0 -123
  1374. scitex/scholar/docs/to_claude/guidelines/science/scientific-writing-methods.md +0 -88
  1375. scitex/scholar/docs/to_claude/guidelines/shell/IMPORTANT-general.md +0 -196
  1376. scitex/scholar/examples/SUGGESTIONS.md +0 -865
  1377. scitex/scholar/examples/dev.py +0 -38
  1378. scitex/scholar/library/neurovista/info/bibtex/seizure_prediction_enriched.bib +0 -1092
  1379. scitex/stats/_mcp_handlers.py +0 -1191
  1380. scitex/stats/_mcp_tool_schemas.py +0 -384
  1381. scitex/template/.legacy/_clone_project.py +0 -267
  1382. scitex/template/_mcp_handlers.py +0 -259
  1383. scitex/template/_mcp_tool_schemas.py +0 -112
  1384. scitex/writer/.legacy/Writer_v01-refactored.py +0 -189
  1385. scitex/writer/.legacy/_compile.py +0 -342
  1386. scitex/writer/_compile_async.py +0 -126
  1387. scitex/writer/_validate_tree_structures.py +0 -197
  1388. scitex/writer/dataclasses/config/_WriterConfig.py +0 -175
  1389. scitex/writer/dataclasses/contents/_ManuscriptContents.py +0 -236
  1390. scitex/writer/dataclasses/core/_Document.py +0 -146
  1391. scitex/writer/dataclasses/core/_DocumentSection.py +0 -546
  1392. scitex/writer/dataclasses/results/_CompilationResult.py +0 -165
  1393. scitex/writer/dataclasses/results/_LaTeXIssue.py +0 -102
  1394. scitex/writer/dataclasses/tree/MINIMUM_FILES.md +0 -121
  1395. scitex/writer/tests/__init__.py +0 -3
  1396. scitex/writer/tests/test_diff_between.py +0 -451
  1397. scitex/writer/tests/test_document_section.py +0 -311
  1398. scitex/writer/tests/test_document_workflow.py +0 -393
  1399. scitex/writer/tests/test_writer.py +0 -361
  1400. scitex/writer/tests/test_writer_integration.py +0 -303
  1401. scitex-2.13.0.dist-info/METADATA +0 -1231
  1402. scitex-2.13.0.dist-info/RECORD +0 -3402
  1403. scitex-2.13.0.dist-info/entry_points.txt +0 -11
  1404. /scitex/scholar/docs/{SUMMARY.md → 00_SUMMARY.md} +0 -0
  1405. /scitex/scholar/docs/{STORAGE_ARCHITECTURE.md → 01_STORAGE_ARCHITECTURE.md} +0 -0
  1406. /scitex/scholar/docs/{PIPELINE_ORGANIZATION.md → 02_PIPELINE_ORGANIZATION.md} +0 -0
  1407. /scitex/scholar/docs/{PIPELINE_IMPLEMENTATION_PLAN.md → 03_PIPELINE_IMPLEMENTATION_PLAN.md} +0 -0
  1408. /scitex/scholar/docs/{PIPELINE_IMPLEMENTATION_COMPLETE.md → 04_PIPELINE_IMPLEMENTATION_COMPLETE.md} +0 -0
  1409. /scitex/scholar/docs/{DETAILS_FOR_DEVELOPERS.md → 05_DETAILS_FOR_DEVELOPERS.md} +0 -0
  1410. /scitex/scholar/docs/{IMPACT_FACTOR_CITATION_INTEGRATION.md → 06_IMPACT_FACTOR_CITATION_INTEGRATION.md} +0 -0
  1411. /scitex/writer/{dataclasses → _dataclasses}/__init__.py +0 -0
  1412. /scitex/writer/{dataclasses → _dataclasses}/config/_CONSTANTS.py +0 -0
  1413. /scitex/writer/{dataclasses → _dataclasses}/config/__init__.py +0 -0
  1414. /scitex/writer/{dataclasses → _dataclasses}/contents/_RevisionContents.py +0 -0
  1415. /scitex/writer/{dataclasses → _dataclasses}/contents/_SupplementaryContents.py +0 -0
  1416. /scitex/writer/{dataclasses → _dataclasses}/contents/__init__.py +0 -0
  1417. /scitex/writer/{dataclasses → _dataclasses}/core/__init__.py +0 -0
  1418. /scitex/writer/{dataclasses → _dataclasses}/results/_SaveSectionsResponse.py +0 -0
  1419. /scitex/writer/{dataclasses → _dataclasses}/results/_SectionReadResponse.py +0 -0
  1420. /scitex/writer/{dataclasses → _dataclasses}/results/__init__.py +0 -0
  1421. /scitex/writer/{dataclasses → _dataclasses}/tree/_ConfigTree.py +0 -0
  1422. /scitex/writer/{dataclasses → _dataclasses}/tree/_ManuscriptTree.py +0 -0
  1423. /scitex/writer/{dataclasses → _dataclasses}/tree/_RevisionTree.py +0 -0
  1424. /scitex/writer/{dataclasses → _dataclasses}/tree/_ScriptsTree.py +0 -0
  1425. /scitex/writer/{dataclasses → _dataclasses}/tree/_SharedTree.py +0 -0
  1426. /scitex/writer/{dataclasses → _dataclasses}/tree/_SupplementaryTree.py +0 -0
  1427. /scitex/writer/{dataclasses → _dataclasses}/tree/__init__.py +0 -0
  1428. {scitex-2.13.0.dist-info → scitex-2.15.1.dist-info}/WHEEL +0 -0
  1429. {scitex-2.13.0.dist-info → scitex-2.15.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,2545 +0,0 @@
1
- {
2
- "translatorID": "0e2235e7-babf-413c-9acf-f27cce5f059c",
3
- "label": "MODS",
4
- "creator": "Simon Kornblith, Richard Karnesky, and Abe Jellinek",
5
- "target": "xml",
6
- "minVersion": "2.1.9",
7
- "maxVersion": "",
8
- "priority": 50,
9
- "configOptions": {
10
- "dataMode": "xml/dom"
11
- },
12
- "displayOptions": {
13
- "exportNotes": true
14
- },
15
- "inRepository": true,
16
- "translatorType": 3,
17
- "lastUpdated": "2022-10-31 14:01:52"
18
- }
19
-
20
- /*
21
- ***** BEGIN LICENSE BLOCK *****
22
-
23
- Copyright © 2019-2021 Simon Kornblith, Richard Karnesky, and Abe Jellinek
24
-
25
- This file is part of Zotero.
26
-
27
- Zotero is free software: you can redistribute it and/or modify
28
- it under the terms of the GNU Affero General Public License as published by
29
- the Free Software Foundation, either version 3 of the License, or
30
- (at your option) any later version.
31
-
32
- Zotero is distributed in the hope that it will be useful,
33
- but WITHOUT ANY WARRANTY; without even the implied warranty of
34
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35
- GNU Affero General Public License for more details.
36
-
37
- You should have received a copy of the GNU Affero General Public License
38
- along with Zotero. If not, see <http://www.gnu.org/licenses/>.
39
-
40
- ***** END LICENSE BLOCK *****
41
- */
42
-
43
- var fromMarcGenre = {
44
- // "abstract or summary":XXX,
45
- // "abstract":XXX,
46
- // "summary":XXX,
47
- "art reproduction": "artwork",
48
- article: "journalArticle",
49
- autobiography: "book",
50
- bibliography: "book",
51
- biography: "book",
52
- book: "book",
53
- // "calendar":XXX,
54
- // "catalog":XXX,
55
- chart: "artwork",
56
- "comic or graphic novel": "book",
57
- comic: "book",
58
- "graphic novel": "book",
59
- "comic strip": "artwork",
60
- "conference publication": "conferencePaper",
61
- // "database":XXX,
62
- dictionary: "dictionaryEntry",
63
- diorama: "artwork",
64
- // "directory":XXX,
65
- drama: "book",
66
- encyclopedia: "encyclopediaArticle",
67
- // "essay":XXX,
68
- festschrift: "book",
69
- fiction: "book",
70
- // "filmography":XXX,
71
- filmstrip: "videoRecording",
72
- // "findingaid":XXX,
73
- // "flash card":XXX,
74
- folktale: "book",
75
- // "font":XXX,
76
- // "game":XXX,
77
- graphic: "artwork",
78
- globe: "map",
79
- handbook: "book",
80
- history: "book",
81
- hymnal: "book",
82
- "humor,satire": "book",
83
- humor: "book",
84
- satire: "book",
85
- // "index":XXX,
86
- // "instruction":XXX,
87
- // "interview":XXX,
88
- // "issue":XXX,
89
- journal: "journalArticle",
90
- kit: "artwork",
91
- // "language instruction":XXX,
92
- "law report or digest": "journalArticle",
93
- "law report": "journalArticle",
94
- digest: "journalArticle",
95
- "law digest": "journalArticle",
96
- "legal article": "journalArticle",
97
- "legal case and case notes": "case",
98
- "legal case": "case",
99
- "case notes": "case",
100
- legislation: "statute",
101
- "loose-leaf": "manuscript",
102
- map: "map",
103
- memoir: "book",
104
- "microscope slide": "artwork",
105
- model: "artwork",
106
- // "multivolume monograph":XXX,
107
- novel: "book",
108
- // "numeric data":XXX,
109
- // "offprint":XXX,
110
- "online system or service": "webpage",
111
- "online system": "webpage",
112
- service: "webpage",
113
- "online service": "webpage",
114
- patent: "patent",
115
- periodical: "journalArticle",
116
- picture: "artwork",
117
- // "poetry":XXX,
118
- // "programmed text":XXX,
119
- realia: "artwork",
120
- // "rehearsal":XXX,
121
- // "remote sensing image":XXX,
122
- // "reporting":XXX,
123
- // "review":XXX,
124
- script: "book",
125
- // "series":XXX,
126
- // "short story":XXX,
127
- slide: "artwork",
128
- sound: "audioRecording",
129
- speech: "audioRecording",
130
- "standard or specification": "report",
131
- standard: "report",
132
- // "specification":XXX,
133
- // "statistics":XXX,
134
- // "survey of literature":XXX,
135
- "technical report": "report",
136
- newspaper: "newspaperArticle",
137
- theses: "thesis",
138
- thesis: "thesis",
139
- // "toy":XXX,
140
- transparency: "artwork",
141
- // "treaty":XXX,
142
- videorecording: "videoRecording",
143
- letter: "letter",
144
- "motion picture": "film",
145
- "art original": "artwork",
146
- "web site": "webpage",
147
- yearbook: "book"
148
- };
149
-
150
- var toMarcGenre = {
151
- artwork: "art original",
152
- audioRecording: "sound",
153
- bill: "legislation",
154
- blogPost: "web site",
155
- book: "book",
156
- bookSection: "book",
157
- case: "legal case and case notes",
158
- // "computerProgram":XXX,
159
- conferencePaper: "conference publication",
160
- dictionaryEntry: "dictionary",
161
- // "document":XXX,
162
- email: "letter",
163
- encyclopediaArticle: "encyclopedia",
164
- film: "motion picture",
165
- forumPost: "web site",
166
- hearing: "government publication",
167
- instantMessage: "letter",
168
- interview: "interview",
169
- journalArticle: "journal",
170
- letter: "letter",
171
- magazineArticle: "periodical",
172
- // "manuscript":XXX,
173
- map: "map",
174
- newspaperArticle: "newspaper",
175
- patent: "patent",
176
- podcast: "speech",
177
- // "presentation":XXX,
178
- radioBroadcast: "sound",
179
- report: "technical report",
180
- statute: "legislation",
181
- thesis: "thesis",
182
- // "tvBroadcast":XXX,
183
- videoRecording: "videorecording",
184
- webpage: "web site"
185
- };
186
-
187
- var dctGenres = {
188
- // "collection":XXX,
189
- // "dataset":XXX,
190
- // "event":XXX,
191
- image: "artwork",
192
- interactiveresource: "webpage",
193
- // "model":XXX,
194
- movingimage: "videoRecording",
195
- // "physical object":XXX,
196
- // "place":XXX,
197
- // "resource":XXX,
198
- // "service":XXX,
199
- software: "computerProgram",
200
- sound: "audioRecording",
201
- stillimage: "artwork"
202
- // "text":XXX
203
- };
204
-
205
- var fromTypeOfResource = {
206
- // "text":XXX,
207
- cartographic: "map",
208
- // "notated music":XXX,
209
- "sound recording-musical": "audioRecording",
210
- "sound recording-nonmusical": "audioRecording",
211
- "sound recording": "audioRecording",
212
- "still image": "artwork",
213
- "moving image": "videoRecording",
214
- // "three dimensional object":XXX,
215
- "software, multimedia": "computerProgram"
216
- };
217
-
218
- var toTypeOfResource = {
219
- artwork: "still image",
220
- audioRecording: "sound recording",
221
- bill: "text",
222
- blogPost: "software, multimedia",
223
- book: "text",
224
- bookSection: "text",
225
- case: "text",
226
- computerProgram: "software, multimedia",
227
- conferencePaper: "text",
228
- dictionaryEntry: "text",
229
- document: "text",
230
- email: "text",
231
- encyclopediaArticle: "text",
232
- film: "moving image",
233
- forumPost: "text",
234
- hearing: "text",
235
- instantMessage: "text",
236
- interview: "text",
237
- journalArticle: "text",
238
- letter: "text",
239
- magazineArticle: "text",
240
- manuscript: "text",
241
- map: "cartographic",
242
- newspaperArticle: "text",
243
- patent: "text",
244
- podcast: "sound recording-nonmusical",
245
- presentation: "mixed material",
246
- radioBroadcast: "sound recording-nonmusical",
247
- report: "text",
248
- statute: "text",
249
- thesis: "text",
250
- tvBroadcast: "moving image",
251
- videoRecording: "moving image",
252
- webpage: "software, multimedia"
253
- };
254
-
255
- var modsTypeRegex = {
256
- // 'artwork':
257
- // 'audioRecording': /\bmusic/i,
258
- // 'bill':
259
- blogPost: /\bblog/i,
260
- // 'book':
261
- // 'bookSection':
262
- // 'case':
263
- // 'computerProgram':
264
- // 'conferencePaper':
265
- // 'dictionaryEntry':
266
- // 'email':
267
- // 'encyclopediaArticle':
268
- // 'film':
269
- // 'forumPost':
270
- // 'hearing':
271
- // 'instantMessage':
272
- // 'interview':
273
- journalArticle: /journal\s*article/i,
274
- // 'letter':
275
- magazineArticle: /magazine\s*article/i,
276
- // 'manuscript':
277
- // 'map':
278
- newspaperArticle: /newspaper\*article/i
279
- // 'patent':
280
- // 'podcast':
281
- // 'presentation':
282
- // 'radioBroadcast':
283
- // 'report':
284
- // 'statute':
285
- // 'thesis':
286
- // 'tvBroadcast':
287
- // 'videoRecording':
288
- // 'webpage':
289
- };
290
-
291
- var modsInternetMediaTypes = {
292
- // a ton of types listed at http://www.iana.org/assignments/media-types/index.html
293
- 'text/html': 'webpage'
294
- };
295
-
296
- var marcRelators = {
297
- aut: "author",
298
- edt: "editor",
299
- ctb: "contributor",
300
- pbd: "seriesEditor",
301
- trl: "translator",
302
- cmp: "composer",
303
- lyr: "wordsBy",
304
- prf: "performer",
305
- cre: "author",
306
- rcp: "recipient"
307
- };
308
-
309
- // Item types that are part of a larger work
310
- var partialItemTypes = ["blogPost",
311
- "bookSection",
312
- "conferencePaper",
313
- "dictionaryEntry",
314
- "encyclopediaArticle",
315
- "forumPost",
316
- "journalArticle",
317
- "magazineArticle",
318
- "newspaperArticle",
319
- "webpage"];
320
-
321
- // Namespace array for using ZU.xpath
322
- var ns = "http://www.loc.gov/mods/v3",
323
- xns = { m: ns };
324
-
325
- function detectImport() {
326
- let doc;
327
- try {
328
- doc = Zotero.getXML().documentElement;
329
- }
330
- catch (err) {
331
- // most likely just not XML
332
- return false;
333
- }
334
-
335
- if (!doc) {
336
- return false;
337
- }
338
- return doc.namespaceURI === "http://www.loc.gov/mods/v3" && (doc.tagName.endsWith("modsCollection") || doc.tagName.endsWith("mods"));
339
- }
340
-
341
- /**
342
- * If property is defined, this function adds an appropriate XML element as a child of
343
- * parentElement.
344
- * @param {Element} parentElement The parent of the new element to be created.
345
- * @param {String} elementName The name of the new element to be created.
346
- * @param {Any} property The property to inspect. If this property is defined and not
347
- * null, false, or empty, a new element is created whose textContent is its value.
348
- * @param {Object} [attributes] If defined, this object defines attributes to be added
349
- * to the new element.
350
- */
351
- function mapProperty(parentElement, elementName, property, attributes) {
352
- if (!property && property !== 0) return null;
353
- var doc = parentElement.ownerDocument,
354
- newElement = doc.createElementNS(ns, elementName);
355
- if (attributes) {
356
- for (let i in attributes) {
357
- newElement.setAttribute(i, attributes[i]);
358
- }
359
- }
360
- newElement.appendChild(doc.createTextNode(property));
361
- parentElement.appendChild(newElement);
362
- return newElement;
363
- }
364
-
365
- function doExport() {
366
- Zotero.setCharacterSet("utf-8");
367
- var parser = new DOMParser();
368
- var doc = parser.parseFromString('<modsCollection xmlns="http://www.loc.gov/mods/v3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-2.xsd" />', 'application/xml');
369
-
370
- var item;
371
- let titleInfo;
372
- while (item = Zotero.nextItem()) { // eslint-disable-line no-cond-assign
373
- // Don't export notes or standalone attachments
374
- if (item.itemType === "note" || item.itemType === "attachment") continue;
375
-
376
- var mods = doc.createElementNS(ns, "mods"),
377
- isPartialItem = partialItemTypes.includes(item.itemType),
378
- recordInfo = doc.createElementNS(ns, "recordInfo"),
379
- host = doc.createElementNS(ns, "relatedItem"),
380
- series = doc.createElementNS(ns, "relatedItem"),
381
- topOrHost = (isPartialItem ? host : mods);
382
-
383
- /** CORE FIELDS **/
384
-
385
- // XML tag titleInfo; object field title
386
- if (item.title) {
387
- titleInfo = doc.createElementNS(ns, "titleInfo");
388
- mapProperty(titleInfo, "title", item.title);
389
- mods.appendChild(titleInfo);
390
- }
391
-
392
- if (item.shortTitle) {
393
- titleInfo = doc.createElementNS(ns, "titleInfo");
394
- titleInfo.setAttribute("type", "abbreviated");
395
- mapProperty(titleInfo, "title", item.shortTitle);
396
- mods.appendChild(titleInfo);
397
- }
398
-
399
- // XML tag typeOfResource/genre; object field type
400
- mapProperty(mods, "typeOfResource", toTypeOfResource[item.itemType]);
401
- mapProperty(mods, "genre", item.itemType, { authority: "local" });
402
- mapProperty(topOrHost, "genre", toMarcGenre[item.itemType], { authority: "marcgt" });
403
-
404
- // XML tag genre; object field thesisType, type
405
- if (item.thesisType) {
406
- mapProperty(mods, "genre", item.thesisType);
407
- }
408
- else if (item.type) {
409
- mapProperty(mods, "genre", item.type);
410
- }
411
-
412
- // XML tag name; object field creators
413
- for (let j = 0; j < item.creators.length; j++) {
414
- var creator = item.creators[j],
415
- roleTerm = "";
416
- if (creator.creatorType == "author") {
417
- roleTerm = item.itemType == "letter" ? "cre" : "aut";
418
- }
419
- else if (creator.creatorType == "editor") {
420
- roleTerm = "edt";
421
- }
422
- else if (creator.creatorType == "translator") {
423
- roleTerm = "trl";
424
- }
425
- else if (creator.creatorType == "seriesEditor") {
426
- roleTerm = "pbd";
427
- }
428
- else if (creator.creatorType == "composer") {
429
- roleTerm = "cmp";
430
- }
431
- else if (creator.creatorType == "wordsBy") {
432
- roleTerm = "lyr";
433
- }
434
- else if (creator.creatorType == "performer") {
435
- roleTerm = "prf";
436
- }
437
- else if (creator.creatorType == "recipient") {
438
- roleTerm = "rcp";
439
- }
440
-
441
- else {
442
- roleTerm = "ctb";
443
- }
444
-
445
- const name = doc.createElementNS(ns, "name");
446
-
447
- if (creator.fieldMode == 1) {
448
- name.setAttribute("type", "corporate");
449
-
450
- mapProperty(name, "namePart", creator.lastName);
451
- }
452
- else {
453
- name.setAttribute("type", "personal");
454
-
455
- mapProperty(name, "namePart", creator.lastName, { type: "family" });
456
- mapProperty(name, "namePart", creator.firstName, { type: "given" });
457
- }
458
-
459
- var role = doc.createElementNS(ns, "role");
460
- mapProperty(role, "roleTerm", roleTerm,
461
- { type: "code", authority: "marcrelator" });
462
- name.appendChild(role);
463
-
464
- var creatorParent = (creator.creatorType === "seriesEditor")
465
- ? series
466
- : ((creator.creatorType === "editor") ? topOrHost : mods);
467
- creatorParent.appendChild(name);
468
- }
469
-
470
- // XML tag recordInfo.recordOrigin; used to store our generator note
471
- // mods.recordInfo.recordOrigin = "Zotero for Firefox "+Zotero.Utilities.getVersion();
472
-
473
- /** FIELDS ON NEARLY EVERYTHING BUT NOT A PART OF THE CORE **/
474
-
475
- // XML tag recordInfo.recordContentSource; object field source
476
- mapProperty(recordInfo, "recordContentSource", item.libraryCatalog);
477
-
478
- // XML tag accessCondition; object field rights
479
- mapProperty(mods, "accessCondition", item.rights);
480
-
481
- /** SUPPLEMENTAL FIELDS **/
482
-
483
- var part = doc.createElementNS(ns, "part");
484
-
485
- // XML tag detail; object field volume
486
- const details = ["volume", "issue", "section"];
487
- for (let i = 0; i < details.length; i++) {
488
- if (item[details[i]] || item[details[i]] === 0) {
489
- const detail = doc.createElementNS(ns, "detail"),
490
- number = doc.createElementNS(ns, "number");
491
- detail.setAttribute("type", details[i]);
492
- number.appendChild(doc.createTextNode(item[details[i]]));
493
- detail.appendChild(number);
494
- part.appendChild(detail);
495
- }
496
- }
497
-
498
- // XML tag detail; object field pages
499
- if (item.pages) {
500
- var extent = doc.createElementNS(ns, "extent");
501
- extent.setAttribute("unit", "pages");
502
- if (item.pages.search(/^\d+[-–]\d+$/) != -1) {
503
- var range = ZU.getPageRange(item.pages);
504
- mapProperty(extent, "start", range[0]);
505
- mapProperty(extent, "end", range[1]);
506
- }
507
- else {
508
- extent.setAttribute("unit", "pages");
509
- mapProperty(extent, "list", item.pages);
510
- }
511
- part.appendChild(extent);
512
- }
513
-
514
- // Assign part if something was assigned
515
- if (part.hasChildNodes()) {
516
- // For a journal article, bookSection, etc., the part is the host
517
- topOrHost.appendChild(part);
518
- }
519
-
520
- var originInfo = doc.createElementNS(ns, "originInfo");
521
-
522
- // XML tag originInfo; object fields edition, place, publisher, year, date
523
- mapProperty(originInfo, "edition", item.edition);
524
- if (item.place) {
525
- var place = doc.createElementNS(ns, "place"),
526
- placeTerm = doc.createElementNS(ns, "placeTerm");
527
- placeTerm.setAttribute("type", "text");
528
- placeTerm.appendChild(doc.createTextNode(item.place));
529
- place.appendChild(placeTerm);
530
- originInfo.appendChild(place);
531
- }
532
- if (item.publisher) {
533
- mapProperty(originInfo, "publisher", item.publisher);
534
- }
535
- else if (item.distributor) {
536
- mapProperty(originInfo, "distributor", item.publisher);
537
- }
538
- if (item.date) {
539
- let dateType;
540
- if (["book", "bookSection"].includes(item.itemType)) {
541
- // Assume year is copyright date
542
- dateType = "copyrightDate";
543
- }
544
- else if (["journalArticle", "magazineArticle", "newspaperArticle"].includes(item.itemType)) {
545
- // Assume date is date issued
546
- dateType = "dateIssued";
547
- }
548
- else {
549
- // Assume date is date created
550
- dateType = "dateCreated";
551
- }
552
- mapProperty(originInfo, dateType, item.date);
553
- }
554
-
555
- if (item.numPages) {
556
- var physicalDescription = doc.createElementNS(ns, "physicalDescription");
557
- mapProperty(physicalDescription, "extent", item.numPages + " p.");
558
- mods.appendChild(physicalDescription);
559
- }
560
-
561
- if (isPartialItem) {
562
- // eXist Solutions points out that these types are more often
563
- // continuing than not & will use this internally.
564
- // Perhaps comment this out in the main distribution, though.
565
- if (["journalArticle", "magazineArticle", "newspaperArticle"].includes(item.itemType)) {
566
- mapProperty(originInfo, "issuance", "continuing");
567
- }
568
- else if (["bookSection",
569
- "conferencePaper",
570
- "dictionaryEntry",
571
- "encyclopediaArticle"].includes(item.itemType)) {
572
- mapProperty(originInfo, "issuance", "monographic");
573
- }
574
- }
575
- else {
576
- // eXist Solutions points out that most types are more often
577
- // monographic than not & will use this internally.
578
- // Perhaps comment this out in the main distribution, though.
579
- mapProperty(originInfo, "issuance", "monographic");
580
- }
581
-
582
- if (originInfo.hasChildNodes()) {
583
- // For a journal article, bookSection, etc., the part is the host
584
- topOrHost.appendChild(originInfo);
585
- }
586
-
587
- // XML tag identifier; object fields ISBN, ISSN
588
- mapProperty(topOrHost, "identifier", item.ISBN, { type: "isbn" });
589
- mapProperty(topOrHost, "identifier", item.ISSN, { type: "issn" });
590
- mapProperty(mods, "identifier", item.DOI, { type: "doi" });
591
-
592
- // XML tag relatedItem.name; object field conferenceName
593
- if (item.conferenceName) {
594
- const name = doc.createElementNS(ns, "name");
595
- name.setAttribute("type", "conference");
596
- mapProperty(name, "namePart", item.conferenceName);
597
- }
598
-
599
- // XML tag relatedItem.titleInfo; object field publication
600
- if (item.publicationTitle) {
601
- titleInfo = doc.createElementNS(ns, "titleInfo");
602
- mapProperty(titleInfo, "title", item.publicationTitle);
603
- host.appendChild(titleInfo);
604
- }
605
-
606
- // XML tag relatedItem.titleInfo; object field journalAbbreviation
607
- if (item.journalAbbreviation) {
608
- titleInfo = doc.createElementNS(ns, "titleInfo");
609
- titleInfo.setAttribute("type", "abbreviated");
610
- mapProperty(titleInfo, "title", item.journalAbbreviation);
611
- host.appendChild(titleInfo);
612
- }
613
-
614
- // XML tag classification; object field callNumber
615
- mapProperty(topOrHost, "classification", item.callNumber);
616
-
617
- // XML tag location.url; object field url
618
- if (item.url) {
619
- const location = doc.createElementNS(ns, "location");
620
- var url = mapProperty(location, "url", item.url, { usage: "primary display" });
621
- if (url && item.accessDate) url.setAttribute("dateLastAccessed", item.accessDate);
622
- mods.appendChild(location);
623
- }
624
-
625
- // XML tag location.physicalLocation; object field archiveLocation
626
- if (item.archiveLocation) {
627
- const location = doc.createElementNS(ns, "location");
628
- mapProperty(location, "physicalLocation", item.archiveLocation);
629
- topOrHost.appendChild(location);
630
- }
631
-
632
- // XML tag abstract; object field abstractNote
633
- mapProperty(mods, "abstract", item.abstractNote);
634
-
635
- // XML tag series/titleInfo; object field series, seriesTitle, seriesText, seriesNumber
636
- titleInfo = doc.createElementNS(ns, "titleInfo");
637
- mapProperty(titleInfo, "title", item.series);
638
- mapProperty(titleInfo, "title", item.seriesTitle);
639
- mapProperty(titleInfo, "subTitle", item.seriesText);
640
- if (titleInfo.hasChildNodes()) series.appendChild(titleInfo);
641
-
642
- if (item.seriesNumber) {
643
- const seriesPart = doc.createElementNS(ns, "part"),
644
- detail = doc.createElementNS(ns, "detail"),
645
- number = doc.createElementNS(ns, "number");
646
- detail.setAttribute("type", "volume");
647
- number.appendChild(doc.createTextNode(item.seriesNumber));
648
- detail.appendChild(number);
649
- seriesPart.appendChild(detail);
650
- series.appendChild(seriesPart);
651
- }
652
-
653
- /** NOTES **/
654
-
655
- if (Zotero.getOption("exportNotes")) {
656
- for (let j = 0; j < item.notes.length; j++) {
657
- mapProperty(mods, "note", item.notes[j].note);
658
- }
659
- }
660
-
661
- /** TAGS **/
662
-
663
- for (let j = 0; j < item.tags.length; j++) {
664
- var subject = doc.createElementNS(ns, "subject"),
665
- topic = doc.createElementNS(ns, "topic");
666
- topic.appendChild(doc.createTextNode(item.tags[j].tag));
667
- subject.appendChild(topic);
668
- mods.appendChild(subject);
669
- }
670
-
671
- /** LANGUAGE **/
672
-
673
- if (item.language) {
674
- var language = doc.createElementNS(ns, "language");
675
- mapProperty(language, "languageTerm", item.language, { type: "text" });
676
- mods.appendChild(language);
677
- }
678
-
679
- /** EXTRA->NOTE **/
680
- mapProperty(mods, "note", item.extra);
681
-
682
- if (recordInfo.hasChildNodes()) mods.appendChild(recordInfo);
683
- if (host.hasChildNodes()) {
684
- host.setAttribute("type", "host");
685
- mods.appendChild(host);
686
- }
687
- if (series.hasChildNodes()) {
688
- series.setAttribute("type", "series");
689
- topOrHost.appendChild(series);
690
- }
691
- doc.documentElement.appendChild(mods);
692
- }
693
-
694
- Zotero.write('<?xml version="1.0"?>\n');
695
- var serializer = new XMLSerializer();
696
- Zotero.write(serializer.serializeToString(doc));
697
- }
698
-
699
- function processTitleInfo(titleInfo) {
700
- var title = ZU.xpathText(titleInfo, "m:title[1]", xns).trim();
701
- var subtitle = ZU.xpathText(titleInfo, "m:subTitle[1]", xns);
702
- if (subtitle) title = title.replace(/:$/, '') + ": " + subtitle.trim();
703
- var nonSort = ZU.xpathText(titleInfo, "m:nonSort[1]", xns);
704
- if (nonSort) title = nonSort.trim() + " " + title;
705
- var partNumber = ZU.xpathText(titleInfo, "m:partNumber[1]", xns);
706
- var partName = ZU.xpathText(titleInfo, "m:partName[1]", xns);
707
- if (partNumber && partName) title = title.replace(/\.$/, '') + ". " + partNumber.trim() + ": " + partName.trim();
708
- else if (partNumber) title = title.replace(/\.$/, '') + ". " + partNumber.trim();
709
- else if (partName) title = title.replace(/\.$/, '') + ". " + partName.trim();
710
- return title;
711
- }
712
-
713
- function processTitle(contextElement) {
714
- // Try to find a titleInfo element with no type specified and a title element as a
715
- // child
716
- var titleElements = ZU.xpath(contextElement, "m:titleInfo[not(@type)][m:title][1]", xns);
717
- if (titleElements.length) return processTitleInfo(titleElements[0]);
718
-
719
- // That failed, so look for any titleInfo element without no type secified
720
- var title = ZU.xpathText(contextElement, "m:titleInfo[not(@type)][1]", xns);
721
- if (title) return title;
722
-
723
- // That failed, so just go for the first title
724
- return ZU.xpathText(contextElement, "m:titleInfo[1]", xns);
725
- }
726
-
727
- function processGenre(contextElement) {
728
- // Try to get itemType by treating local genre as Zotero item type
729
- var genre = ZU.xpath(contextElement, 'm:genre[@authority="local"]', xns);
730
- for (let i = 0; i < genre.length; i++) {
731
- const genreStr = genre[i].textContent;
732
- if (Zotero.Utilities.itemTypeExists(genreStr)) return genreStr;
733
- }
734
-
735
- // Try to get MARC genre and convert to an item type
736
- genre = ZU.xpath(contextElement, 'm:genre[@authority="marcgt"] | m:genre[@authority="marc"]', xns);
737
- for (let i = 0; i < genre.length; i++) {
738
- const genreStr = genre[i].textContent;
739
- if (fromMarcGenre[genreStr]) return fromMarcGenre[genreStr];
740
- }
741
-
742
- // Try to get DCT genre and convert to an item type
743
- genre = ZU.xpath(contextElement, 'm:genre[@authority="dct"]', xns);
744
- for (let i = 0; i < genre.length; i++) {
745
- const genreStr = genre[i].textContent.replace(/\s+/g, "");
746
- if (dctGenres[genreStr]) return dctGenres[genreStr];
747
- }
748
-
749
- // Try unlabeled genres
750
- genre = ZU.xpath(contextElement, 'm:genre', xns);
751
- for (let i = 0; i < genre.length; i++) {
752
- const genreStr = genre[i].textContent;
753
-
754
- // Zotero
755
- if (Zotero.Utilities.itemTypeExists(genreStr)) return genreStr;
756
-
757
- // MARC
758
- if (fromMarcGenre[genreStr]) return fromMarcGenre[genreStr];
759
-
760
- // DCT
761
- var dctGenreStr = genreStr.replace(/\s+/g, "");
762
- if (dctGenres[dctGenreStr]) return dctGenres[dctGenreStr];
763
-
764
- // Try regexps
765
- for (let type in modsTypeRegex) {
766
- if (modsTypeRegex[type].exec(genreStr)) return type;
767
- }
768
- }
769
-
770
- return undefined;
771
- }
772
-
773
- function processItemType(contextElement) {
774
- var type = processGenre(contextElement);
775
- if (type) return type;
776
-
777
- // Try to get type information from typeOfResource
778
- var typeOfResource = ZU.xpath(contextElement, 'm:typeOfResource', xns);
779
- for (let i = 0; i < typeOfResource.length; i++) {
780
- var typeOfResourceStr = typeOfResource[i].textContent.trim();
781
-
782
- // Try list
783
- if (fromTypeOfResource[typeOfResourceStr]) {
784
- return fromTypeOfResource[typeOfResourceStr];
785
- }
786
-
787
- // Try regexps
788
- for (let type in modsTypeRegex) {
789
- if (modsTypeRegex[type].exec(typeOfResourceStr)) return type;
790
- }
791
- }
792
-
793
- // Try to get genre data from host
794
- var hosts = ZU.xpath(contextElement, 'm:relatedItem[@type="host"]', xns);
795
- for (let i = 0; i < hosts.length; i++) {
796
- type = processGenre(hosts[i]);
797
- if (type) return type;
798
- }
799
-
800
- // Figure out if it's a periodical
801
- var periodical = ZU.xpath(contextElement,
802
- 'm:relatedItem[@type="host"]/m:originInfo/m:issuance[text()="continuing" or text()="serial"]',
803
- xns).length;
804
-
805
- // Try physicalDescription/internetMediaType
806
- var internetMediaTypes = ZU.xpath(contextElement, 'm:physicalDescription/m:internetMediaType', xns);
807
- for (let i = 0; i < internetMediaTypes.length; i++) {
808
- var internetMediaTypeStr = internetMediaTypes[i].textContent.trim();
809
- if (modsInternetMediaTypes[internetMediaTypeStr]) {
810
- return modsInternetMediaTypes[internetMediaTypeStr];
811
- }
812
- }
813
-
814
- var isLetter = !!ZU.xpath(contextElement,
815
- 'm:name/m:role/m:roleTerm[@type="code"][contains(@authority, "marc") or contains(@authority, "MARC")][text()="rcp"]',
816
- xns).length;
817
- if (isLetter) {
818
- return 'letter';
819
- }
820
-
821
- // for US congressional publications
822
- // (these are nonstandard extension fields)
823
- var isBill = !!ZU.xpath(contextElement, '//m:billNumber', xns).length;
824
- if (isBill) {
825
- return 'bill';
826
- }
827
- var isHearing = !!ZU.xpath(contextElement, '//m:congCommittee', xns).length;
828
- if (isHearing) {
829
- return 'hearing';
830
- }
831
-
832
- // As a last resort, if it has a host, let's set it to book chapter, so we can import
833
- // more info. Otherwise default to document
834
- if (hosts.length) {
835
- if (periodical) return 'journalArticle';
836
- return 'bookSection';
837
- }
838
-
839
- return "document";
840
- }
841
-
842
- function processCreator(name, itemType, defaultCreatorType) {
843
- var creator = {};
844
- creator.firstName = ZU.xpathText(name, 'm:namePart[@type="given"]', xns, " ") || undefined;
845
- creator.lastName = ZU.xpathText(name, 'm:namePart[@type="family"]', xns, " ");
846
-
847
- if (!creator.lastName) {
848
- var isPersonalName = name.getAttribute("type") === "personal",
849
- backupName = ZU.xpathText(name, 'm:namePart[not(@type="date")][not(@type="termsOfAddress")]', xns, (isPersonalName ? " " : ": "));
850
-
851
- if (!backupName) return null;
852
-
853
- if (isPersonalName) {
854
- let cleanedBackupName = backupName.replace(/[[(][^A-Za-z]*[\])]/g, '');
855
- creator = ZU.cleanAuthor(cleanedBackupName,
856
- "author", cleanedBackupName.includes(','));
857
- delete creator.creatorType;
858
- }
859
- else {
860
- creator.lastName = ZU.trimInternal(backupName);
861
- creator.fieldMode = 1;
862
- }
863
- }
864
-
865
- if (!creator.lastName) return null;
866
-
867
- // Look for roles
868
- let roles = ZU.xpath(name, 'm:role/m:roleTerm[@type="text" or not(@type)]', xns);
869
- var validCreatorsForItemType = ZU.getCreatorsForType(itemType);
870
- for (let role of roles) {
871
- const roleStr = role.textContent.toLowerCase();
872
- if (validCreatorsForItemType.includes(roleStr)) {
873
- creator.creatorType = roleStr;
874
- }
875
- }
876
-
877
- // The below logic is going to want to make the committee, etc., of a bill into "sponsors"
878
- // (MODS data from govinfo doesn't often [ever?] include the actual sponsors) - so let's stop
879
- // that from happening while keeping the info
880
- if (itemType == 'bill' && name.getAttribute('type') == 'corporate') {
881
- creator.creatorType = 'contributor'; // Doesn't get cited
882
- }
883
-
884
- // we want to exclude names with no role other than publisher, distributor,
885
- // etc., because they aren't really creators in Zotero's sense of the term
886
- // (and they'll end up in other fields later). so we'll keep track of whether
887
- // we've encountered one of [pbl, dst] and *no other* relator types, and if
888
- // we do, we throw the creator away.
889
- let onlyPublisher;
890
-
891
- if (!creator.creatorType) {
892
- // Look for MARC roles
893
- roles = ZU.xpath(name, 'm:role/m:roleTerm[@type="code"][contains(@authority, "marc") or contains(@authority, "MARC")]', xns);
894
- for (let i = 0; i < roles.length; i++) {
895
- const roleStr = roles[i].textContent.toLowerCase();
896
- if (roleStr == 'pbl' || roleStr == 'dst') {
897
- if (onlyPublisher === undefined) {
898
- onlyPublisher = true;
899
- }
900
- }
901
- else {
902
- onlyPublisher = false;
903
- }
904
- let marcType = marcRelators[roleStr];
905
- if (marcType && validCreatorsForItemType.includes(marcType)) {
906
- creator.creatorType = marcRelators[roleStr];
907
- }
908
- }
909
-
910
- if (!creator.creatorType) creator.creatorType = defaultCreatorType;
911
- }
912
-
913
- if (onlyPublisher) {
914
- return null;
915
- }
916
-
917
- return creator;
918
- }
919
-
920
- function processCreators(contextElement, newItem, defaultCreatorType) {
921
- var names = ZU.xpath(contextElement, 'm:name', xns);
922
- for (let i = 0; i < names.length; i++) {
923
- var creator = processCreator(names[i], newItem.itemType, defaultCreatorType);
924
- if (creator) newItem.creators.push(creator);
925
- }
926
- }
927
-
928
- function processExtent(extent, newItem) {
929
- // try to parse extent according to
930
- // http://www.loc.gov/standards/mods/v3/mods-userguide-elements.html#extent
931
- // i.e. http://www.loc.gov/marc/bibliographic/bd300.html
932
- // and http://www.loc.gov/marc/bibliographic/bd306.html
933
- var extentRe = new RegExp(
934
- '^(.*?)(?=(?:[:;]|$))' // extent [1]
935
- + '(?::.*?(?=(?:;|$)))?' // other physical details
936
- + '(?:;(.*))?' // dimensions [2]
937
- + '$' // make sure to capture the rest of the line
938
- );
939
-
940
- var ma = extentRe.exec(extent);
941
- if (ma && ma[1]) {
942
- // drop supplemental info (i.e. everything after +)
943
- if (ma[1].includes('+')) {
944
- ma[1] = ma[1].slice(0, ma[1].indexOf('+'));
945
- }
946
-
947
- // pages
948
- if (!newItem.pages && ZU.fieldIsValidForType('pages', newItem.itemType)) {
949
- const pages = ma[1].match(/\bp(?:ages?)?\.?\s+([a-z]?\d+(?:\s*-\s*[a-z]?\d+))/i);
950
- if (pages) {
951
- newItem.pages = pages[1].replace(/\s+/, '');
952
- }
953
- }
954
-
955
- // volume
956
- if (!newItem.volume && ZU.fieldIsValidForType('volume', newItem.itemType)) {
957
- var volume = ma[1].match(/\bv(?:ol(?:ume)?)?\.?\s+(\d+)/i);
958
- if (volume) {
959
- newItem.volume = volume[1];
960
- }
961
- }
962
-
963
- // issue
964
- if (!newItem.issue && ZU.fieldIsValidForType('issue', newItem.itemType)) {
965
- var issue = ma[1].match(/\b(?:no?|iss(?:ue)?)\.?\s+(\d+)/i);
966
- if (issue) {
967
- newItem.issue = issue[1];
968
- }
969
- }
970
-
971
- // numPages
972
- if (!newItem.numPages && ZU.fieldIsValidForType('numPages', newItem.itemType)) {
973
- const pages = ma[1].match(/(\d+)\s*p(?:ages?)?\b/i);
974
- if (pages) {
975
- newItem.numPages = pages[1];
976
- }
977
- }
978
-
979
- // numberOfVolumes
980
- if (!newItem.numberOfVolumes && ZU.fieldIsValidForType('numberOfVolumes', newItem.itemType)) {
981
- // includes volumes, scores, sound (discs, but I think there could be others)
982
- // video (cassette, but could have others)
983
- var nVol = ma[1].match(/(\d+)\s+(?:v(?:olumes?)?|scores?|sound|video)\b/i);
984
- if (nVol) {
985
- newItem.numberOfVolumes = nVol[1];
986
- }
987
- }
988
-
989
- // runningTime
990
- if (!newItem.runningTime && ZU.fieldIsValidForType('runningTime', newItem.itemType)) {
991
- // several possible formats:
992
- var rt;
993
- // 002016 = 20 min., 16 sec.
994
- if (rt = ma[1].match(/\b(\d{2,3})(\d{2})(\d{2})\b/)) { // eslint-disable-line no-cond-assign
995
- newItem.runningTime = rt[1] + ':' + rt[2] + ':' + rt[3];
996
- // (ca. 124 min.)
997
- }
998
- // eslint-disable-next-line no-cond-assign
999
- else if (rt = ma[1].match(/((\d+)\s*((?:hours?|hrs?)|(?:minutes?|mins?)|(?:seconds?|secs?))\.?\s+)?((\d+)\s*((?:hours?|hrs?)|(?:minutes?|mins?)|(?:seconds?|secs?))\.?\s+)?((\d+)\s*((?:hours?|hrs?)|(?:minutes?|mins?)|(?:seconds?|secs?))\.?)/i)) {
1000
- var hrs = 0, mins = 0, secs = 0;
1001
- for (let i = 2; i < 7; i += 2) {
1002
- if (!rt[i]) continue;
1003
-
1004
- switch (rt[i].charAt(0).toLowerCase()) {
1005
- case 'h':
1006
- hrs = rt[i - 1];
1007
- break;
1008
- case 'm':
1009
- mins = rt[i - 1];
1010
- break;
1011
- case 's':
1012
- secs = rt[i - 1];
1013
- break;
1014
- }
1015
- }
1016
-
1017
- if (secs > 59) {
1018
- mins += secs / 60;
1019
- secs %= 60;
1020
- }
1021
- if (secs < 10) {
1022
- secs = '0' + secs;
1023
- }
1024
-
1025
- if (mins > 59) {
1026
- hrs += hrs / 60;
1027
- mins %= 60;
1028
- }
1029
- if (mins < 10) {
1030
- mins = '0' + mins;
1031
- }
1032
-
1033
- newItem.runningTime = ((hrs * 1) ? hrs + ':' : '') + mins + ':' + secs;
1034
- // (46:00)
1035
- }
1036
- else if (rt = ma[1].match(/\b(\d{0,3}:\d{1,2}:\d{2})\b/)) { // eslint-disable-line no-cond-assign
1037
- newItem.runningTime = rt[1];
1038
- }
1039
- }
1040
- }
1041
-
1042
- // dimensions: artworkSize
1043
- // only part of artwork right now, but maybe will be in other types in the future
1044
- if (!newItem.artworkSize && ma && ma[2] && ZU.fieldIsValidForType('artworkSize', newItem.itemType)) {
1045
- // drop supplemental info (i.e. everything after +)
1046
- if (ma[2].includes('+')) {
1047
- ma[2] = ma[2].slice(0, ma[2].indexOf('+'));
1048
- }
1049
- // 26 cm. or 33 x 15 cm. or 1/2 in. or 1 1/2 x 15/16 in.
1050
- var dim = ma[2].match(/(?:(?:(?:\d+\s+)?\d+\/)?\d+\s*x\s*)?(?:(?:\d+\s+)?\d+\/)?\d+\s*(?:cm|mm|m|in|ft)\./i);
1051
- if (dim) newItem.artworkSize = dim[0];
1052
- }
1053
- }
1054
-
1055
- function processIdentifiers(contextElement, newItem) {
1056
- var isbnNodes = ZU.xpath(contextElement, './/m:identifier[@type="isbn"]', xns),
1057
- isbns = [];
1058
- for (let i = 0; i < isbnNodes.length; i++) {
1059
- const m = isbnNodes[i].textContent.replace(/\s*-\s*/g, '').match(/(?:[\dX]{10}|\d{13})/i);
1060
- if (m) isbns.push(m[0]);
1061
- }
1062
- if (isbns.length) newItem.ISBN = isbns.join(", ");
1063
-
1064
- var issnNodes = ZU.xpath(contextElement, './/m:identifier[@type="issn"]', xns),
1065
- issns = [];
1066
- for (let i = 0; i < issnNodes.length; i++) {
1067
- const m = issnNodes[i].textContent.match(/\b\d{4}\s*-?\s*\d{4}\b/i);
1068
- if (m) issns.push(m[0]);
1069
- }
1070
- if (issns.length) newItem.ISSN = issns.join(", ");
1071
-
1072
- newItem.DOI = ZU.xpathText(contextElement, 'm:identifier[@type="doi"]', xns);
1073
- }
1074
-
1075
- function getFirstResult(contextNode, xpaths) {
1076
- for (let i = 0; i < xpaths.length; i++) {
1077
- var results = ZU.xpath(contextNode, xpaths[i], xns);
1078
- if (results.length) return results[0].textContent;
1079
- }
1080
- return null;
1081
- }
1082
-
1083
- function doImport() {
1084
- var xml = Zotero.getXML();
1085
-
1086
- var modsElements = ZU.xpath(xml, "/m:mods | /m:modsCollection/m:mods", xns);
1087
-
1088
- for (let iModsElements = 0, nModsElements = modsElements.length;
1089
- iModsElements < nModsElements; iModsElements++) {
1090
- var modsElement = modsElements[iModsElements],
1091
- newItem = new Zotero.Item();
1092
-
1093
- // title
1094
- newItem.title = processTitle(modsElement);
1095
-
1096
- // shortTitle
1097
- var abbreviatedTitle = ZU.xpath(modsElement, 'm:titleInfo[@type="abbreviated"]', xns);
1098
- if (abbreviatedTitle.length) {
1099
- newItem.shortTitle = processTitleInfo(abbreviatedTitle[0]);
1100
- }
1101
-
1102
- // itemType
1103
- newItem.itemType = processItemType(modsElement);
1104
-
1105
- // TODO: thesisType, type
1106
-
1107
- // creators
1108
- let defaultCreatorType = ZU.getCreatorsForType(newItem.itemType)[0];
1109
- processCreators(modsElement, newItem, defaultCreatorType);
1110
- // source
1111
- newItem.source = ZU.xpathText(modsElement, 'm:recordInfo/m:recordContentSource', xns);
1112
- // accessionNumber
1113
- newItem.accessionNumber = ZU.xpathText(modsElement, 'm:recordInfo/m:recordIdentifier', xns);
1114
- // rights
1115
- newItem.rights = ZU.xpathText(modsElement, 'm:accessCondition', xns);
1116
-
1117
- /** US GOVERNMENT EXTENSIONS
1118
- * We very likely can add more here**/
1119
-
1120
- if (newItem.itemType == 'hearing' || newItem.itemType == 'bill') {
1121
- // Common elements
1122
- newItem.committee = ZU.xpathText(modsElement,
1123
- 'm:extension/m:congCommittee/m:name[@type="authority-standard"]', xns);
1124
- let chamber = ZU.xpathText(modsElement,
1125
- 'm:extension/m:chamber|m:extension/m:originChamber', xns);
1126
- if (chamber) {
1127
- newItem.legislativeBody = ZU.capitalizeTitle(chamber, true);
1128
- }
1129
- newItem.session = ZU.xpathText(modsElement,
1130
- 'm:extension/m:congress', xns); // this is not great
1131
- newItem.documentNumber = ZU.xpathText(modsElement,
1132
- 'm:extension/m:number', xns);
1133
-
1134
- // Specific for bill
1135
- if (newItem.itemType == 'bill') {
1136
- // sponsors aren't in MODS, imported creators are useless
1137
- newItem.creators = [];
1138
- newItem.shortTitle = ZU.xpathText(modsElement,
1139
- 'm:extension/m:chamber|m:extension/m:shortTitle[1]', xns);
1140
- if (newItem.shortTitle) {
1141
- // The actual titles of bills are lengthy and never used; bills include
1142
- // official short titles
1143
- newItem.abstractNote = newItem.title;
1144
- newItem.title = newItem.shortTitle;
1145
- }
1146
- let billNumber = ZU.xpathText(modsElement,
1147
- 'm:extension/m:chamber|m:extension/m:billNumber', xns);
1148
- let billType = ZU.xpathText(modsElement,
1149
- 'm:extension/m:chamber|m:extension/m:docClass', xns);
1150
- var billTypeMap = { // From Indigobook: https://law.resource.org/pub/us/code/blue/IndigoBook.html#R21
1151
- hr: "H.R.",
1152
- s: "S.",
1153
- hjres: "H.R.J. Res.",
1154
- sjres: "S.J. Res.",
1155
- hconres: "H.R. Con. R.",
1156
- sconres: "S. Con. R.",
1157
- hres: "H.R. Res.",
1158
- sres: "S. Res."
1159
- };
1160
- if (billTypeMap[billType]) {
1161
- newItem.billNumber = billTypeMap[billType] + " " + billNumber;
1162
- }
1163
- else {
1164
- newItem.billNumber = billNumber;
1165
- }
1166
- if (ZU.xpath(modsElement, 'm:extension/m:USCode', xns).length) {
1167
- let usc = ZU.xpath(modsElement, 'm:extension/m:USCode', xns)[0];
1168
- newItem.code = 'U.S.C.';
1169
- newItem.codeVolume = usc.getAttribute('title');
1170
- newItem.codePages = [...usc.querySelectorAll('section')].map(e => e.getAttribute('number')).join(', ');
1171
- }
1172
- // remove other useless info
1173
- delete newItem.accessionNumber;
1174
- }
1175
- }
1176
-
1177
-
1178
- /** SUPPLEMENTAL FIELDS **/
1179
-
1180
- var part = [], originInfo = [];
1181
-
1182
- // host
1183
- var hostNodes = ZU.xpath(modsElement, 'm:relatedItem[@type="host"]', xns);
1184
- for (let i = 0; i < hostNodes.length; i++) {
1185
- var host = hostNodes[i];
1186
-
1187
- // publicationTitle
1188
- if (!newItem.publicationTitle) newItem.publicationTitle = processTitle(host);
1189
-
1190
- // journalAbbreviation
1191
- if (!newItem.journalAbbreviation) {
1192
- const titleInfo = ZU.xpath(host, 'm:titleInfo[@type="abbreviated"]', xns);
1193
- if (titleInfo.length) {
1194
- newItem.journalAbbreviation = processTitleInfo(titleInfo[0]);
1195
- }
1196
- }
1197
-
1198
- // creators of host item will be evaluated by their role info
1199
- // and only if this is missing then they are connected by a generic
1200
- // contributor role
1201
- processCreators(host, newItem, "contributor");
1202
-
1203
- // identifiers
1204
- processIdentifiers(host, newItem);
1205
-
1206
- part = part.concat(ZU.xpath(host, 'm:part', xns));
1207
- originInfo = originInfo.concat(ZU.xpath(host, 'm:originInfo', xns));
1208
- }
1209
-
1210
- if (!newItem.publicationTitle) newItem.publicationTitle = newItem.journalAbbreviation;
1211
-
1212
- // series
1213
- var seriesNodes = ZU.xpath(modsElement, './/m:relatedItem[@type="series"]', xns);
1214
- for (let i = 0; i < seriesNodes.length; i++) {
1215
- var seriesNode = seriesNodes[i];
1216
- var series = ZU.xpathText(seriesNode, 'm:titleInfo/m:title', xns);
1217
-
1218
- if (ZU.fieldIsValidForType('series', newItem.itemType)) {
1219
- newItem.series = series;
1220
- }
1221
- else if (ZU.fieldIsValidForType('seriesTitle', newItem.itemType)) {
1222
- newItem.seriesTitle = series;
1223
- }
1224
-
1225
- if (!newItem.seriesText) {
1226
- newItem.seriesText = ZU.xpathText(seriesNode, 'm:titleInfo/m:subTitle', xns);
1227
- }
1228
-
1229
- if (!newItem.seriesNumber) {
1230
- newItem.seriesNumber = getFirstResult(seriesNode,
1231
- ['m:part/m:detail[@type="volume"]/m:number', 'm:titleInfo/m:partNumber']);
1232
- }
1233
-
1234
- processCreators(seriesNode, newItem, "seriesEditor");
1235
- }
1236
-
1237
- // Add part and originInfo from main entry
1238
- part = part.concat(ZU.xpath(modsElement, 'm:part', xns));
1239
- originInfo = originInfo.concat(ZU.xpath(modsElement, 'm:originInfo', xns));
1240
-
1241
- if (part.length) {
1242
- // volume, issue, section
1243
- var details = ["volume", "issue", "section"];
1244
- for (let i = 0; i < details.length; i++) {
1245
- var detail = details[i];
1246
-
1247
- newItem[detail] = getFirstResult(part, ['m:detail[@type="' + detail + '"]/m:number',
1248
- 'm:detail[@type="' + detail + '"]']);
1249
- }
1250
-
1251
- // pages and other extent information
1252
- const extents = ZU.xpath(part, "m:extent", xns);
1253
- for (let i = 0; i < extents.length; i++) {
1254
- var extent = extents[i],
1255
- unit = extent.getAttribute("unit");
1256
-
1257
- if (unit === "pages" || unit === "page") {
1258
- if (newItem.pages) continue;
1259
- var pagesStart = ZU.xpathText(extent, "m:start[1]", xns);
1260
- var pagesEnd = ZU.xpathText(extent, "m:end[1]", xns);
1261
- if (pagesStart || pagesEnd) {
1262
- if (pagesStart == pagesEnd) {
1263
- newItem.pages = pagesStart;
1264
- }
1265
- else if (pagesStart && pagesEnd) {
1266
- newItem.pages = pagesStart + "-" + pagesEnd;
1267
- }
1268
- else {
1269
- newItem.pages = pagesStart + pagesEnd;
1270
- }
1271
- }
1272
- }
1273
- else {
1274
- processExtent(extent.textContent, newItem);
1275
- }
1276
- }
1277
-
1278
- newItem.date = getFirstResult(part, ['m:date[not(@point="end")][@encoding]',
1279
- 'm:date[not(@point="end")]',
1280
- 'm:date']);
1281
- }
1282
-
1283
- // physical description
1284
- const extents = ZU.xpath(modsElement, "m:physicalDescription/m:extent", xns);
1285
- for (let i = 0; i < extents.length; i++) {
1286
- processExtent(extents[i].textContent, newItem);
1287
- }
1288
-
1289
- // identifier
1290
- processIdentifiers(modsElement, newItem);
1291
-
1292
- if (originInfo.length) {
1293
- // edition
1294
- var editionNodes = ZU.xpath(originInfo, 'm:edition', xns);
1295
- if (editionNodes.length) newItem.edition = editionNodes[0].textContent;
1296
-
1297
- // place
1298
- var placeNodes = ZU.xpath(originInfo, 'm:place/m:placeTerm[@type="text"]', xns);
1299
- if (placeNodes.length) newItem.place = placeNodes[0].textContent;
1300
-
1301
- // publisher/distributor
1302
- var publisherNodes = ZU.xpath(originInfo, 'm:publisher', xns);
1303
- if (publisherNodes.length) {
1304
- newItem.publisher = publisherNodes[0].textContent;
1305
- if (newItem.itemType == "webpage" && !newItem.publicationTitle) {
1306
- newItem.publicationTitle = newItem.publisher;
1307
- }
1308
- }
1309
-
1310
- // date
1311
- newItem.date = getFirstResult(originInfo, ['m:copyrightDate[@encoding]',
1312
- 'm:copyrightDate',
1313
- 'm:dateIssued[not(@point="end")][@encoding]',
1314
- 'm:dateIssued[not(@point="end")]',
1315
- 'm:dateIssued',
1316
- 'm:dateCreated[@encoding]',
1317
- 'm:dateCreated']) || newItem.date;
1318
-
1319
- // lastModified
1320
- newItem.lastModified = getFirstResult(originInfo, ['m:dateModified[@encoding]',
1321
- 'm:dateModified']);
1322
-
1323
- // accessDate
1324
- newItem.accessDate = getFirstResult(originInfo, ['m:dateCaptured[@encoding]',
1325
- 'm:dateCaptured[not(@encoding)]']);
1326
- }
1327
-
1328
- // call number
1329
- newItem.callNumber = ZU.xpathText(modsElement, 'm:classification', xns);
1330
-
1331
- // archiveLocation
1332
- newItem.archiveLocation = ZU.xpathText(modsElement, './/m:location/m:physicalLocation', xns, "; ");
1333
-
1334
- // attachments and url
1335
- var urlNodes = ZU.xpath(modsElement, 'm:location/m:url', xns);
1336
- for (let urlNode of urlNodes) {
1337
- var access = urlNode.getAttribute("access"),
1338
- usage = urlNode.getAttribute("usage");
1339
- if (access === "raw object") {
1340
- var attachment = {
1341
- title: (urlNode.getAttribute("displayLabel") || "Attachment"),
1342
- url: urlNode.textContent
1343
- };
1344
- if (attachment.url.substr(-4) === ".pdf") {
1345
- attachment.mimeType = "application/pdf";
1346
- }
1347
- else if (/\.html?$/.test(attachment.url)) {
1348
- attachment.mimeType = "text/html";
1349
- }
1350
- else if (/\.jpe?g$/.test(attachment.url)) {
1351
- attachment.mimeType = "image/jpeg";
1352
- }
1353
- else if (/\.png$/.test(attachment.url)) {
1354
- attachment.mimeType = "image/png";
1355
- }
1356
-
1357
- newItem.attachments.push(attachment);
1358
- }
1359
-
1360
- if ((!newItem.url || usage === "primary" || usage === "primary display")
1361
- && access !== "preview") {
1362
- newItem.url = urlNode.textContent;
1363
- }
1364
-
1365
- if (!newItem.accessDate) {
1366
- newItem.accessDate = urlNode.getAttribute("dateLastAccessed");
1367
- }
1368
- }
1369
-
1370
- // abstract
1371
- newItem.abstractNote = ZU.xpathText(modsElement, 'm:abstract', xns, "\n\n");
1372
-
1373
- /** NOTES **/
1374
- var noteNodes = ZU.xpath(modsElement, 'm:note', xns);
1375
- for (let i = 0; i < noteNodes.length; i++) {
1376
- var note = noteNodes[i];
1377
- newItem.notes.push({ note:
1378
- (note.hasAttribute("type") ? note.getAttribute("type") + ': ' : '')
1379
- + note.textContent });
1380
- }
1381
-
1382
- // ToC - goes into notes
1383
- var tocNodes = ZU.xpath(modsElement, 'm:tableOfContents', xns);
1384
- for (let i = 0; i < tocNodes.length; i++) {
1385
- newItem.notes.push({ note: 'Table of Contents: ' + tocNodes[i].textContent });
1386
- }
1387
-
1388
- /** TAGS **/
1389
- var tagNodes = ZU.xpath(modsElement, 'm:subject/m:topic', xns);
1390
- for (let i = 0; i < tagNodes.length; i++) {
1391
- newItem.tags.push(ZU.trimInternal(tagNodes[i].textContent));
1392
- }
1393
-
1394
- // scale
1395
- if (ZU.fieldIsValidForType('scale', newItem.itemType)) {
1396
- var scale = ZU.xpathText(modsElement, 'm:subject/m:cartographics/m:scale', xns);
1397
- if (scale) {
1398
- var m = scale.match(/1\s*:\s*\d+(?:,\d+)/);
1399
- if (m) newItem.scale = m[0];
1400
- }
1401
- }
1402
-
1403
- // Language
1404
- // create an array of languages
1405
- var languageNames = [];
1406
- var languageCodes = [];
1407
- var languageNodes = ZU.xpath(modsElement, 'm:language', xns);
1408
- for (let languageNode of languageNodes) {
1409
- var languageTerms = ZU.xpath(languageNode, 'm:languageTerm', xns);
1410
-
1411
- if (!languageTerms.length
1412
- && languageNode.childNodes.length === 1
1413
- && languageNode.firstChild.nodeType === 3 /* Node.TEXT_NODE*/) {
1414
- languageCodes.push(languageNode.firstChild.nodeValue);
1415
- continue;
1416
- }
1417
-
1418
- for (let term of languageTerms) {
1419
- var termType = term.getAttribute("type");
1420
-
1421
- if (termType === "text") {
1422
- languageNames.push(term.textContent);
1423
- }
1424
- else if (termType === "code" || term.hasAttribute("authority")) {
1425
- languageCodes.push(term.textContent);
1426
- }
1427
- }
1428
- }
1429
-
1430
- // prefer language codes to avoid localized language names in metadata
1431
- let languages = languageCodes.length ? languageCodes : languageNames;
1432
-
1433
- // join the list separated by semicolons & add it to zotero item
1434
- newItem.language = languages.join('; ');
1435
-
1436
- Zotero.setProgress(iModsElements / nModsElements * 100);
1437
- newItem.complete();
1438
- }
1439
- }
1440
-
1441
-
1442
- /** BEGIN TEST CASES **/
1443
- var testCases = [
1444
- {
1445
- "type": "import",
1446
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<modsCollection xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd\">\n<mods version=\"3.3\">\n <titleInfo>\n \t \t<title>FranUlmer.com -- Home Page</title>\n \t</titleInfo>\n \t<titleInfo type=\"alternative\"><title>Fran Ulmer, Democratic candidate for Governor, Alaska, 2002</title>\n \t</titleInfo>\n \t<name type=\"personal\">\n \t \t<namePart>Ulmer, Fran</namePart>\n \t</name>\n \t<genre>Web site</genre>\n \t<originInfo>\n \t \t<dateCaptured point=\"start\" encoding=\"iso8601\">20020702 </dateCaptured>\n \t \t<dateCaptured point=\"end\" encoding=\"iso8601\"> 20021203</dateCaptured>\n \t</originInfo>\n \t<language>\n \t \t<languageTerm authority=\"iso639-2b\">eng</languageTerm>\n \t</language>\n \t<physicalDescription>\n \t \t<internetMediaType>text/html</internetMediaType>\n \t \t<internetMediaType>image/jpg</internetMediaType>\n \t</physicalDescription>\n \t<abstract>Web site promoting the candidacy of Fran Ulmer, Democratic candidate for Governor, Alaska, 2002. Includes candidate biography, issue position statements, campaign contact information, privacy policy and campaign news press releases. Site features enable visitors to sign up for campaign email list, volunteer, make campaign contributions and follow links to other internet locations. </abstract>\n \t<subject>\n \t \t<topic>Elections</topic>\n \t \t<geographic>Alaska</geographic>\n \t</subject>\n \t<subject>\n \t \t<topic>Governors</topic>\n \t \t<geographic>Alaska</geographic>\n \t \t<topic>Election</topic>\n \t</subject>\n \t<subject>\n \t \t<topic>Democratic Party (AK)</topic>\n \t</subject>\n \t<relatedItem type=\"host\">\n \t \t<titleInfo>\n \t \t \t<title>Election 2002 Web Archive</title>\n \t \t</titleInfo>\n \t \t<location>\n \t \t \t<url>http://www.loc.gov/minerva/collect/elec2002/</url>\n \t \t</location>\n \t</relatedItem>\n \t<location>\n \t \t<url displayLabel=\"Active site (if available)\">http://www.franulmer.com/</url>\n \t</location>\n \t<location>\n \t \t<url displayLabel=\"Archived site\">http://wayback-cgi1.alexa.com/e2002/*/http://www.franulmer.com/</url>\n \t</location>\n</mods>\n</modsCollection>",
1447
- "items": [
1448
- {
1449
- "itemType": "webpage",
1450
- "title": "FranUlmer.com -- Home Page",
1451
- "creators": [
1452
- {
1453
- "firstName": "Fran",
1454
- "lastName": "Ulmer",
1455
- "creatorType": "author"
1456
- }
1457
- ],
1458
- "abstractNote": "Web site promoting the candidacy of Fran Ulmer, Democratic candidate for Governor, Alaska, 2002. Includes candidate biography, issue position statements, campaign contact information, privacy policy and campaign news press releases. Site features enable visitors to sign up for campaign email list, volunteer, make campaign contributions and follow links to other internet locations.",
1459
- "language": "eng",
1460
- "url": "http://www.franulmer.com/",
1461
- "websiteTitle": "Election 2002 Web Archive",
1462
- "attachments": [],
1463
- "tags": [
1464
- {
1465
- "tag": "Democratic Party (AK)"
1466
- },
1467
- {
1468
- "tag": "Election"
1469
- },
1470
- {
1471
- "tag": "Elections"
1472
- },
1473
- {
1474
- "tag": "Governors"
1475
- }
1476
- ],
1477
- "notes": [],
1478
- "seeAlso": []
1479
- }
1480
- ]
1481
- },
1482
- {
1483
- "type": "import",
1484
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<modsCollection xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd\">\n<mods version=\"3.3\">\n <titleInfo>\n \t \t<title>At Gettysburg, or, What a Girl Saw and Heard of the Battle: A True Narrative</title>\n \t</titleInfo>\n \t<name type=\"personal\">\n \t \t<namePart>Alleman, Tillie Pierce [1848-1914]</namePart>\n \t \t<role>\n \t \t \t<roleTerm type=\"code\" authority=\"marcrelator\">aut</roleTerm>\n \t \t \t<roleTerm type=\"text\" authority=\"marcrelator\">Author</roleTerm>\n \t \t</role>\n \t</name>\n \t<typeOfResource>text</typeOfResource>\n \t<originInfo>\n \t \t<place>\n \t \t \t<placeTerm type=\"text\">New York</placeTerm>\n \t \t</place>\n \t \t<publisher>W. Lake Borland</publisher>\n \t \t<dateIssued keyDate=\"yes\" encoding=\"w3cdtf\">1889</dateIssued>\n \t</originInfo>\n \t<language>\n \t \t<languageTerm authority=\"iso639-2b\">eng</languageTerm>\n \t \t<languageTerm type=\"text\">English</languageTerm>\n \t</language>\n \t<physicalDescription>\n \t \t<internetMediaType>text/html</internetMediaType>\n \t \t<digitalOrigin>reformatted digital</digitalOrigin>\n \t</physicalDescription>\n \t<subject authority=\"lcsh\">\n \t \t<topic >Gettysburg, Battle of, Gettysburg, Pa., 1863</topic>\n \t</subject>\n \t<subject authority=\"lcsh\">\n \t \t<topic>Gettysburg (Pa.) -- History -- Civil War, 1861-1865</topic>\n \t</subject>\n \t<subject authority=\"lcsh\">\n \t \t<topic>United States -- History -- Civil War, 1861-1865 -- Campaigns</topic>\n \t</subject>\n \t<classification authority=\"lcc\">E475.53 .A42</classification>\n \t<relatedItem type=\"host\">\n \t \t<titleInfo type=\"uniform\" authority=\"dlfaqcoll\">\n \t \t \t<title>A Celebration of Women Writers: Americana</title>\n \t \t</titleInfo>\n \t</relatedItem>\n \t<location>\n \t \t<url usage=\"primary display\" access=\"object in context\"> http://digital.library.upenn.edu/women/alleman/gettysburg/gettysburg.html\n</url>\n \t</location>\n \t<accessCondition> Personal, noncommercial use of this item is permitted in the United States of America. Please see http://digital.library.upenn.edu/women/ for other rights and restrictions that may apply to this resource.\n</accessCondition>\n<recordInfo>\n \t<recordSource>University of Pennsylvania Digital Library</recordSource>\n \t<recordOrigin> MODS auto-converted from a simple Online Books Page metadata record. For details, see http://onlinebooks.library.upenn.edu/mods.html </recordOrigin>\n \t<languageOfCataloging>\n \t \t<languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n \t</languageOfCataloging>\n</recordInfo>\n</mods>\n</modsCollection>",
1485
- "items": [
1486
- {
1487
- "itemType": "webpage",
1488
- "title": "At Gettysburg, or, What a Girl Saw and Heard of the Battle: A True Narrative",
1489
- "creators": [
1490
- {
1491
- "firstName": "Tillie Pierce",
1492
- "lastName": "Alleman",
1493
- "creatorType": "author"
1494
- }
1495
- ],
1496
- "date": "1889",
1497
- "language": "eng",
1498
- "rights": "Personal, noncommercial use of this item is permitted in the United States of America. Please see http://digital.library.upenn.edu/women/ for other rights and restrictions that may apply to this resource.",
1499
- "url": "http://digital.library.upenn.edu/women/alleman/gettysburg/gettysburg.html",
1500
- "websiteTitle": "A Celebration of Women Writers: Americana",
1501
- "attachments": [],
1502
- "tags": [
1503
- {
1504
- "tag": "Gettysburg (Pa.) -- History -- Civil War, 1861-1865"
1505
- },
1506
- {
1507
- "tag": "Gettysburg, Battle of, Gettysburg, Pa., 1863"
1508
- },
1509
- {
1510
- "tag": "United States -- History -- Civil War, 1861-1865 -- Campaigns"
1511
- }
1512
- ],
1513
- "notes": [],
1514
- "seeAlso": []
1515
- }
1516
- ]
1517
- },
1518
- {
1519
- "type": "import",
1520
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<modsCollection xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd\">\n<mods version=\"3.3\">\n <titleInfo>\n \t \t<title>Telescope Peak from Zabriskie Point</title>\n \t</titleInfo>\n \t<titleInfo type=\"alternative\" >\n \t \t<title>Telescope PK from Zabriskie Pt.</title>\n \t</titleInfo>\n \t<name type=\"personal\">\n \t \t<namePart type=\"family\">Cushman</namePart>\n \t \t<namePart type=\"given\">Charles Weever</namePart>\n \t \t<namePart type=\"date\">1896-1972</namePart>\n \t \t<role>\n \t \t \t<roleTerm type=\"code\" authority=\"marcrelator\">pht</roleTerm>\n \t \t \t<roleTerm type=\"text\" authority=\"marcrelator\">Photographer</roleTerm>\n \t \t</role>\n \t</name>\n \t<typeOfResource>still image</typeOfResource>\n \t<genre authority=\"gmgpc\">Landscape photographs</genre>\n \t<originInfo>\n \t \t<dateCreated encoding=\"w3cdtf\" keyDate=\"yes\">1955-03-22</dateCreated>\n \t \t<copyrightDate encoding=\"w3cdtf\">2003</copyrightDate>\n \t</originInfo>\n \t<physicalDescription>\n \t \t<internetMediaType>image/jpeg</internetMediaType>\n \t \t<digitalOrigin>reformatted digital</digitalOrigin>\n \t \t<note> Original 35mm slide was digitized in 2003 as a TIFF image. Display versions in JPEG format in three sizes are available.</note>\n \t \t<note>100 f 6.3 tl</note>\n \t</physicalDescription>\n \t<subject authority=\"lctgm\">\n \t \t<topic>Mountains</topic>\n \t</subject>\n \t<subject authority=\"lctgm\">\n \t \t<topic>Snow</topic>\n \t</subject>\n \t<subject>\n \t \t<topic>Telescope Peak (Inyo County, Calif.)</topic>\n \t</subject>\n \t<subject>\n \t \t<topic>Zabriskie Point (Calif.)</topic>\n \t</subject>\n \t<subject>\n \t \t<hierarchicalGeographic>\n \t \t \t<country>United States</country>\n \t \t \t<state>California</state>\n \t \t \t<county>Inyo</county>\n \t \t</hierarchicalGeographic>\n \t</subject>\n \t<relatedItem type=\"original\">\n \t \t<originInfo>\n \t \t \t<dateCreated encoding=\"w3cdtf\" keyDate=\"yes\">1955-03-22</dateCreated>\n \t \t</originInfo>\n \t \t<physicalDescription>\n \t \t \t<form authority=\"gmd\">graphic</form>\n \t \t \t<extent>1 slide : col. ; 35mm</extent>\n \t \t \t<note>Original 35mm slide was digitized in 2003 as a TIFF image. Display versions in JPEG format in three sizes are available.</note>\n \t \t</physicalDescription>\n \t \t<location>\n \t \t \t<physicalLocation displayLabel=\"Original slide\"> Indiana University, Bloomington. University Archives P07803 </physicalLocation>\n \t \t</location>\n \t</relatedItem>\n \t<relatedItem type=\"host\">\n \t \t<titleInfo type=\"uniform\" authority=\"dlfaqcoll\">\n \t \t \t<title> Indiana University Digital Library Program: Charles W. Cushman Photograph Collection</title>\n \t \t</titleInfo>\n \t</relatedItem>\n \t<identifier displayLabel=\"Cushman number\" type=\"local\">955.11</identifier>\n \t<identifier displayLabel=\"IU Archives number\" type=\"local\">P07803</identifier>\n \t<location>\n \t \t<url>http://purl.dlib.indiana.edu/iudl/archives/cushman/P07803</url>\n \t \t<url access=\"preview\">http://quod.lib.umich.edu/m/mods/thumbs/Indiana/oai.dlib.indiana.edu/ archives/cushman/oai_3Aoai.dlib.indiana.edu_3Aarchives_5Ccushman_5CP07803.png</url>\n \t</location>\n \t<accessCondition> Copyright and reproduction rights for all Charles W. Cushman photographs are held by Indiana University and administered by the University Archives, Indiana University, Bloomington, IN 47405</accessCondition>\n \t<recordInfo>\n \t<recordContentSource>Indiana University Digital Library Program</recordContentSource>\n \t<recordCreationDate encoding=\"w3cdtf\">2004-09-09</recordCreationDate>\n \t<recordIdentifier>archives/cushman/P07803</recordIdentifier>\n \t</recordInfo>\n</mods>\n\n</modsCollection>",
1521
- "items": [
1522
- {
1523
- "itemType": "artwork",
1524
- "title": "Telescope Peak from Zabriskie Point",
1525
- "creators": [
1526
- {
1527
- "firstName": "Charles Weever",
1528
- "lastName": "Cushman",
1529
- "creatorType": "artist"
1530
- }
1531
- ],
1532
- "date": "2003",
1533
- "archiveLocation": "Indiana University, Bloomington. University Archives P07803",
1534
- "rights": "Copyright and reproduction rights for all Charles W. Cushman photographs are held by Indiana University and administered by the University Archives, Indiana University, Bloomington, IN 47405",
1535
- "url": "http://purl.dlib.indiana.edu/iudl/archives/cushman/P07803",
1536
- "attachments": [],
1537
- "tags": [
1538
- {
1539
- "tag": "Mountains"
1540
- },
1541
- {
1542
- "tag": "Snow"
1543
- },
1544
- {
1545
- "tag": "Telescope Peak (Inyo County, Calif.)"
1546
- },
1547
- {
1548
- "tag": "Zabriskie Point (Calif.)"
1549
- }
1550
- ],
1551
- "notes": [],
1552
- "seeAlso": []
1553
- }
1554
- ]
1555
- },
1556
- {
1557
- "type": "import",
1558
- "input": "<modsCollection xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd\">\n<mods version=\"3.3\">\n <titleInfo>\n \t \t<title>Hiring and recruitment practices in academic libraries</title>\n \t</titleInfo>\n \t<name type=\"personal\">\n \t \t<namePart>Raschke, Gregory K.</namePart>\n \t \t<displayForm>Gregory K. Raschke</displayForm>\n \t</name>\n \t<typeOfResource>text</typeOfResource>\n \t<genre>journal article</genre>\n \t<originInfo>\n \t \t<place>\n \t \t \t<text>Baltimore, Md.</text>\n \t \t</place>\n \t \t<publisher>Johns Hopkins University Press</publisher>\n \t \t<dateIssued>2003</dateIssued>\n \t \t<issuance>monographic</issuance>\n \t</originInfo>\n \t<language authority=\"iso639-2b\">eng</language>\n \t<physicalDescription>\n \t \t<form authority=\"marcform\">print</form>\n \t \t<extent>15 p.</extent>\n \t</physicalDescription>\n \t<abstract>\nAcademic libraries need to change their recruiting and hiring procedures to stay competitive in today's changing marketplace. By taking too long to find and to hire talented professionals in a tight labor market, academic libraries are losing out on top candidates and limiting their ability to become innovative and dynamic organizations. Traditional, deliberate, and risk-averse hiring models lead to positions remaining open for long periods, opportunities lost as top prospects find other positions, and a reduction in the overall talent level of the organization. To be more competitive and effective in their recruitment and hiring processes, academic libraries must foster manageable internal solutions, look to other professions for effective hiring techniques and models, and employ innovative concepts from modern personnel management literature. </abstract>\n \t<subject>\n \t \t<topic>College librarians</topic>\n \t \t<topic>Recruiting</topic>\n \t \t<geographic>United States</geographic>\n \t</subject>\n \t<subject>\n \t \t<topic>College librarians</topic>\n \t \t<topic>Selection and appointment</topic>\n \t \t<geographic>United States</geographic>\n \t</subject>\n \t<relatedItem type=\"host\">\n \t \t<titleInfo>\n \t \t \t<title>portal: libraries and the academy</title>\n \t \t</titleInfo>\n \t \t<part>\n \t \t \t<detail type=\"volume\">\n \t \t \t \t<number>3</number>\n \t \t \t \t<caption>vol.</caption>\n \t \t \t</detail>\n \t \t \t<detail type=\"number\">\n \t \t \t \t<number>1</number>\n \t \t \t \t<caption>no.</caption>\n \t \t \t</detail>\n \t \t \t<extent unit=\"page\">\n \t \t \t \t<start>53</start>\n \t \t \t \t<end>57</end>\n \t \t \t</extent>\n \t \t \t<date>Jan. 2003</date>\n \t \t</part>\n \t \t<identifier type=\"issn\">1531-2542</identifier>\n \t</relatedItem>\n</mods>\n\n</modsCollection>",
1559
- "items": [
1560
- {
1561
- "itemType": "journalArticle",
1562
- "title": "Hiring and recruitment practices in academic libraries",
1563
- "creators": [
1564
- {
1565
- "firstName": "Gregory K.",
1566
- "lastName": "Raschke",
1567
- "creatorType": "author"
1568
- }
1569
- ],
1570
- "date": "2003",
1571
- "ISSN": "1531-2542",
1572
- "abstractNote": "Academic libraries need to change their recruiting and hiring procedures to stay competitive in today's changing marketplace. By taking too long to find and to hire talented professionals in a tight labor market, academic libraries are losing out on top candidates and limiting their ability to become innovative and dynamic organizations. Traditional, deliberate, and risk-averse hiring models lead to positions remaining open for long periods, opportunities lost as top prospects find other positions, and a reduction in the overall talent level of the organization. To be more competitive and effective in their recruitment and hiring processes, academic libraries must foster manageable internal solutions, look to other professions for effective hiring techniques and models, and employ innovative concepts from modern personnel management literature.",
1573
- "language": "eng",
1574
- "pages": "53-57",
1575
- "publicationTitle": "portal: libraries and the academy",
1576
- "volume": "3",
1577
- "attachments": [],
1578
- "tags": [
1579
- {
1580
- "tag": "College librarians"
1581
- },
1582
- {
1583
- "tag": "College librarians"
1584
- },
1585
- {
1586
- "tag": "Recruiting"
1587
- },
1588
- {
1589
- "tag": "Selection and appointment"
1590
- }
1591
- ],
1592
- "notes": [],
1593
- "seeAlso": []
1594
- }
1595
- ]
1596
- },
1597
- {
1598
- "type": "import",
1599
- "input": "<?xml version='1.0' encoding='UTF-8' ?>\n<mods xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"3.4\"\n xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"\n xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n\n <titleInfo>\n <title>Sound and fury</title>\n <subTitle>the making of the punditocracy</subTitle>\n </titleInfo>\n\n <name type=\"personal\" authorityURI=\"http://id.loc.gov/authorities/names\"\n valueURI=\"http://id.loc.gov/authorities/names/n92101908\">\n <namePart>Alterman, Eric</namePart>\n\n <role>\n <roleTerm type=\"text\">creator</roleTerm>\n </role>\n </name>\n\n <typeOfResource>text</typeOfResource>\n\n <genre authority=\"marcgt\">bibliography</genre>\n\n <originInfo>\n <place>\n <placeTerm authority=\"marccountry\" type=\"code\"\n authorityURI=\"http://id.loc.gov/vocabulary/countries\"\n valueURI=\"http://id.loc.gov/vocabulary/countries/nyu\">nyu</placeTerm>\n </place>\n <place>\n <placeTerm type=\"text\">Ithaca, N.Y</placeTerm>\n </place>\n\n <publisher>Cornell University Press</publisher>\n <dateIssued>c1999</dateIssued>\n <dateIssued encoding=\"marc\">1999</dateIssued>\n <issuance>monographic</issuance>\n </originInfo>\n\n <language>\n\n <languageTerm authority=\"iso639-2b\" type=\"code\"\n authorityURI=\"http://id.loc.gov/vocabulary/iso639-2\"\n valueURI=\"http://id.loc.gov/vocabulary/iso639-2/eng\">eng</languageTerm>\n </language>\n\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>vii, 322 p. ; 23 cm.</extent>\n </physicalDescription>\n\n <note type=\"statement of responsibility\">Eric Alterman.</note>\n <note>Includes bibliographical references (p. 291-312) and index.</note>\n\n <subject authority=\"lcsh\" authorityURI=\"http://id.loc.gov/authorities/subjects\">\n <topic valueURI=\"http://id.loc.gov/authorities/subjects/sh85070736\">Journalism</topic>\n <topic valueURI=\"http://id.loc.gov/authorities/subjects/sh00005651\">Political aspects</topic>\n <geographic valueURI=\"http://id.loc.gov/authorities/names/n78095330\">United States</geographic>\n\n </subject>\n\n <subject authority=\"lcsh\" authorityURI=\"http://id.loc.gov/authorities/subjects\">\n <geographic valueURI=\"http://id.loc.gov/authorities/names/n78095330\">United States</geographic>\n <topic valueURI=\"http://id.loc.gov/authorities/subjects/sh2002011436\">Politics and\n government</topic>\n <temporal valueURI=\"http://id.loc.gov/authorities/subjects/sh2002012476\">20th century</temporal>\n </subject>\n\n <subject authority=\"lcsh\" authorityURI=\"http://id.loc.gov/authorities/subjects\"\n valueURI=\"http://id.loc.gov/authorities/subjects/sh2008107507\">\n <topic valueURI=\"http://id.loc.gov/authorities/subjects/sh85081863\">Mass media</topic>\n <topic valueURI=\"http://id.loc.gov/authorities/subjects/sh00005651\">Political aspects</topic>\n <geographic valueURI=\"http://id.loc.gov/authorities/names/n78095330\">United States</geographic>\n </subject>\n\n <subject authority=\"lcsh\" authorityURI=\"http://id.loc.gov/authorities/subjects\"\n valueURI=\"http://id.loc.gov/authorities/subjects/sh2010115992\">\n <topic valueURI=\"http://id.loc.gov/authorities/subjects/sh85133490\">Television and\n politics</topic>\n\n <geographic valueURI=\"http://id.loc.gov/authorities/names/n78095330\">United States</geographic>\n </subject>\n\n <subject authority=\"lcsh\" authorityURI=\"http://id.loc.gov/authorities/subjects\"\n valueURI=\"http://id.loc.gov/authorities/subjects/sh2008109555\">\n <topic valueURI=\"http://id.loc.gov/authorities/subjects/sh85106514\">Press and politics</topic>\n <geographic valueURI=\"http://id.loc.gov/authorities/names/n78095330\">United States</geographic>\n </subject>\n\n <subject authority=\"lcsh\" authorityURI=\"http://id.loc.gov/authorities/subjects\">\n <topic>Talk shows</topic>\n <geographic valueURI=\"http://id.loc.gov/authorities/names/n78095330\">United States</geographic>\n </subject>\n\n <classification authority=\"lcc\">PN4888.P6 A48 1999</classification>\n <classification edition=\"21\" authority=\"ddc\">071/.3</classification>\n\n <identifier type=\"isbn\">0801486394 (pbk. : acid-free, recycled paper)</identifier>\n <identifier type=\"lccn\">99042030</identifier>\n\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource>DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">990730</recordCreationDate>\n\n <recordChangeDate encoding=\"iso8601\">20000406144503.0</recordChangeDate>\n <recordIdentifier>11761548</recordIdentifier>\n <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl (Revision\n 1.74), valueURIs and authorityURIs added by hand 20120123</recordOrigin>\n </recordInfo>\n</mods>\n",
1600
- "items": [
1601
- {
1602
- "itemType": "book",
1603
- "title": "Sound and fury: the making of the punditocracy",
1604
- "creators": [
1605
- {
1606
- "firstName": "Eric",
1607
- "lastName": "Alterman",
1608
- "creatorType": "author"
1609
- }
1610
- ],
1611
- "date": "1999",
1612
- "ISBN": "0801486394",
1613
- "callNumber": "PN4888.P6 A48 1999, 071/.3",
1614
- "language": "eng",
1615
- "numPages": "322",
1616
- "place": "Ithaca, N.Y",
1617
- "publisher": "Cornell University Press",
1618
- "attachments": [],
1619
- "tags": [
1620
- {
1621
- "tag": "Journalism"
1622
- },
1623
- {
1624
- "tag": "Mass media"
1625
- },
1626
- {
1627
- "tag": "Political aspects"
1628
- },
1629
- {
1630
- "tag": "Political aspects"
1631
- },
1632
- {
1633
- "tag": "Politics and government"
1634
- },
1635
- {
1636
- "tag": "Press and politics"
1637
- },
1638
- {
1639
- "tag": "Talk shows"
1640
- },
1641
- {
1642
- "tag": "Television and politics"
1643
- }
1644
- ],
1645
- "notes": [
1646
- {
1647
- "note": "statement of responsibility: Eric Alterman."
1648
- },
1649
- {
1650
- "note": "Includes bibliographical references (p. 291-312) and index."
1651
- }
1652
- ],
1653
- "seeAlso": []
1654
- }
1655
- ]
1656
- },
1657
- {
1658
- "type": "import",
1659
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"3.4\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n <titleInfo>\n\t\t<title>Models, Fantasies and Phantoms of Transition</title>\n\t</titleInfo>\n\t<name type=\"personal\">\n\t\t<namePart type=\"given\">Ash</namePart>\n\t\t<namePart type=\"family\">Amin</namePart>\n\n\t\t<role>\n\t\t\t<roleTerm type=\"text\">author</roleTerm>\n\t\t</role>\n\t</name>\n\t<typeOfResource>text</typeOfResource>\n\t<relatedItem type=\"host\">\n\t\t<titleInfo>\n\t\t\t<title>Post-Fordism</title>\n\n\t\t\t<subTitle>A Reader</subTitle>\n\t\t</titleInfo>\n\t\t<name type=\"personal\">\n\t\t\t<namePart type=\"given\">Ash</namePart>\n\t\t\t<namePart type=\"family\">Amin</namePart>\n\t\t\t<role>\n\t\t\t\t<roleTerm type=\"text\">editor</roleTerm>\n\n\t\t\t</role>\n\t\t</name>\n\t\t<originInfo>\n\t\t\t<dateIssued>1994</dateIssued>\n\t\t\t<publisher>Blackwell Publishers</publisher>\n\t\t\t<place>\n\t\t\t\t<placeTerm type=\"text\">Oxford</placeTerm>\n\n\t\t\t</place>\n\t\t</originInfo>\n\t\t<part>\n\t\t\t<extent unit=\"page\">\n\t\t\t\t<start>23</start>\n\t\t\t\t<end>45</end>\n\t\t\t</extent>\n\t\t</part>\n\n\t</relatedItem>\n\t<identifier>Amin1994a</identifier>\n</mods>",
1660
- "items": [
1661
- {
1662
- "itemType": "bookSection",
1663
- "title": "Models, Fantasies and Phantoms of Transition",
1664
- "creators": [
1665
- {
1666
- "firstName": "Ash",
1667
- "lastName": "Amin",
1668
- "creatorType": "author"
1669
- },
1670
- {
1671
- "firstName": "Ash",
1672
- "lastName": "Amin",
1673
- "creatorType": "editor"
1674
- }
1675
- ],
1676
- "date": "1994",
1677
- "bookTitle": "Post-Fordism: A Reader",
1678
- "pages": "23-45",
1679
- "place": "Oxford",
1680
- "publisher": "Blackwell Publishers",
1681
- "attachments": [],
1682
- "tags": [],
1683
- "notes": [],
1684
- "seeAlso": []
1685
- }
1686
- ]
1687
- },
1688
- {
1689
- "type": "import",
1690
- "input": "<mods xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"3.4\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n \t<titleInfo>\n\t\t\t<nonSort>The</nonSort>\n\t\t\t<title>Urban Question as a Scale Question</title>\n\t\t\t<subTitle>Reflections on Henri Lefebre, Urban Theory and the Politics of Scale</subTitle>\n\t\t</titleInfo>\n\t\t<name type=\"personal\">\n\t\t\t<namePart type=\"given\">Neil</namePart>\n\n\t\t\t<namePart type=\"family\">Brenner</namePart>\n\t\t\t<role>\n\t\t\t\t<roleTerm type=\"text\">author</roleTerm>\n\t\t\t</role>\n\t\t</name>\n\t\t<typeOfResource>text</typeOfResource>\n\t\t<genre>article</genre>\n\n\t\t<originInfo>\n\t\t\t<issuance>monographic</issuance>\n\t\t</originInfo>\n\t\t<relatedItem type=\"host\">\n\t\t\t<titleInfo>\n\t\t\t\t<title>International Journal of Urban and Regional Research</title>\n\t\t\t</titleInfo>\n\t\t\t<originInfo>\n\n\t\t\t<issuance>continuing</issuance>\n\t\t</originInfo>\n\t\t\t<part>\n\t\t\t\t<detail type=\"volume\">\n\t\t\t\t\t<number>24</number>\n\t\t\t\t</detail>\n\t\t\t\t<detail type=\"issue\">\n\t\t\t\t\t<number>2</number>\n\n\t\t\t\t\t<caption>no.</caption>\n\t\t\t\t</detail>\n\t\t\t\t<extent unit=\"pages\">\n\t\t\t\t\t<start>361</start>\n\t\t\t\t\t<end>378</end>\n\t\t\t\t</extent>\n\t\t\t\t<date>2000</date>\n\n\t\t\t</part>\n\t\t</relatedItem>\n\t\t<identifier>BrennerN2000a</identifier>\n\t</mods>",
1691
- "items": [
1692
- {
1693
- "itemType": "journalArticle",
1694
- "title": "The Urban Question as a Scale Question: Reflections on Henri Lefebre, Urban Theory and the Politics of Scale",
1695
- "creators": [
1696
- {
1697
- "firstName": "Neil",
1698
- "lastName": "Brenner",
1699
- "creatorType": "author"
1700
- }
1701
- ],
1702
- "date": "2000",
1703
- "issue": "2",
1704
- "pages": "361-378",
1705
- "publicationTitle": "International Journal of Urban and Regional Research",
1706
- "volume": "24",
1707
- "attachments": [],
1708
- "tags": [],
1709
- "notes": [],
1710
- "seeAlso": []
1711
- }
1712
- ]
1713
- },
1714
- {
1715
- "type": "import",
1716
- "input": "<mods xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"3.4\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n \t<titleInfo>\n\t\t\t<title>Fifth-Grade Boys' Decisions about Participation in Sports Activities</title>\n\t\t</titleInfo>\n\t\t<name type=\"personal\">\n\t\t\t<namePart type=\"family\">Conley</namePart>\n\t\t\t<namePart type=\"given\">Alice</namePart>\n\t\t\t<role>\n\n\t\t\t\t<roleTerm type=\"text\">author</roleTerm>\n\t\t\t</role>\n\t\t</name>\n\t\t<typeOfResource>text</typeOfResource>\n\t\t<relatedItem type=\"host\">\n\t\t\t<titleInfo>\n\t\t\t\t<title>Non-subject-matter Outcomes of Schooling</title>\n\n\t\t\t</titleInfo>\n\t\t\t<name>\n\t\t\t\t<namePart>Good, Thomas L.</namePart>\n\t\t\t\t<role>\n\t\t\t\t\t<roleTerm>editor</roleTerm>\n\t\t\t\t</role>\n\t\t\t</name>\n\t\t\t<note type=\"statement of responsibility\">ed. Thomas L. Good</note>\n\n\t\t\t<originInfo>\n\t\t\t\t<issuance>continuing</issuance>\n\t\t\t</originInfo>\n\t\t\t<part>\n\t\t\t\t<detail type=\"title\">\n\t\t\t\t\t<title>Special issue, Elementary School Journal</title>\n\t\t\t\t</detail>\n\t\t\t\t<detail type=\"volume\">\n\n\t\t\t\t\t<number>99</number>\n\t\t\t\t</detail>\n\t\t\t\t<detail type=\"issue\">\n\t\t\t\t\t<number>5</number>\n\t\t\t\t\t<caption>no.</caption>\n\t\t\t\t</detail>\n\t\t\t\t<extent unit=\"pages\">\n\n\t\t\t\t\t<start>131</start>\n\t\t\t\t\t<end>146</end>\n\t\t\t\t</extent>\n\t\t\t\t<date>1999</date>\n\t\t\t</part>\n\t\t</relatedItem>\n\t</mods>",
1717
- "items": [
1718
- {
1719
- "itemType": "journalArticle",
1720
- "title": "Fifth-Grade Boys' Decisions about Participation in Sports Activities",
1721
- "creators": [
1722
- {
1723
- "firstName": "Alice",
1724
- "lastName": "Conley",
1725
- "creatorType": "author"
1726
- },
1727
- {
1728
- "lastName": "Good, Thomas L.",
1729
- "fieldMode": 1,
1730
- "creatorType": "editor"
1731
- }
1732
- ],
1733
- "date": "1999",
1734
- "issue": "5",
1735
- "pages": "131-146",
1736
- "publicationTitle": "Non-subject-matter Outcomes of Schooling",
1737
- "volume": "99",
1738
- "attachments": [],
1739
- "tags": [],
1740
- "notes": [],
1741
- "seeAlso": []
1742
- }
1743
- ]
1744
- },
1745
- {
1746
- "type": "import",
1747
- "input": "<mods xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"3.4\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n <titleInfo>\n\t\t<title>2700 MHz observations of 4c radio sources in the declination zone +4 to -4</title>\n\t</titleInfo>\n\t<name type=\"personal\">\n\t\t<namePart type=\"family\">Wall</namePart>\n\t\t<namePart type=\"given\">J. V.</namePart>\n\t\t<role>\n\n\t\t\t<roleTerm type=\"text\">author</roleTerm>\n\t\t</role>\n\t</name>\n\t<typeOfResource>text</typeOfResource>\n\t<relatedItem type=\"host\">\n\t<titleInfo>\n\t\t<title>Australian Journal of Physics and Astronphysics</title>\n\n\t</titleInfo>\n\t\t<titleInfo type=\"abbreviated\">\n\t\t\t<title>Australian J. Phys. Astronphys.</title>\n\t\t</titleInfo>\n\t\t<originInfo>\n\t\t\t<issuance>continuing</issuance>\n\t\t</originInfo>\n\t\t<genre>academic journal</genre>\n\n\t\t<part>\n\t\t\t<detail type=\"supplement\">\n\t\t\t\t<caption>Suppl. no.</caption>\n\t\t\t\t<number>20</number>\n\t\t\t</detail>\n\t\t\t<date>1971</date>\n\t\t</part>\n\n\t</relatedItem>\n</mods>",
1748
- "items": [
1749
- {
1750
- "itemType": "journalArticle",
1751
- "title": "2700 MHz observations of 4c radio sources in the declination zone +4 to -4",
1752
- "creators": [
1753
- {
1754
- "firstName": "J. V.",
1755
- "lastName": "Wall",
1756
- "creatorType": "author"
1757
- }
1758
- ],
1759
- "date": "1971",
1760
- "journalAbbreviation": "Australian J. Phys. Astronphys.",
1761
- "publicationTitle": "Australian Journal of Physics and Astronphysics",
1762
- "attachments": [],
1763
- "tags": [],
1764
- "notes": [],
1765
- "seeAlso": []
1766
- }
1767
- ]
1768
- },
1769
- {
1770
- "type": "import",
1771
- "input": "<mods xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"3.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-0.xsd\">\n \t<titleInfo>\n\t\t\t<title>Emergence and Dissolvence in the Self-Organization of Complex Systems</title>\n\t\t</titleInfo>\n\t\t<name type=\"personal\">\n\t\t\t<namePart type=\"family\">Testa</namePart>\n\t\t\t<namePart type=\"given\">Bernard</namePart>\n\t\t\t<role>\n\n\t\t\t\t<roleTerm>author</roleTerm>\n\t\t\t</role>\n\t\t</name>\n\t\t<name type=\"personal\">\n\t\t\t<namePart type=\"family\">Kier</namePart>\n\t\t\t<namePart type=\"given\">Lamont B.</namePart>\n\t\t\t<role>\n\n\t\t\t\t<roleTerm>author</roleTerm>\n\t\t\t</role>\n\t\t</name>\n\t\t<typeOfResource>text</typeOfResource>\n\t\t<identifier type=\"uri\">http://www.mdpi.org/entropy/papers/e2010001.pdf</identifier>\n\t\t<relatedItem type=\"host\">\n\t\t\t<titleInfo>\n\n\t\t\t\t<title>Entropy</title>\n\t\t\t</titleInfo>\n\t\t\t<originInfo>\n\t\t\t\t<issuance>continuing</issuance>\n\t\t\t</originInfo>\n\t\t\t<part>\n\t\t\t\t<detail type=\"volume\">\n\t\t\t\t\t<number>2</number>\n\n\t\t\t\t</detail>\n\t\t\t\t<detail type=\"issue\">\n\t\t\t\t\t<caption>no.</caption>\n\t\t\t\t\t<number>1</number>\n\t\t\t\t</detail>\n\t\t\t\t<extent unit=\"pages\">\n\t\t\t\t\t<start>17</start>\n\n\t\t\t\t\t<end>17</end>\n\t\t\t\t</extent>\n\t\t\t\t<date>2000</date>\n\t\t\t</part>\n\t\t</relatedItem>\n\t</mods>",
1772
- "items": [
1773
- {
1774
- "itemType": "journalArticle",
1775
- "title": "Emergence and Dissolvence in the Self-Organization of Complex Systems",
1776
- "creators": [
1777
- {
1778
- "firstName": "Bernard",
1779
- "lastName": "Testa",
1780
- "creatorType": "author"
1781
- },
1782
- {
1783
- "firstName": "Lamont B.",
1784
- "lastName": "Kier",
1785
- "creatorType": "author"
1786
- }
1787
- ],
1788
- "date": "2000",
1789
- "issue": "1",
1790
- "pages": "17",
1791
- "publicationTitle": "Entropy",
1792
- "volume": "2",
1793
- "attachments": [],
1794
- "tags": [],
1795
- "notes": [],
1796
- "seeAlso": []
1797
- }
1798
- ]
1799
- },
1800
- {
1801
- "type": "import",
1802
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"3.4\"\n xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"\n\txsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n\n\t<titleInfo>\n\t\t<title>3 Viennese arias :</title>\n\t\t<subTitle>for soprano, obbligato clarinet in B flat, and piano</subTitle>\n\t</titleInfo>\n\n\t<name type=\"personal\" authorityURI=\"http://id.loc.gov/authorities/names\"\n\t\tvalueURI=\"http://id.loc.gov/authorities/names/n81100426\">\n\t\t<namePart>Lawson, Colin (Colin James)</namePart>\n\n\t</name>\n\n\t<typeOfResource>notated music</typeOfResource>\n\n\t<originInfo>\n\t\t<place>\n\t\t\t<placeTerm authority=\"marccountry\" type=\"code\"\n\t\t\t\tauthorityURI=\"http://id.loc.gov/vocabulary/countries\"\n\t\t\t\tvalueURI=\"http://id.loc.gov/vocabulary/countries/enk\">enk</placeTerm>\n\t\t</place>\n\t\t<place>\n\n\t\t\t<placeTerm type=\"text\">London</placeTerm>\n\t\t</place>\n\t\t<publisher>Nova Music</publisher>\n\t\t<dateIssued>c1984</dateIssued>\n\t\t<dateIssued encoding=\"marc\">1984</dateIssued>\n\t\t<issuance>monographic</issuance>\n\n\t</originInfo>\n\n\t<language>\n\t\t<languageTerm authority=\"iso639-2b\" type=\"code\"\n\t\t\tauthorityURI=\"http://id.loc.gov/vocabulary/iso639-2\"\n\t\t\tvalueURI=\"http://id.loc.gov/vocabulary/iso639-2/ita\">ita</languageTerm>\n\t</language>\n\t<language objectPart=\"libretto\">\n\t\t<languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n\t</language>\n\n\t<physicalDescription>\n\t\t<form authority=\"marcform\">print</form>\n\t\t<extent>1 score (12 p.) + 2 parts ; 31 cm.</extent>\n\t</physicalDescription>\n\n\t<tableOfContents>Tutto in pianto il cor struggete / Emperor Joseph I -- E sempre inquieto quel\n\t\tcore infelice : from Endimione / G. Bononcini -- L'adorata genitrice : from Muzio [i.e.\n\t\tMutio] Scevola / G. Bononcini.</tableOfContents>\n\n\t<note type=\"statement of responsibility\">G.B. Bononcini and Emperor Joseph I ; edited by Colin\n\t\tLawson.</note>\n\n\t<note>Opera excerpts.</note>\n\t<note>Acc. arr. for piano; obbligato for the 2nd-3rd excerpts originally for chalumeau.</note>\n\t<note>Italian words.</note>\n\t<note>Cover title.</note>\n\t<note>The 1st excerpt composed for inclusion in M.A. Ziani's Chilonida.</note>\n\t<note>Texts with English translations on cover p. [2].</note>\n\n\t<subject authority=\"lcsh\" authorityURI=\"http://id.loc.gov/authorities/subjects\"\n\t\tvalueURI=\"http://id.loc.gov/authorities/subjects/sh2008108658\">\n\t\t<topic valueURI=\"http://id.loc.gov/authorities/subjects/sh85094914\">Operas</topic>\n\t\t<genre valueURI=\"http://id.loc.gov/authorities/subjects/sh99001548\">Excerpts,\n\t\t\tArranged</genre>\n\t\t<genre valueURI=\"http://id.loc.gov/authorities/subjects/sh99001780\">Scores and parts</genre>\n\t</subject>\n\n\t<subject authority=\"lcsh\" authorityURI=\"http://id.loc.gov/authorities/subjects\">\n\n\t\t<topic valueURI=\"http://id.loc.gov/authorities/subjects/sh85125142\">Songs (High voice) with\n\t\t\tinstrumental ensemble</topic>\n\t\t<genre valueURI=\"http://id.loc.gov/authorities/subjects/sh99001780\">Scores and parts</genre>\n\t</subject>\n\n\t<classification authority=\"lcc\">M1506 .A14 1984</classification>\n\n\t<relatedItem type=\"series\">\n\t\t<titleInfo>\n\n\t\t\t<title>Music for voice and instrument</title>\n\t\t</titleInfo>\n\t</relatedItem>\n\n\t<relatedItem type=\"constituent\">\n\t\t<titleInfo type=\"uniform\" authorityURI=\"http://id.loc.gov/authorities/names\"\n\t\t\tvalueURI=\"http://id.loc.gov/authorities/names/no97083914\">\n\t\t\t<title>Tutto in pianto il cor struggete</title>\n\t\t</titleInfo>\n\n\t\t<name type=\"personal\" authorityURI=\"http://id.loc.gov/authorities/names\"\n\t\t\tvalueURI=\"http://id.loc.gov/authorities/names/n79055650\">\n\t\t\t<namePart>Joseph I, Holy Roman Emperor,</namePart>\n\t\t\t<namePart type=\"date\">1678-1711</namePart>\n\t\t</name>\n\t</relatedItem>\n\n\t<relatedItem type=\"constituent\">\n\t\t<titleInfo type=\"uniform\" authorityURI=\"http://id.loc.gov/authorities/names\"\n\t\t\tvalueURI=\"http://id.loc.gov/authorities/names/n85337311\">\n\n\t\t\t<title>Endimione.</title>\n\t\t\t<partName>E sempre inquieto quel core infelice.</partName>\n\t\t</titleInfo>\n\t\t<name type=\"personal\" authorityURI=\"http://id.loc.gov/authorities/names\"\n\t\t\tvalueURI=\"http://id.loc.gov/authorities/names/n81005197\">\n\t\t\t<namePart>Bononcini, Giovanni,</namePart>\n\t\t\t<namePart type=\"date\">1670-1747</namePart>\n\t\t</name>\n\n\t</relatedItem>\n\n\t<relatedItem type=\"constituent\">\n\t\t<titleInfo type=\"uniform\" authorityURI=\"http://id.loc.gov/authorities/names\"\n\t\t\tvalueURI=\"http://id.loc.gov/authorities/names/n85337312\">\n\t\t\t<title>Mutio Scevola.</title>\n\t\t\t<partName>Adorata genitrice.</partName>\n\t\t</titleInfo>\n\t\t<name type=\"personal\" authorityURI=\"http://id.loc.gov/authorities/names\"\n\t\t\tvalueURI=\"http://id.loc.gov/authorities/names/n81005197\">\n\n\t\t\t<namePart>Bononcini, Giovanni,</namePart>\n\t\t\t<namePart type=\"date\">1670-1747</namePart>\n\t\t</name>\n\t</relatedItem>\n\n\t<relatedItem type=\"constituent\">\n\t\t<titleInfo>\n\t\t\t<title>Three Viennese arias.</title>\n\n\t\t</titleInfo>\n\t</relatedItem>\n\n\t<relatedItem type=\"constituent\">\n\t\t<titleInfo>\n\t\t\t<title>Viennese arias.</title>\n\t\t</titleInfo>\n\t</relatedItem>\n\n\t<recordInfo>\n\t\t<descriptionStandard>aacr</descriptionStandard>\n\t\t<recordContentSource>DLC</recordContentSource>\n\t\t<recordCreationDate encoding=\"marc\">850813</recordCreationDate>\n\t\t<recordChangeDate encoding=\"iso8601\">19950601141653.9</recordChangeDate>\n\t\t<recordIdentifier>5594130</recordIdentifier>\n\n\t\t<recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t(Revision 1.74), valueURIs and authority URIs added by hand 20120124</recordOrigin>\n\t</recordInfo>\n</mods>",
1803
- "items": [
1804
- {
1805
- "itemType": "document",
1806
- "title": "3 Viennese arias : for soprano, obbligato clarinet in B flat, and piano",
1807
- "creators": [
1808
- {
1809
- "firstName": "Colin (Colin James)",
1810
- "lastName": "Lawson",
1811
- "creatorType": "author"
1812
- }
1813
- ],
1814
- "date": "1984",
1815
- "callNumber": "M1506 .A14 1984",
1816
- "language": "ita; eng",
1817
- "publisher": "Nova Music",
1818
- "attachments": [],
1819
- "tags": [
1820
- {
1821
- "tag": "Operas"
1822
- },
1823
- {
1824
- "tag": "Songs (High voice) with instrumental ensemble"
1825
- }
1826
- ],
1827
- "notes": [
1828
- {
1829
- "note": "statement of responsibility: G.B. Bononcini and Emperor Joseph I ; edited by Colin\n\t\tLawson."
1830
- },
1831
- {
1832
- "note": "Opera excerpts."
1833
- },
1834
- {
1835
- "note": "Acc. arr. for piano; obbligato for the 2nd-3rd excerpts originally for chalumeau."
1836
- },
1837
- {
1838
- "note": "Italian words."
1839
- },
1840
- {
1841
- "note": "Cover title."
1842
- },
1843
- {
1844
- "note": "The 1st excerpt composed for inclusion in M.A. Ziani's Chilonida."
1845
- },
1846
- {
1847
- "note": "Texts with English translations on cover p. [2]."
1848
- },
1849
- {
1850
- "note": "Table of Contents: Tutto in pianto il cor struggete / Emperor Joseph I -- E sempre inquieto quel\n\t\tcore infelice : from Endimione / G. Bononcini -- L'adorata genitrice : from Muzio [i.e.\n\t\tMutio] Scevola / G. Bononcini."
1851
- }
1852
- ],
1853
- "seeAlso": []
1854
- }
1855
- ]
1856
- },
1857
- {
1858
- "type": "import",
1859
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods xmlns=\"http://www.loc.gov/mods/v3\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\" version=\"3.4\">\n <titleInfo>\n <title>Directory of computer assisted research in musicology</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Computer assisted research in musicology</title>\n </titleInfo>\n <name type=\"corporate\">\n <namePart>Center for Computer Assisted Research in the Humanities</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n <genre authority=\"marcgt\">directory</genre>\n <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">cau</placeTerm>\n </place>\n <place>\n <placeTerm type=\"text\">Menlo Park, CA</placeTerm>\n </place>\n <publisher>Center for Computer Assisted Research in the Humanities</publisher>\n <dateIssued>-1988</dateIssued>\n <dateIssued point=\"start\" encoding=\"marc\">1985</dateIssued>\n <dateIssued point=\"end\" encoding=\"marc\">1988</dateIssued>\n <issuance>serial</issuance>\n <frequency authority=\"marcfrequency\">Annual</frequency>\n <frequency>Annual</frequency>\n </originInfo>\n <language>\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>4 v. : ill., music ; 26 cm.</extent>\n </physicalDescription>\n <note type=\"date/sequential designation\">Began in 1985.</note>\n <note type=\"date/sequential designation\">-1988.</note>\n <note>Description based on: 1986.</note>\n <subject authority=\"lcsh\">\n <topic>Musicology</topic>\n <topic>Data processing</topic>\n <genre>Periodicals</genre>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Music</topic>\n <genre>Bibliography</genre>\n <genre>Periodicals</genre>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Musicians</topic>\n <genre>Directories</genre>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Musicologists</topic>\n <genre>Directories</genre>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Musicology</topic>\n <topic>Data processing</topic>\n <genre>Directories</genre>\n </subject>\n <classification authority=\"lcc\">ML73 .D57</classification>\n <classification authority=\"ddc\" edition=\"19\">780/.01/02584</classification>\n <relatedItem type=\"succeeding\">\n <titleInfo>\n <title>Computing in musicology</title>\n </titleInfo>\n <identifier type=\"issn\">1057-9478</identifier>\n <identifier type=\"local\">(DLC) 91656596</identifier>\n <identifier type=\"local\">(OCoLC)21202412</identifier>\n </relatedItem>\n <identifier type=\"lccn\">86646620</identifier>\n <identifier invalid=\"yes\" type=\"lccn\">86101572</identifier>\n <identifier type=\"oclc\">ocm14913926</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">861202</recordCreationDate>\n <recordChangeDate encoding=\"iso8601\">20120109163740.0</recordChangeDate>\n <recordIdentifier>11315879</recordIdentifier>\n <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n \t\t(Revision 1.76 2012/02/01)</recordOrigin>\n </recordInfo>\n</mods>",
1860
- "items": [
1861
- {
1862
- "itemType": "document",
1863
- "title": "Directory of computer assisted research in musicology",
1864
- "creators": [
1865
- {
1866
- "lastName": "Center for Computer Assisted Research in the Humanities",
1867
- "fieldMode": 1,
1868
- "creatorType": "author"
1869
- }
1870
- ],
1871
- "date": "1985",
1872
- "callNumber": "ML73 .D57, 780/.01/02584",
1873
- "language": "eng",
1874
- "publisher": "Center for Computer Assisted Research in the Humanities",
1875
- "attachments": [],
1876
- "tags": [
1877
- {
1878
- "tag": "Data processing"
1879
- },
1880
- {
1881
- "tag": "Data processing"
1882
- },
1883
- {
1884
- "tag": "Music"
1885
- },
1886
- {
1887
- "tag": "Musicians"
1888
- },
1889
- {
1890
- "tag": "Musicologists"
1891
- },
1892
- {
1893
- "tag": "Musicology"
1894
- },
1895
- {
1896
- "tag": "Musicology"
1897
- }
1898
- ],
1899
- "notes": [
1900
- {
1901
- "note": "date/sequential designation: Began in 1985."
1902
- },
1903
- {
1904
- "note": "date/sequential designation: -1988."
1905
- },
1906
- {
1907
- "note": "Description based on: 1986."
1908
- }
1909
- ],
1910
- "seeAlso": []
1911
- }
1912
- ]
1913
- },
1914
- {
1915
- "type": "import",
1916
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods xmlns=\"http://www.loc.gov/mods/v3\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\" version=\"3.4\">\n <titleInfo>\n <nonSort>The </nonSort>\n <title>American ballroom companion</title>\n <subTitle>dance instruction manuals, ca. 1600-1920</subTitle>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Dance instruction manuals, ca. 1600-1920</title>\n </titleInfo>\n <name type=\"corporate\">\n <namePart>Library of Congress</namePart>\n <namePart>Music Division.</namePart>\n </name>\n <name type=\"corporate\">\n <namePart>Library of Congress</namePart>\n <namePart>National Digital Library Program.</namePart>\n </name>\n <typeOfResource>software, multimedia</typeOfResource>\n <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">dcu</placeTerm>\n </place>\n <place>\n <placeTerm type=\"text\">Washington, D.C</placeTerm>\n </place>\n <publisher>Library of Congress</publisher>\n <dateIssued>1998-]</dateIssued>\n <dateIssued point=\"start\" encoding=\"marc\">1998</dateIssued>\n <dateIssued point=\"end\" encoding=\"marc\">9999</dateIssued>\n <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n </language>\n <physicalDescription>\n <form authority=\"marcform\">electronic</form>\n <form authority=\"gmd\">electronic resource</form>\n <form>Computer data and programs.</form>\n </physicalDescription>\n <abstract>Presents over two hundred social dance manuals, pocket-sized books with diagrams used by itinerant dancing masters to teach the American gentry the latest dance steps. Includes anti-dance manuals as well as treatises on etiquette. Offered as part of the American Memory online resource compiled by the National Digital Library Program of the Library of Congress.</abstract>\n <note>Title from title screen dated Mar. 23, 1998.</note>\n <note type=\"system details\">System requirements: World Wide Web (WWW) browser software.</note>\n <note type=\"system details\">Mode of access: Internet.</note>\n <subject>\n <geographicCode authority=\"marcgac\">n-us---</geographicCode>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Ballroom dancing</topic>\n <geographic>United States</geographic>\n </subject>\n <classification authority=\"lcc\">GV1623</classification>\n <classification authority=\"ddc\" edition=\"13\">793.3</classification>\n <location>\n <url displayLabel=\"electronic resource\" usage=\"primary display\">http://hdl.loc.gov/loc.music/collmus.mu000010</url>\n </location>\n <identifier type=\"lccn\">98801326</identifier>\n <identifier type=\"hdl\">hdl:loc.music/collmus.mu000010</identifier>\n <identifier type=\"hdl\">hdl:loc.music/collmus.mu000010</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">980323</recordCreationDate>\n <recordChangeDate encoding=\"iso8601\">20060131154904.0</recordChangeDate>\n <recordIdentifier>5004836</recordIdentifier>\n <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n \t\t(Revision 1.76 2012/02/01)</recordOrigin>\n </recordInfo>\n</mods>",
1917
- "items": [
1918
- {
1919
- "itemType": "computerProgram",
1920
- "title": "The American ballroom companion: dance instruction manuals, ca. 1600-1920",
1921
- "creators": [
1922
- {
1923
- "lastName": "Library of Congress: Music Division.",
1924
- "fieldMode": 1,
1925
- "creatorType": "programmer"
1926
- },
1927
- {
1928
- "lastName": "Library of Congress: National Digital Library Program.",
1929
- "fieldMode": 1,
1930
- "creatorType": "programmer"
1931
- }
1932
- ],
1933
- "date": "1998",
1934
- "abstractNote": "Presents over two hundred social dance manuals, pocket-sized books with diagrams used by itinerant dancing masters to teach the American gentry the latest dance steps. Includes anti-dance manuals as well as treatises on etiquette. Offered as part of the American Memory online resource compiled by the National Digital Library Program of the Library of Congress.",
1935
- "callNumber": "GV1623, 793.3",
1936
- "company": "Library of Congress",
1937
- "place": "Washington, D.C",
1938
- "url": "http://hdl.loc.gov/loc.music/collmus.mu000010",
1939
- "attachments": [],
1940
- "tags": [
1941
- {
1942
- "tag": "Ballroom dancing"
1943
- }
1944
- ],
1945
- "notes": [
1946
- {
1947
- "note": "Title from title screen dated Mar. 23, 1998."
1948
- },
1949
- {
1950
- "note": "system details: System requirements: World Wide Web (WWW) browser software."
1951
- },
1952
- {
1953
- "note": "system details: Mode of access: Internet."
1954
- }
1955
- ],
1956
- "seeAlso": []
1957
- }
1958
- ]
1959
- },
1960
- {
1961
- "type": "import",
1962
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods xmlns=\"http://www.loc.gov/mods/v3\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\" version=\"3.4\">\n <titleInfo>\n <title>Papers from the First International Workshop on Plasma-Based Ion Implantation</title>\n <subTitle>4-6 August 1993, University of Wisconsin--Madison, Madison, Wisconsin</subTitle>\n </titleInfo>\n <name type=\"conference\">\n <namePart>International Workshop on Plasma-Based Ion Implantation 1993 : University of Wisconsin--Madison)</namePart>\n </name>\n <name type=\"personal\">\n <namePart>Conrad, John R.</namePart>\n </name>\n <name type=\"personal\">\n <namePart>Sridharan, Kumar.</namePart>\n </name>\n <name type=\"corporate\">\n <namePart>Applied Science and Technology (ASTeX), Inc</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n <genre authority=\"marcgt\">bibliography</genre>\n <genre authority=\"marcgt\">conference publication</genre>\n <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">nyu</placeTerm>\n </place>\n <place>\n <placeTerm type=\"text\">New York</placeTerm>\n </place>\n <publisher>Published for the American Vacuum Society by the American Institute of Physics</publisher>\n <dateIssued>1994</dateIssued>\n <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>p. 813-998 : ill. ; 30 cm.</extent>\n </physicalDescription>\n <note>\"Published in both 1994 March/April issue of the Journal of vacuum science and technology B, vol. 12, no. 2\"--T.p. verso.</note>\n <note type=\"bibliography\">Includes bibliographical references and index.</note>\n <subject authority=\"lcsh\">\n <topic>Ion implantation</topic>\n <topic>Congresses</topic>\n </subject>\n <classification authority=\"lcc\">TS695.25 .I57 1993</classification>\n <classification authority=\"ddc\" edition=\"21\">621.3815/2</classification>\n <relatedItem type=\"host\">\n <titleInfo>\n <title>Journal of vacuum science &amp; technology. B, Microelectronics and nanometer structures processing, measurement and phenomena</title>\n </titleInfo>\n <identifier type=\"issn\">1071-1023</identifier>\n <identifier type=\"local\">(OCoLC)23276603</identifier>\n <identifier type=\"local\">(DLC)sn 92021098</identifier>\n <part>\n <text>2nd ser., v. 12, no. 2</text>\n </part>\n </relatedItem>\n <identifier type=\"isbn\">1563963442</identifier>\n <identifier type=\"lccn\">97129132</identifier>\n <identifier type=\"oclc\">35547175</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">940504</recordCreationDate>\n <recordChangeDate encoding=\"iso8601\">19970618142736.9</recordChangeDate>\n <recordIdentifier>4968605</recordIdentifier>\n <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n \t\t(Revision 1.76 2012/02/01)</recordOrigin>\n </recordInfo>\n</mods>",
1963
- "items": [
1964
- {
1965
- "itemType": "book",
1966
- "title": "Papers from the First International Workshop on Plasma-Based Ion Implantation: 4-6 August 1993, University of Wisconsin--Madison, Madison, Wisconsin",
1967
- "creators": [
1968
- {
1969
- "lastName": "International Workshop on Plasma-Based Ion Implantation 1993 : University of Wisconsin--Madison)",
1970
- "fieldMode": 1,
1971
- "creatorType": "author"
1972
- },
1973
- {
1974
- "firstName": "John R.",
1975
- "lastName": "Conrad",
1976
- "creatorType": "author"
1977
- },
1978
- {
1979
- "firstName": "Kumar",
1980
- "lastName": "Sridharan",
1981
- "creatorType": "author"
1982
- },
1983
- {
1984
- "lastName": "Applied Science and Technology (ASTeX), Inc",
1985
- "fieldMode": 1,
1986
- "creatorType": "author"
1987
- }
1988
- ],
1989
- "date": "1994",
1990
- "ISBN": "1563963442",
1991
- "callNumber": "TS695.25 .I57 1993, 621.3815/2",
1992
- "language": "eng",
1993
- "place": "New York",
1994
- "publisher": "Published for the American Vacuum Society by the American Institute of Physics",
1995
- "attachments": [],
1996
- "tags": [
1997
- {
1998
- "tag": "Congresses"
1999
- },
2000
- {
2001
- "tag": "Ion implantation"
2002
- }
2003
- ],
2004
- "notes": [
2005
- {
2006
- "note": "\"Published in both 1994 March/April issue of the Journal of vacuum science and technology B, vol. 12, no. 2\"--T.p. verso."
2007
- },
2008
- {
2009
- "note": "bibliography: Includes bibliographical references and index."
2010
- }
2011
- ],
2012
- "seeAlso": []
2013
- }
2014
- ]
2015
- },
2016
- {
2017
- "type": "import",
2018
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods xmlns=\"http://www.loc.gov/mods/v3\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\" version=\"3.4\">\n <titleInfo>\n <title>Campbell County, Wyoming</title>\n </titleInfo>\n <name type=\"corporate\">\n <namePart>Campbell County Chamber of Commerce</namePart>\n </name>\n <typeOfResource>cartographic</typeOfResource>\n <genre authority=\"marcgt\">map</genre>\n <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">wyu</placeTerm>\n </place>\n <place>\n <placeTerm type=\"text\">Gillette, Wyo.]</placeTerm>\n </place>\n <publisher>Campbell County Chamber of Commerce</publisher>\n <dateIssued>[1982?]</dateIssued>\n <dateIssued encoding=\"marc\">1982</dateIssued>\n <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n </language>\n <physicalDescription>\n <extent>1 map ; 33 x 15 cm.</extent>\n </physicalDescription>\n <note>In lower right corner: Kintzels-Casper.</note>\n <subject>\n <cartographics>\n <scale>Scale [ca. 1:510,000].</scale>\n </cartographics>\n </subject>\n <subject authority=\"lcsh\">\n <geographic>Campbell County (Wyo.)</geographic>\n <topic>Maps</topic>\n </subject>\n <classification authority=\"lcc\">G4263.C3 1982 .C3</classification>\n <identifier type=\"lccn\">83691515</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">830222</recordCreationDate>\n <recordChangeDate encoding=\"iso8601\">19830426000000.0</recordChangeDate>\n <recordIdentifier>5466714</recordIdentifier>\n <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n \t\t(Revision 1.76 2012/02/01)</recordOrigin>\n </recordInfo>\n</mods>",
2019
- "items": [
2020
- {
2021
- "itemType": "map",
2022
- "title": "Campbell County, Wyoming",
2023
- "creators": [
2024
- {
2025
- "lastName": "Campbell County Chamber of Commerce",
2026
- "fieldMode": 1,
2027
- "creatorType": "cartographer"
2028
- }
2029
- ],
2030
- "date": "1982",
2031
- "callNumber": "G4263.C3 1982 .C3",
2032
- "language": "eng",
2033
- "place": "Gillette, Wyo.]",
2034
- "publisher": "Campbell County Chamber of Commerce",
2035
- "scale": "1:510,000",
2036
- "attachments": [],
2037
- "tags": [
2038
- {
2039
- "tag": "Maps"
2040
- }
2041
- ],
2042
- "notes": [
2043
- {
2044
- "note": "In lower right corner: Kintzels-Casper."
2045
- }
2046
- ],
2047
- "seeAlso": []
2048
- }
2049
- ]
2050
- },
2051
- {
2052
- "type": "import",
2053
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods xmlns=\"http://www.loc.gov/mods/v3\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\" version=\"3.4\">\n <titleInfo>\n <title>3 Viennese arias</title>\n <subTitle>for soprano, obbligato clarinet in B flat, and piano</subTitle>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Three Viennese arias</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Viennese arias</title>\n </titleInfo>\n <name type=\"personal\">\n <namePart>Lawson, Colin (Colin James)</namePart>\n </name>\n <name type=\"personal\">\n <namePart>Joseph</namePart>\n <namePart type=\"termsOfAddress\">I, Holy Roman Emperor</namePart>\n <namePart type=\"date\">1678-1711</namePart>\n </name>\n <name type=\"personal\">\n <namePart>Bononcini, Giovanni</namePart>\n <namePart type=\"date\">1670-1747</namePart>\n </name>\n <name type=\"personal\">\n <namePart>Bononcini, Giovanni</namePart>\n <namePart type=\"date\">1670-1747</namePart>\n </name>\n <typeOfResource>notated music</typeOfResource>\n <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">enk</placeTerm>\n </place>\n <place>\n <placeTerm type=\"text\">London</placeTerm>\n </place>\n <publisher>Nova Music</publisher>\n <dateIssued>c1984</dateIssued>\n <dateIssued encoding=\"marc\">1984</dateIssued>\n <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm type=\"code\" authority=\"iso639-2b\">ita</languageTerm>\n </language>\n <language objectPart=\"libretto\">\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>1 score (12 p.) + 2 parts ; 31 cm.</extent>\n </physicalDescription>\n <tableOfContents>Tutto in pianto il cor struggete / Emperor Joseph I -- E sempre inquieto quel core infelice : from Endimione / G. Bononcini -- L'adorata genitrice : from Muzio [i.e. Mutio] Scevola / G. Bononcini.</tableOfContents>\n <note>Opera excerpts.</note>\n <note>Acc. arr. for piano; obbligato for the 2nd-3rd excerpts originally for chalumeau.</note>\n <note>Italian words.</note>\n <note>Cover title.</note>\n <note>The 1st excerpt composed for inclusion in M.A. Ziani's Chilonida.</note>\n <note>Texts with English translations on cover p. [2].</note>\n <subject authority=\"lcsh\">\n <topic>Operas</topic>\n <topic>Excerpts, Arranged</topic>\n <topic>Scores and parts</topic>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Songs (High voice) with instrumental ensemble</topic>\n <topic>Scores and parts</topic>\n </subject>\n <classification authority=\"lcc\">M1506 .A14 1984</classification>\n <relatedItem type=\"series\">\n <titleInfo>\n <title>Music for voice and instrument</title>\n </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n <title>Tutto in pianto il cor struggete; arr. 1984</title>\n </titleInfo>\n <name type=\"personal\">\n <namePart>Joseph</namePart>\n <namePart type=\"termsOfAddress\">I, Holy Roman Emperor</namePart>\n <namePart type=\"date\">1678-1711</namePart>\n </name>\n </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n <title>Endimione. arr. 1984</title>\n <partName>E sempre inquieto quel core infelice; arr. 1984</partName>\n </titleInfo>\n <name type=\"personal\">\n <namePart>Bononcini, Giovanni,</namePart>\n <namePart type=\"date\">1670-1747</namePart>\n </name>\n </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n <title>Mutio Scevola. arr. 1984</title>\n <partName>Adorata genitrice; arr. 1984</partName>\n </titleInfo>\n <name type=\"personal\">\n <namePart>Bononcini, Giovanni,</namePart>\n <namePart type=\"date\">1670-1747</namePart>\n </name>\n </relatedItem>\n <identifier type=\"lccn\">85753651</identifier>\n <identifier type=\"music publisher\">N.M. 275 Nova Music</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">850813</recordCreationDate>\n <recordChangeDate encoding=\"iso8601\">19950601141653.9</recordChangeDate>\n <recordIdentifier>5594130</recordIdentifier>\n <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n \t\t(Revision 1.76 2012/02/01)</recordOrigin>\n </recordInfo>\n</mods>",
2054
- "items": [
2055
- {
2056
- "itemType": "document",
2057
- "title": "3 Viennese arias: for soprano, obbligato clarinet in B flat, and piano",
2058
- "creators": [
2059
- {
2060
- "firstName": "Colin (Colin James)",
2061
- "lastName": "Lawson",
2062
- "creatorType": "author"
2063
- },
2064
- {
2065
- "firstName": "",
2066
- "lastName": "Joseph",
2067
- "creatorType": "author"
2068
- },
2069
- {
2070
- "firstName": "Giovanni",
2071
- "lastName": "Bononcini",
2072
- "creatorType": "author"
2073
- },
2074
- {
2075
- "firstName": "Giovanni",
2076
- "lastName": "Bononcini",
2077
- "creatorType": "author"
2078
- }
2079
- ],
2080
- "date": "1984",
2081
- "callNumber": "M1506 .A14 1984",
2082
- "language": "ita; eng",
2083
- "publisher": "Nova Music",
2084
- "attachments": [],
2085
- "tags": [
2086
- {
2087
- "tag": "Excerpts, Arranged"
2088
- },
2089
- {
2090
- "tag": "Operas"
2091
- },
2092
- {
2093
- "tag": "Scores and parts"
2094
- },
2095
- {
2096
- "tag": "Scores and parts"
2097
- },
2098
- {
2099
- "tag": "Songs (High voice) with instrumental ensemble"
2100
- }
2101
- ],
2102
- "notes": [
2103
- {
2104
- "note": "Opera excerpts."
2105
- },
2106
- {
2107
- "note": "Acc. arr. for piano; obbligato for the 2nd-3rd excerpts originally for chalumeau."
2108
- },
2109
- {
2110
- "note": "Italian words."
2111
- },
2112
- {
2113
- "note": "Cover title."
2114
- },
2115
- {
2116
- "note": "The 1st excerpt composed for inclusion in M.A. Ziani's Chilonida."
2117
- },
2118
- {
2119
- "note": "Texts with English translations on cover p. [2]."
2120
- },
2121
- {
2122
- "note": "Table of Contents: Tutto in pianto il cor struggete / Emperor Joseph I -- E sempre inquieto quel core infelice : from Endimione / G. Bononcini -- L'adorata genitrice : from Muzio [i.e. Mutio] Scevola / G. Bononcini."
2123
- }
2124
- ],
2125
- "seeAlso": []
2126
- }
2127
- ]
2128
- },
2129
- {
2130
- "type": "import",
2131
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods xmlns=\"http://www.loc.gov/mods/v3\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\" version=\"3.4\">\n <titleInfo>\n <title>2001 bluegrass odyssey</title>\n </titleInfo>\n <name type=\"corporate\">\n <namePart>Roustabouts (Musical group)</namePart>\n <role>\n <roleTerm type=\"code\" authority=\"marcrelator\">prf</roleTerm>\n </role>\n </name>\n <typeOfResource>sound recording-musical</typeOfResource>\n <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">ncu</placeTerm>\n </place>\n <place>\n <placeTerm type=\"text\">Charlotte, NC</placeTerm>\n </place>\n <publisher>Lamon Records</publisher>\n <dateIssued>p1980</dateIssued>\n <dateIssued encoding=\"marc\">1980</dateIssued>\n <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n </language>\n <physicalDescription>\n <form authority=\"gmd\">sound recording</form>\n <form authority=\"marccategory\">sound recording</form>\n <form authority=\"marcsmd\">sound disc</form>\n <extent>1 sound disc : analog, 33 1/3 rpm ; 12 in.</extent>\n </physicalDescription>\n <tableOfContents>Bluegrass odyssey -- Hills of Tennessee -- Sassafrass -- Muddy river -- Take your shoes off Moses -- Don't let Smokey Mountain smoke get in your eyes -- Farewell party -- Faded love -- Super sonic bluegrass -- Old love letters -- Will the circle be unbroken.</tableOfContents>\n <note>Brief record.</note>\n <note type=\"performers\">Performed by the Roustabouts.</note>\n <subject authority=\"lcsh\">\n <topic>Country music</topic>\n <temporal>1971-1980</temporal>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Bluegrass music</topic>\n <temporal>1971-1980</temporal>\n </subject>\n <classification authority=\"lcc\">Lamon Records LR-4280</classification>\n <identifier type=\"lccn\">94759273</identifier>\n <identifier type=\"issue number\">LR-4280 Lamon Records</identifier>\n <identifier type=\"oclc\">31023015</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">940829</recordCreationDate>\n <recordChangeDate encoding=\"iso8601\">19940830080228.8</recordChangeDate>\n <recordIdentifier>5718053</recordIdentifier>\n <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n \t\t(Revision 1.76 2012/02/01)</recordOrigin>\n </recordInfo>\n</mods>",
2132
- "items": [
2133
- {
2134
- "itemType": "audioRecording",
2135
- "title": "2001 bluegrass odyssey",
2136
- "creators": [
2137
- {
2138
- "lastName": "Roustabouts (Musical group)",
2139
- "fieldMode": 1,
2140
- "creatorType": "performer"
2141
- }
2142
- ],
2143
- "date": "1980",
2144
- "callNumber": "Lamon Records LR-4280",
2145
- "label": "Lamon Records",
2146
- "language": "eng",
2147
- "numberOfVolumes": "1",
2148
- "place": "Charlotte, NC",
2149
- "attachments": [],
2150
- "tags": [
2151
- {
2152
- "tag": "Bluegrass music"
2153
- },
2154
- {
2155
- "tag": "Country music"
2156
- }
2157
- ],
2158
- "notes": [
2159
- {
2160
- "note": "Brief record."
2161
- },
2162
- {
2163
- "note": "performers: Performed by the Roustabouts."
2164
- },
2165
- {
2166
- "note": "Table of Contents: Bluegrass odyssey -- Hills of Tennessee -- Sassafrass -- Muddy river -- Take your shoes off Moses -- Don't let Smokey Mountain smoke get in your eyes -- Farewell party -- Faded love -- Super sonic bluegrass -- Old love letters -- Will the circle be unbroken."
2167
- }
2168
- ],
2169
- "seeAlso": []
2170
- }
2171
- ]
2172
- },
2173
- {
2174
- "type": "import",
2175
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods xmlns=\"http://www.loc.gov/mods/v3\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\" version=\"3.4\">\n <titleInfo>\n <title>Massachusetts death and marriage records, 1837-1897</title>\n </titleInfo>\n <typeOfResource collection=\"yes\" manuscript=\"yes\">mixed material</typeOfResource>\n <originInfo>\n <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n </language>\n <physicalDescription>\n <extent>2 volumes.</extent>\n </physicalDescription>\n <abstract>Records of deaths and marriages in Millbury and Springfield, Mass.</abstract>\n <accessCondition type=\"restrictionOnAccess\">Open to research.</accessCondition>\n <note type=\"acquisition\">Purchase, 1946.</note>\n <note type=\"language\">Collection material in English.</note>\n <note>Forms part of: Miscellaneous Manuscripts collection.</note>\n <subject authority=\"lcsh\">\n <topic>Registers of births, etc</topic>\n <geographic>Massachusetts</geographic>\n <geographic>Millbury</geographic>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Registers of births, etc</topic>\n <geographic>Massachusetts</geographic>\n <geographic>Springfield</geographic>\n </subject>\n <location>\n <physicalLocation>Library of Congress Manuscript Division Washington, D.C. 20540 USA</physicalLocation>\n <physicalLocation xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"http://hdl.loc.gov/loc.mss/mss.home\">http://hdl.loc.gov/loc.mss/mss.home</physicalLocation>\n </location>\n <identifier type=\"lccn\">mm 83001404</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>dacs</descriptionStandard>\n <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">830926</recordCreationDate>\n <recordChangeDate encoding=\"iso8601\">20110707103737.0</recordChangeDate>\n <recordIdentifier>5810505</recordIdentifier>\n <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n \t\t(Revision 1.76 2012/02/01)</recordOrigin>\n </recordInfo>\n</mods>",
2176
- "items": [
2177
- {
2178
- "itemType": "document",
2179
- "title": "Massachusetts death and marriage records, 1837-1897",
2180
- "creators": [],
2181
- "abstractNote": "Records of deaths and marriages in Millbury and Springfield, Mass.",
2182
- "archiveLocation": "Library of Congress Manuscript Division Washington, D.C. 20540 USA; http://hdl.loc.gov/loc.mss/mss.home",
2183
- "language": "eng",
2184
- "rights": "Open to research.",
2185
- "attachments": [],
2186
- "tags": [
2187
- {
2188
- "tag": "Registers of births, etc"
2189
- },
2190
- {
2191
- "tag": "Registers of births, etc"
2192
- }
2193
- ],
2194
- "notes": [
2195
- {
2196
- "note": "acquisition: Purchase, 1946."
2197
- },
2198
- {
2199
- "note": "language: Collection material in English."
2200
- },
2201
- {
2202
- "note": "Forms part of: Miscellaneous Manuscripts collection."
2203
- }
2204
- ],
2205
- "seeAlso": []
2206
- }
2207
- ]
2208
- },
2209
- {
2210
- "type": "import",
2211
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods version=\"3.6\" xmlns=\"http://www.loc.gov/mods/v3\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n <titleInfo>\n <title>Ludvig Holbergs udvalgte Skrifter</title>\n <partNumber>D. 1-6 B. 4</partNumber>\n <partName>Holbergs Comedier</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Den honette Ambition</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Den Stundesløse</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>De Usynlige</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Pernilles korte Frøkenstand</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Erasmus Montanus</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Det lykkelige Skibbrud</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Den pantsatte Bondedreng</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Comedier</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Udvalgte Skrifter</title>\n </titleInfo>\n <name type=\"personal\" usage=\"primary\">\n <namePart>Holberg, Ludvig</namePart>\n <namePart type=\"date\">1684-1754</namePart>\n <nameIdentifier>bibsys.no:authority:90073658</nameIdentifier>\n </name>\n <name type=\"personal\">\n <namePart>Rahbek, K.L.</namePart>\n <nameIdentifier>bibsys.no:authority:90253663</nameIdentifier>\n </name>\n <typeOfResource>text</typeOfResource>\n <genre type=\"literaryform\">fiction</genre>\n <genre authority=\"marcgt\">fiction</genre>\n <originInfo>\n <place>\n <placeTerm authority=\"marccountry\" type=\"code\">dk</placeTerm>\n </place>\n <place>\n <placeTerm authority=\"iso3166\" type=\"code\">dk</placeTerm>\n </place>\n <place>\n <placeTerm type=\"text\">Kjøbenhavn</placeTerm>\n </place>\n <publisher>Schultz</publisher>\n <dateIssued>1805</dateIssued>\n <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">dan</languageTerm>\n </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n <form authority=\"marccategory\">electronic resource</form>\n <form authority=\"marcsmd\">remote</form>\n <form authority=\"marccategory\">text</form>\n <form authority=\"marcsmd\">regular print</form>\n <extent>XII, 532 s.</extent>\n </physicalDescription>\n <accessCondition type=\"restriction on access\"/>\n <note type=\"reproduction\">Elektronisk reproduksjon [Norge] Nasjonalbiblioteket Digital 2014-02-07</note>\n <subject>\n <name type=\"personal\">\n <namePart>Holberg, Ludvig</namePart>\n <namePart type=\"date\">1684-1754</namePart>\n </name>\n </subject>\n <location>\n <url displayLabel=\"Fulltekst NB digitalisert\" note=\"Elektronisk reproduksjon. Gratis\" usage=\"primary display\">http://urn.nb.no/URN:NBN:no-nb_digibok_2012051624006</url>\n </location>\n <location>\n <url displayLabel=\"Fulltekst NB digitalisert\" note=\"Elektronisk reproduksjon. Gratis\">http://urn.nb.no/URN:NBN:no-nb_digibok_2014012024006</url>\n </location>\n <location>\n <url displayLabel=\"electronic resource\" note=\"Elektronisk reproduksjon. Gratis\" usage=\"primary display\">http://urn.nb.no/URN:NBN:no-nb_digibok_2012051624006</url>\n </location>\n <identifier type=\"urn\">URN:NBN:no-nb_digibok_2012051624006</identifier>\n <location>\n <url displayLabel=\"electronic resource\" note=\"Elektronisk reproduksjon. Gratis\">http://urn.nb.no/URN:NBN:no-nb_digibok_2014012024006</url>\n </location>\n <identifier type=\"urn\">URN:NBN:no-nb_digibok_2014012024006</identifier>\n <location>\n <physicalLocation authority=\"isil\">NO-0183300</physicalLocation>\n <holdingSimple>\n <copyInformation>\n <subLocation>0183300</subLocation>\n </copyInformation>\n </holdingSimple>\n </location>\n <location>\n <physicalLocation authority=\"isil\">NO-0030100</physicalLocation>\n <holdingSimple>\n <copyInformation>\n <subLocation>0030100</subLocation>\n <note>(ib.) (Proveniens Johan Schweigaard) (Til bruk på NB Oslos lesesal)</note>\n </copyInformation>\n </holdingSimple>\n </location>\n <location>\n <physicalLocation authority=\"isil\">NO-0030100</physicalLocation>\n <holdingSimple>\n <copyInformation>\n <subLocation>0030100</subLocation>\n <note>(ib.) (Til bruk på Spesiallesesalen)</note>\n </copyInformation>\n </holdingSimple>\n </location>\n <location>\n <physicalLocation authority=\"isil\">NO-0030100</physicalLocation>\n <holdingSimple>\n <copyInformation>\n <subLocation>0030100</subLocation>\n <note>(ib.) (Til bruk på Spesiallesesalen)</note>\n </copyInformation>\n </holdingSimple>\n </location>\n <relatedItem displayLabel=\"Inkludert i\" type=\"host\">\n <titleInfo>\n <title>Ludvig Holbergs udvalgte Skrifter. D. 1-6, Holbergs Comedier</title>\n </titleInfo>\n <name>\n <namePart>Holberg, Ludvig, 1684-1754</namePart>\n </name>\n <originInfo>\n <publisher>Kjøbenhavn : Schultz, 1804-1806</publisher>\n </originInfo>\n <identifier type=\"local\">999417135394702201</identifier>\n <part>\n <text>B. 4</text>\n </part>\n </relatedItem>\n <identifier type=\"oldoaiid\">oai:bibsys.no:biblio:941621081</identifier>\n <identifier type=\"oldoaiid\">oai:bibsys.no:biblio:121586413</identifier>\n <identifier type=\"uri\">http://urn.nb.no/URN:NBN:no-nb_digibok_2012051624006</identifier>\n <identifier type=\"uri\">http://urn.nb.no/URN:NBN:no-nb_digibok_2014012024006</identifier>\n <recordInfo>\n <descriptionStandard>katreg</descriptionStandard>\n <recordContentSource authority=\"marcorg\">NO-TrBIB</recordContentSource>\n <recordCreationDate encoding=\"marc\">120621</recordCreationDate>\n <recordChangeDate encoding=\"iso8601\">20170126171829.0</recordChangeDate>\n <recordIdentifier source=\"nb.bibsys.no\">999416210814702202</recordIdentifier>\n <recordOrigin>Converted from MARCXML to MODS version 3.6 using a customized MARC21slim2MODS3-5.xsl\n (based on 3.5 Revision 1.106 2014/12/19)</recordOrigin>\n <languageOfCataloging>\n <languageTerm authority=\"iso639-2b\" type=\"code\">nob</languageTerm>\n </languageOfCataloging>\n </recordInfo>\n <relatedItem displayLabel=\"Del av Bibliografien\" type=\"host\">\n <titleInfo>\n <title>Schweigaardsamlingen</title>\n </titleInfo>\n <genre authority=\"marcgt\">bibliography</genre>\n </relatedItem>\n <identifier type=\"sesamid\">4c8b333d27a2eb37c35f99ce42a679bf</identifier>\n <identifier type=\"oaiid\">oai:nb.bibsys.no:999416210814702202</identifier>\n</mods>",
2212
- "items": [
2213
- {
2214
- "itemType": "book",
2215
- "title": "Ludvig Holbergs udvalgte Skrifter. D. 1-6 B. 4: Holbergs Comedier",
2216
- "creators": [
2217
- {
2218
- "firstName": "Ludvig",
2219
- "lastName": "Holberg",
2220
- "creatorType": "author"
2221
- },
2222
- {
2223
- "firstName": "K. L.",
2224
- "lastName": "Rahbek",
2225
- "creatorType": "author"
2226
- },
2227
- {
2228
- "lastName": "Holberg, Ludvig, 1684-1754",
2229
- "fieldMode": 1,
2230
- "creatorType": "contributor"
2231
- }
2232
- ],
2233
- "date": "1805",
2234
- "archiveLocation": "NO-0183300; NO-0030100; NO-0030100; NO-0030100",
2235
- "language": "dan",
2236
- "place": "Kjøbenhavn",
2237
- "publisher": "Kjøbenhavn : Schultz, 1804-1806",
2238
- "url": "http://urn.nb.no/URN:NBN:no-nb_digibok_2012051624006",
2239
- "attachments": [],
2240
- "tags": [],
2241
- "notes": [
2242
- {
2243
- "note": "reproduction: Elektronisk reproduksjon [Norge] Nasjonalbiblioteket Digital 2014-02-07"
2244
- }
2245
- ],
2246
- "seeAlso": []
2247
- }
2248
- ]
2249
- },
2250
- {
2251
- "type": "import",
2252
- "input": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mods:mods xmlns:mods=\"http://www.loc.gov/mods/v3\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-7.xsd\" version=\"3.7\">\n\t<mods:titleInfo>\n\t\t<mods:title>[Brief Josef Blaas' an Albrecht Penck]</mods:title>\n\t</mods:titleInfo>\n\t<mods:name type=\"personal\" authority=\"DE-588\" authorityURI=\"http://d-nb.info/gnd/\" valueURI=\"http://d-nb.info/gnd/116198427\">\n\t\t<mods:displayForm>Blaas, Josef</mods:displayForm>\n\t\t<mods:namePart>Blaas, Josef</mods:namePart>\n\t\t<mods:role>\n\t\t\t<mods:roleTerm authority=\"MARC Code List for Relators Scheme\" authorityURI=\"http://id.loc.gov/vocabulary/relators/\" type=\"code\" lang=\"eng\" valueURI=\"http://id.loc.gov/vocabulary/relators/cre\">cre</mods:roleTerm>\n\t\t\t<mods:roleTerm type=\"text\" lang=\"ger\">Verfasser</mods:roleTerm>\n\t\t</mods:role>\n\t</mods:name>\n\t<mods:name type=\"personal\" authority=\"DE-588\" authorityURI=\"http://d-nb.info/gnd/\" valueURI=\"http://d-nb.info/gnd/118739883\">\n\t\t<mods:displayForm>Penck, Albrecht</mods:displayForm>\n\t\t<mods:namePart>Penck, Albrecht</mods:namePart>\n\t\t<mods:role>\n\t\t\t<mods:roleTerm authority=\"MARC Code List for Relators Scheme\" authorityURI=\"http://id.loc.gov/vocabulary/relators/\" type=\"code\" lang=\"eng\" valueURI=\"http://id.loc.gov/vocabulary/relators/rcp\">rcp</mods:roleTerm>\n\t\t\t<mods:roleTerm type=\"text\" lang=\"ger\">Adressat</mods:roleTerm>\n\t\t</mods:role>\n\t</mods:name>\n\t<mods:genre lang=\"ger\" authorityURI=\"http://d-nb.info/gnd/\" valueURI=\"http://d-nb.info/gnd/4008240-4\" authority=\"local\">Brief</mods:genre>\n\t<mods:originInfo>\n\t\t<mods:dateCreated encoding=\"w3cdtf\" keyDate=\"yes\">1930-01-14</mods:dateCreated>\n\t\t<mods:dateCreated>14.01.1930</mods:dateCreated>\n\t\t<mods:place>\n\t\t\t<mods:placeTerm type=\"text\" authorityURI=\"http://d-nb.info/gnd/\" valueURI=\"http://d-nb.info/gnd/4027096-8\">Innsbruck</mods:placeTerm>\n\t\t</mods:place>\n\t</mods:originInfo>\n\t<mods:originInfo>\n\t\t<mods:publisher>semantics</mods:publisher>\n\t\t<mods:place>\n\t\t\t<mods:placeTerm type=\"text\">Aachen</mods:placeTerm>\n\t\t</mods:place>\n\t\t<mods:dateIssued>2021</mods:dateIssued>\n\t\t<mods:edition>[Electronic ed.]</mods:edition>\n\t</mods:originInfo>\n\t<mods:language>\n\t\t<mods:languageTerm authority=\"iso639-2b\" authorityURI=\"http://id.loc.gov/vocabulary/iso639-2/\" valueURI=\"http://id.loc.gov/vocabulary/iso639-2/ger\" type=\"code\">ger</mods:languageTerm>\n\t\t<mods:languageTerm type=\"text\" lang=\"ger\">Deutsch</mods:languageTerm>\n\t</mods:language>\n\t<mods:physicalDescription>\n\t\t<mods:extent>1 Bl. ; 2 Bl.</mods:extent>\n\t</mods:physicalDescription>\n\t<mods:note type=\"formerShelvingLocation\">B E</mods:note>\n\t<mods:note type=\"systemDetails\">Handschrift</mods:note>\n\t<mods:identifier type=\"uri\">https://kalliope-verbund.info/DE-611-HS-3584958</mods:identifier>\n\t<mods:relatedItem type=\"host\">\n\t\t<mods:titleInfo>\n\t\t\t<mods:title>Korrespondenzen (Titel)</mods:title>\n\t\t</mods:titleInfo>\n\t\t<mods:name type=\"personal\" authority=\"DE-588\" authorityURI=\"http://d-nb.info/gnd/\" valueURI=\"http://d-nb.info/gnd/116198427\">\n\t\t\t<mods:displayForm>Blaas, Josef</mods:displayForm>\n\t\t\t<mods:namePart>Blaas, Josef</mods:namePart>\n\t\t\t<mods:namePart type=\"given\">J.</mods:namePart>\n\t\t\t<mods:namePart type=\"family\">Blaas</mods:namePart>\n\t\t\t<mods:namePart type=\"date\">1851-04-29</mods:namePart>\n\t\t\t<mods:role>\n\t\t\t\t<mods:roleTerm type=\"text\" lang=\"ger\">Bestandsbildner</mods:roleTerm>\n\t\t\t</mods:role>\n\t\t</mods:name>\n\t\t<mods:name type=\"personal\" authority=\"DE-588\" authorityURI=\"http://d-nb.info/gnd/\" valueURI=\"http://d-nb.info/gnd/1210871378\">\n\t\t\t<mods:displayForm>Blaas, Leo</mods:displayForm>\n\t\t\t<mods:namePart>Blaas, Leo</mods:namePart>\n\t\t\t<mods:namePart type=\"date\">1891-01-14</mods:namePart>\n\t\t\t<mods:role>\n\t\t\t\t<mods:roleTerm type=\"text\" lang=\"ger\">Bestandsbildner</mods:roleTerm>\n\t\t\t</mods:role>\n\t\t</mods:name>\n\t\t<mods:name type=\"personal\" authority=\"DE-588\" authorityURI=\"http://d-nb.info/gnd/\" valueURI=\"http://d-nb.info/gnd/1210871084\">\n\t\t\t<mods:displayForm>Blaas, Erich</mods:displayForm>\n\t\t\t<mods:namePart>Blaas, Erich</mods:namePart>\n\t\t\t<mods:namePart type=\"date\">1884-04-19</mods:namePart>\n\t\t\t<mods:role>\n\t\t\t\t<mods:roleTerm type=\"text\" lang=\"ger\">Bestandsbildner</mods:roleTerm>\n\t\t\t</mods:role>\n\t\t</mods:name>\n\t\t<mods:originInfo>\n\t\t\t<mods:edition>[Electronic ed.]</mods:edition>\n\t\t\t<mods:place>\n\t\t\t\t<mods:placeTerm type=\"text\">Aachen</mods:placeTerm>\n\t\t\t</mods:place>\n\t\t\t<mods:publisher>semantics</mods:publisher>\n\t\t\t<mods:dateIssued>2021</mods:dateIssued>\n\t\t</mods:originInfo>\n\t\t<mods:note type=\"systemDetails\">Nicht in EAD Vorhanden</mods:note>\n\t\t<mods:identifier type=\"uri\">https://kalliope-verbund.info/DE-611-BF-77880</mods:identifier>\n\t\t<mods:relatedItem type=\"host\">\n\t\t\t<mods:titleInfo>\n\t\t\t\t<mods:title>Teilnachlass Familie Blaas</mods:title>\n\t\t\t</mods:titleInfo>\n\t\t\t<mods:identifier type=\"uri\">https://kalliope-verbund.info/DE-611-BF-77879</mods:identifier>\n\t\t\t<mods:recordInfo>\n\t\t\t\t<mods:recordIdentifier source=\"DE-611\">DE-611-BF-77879</mods:recordIdentifier>\n\t\t\t</mods:recordInfo>\n\t\t</mods:relatedItem>\n\t\t<mods:relatedItem type=\"constituent\">\n\t\t\t<mods:titleInfo>\n\t\t\t\t<mods:title>Nachlass Blaas</mods:title>\n\t\t\t</mods:titleInfo>\n\t\t\t<mods:identifier type=\"uri\">https://kalliope-verbund.info/DE-611-BF-77878</mods:identifier>\n\t\t\t<mods:recordInfo>\n\t\t\t\t<mods:recordIdentifier source=\"DE-611\">DE-611-BF-77878</mods:recordIdentifier>\n\t\t\t</mods:recordInfo>\n\t\t</mods:relatedItem>\n\t\t<mods:location>\n\t\t\t<mods:physicalLocation authority=\"German ISIL- and Library Codes Agency\" authorityURI=\"http://ld.zdb-services.de/resource/organisations/\" valueURI=\"http://ld.zdb-services.de/resource/organisations/DE-2836\">Semantics Kommunikationsmanagement GmbH</mods:physicalLocation>\n\t\t\t<mods:shelfLocator>K</mods:shelfLocator>\n\t\t</mods:location>\n\t\t<mods:extension>\n\t\t\t<vlz:info xmlns:vlz=\"http://visuallibrary.net/vlz/1.0/\" version=\"2\" />\n\t\t</mods:extension>\n\t\t<mods:recordInfo>\n\t\t\t<mods:recordIdentifier source=\"DE-611\">DE-611-BF-77880</mods:recordIdentifier>\n\t\t\t<mods:recordCreationDate encoding=\"iso8601\">20200414</mods:recordCreationDate>\n\t\t\t<mods:recordChangeDate encoding=\"iso8601\">20200414</mods:recordChangeDate>\n\t\t\t<mods:recordChangeDate encoding=\"w3cdtf\">2020-12-16T14:37:29+01:00</mods:recordChangeDate>\n\t\t\t<mods:recordContentSource authority=\"German ISIL- and Library Codes Agency\" authorityURI=\"http://ld.zdb-services.de/resource/organisations/\" valueURI=\"http://ld.zdb-services.de/resource/organisations/DE-2836\">Semantics Kommunikationsmanagement GmbH</mods:recordContentSource>\n\t\t</mods:recordInfo>\n\t\t<mods:extension>\n\t\t\t<vl:id xmlns:vl=\"http://visuallibrary.net/vl\">510999</vl:id>\n\t\t\t<vl:odid xmlns:vl=\"http://visuallibrary.net/vl\">18</vl:odid>\n\t\t\t<vl:datatype xmlns:vl=\"http://visuallibrary.net/vl\">1</vl:datatype>\n\t\t\t<vl:type xmlns:vl=\"http://visuallibrary.net/vl\">60</vl:type>\n\t\t\t<vl:state xmlns:vl=\"http://visuallibrary.net/vl\">1</vl:state>\n\t\t</mods:extension>\n\t</mods:relatedItem>\n\t<mods:relatedItem type=\"constituent\">\n\t\t<mods:titleInfo>\n\t\t\t<mods:title>Nachlass Blaas</mods:title>\n\t\t</mods:titleInfo>\n\t\t<mods:identifier type=\"uri\">https://kalliope-verbund.info/DE-611-BF-77878</mods:identifier>\n\t\t<mods:recordInfo>\n\t\t\t<mods:recordIdentifier source=\"DE-611\">DE-611-BF-77878</mods:recordIdentifier>\n\t\t</mods:recordInfo>\n\t</mods:relatedItem>\n\t<mods:location>\n\t\t<mods:physicalLocation authority=\"German ISIL- and Library Codes Agency\" authorityURI=\"http://ld.zdb-services.de/resource/organisations/\" valueURI=\"http://ld.zdb-services.de/resource/organisations/DE-2836\">Semantics Kommunikationsmanagement GmbH</mods:physicalLocation>\n\t\t<mods:shelfLocator>Br E_O.</mods:shelfLocator>\n\t</mods:location>\n\t<mods:extension>\n\t\t<vlz:info xmlns:vlz=\"http://visuallibrary.net/vlz/1.0/\" version=\"2\" />\n\t</mods:extension>\n\t<mods:recordInfo>\n\t\t<mods:recordIdentifier source=\"DE-611\">DE-611-HS-3584958</mods:recordIdentifier>\n\t\t<mods:recordCreationDate encoding=\"iso8601\">20200428</mods:recordCreationDate>\n\t\t<mods:recordChangeDate encoding=\"iso8601\">20200428</mods:recordChangeDate>\n\t\t<mods:recordChangeDate encoding=\"w3cdtf\">2020-12-16T14:37:29+01:00</mods:recordChangeDate>\n\t\t<mods:recordContentSource authority=\"German ISIL- and Library Codes Agency\" authorityURI=\"http://ld.zdb-services.de/resource/organisations/\" valueURI=\"http://ld.zdb-services.de/resource/organisations/DE-2836\">Semantics Kommunikationsmanagement GmbH</mods:recordContentSource>\n\t</mods:recordInfo>\n\t<mods:identifier type=\"urn\">urn:nbn:de:s2w-13771</mods:identifier>\n</mods:mods>",
2253
- "items": [
2254
- {
2255
- "itemType": "letter",
2256
- "title": "[Brief Josef Blaas' an Albrecht Penck]",
2257
- "creators": [
2258
- {
2259
- "firstName": "Josef",
2260
- "lastName": "Blaas",
2261
- "creatorType": "author"
2262
- },
2263
- {
2264
- "firstName": "Albrecht",
2265
- "lastName": "Penck",
2266
- "creatorType": "recipient"
2267
- },
2268
- {
2269
- "firstName": "J.",
2270
- "lastName": "Blaas",
2271
- "creatorType": "contributor"
2272
- },
2273
- {
2274
- "firstName": "Leo",
2275
- "lastName": "Blaas",
2276
- "creatorType": "contributor"
2277
- },
2278
- {
2279
- "firstName": "Erich",
2280
- "lastName": "Blaas",
2281
- "creatorType": "contributor"
2282
- }
2283
- ],
2284
- "date": "2021",
2285
- "archiveLocation": "Semantics Kommunikationsmanagement GmbH; Semantics Kommunikationsmanagement GmbH",
2286
- "language": "ger",
2287
- "attachments": [],
2288
- "tags": [],
2289
- "notes": [
2290
- {
2291
- "note": "formerShelvingLocation: B E"
2292
- },
2293
- {
2294
- "note": "systemDetails: Handschrift"
2295
- }
2296
- ],
2297
- "seeAlso": []
2298
- }
2299
- ]
2300
- },
2301
- {
2302
- "type": "import",
2303
- "input": "<mods xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:exslt=\"http://exslt.org/common\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" version=\"3.3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd\" ID=\"P0b002ee180250051\">\n<name type=\"corporate\">\n <namePart>United States Government Publishing Office</namePart>\n <role>\n <roleTerm authority=\"marcrelator\" type=\"text\">publisher</roleTerm>\n <roleTerm authority=\"marcrelator\" type=\"code\">pbl</roleTerm>\n</role>\n <role>\n <roleTerm authority=\"marcrelator\" type=\"text\">distributor</roleTerm>\n <roleTerm authority=\"marcrelator\" type=\"code\">dst</roleTerm>\n</role>\n</name>\n<name type=\"corporate\">\n <namePart>United States</namePart>\n <namePart>Congress</namePart>\n <namePart>Senate</namePart>\n <role>\n <roleTerm authority=\"marcrelator\" type=\"text\">author</roleTerm>\n <roleTerm authority=\"marcrelator\" type=\"code\">aut</roleTerm>\n</role>\n <description>Government Organization</description>\n</name>\n<typeOfResource>text</typeOfResource>\n<genre authority=\"marcgt\">government publication</genre>\n<language>\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n</language>\n<extension>\n <collectionCode>CHRG</collectionCode>\n <category>Congressional Committee Materials</category>\n <waisDatabaseName>111_senate_hearings</waisDatabaseName>\n <branch>legislative</branch>\n <dateIngested>2010-06-05</dateIngested>\n</extension>\n<titleInfo>\n <title>AFGHANISTAN</title>\n</titleInfo>\n<titleInfo type=\"alternative\"></titleInfo>\n<location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/CHRG-111shrg56419</url>\n <url displayLabel=\"HTML rendition\" access=\"raw object\">https://www.govinfo.gov/content/pkg/CHRG-111shrg56419/html/CHRG-111shrg56419.htm</url>\n <url displayLabel=\"PDF rendition\" access=\"raw object\">https://www.govinfo.gov/content/pkg/CHRG-111shrg56419/pdf/CHRG-111shrg56419.pdf</url>\n</location>\n<originInfo>\n <publisher>U.S. Government Publishing Office</publisher>\n <dateIssued encoding=\"w3cdtf\">2009-12-02</dateIssued>\n <issuance>monographic</issuance>\n</originInfo>\n<physicalDescription>\n <note type=\"source content type\">deposited</note>\n <digitalOrigin>born digital</digitalOrigin>\n <extent>191 p.</extent>\n</physicalDescription>\n<classification authority=\"sudocs\">Y 4.AR 5/3:S.HRG.111-415</classification>\n<identifier type=\"uri\">https://www.govinfo.gov/app/details/CHRG-111shrg56419</identifier>\n<identifier type=\"local\">P0b002ee180250051</identifier>\n<identifier type=\"ILS system id\">000704270</identifier>\n<recordInfo>\n <recordContentSource authority=\"marcorg\">DGPO</recordContentSource>\n <recordCreationDate encoding=\"w3cdtf\">2010-06-05</recordCreationDate>\n <recordChangeDate encoding=\"w3cdtf\">2020-01-02</recordChangeDate>\n <recordIdentifier source=\"DGPO\">CHRG-111shrg56419</recordIdentifier>\n <recordOrigin>machine generated</recordOrigin>\n <languageOfCataloging>\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n</languageOfCataloging>\n</recordInfo>\n<accessCondition type=\"GPO scope determination\">fdlp</accessCondition>\n<extension>\n <docClass>SHRG</docClass>\n <accessId>CHRG-111shrg56419</accessId>\n <type>G</type>\n <chamber>SENATE</chamber>\n <congress>111</congress>\n <session>1</session>\n <number>415</number>\n <heldDate>2009-12-02</heldDate>\n <heldDate>2009-12-08</heldDate>\n</extension>\n<extension>\n <searchTitle>AFGHANISTAN</searchTitle>\n <granuleClass>OTHERPART</granuleClass>\n <accessId>CHRG-111shrg56419</accessId>\n <graphicsInPDF>true</graphicsInPDF>\n <isAppropriation>false</isAppropriation>\n <jacketId>56-419</jacketId>\n <congCommittee authorityId=\"ssas00\" chamber=\"S\" congress=\"111\" type=\"S\">\n <name type=\"authority-standard\">Committee on Armed Services</name>\n <name type=\"authority-short\">Armed Services</name>\n </congCommittee>\n <congMember authorityId=\"1226\" bioGuideId=\"W000437\" chamber=\"S\" congress=\"111\" gpoId=\"8263\" party=\"R\" role=\"COMMMEMBER\" state=\"MS\">\n <name type=\"parsed\">ROGER F. WICKER of Mississippi</name>\n <name type=\"authority-fnf\">Roger F. Wicker</name>\n <name type=\"authority-lnf\">Wicker, Roger F.</name>\n <name type=\"authority-other\">Roger Wicker</name>\n </congMember>\n <congMember authorityId=\"1299\" bioGuideId=\"B001210\" chamber=\"S\" congress=\"111\" gpoId=\"5833\" party=\"D\" role=\"COMMMEMBER\" state=\"WV\">\n <name type=\"parsed\">ROBERT C. BYRD of West Virginia</name>\n <name type=\"authority-fnf\">Robert C. Byrd</name>\n <name type=\"authority-lnf\">Byrd, Robert C.</name>\n <name type=\"authority-other\">Robert Carlyle Byrd</name>\n </congMember>\n <congMember authorityId=\"1384\" bioGuideId=\"L000261\" chamber=\"S\" congress=\"111\" gpoId=\"8243\" party=\"D\" role=\"COMMMEMBER\" state=\"MI\">\n <name type=\"parsed\">CARL LEVIN of Michigan</name>\n <name type=\"authority-fnf\">Carl Levin</name>\n <name type=\"authority-lnf\">Levin, Carl</name>\n <name type=\"authority-other\">Carl Milton Levin</name>\n </congMember>\n <congMember authorityId=\"1385\" bioGuideId=\"L000304\" chamber=\"S\" congress=\"111\" gpoId=\"8246\" party=\"I\" role=\"COMMMEMBER\" state=\"CT\">\n <name type=\"parsed\">JOSEPH I. LIEBERMAN of Connecticut</name>\n <name type=\"authority-fnf\">Joseph I. Lieberman</name>\n <name type=\"authority-lnf\">Lieberman, Joseph I.</name>\n <name type=\"authority-other\">Joseph Lieberman</name>\n </congMember>\n <congMember authorityId=\"1534\" bioGuideId=\"T000250\" chamber=\"S\" congress=\"111\" gpoId=\"8257\" party=\"R\" role=\"COMMMEMBER\" state=\"SD\">\n <name type=\"parsed\">JOHN THUNE of South Dakota</name>\n <name type=\"authority-fnf\">John Thune</name>\n <name type=\"authority-lnf\">Thune, John</name>\n <name type=\"authority-other\">John R. Thune</name>\n </congMember>\n <congMember authorityId=\"153\" bioGuideId=\"B001135\" chamber=\"S\" congress=\"111\" gpoId=\"8286\" party=\"R\" role=\"COMMMEMBER\" state=\"NC\">\n <name type=\"parsed\">RICHARD BURR of North Carolina</name>\n <name type=\"authority-fnf\">Richard Burr</name>\n <name type=\"authority-lnf\">Burr, Richard</name>\n </congMember>\n <congMember authorityId=\"1541\" bioGuideId=\"C001035\" chamber=\"S\" congress=\"111\" gpoId=\"8291\" party=\"R\" role=\"COMMMEMBER\" state=\"ME\">\n <name type=\"parsed\">SUSAN M. COLLINS of Maine</name>\n <name type=\"authority-fnf\">Susan M. Collins</name>\n <name type=\"authority-lnf\">Collins, Susan M.</name>\n <name type=\"authority-other\">Susan Margaret Collins</name>\n </congMember>\n <congMember authorityId=\"1548\" bioGuideId=\"S001141\" chamber=\"S\" congress=\"111\" gpoId=\"8281\" party=\"R\" role=\"COMMMEMBER\" state=\"AL\">\n <name type=\"parsed\">JEFF SESSIONS of Alabama</name>\n <name type=\"authority-fnf\">Jeff Sessions</name>\n <name type=\"authority-lnf\">Sessions, Jeff</name>\n </congMember>\n <congMember authorityId=\"1572\" bioGuideId=\"B001233\" chamber=\"S\" congress=\"111\" gpoId=\"5765\" party=\"D\" role=\"COMMMEMBER\" state=\"IN\">\n <name type=\"parsed\">EVAN BAYH of Indiana</name>\n <name type=\"authority-fnf\">Evan Bayh</name>\n <name type=\"authority-lnf\">Bayh, Evan</name>\n </congMember>\n <congMember authorityId=\"1595\" bioGuideId=\"U000038\" chamber=\"S\" congress=\"111\" gpoId=\"8259\" party=\"D\" role=\"COMMMEMBER\" state=\"CO\">\n <name type=\"parsed\">MARK UDALL of Colorado</name>\n <name type=\"authority-fnf\">Mark Udall</name>\n <name type=\"authority-lnf\">Udall, Mark</name>\n </congMember>\n <congMember authorityId=\"1609\" bioGuideId=\"V000127\" chamber=\"S\" congress=\"111\" gpoId=\"8267\" party=\"R\" role=\"COMMMEMBER\" state=\"LA\">\n <name type=\"parsed\">DAVID VITTER of Louisiana</name>\n <name type=\"authority-fnf\">David Vitter</name>\n <name type=\"authority-lnf\">Vitter, David</name>\n </congMember>\n <congMember authorityId=\"1820\" bioGuideId=\"M001170\" chamber=\"S\" congress=\"111\" gpoId=\"8252\" party=\"D\" role=\"COMMMEMBER\" state=\"MO\">\n <name type=\"parsed\">CLAIRE McCASKILL of Missouri</name>\n <name type=\"authority-fnf\">Claire McCaskill</name>\n <name type=\"authority-lnf\">McCaskill, Claire</name>\n </congMember>\n <congMember authorityId=\"1822\" bioGuideId=\"W000803\" chamber=\"S\" congress=\"111\" gpoId=\"8268\" party=\"D\" role=\"COMMMEMBER\" state=\"VA\">\n <name type=\"parsed\">JIM WEBB of Virginia</name>\n <name type=\"authority-fnf\">Jim Webb</name>\n <name type=\"authority-lnf\">Webb, Jim</name>\n <name type=\"authority-other\">Mr. James Webb</name>\n </congMember>\n <congMember authorityId=\"188\" bioGuideId=\"C000286\" chamber=\"S\" congress=\"111\" gpoId=\"8284\" party=\"R\" role=\"COMMMEMBER\" state=\"GA\">\n <name type=\"parsed\">SAXBY CHAMBLISS of Georgia</name>\n <name type=\"authority-fnf\">Saxby Chambliss</name>\n <name type=\"authority-lnf\">Chambliss, Saxby</name>\n </congMember>\n <congMember authorityId=\"1898\" bioGuideId=\"B001265\" chamber=\"S\" congress=\"111\" gpoId=\"8301\" party=\"D\" role=\"COMMMEMBER\" state=\"AK\">\n <name type=\"parsed\">MARK BEGICH of Alaska</name>\n <name type=\"authority-fnf\">Mark Begich</name>\n <name type=\"authority-lnf\">Begich, Mark</name>\n </congMember>\n <congMember authorityId=\"1902\" bioGuideId=\"H001049\" chamber=\"S\" congress=\"111\" gpoId=\"8318\" party=\"D\" role=\"COMMMEMBER\" state=\"NC\">\n <name type=\"parsed\">KAY R. HAGAN of North Carolina</name>\n <name type=\"authority-fnf\">Kay R. Hagan</name>\n <name type=\"authority-lnf\">Hagan, Kay R.</name>\n <name type=\"authority-other\">Mrs. Kay Hagan</name>\n </congMember>\n <congMember authorityId=\"1963\" bioGuideId=\"B001266\" chamber=\"S\" congress=\"111\" gpoId=\"7753\" party=\"D\" role=\"COMMMEMBER\" state=\"IL\">\n <name type=\"parsed\">ROLAND W. BURRIS of Illinois</name>\n <name type=\"authority-fnf\">Roland Burris</name>\n <name type=\"authority-lnf\">Burris, Roland</name>\n </congMember>\n <congMember authorityId=\"1971\" bioGuideId=\"L000572\" chamber=\"S\" congress=\"111\" gpoId=\"7772\" party=\"R\" role=\"COMMMEMBER\" state=\"FL\">\n <name type=\"parsed\">GEORGE S. LeMIEUX of Florida</name>\n <name type=\"authority-fnf\">George S. LeMieux</name>\n <name type=\"authority-lnf\">LeMieux, George S.</name>\n <name type=\"authority-other\">Mr. George Lemieux</name>\n </congMember>\n <congMember authorityId=\"452\" bioGuideId=\"G000359\" chamber=\"S\" congress=\"111\" gpoId=\"8335\" party=\"R\" role=\"COMMMEMBER\" state=\"SC\">\n <name type=\"parsed\">LINDSEY GRAHAM of South Carolina</name>\n <name type=\"authority-fnf\">Lindsey Graham</name>\n <name type=\"authority-lnf\">Graham, Lindsey</name>\n <name type=\"authority-other\">Lindsey O. Graham</name>\n </congMember>\n <congMember authorityId=\"583\" bioGuideId=\"I000024\" chamber=\"S\" congress=\"111\" gpoId=\"8322\" party=\"R\" role=\"COMMMEMBER\" state=\"OK\">\n <name type=\"parsed\">JAMES M. INHOFE of Oklahoma</name>\n <name type=\"authority-fnf\">James M. Inhofe</name>\n <name type=\"authority-lnf\">Inhofe, James M.</name>\n <name type=\"authority-other\">Jim Inhofe</name>\n </congMember>\n <congMember authorityId=\"754\" bioGuideId=\"M000303\" chamber=\"S\" congress=\"111\" gpoId=\"8253\" party=\"R\" role=\"COMMMEMBER\" state=\"AZ\">\n <name type=\"parsed\">JOHN McCAIN of Arizona</name>\n <name type=\"authority-fnf\">John McCain</name>\n <name type=\"authority-lnf\">McCain, John</name>\n <name type=\"authority-other\">John Sidney Mccain</name>\n </congMember>\n <congMember authorityId=\"7\" bioGuideId=\"A000069\" chamber=\"S\" congress=\"111\" gpoId=\"8305\" party=\"D\" role=\"COMMMEMBER\" state=\"HI\">\n <name type=\"parsed\">DANIEL K. AKAKA of Hawaii</name>\n <name type=\"authority-fnf\">Daniel K. Akaka</name>\n <name type=\"authority-lnf\">Akaka, Daniel K.</name>\n <name type=\"authority-other\">Daniel Kohikina Akaka</name>\n </congMember>\n <congMember authorityId=\"859\" bioGuideId=\"N000032\" chamber=\"S\" congress=\"111\" gpoId=\"8236\" party=\"D\" role=\"COMMMEMBER\" state=\"FL\">\n <name type=\"parsed\">BILL NELSON of Florida</name>\n <name type=\"authority-fnf\">Bill Nelson</name>\n <name type=\"authority-lnf\">Nelson, Bill</name>\n <name type=\"authority-other\">Clarence William Nelson</name>\n </congMember>\n <congMember authorityId=\"949\" bioGuideId=\"R000122\" chamber=\"S\" congress=\"111\" gpoId=\"8272\" party=\"D\" role=\"COMMMEMBER\" state=\"RI\">\n <name type=\"parsed\">JACK REED of Rhode Island</name>\n <name type=\"authority-fnf\">Jack Reed</name>\n <name type=\"authority-lnf\">Reed, Jack</name>\n <name type=\"authority-other\">John Reed</name>\n </congMember>\n <bill congress=\"111\" context=\"BODY\" number=\"2346\" type=\"HR\"></bill>\n <congReport congress=\"111\" number=\"105\" type=\"H\"></congReport>\n <isNomination>false</isNomination>\n <isErrata>false</isErrata>\n</extension>\n<name type=\"corporate\">\n <namePart>United States</namePart>\n <namePart>Congress</namePart>\n <namePart>Senate</namePart>\n <namePart>Committee on Armed Services</namePart>\n <role>\n <roleTerm authority=\"marcrelator\" type=\"text\">associated name</roleTerm>\n <roleTerm authority=\"marcrelator\" type=\"code\">asn</roleTerm>\n</role>\n <description>Government Organization</description>\n</name>\n<name type=\"personal\">\n <namePart>Roger F. Wicker</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Robert C. Byrd</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Carl Levin</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Joseph I. Lieberman</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>John Thune</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Richard Burr</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Susan M. Collins</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Jeff Sessions</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Evan Bayh</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Mark Udall</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>David Vitter</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Claire McCaskill</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Jim Webb</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Saxby Chambliss</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Mark Begich</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Kay R. Hagan</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Roland Burris</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>George S. LeMieux</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Lindsey Graham</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>James M. Inhofe</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>John McCain</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Daniel K. Akaka</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Bill Nelson</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<name type=\"personal\">\n <namePart>Jack Reed</namePart>\n <affiliation>United States Senate</affiliation>\n <role>\n <roleTerm type=\"text\">committee member</roleTerm>\n</role>\n <description>United States Congressional Member</description>\n</name>\n<relatedItem type=\"isReferencedBy\">\n <identifier type=\"Jacket citation\"></identifier>\n</relatedItem>\n<relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States House Bill 2346 (111th Congress)</title>\n</titleInfo>\n <identifier type=\"Congressional Bill citation\">H.R. 2346</identifier>\n <extension>\n <congress>111</congress>\n <context>BODY</context>\n</extension>\n</relatedItem>\n<relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States House Report 105 (111th Congress)</title>\n</titleInfo>\n <identifier type=\"congressional report citation\">H. Rept. 111-105</identifier>\n</relatedItem>\n</mods>",
2304
- "items": [
2305
- {
2306
- "itemType": "hearing",
2307
- "title": "AFGHANISTAN",
2308
- "creators": [
2309
- {
2310
- "lastName": "United States: Congress: Senate",
2311
- "fieldMode": 1,
2312
- "creatorType": "contributor"
2313
- },
2314
- {
2315
- "lastName": "United States: Congress: Senate: Committee on Armed Services",
2316
- "fieldMode": 1,
2317
- "creatorType": "contributor"
2318
- },
2319
- {
2320
- "firstName": "Roger F.",
2321
- "lastName": "Wicker",
2322
- "creatorType": "contributor"
2323
- },
2324
- {
2325
- "firstName": "Robert C.",
2326
- "lastName": "Byrd",
2327
- "creatorType": "contributor"
2328
- },
2329
- {
2330
- "firstName": "Carl",
2331
- "lastName": "Levin",
2332
- "creatorType": "contributor"
2333
- },
2334
- {
2335
- "firstName": "Joseph I.",
2336
- "lastName": "Lieberman",
2337
- "creatorType": "contributor"
2338
- },
2339
- {
2340
- "firstName": "John",
2341
- "lastName": "Thune",
2342
- "creatorType": "contributor"
2343
- },
2344
- {
2345
- "firstName": "Richard",
2346
- "lastName": "Burr",
2347
- "creatorType": "contributor"
2348
- },
2349
- {
2350
- "firstName": "Susan M.",
2351
- "lastName": "Collins",
2352
- "creatorType": "contributor"
2353
- },
2354
- {
2355
- "firstName": "Jeff",
2356
- "lastName": "Sessions",
2357
- "creatorType": "contributor"
2358
- },
2359
- {
2360
- "firstName": "Evan",
2361
- "lastName": "Bayh",
2362
- "creatorType": "contributor"
2363
- },
2364
- {
2365
- "firstName": "Mark",
2366
- "lastName": "Udall",
2367
- "creatorType": "contributor"
2368
- },
2369
- {
2370
- "firstName": "David",
2371
- "lastName": "Vitter",
2372
- "creatorType": "contributor"
2373
- },
2374
- {
2375
- "firstName": "Claire",
2376
- "lastName": "McCaskill",
2377
- "creatorType": "contributor"
2378
- },
2379
- {
2380
- "firstName": "Jim",
2381
- "lastName": "Webb",
2382
- "creatorType": "contributor"
2383
- },
2384
- {
2385
- "firstName": "Saxby",
2386
- "lastName": "Chambliss",
2387
- "creatorType": "contributor"
2388
- },
2389
- {
2390
- "firstName": "Mark",
2391
- "lastName": "Begich",
2392
- "creatorType": "contributor"
2393
- },
2394
- {
2395
- "firstName": "Kay R.",
2396
- "lastName": "Hagan",
2397
- "creatorType": "contributor"
2398
- },
2399
- {
2400
- "firstName": "Roland",
2401
- "lastName": "Burris",
2402
- "creatorType": "contributor"
2403
- },
2404
- {
2405
- "firstName": "George S.",
2406
- "lastName": "LeMieux",
2407
- "creatorType": "contributor"
2408
- },
2409
- {
2410
- "firstName": "Lindsey",
2411
- "lastName": "Graham",
2412
- "creatorType": "contributor"
2413
- },
2414
- {
2415
- "firstName": "James M.",
2416
- "lastName": "Inhofe",
2417
- "creatorType": "contributor"
2418
- },
2419
- {
2420
- "firstName": "John",
2421
- "lastName": "McCain",
2422
- "creatorType": "contributor"
2423
- },
2424
- {
2425
- "firstName": "Daniel K.",
2426
- "lastName": "Akaka",
2427
- "creatorType": "contributor"
2428
- },
2429
- {
2430
- "firstName": "Bill",
2431
- "lastName": "Nelson",
2432
- "creatorType": "contributor"
2433
- },
2434
- {
2435
- "firstName": "Jack",
2436
- "lastName": "Reed",
2437
- "creatorType": "contributor"
2438
- }
2439
- ],
2440
- "date": "2009-12-02",
2441
- "committee": "Committee on Armed Services",
2442
- "documentNumber": "415",
2443
- "language": "eng",
2444
- "legislativeBody": "Senate",
2445
- "publisher": "U.S. Government Publishing Office",
2446
- "rights": "fdlp",
2447
- "session": "111",
2448
- "url": "https://www.govinfo.gov/app/details/CHRG-111shrg56419",
2449
- "attachments": [
2450
- {
2451
- "title": "HTML rendition",
2452
- "mimeType": "text/html"
2453
- },
2454
- {
2455
- "title": "PDF rendition",
2456
- "mimeType": "application/pdf"
2457
- }
2458
- ],
2459
- "tags": [],
2460
- "notes": [],
2461
- "seeAlso": []
2462
- }
2463
- ]
2464
- },
2465
- {
2466
- "type": "import",
2467
- "input": "<mods xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" version=\"3.3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd\" ID=\"P0b002ee183d8e4ad\">\n<name type=\"corporate\">\n <namePart>United States Government Publishing Office</namePart>\n <role>\n <roleTerm authority=\"marcrelator\" type=\"text\">publisher</roleTerm>\n <roleTerm authority=\"marcrelator\" type=\"code\">pbl</roleTerm>\n</role>\n <role>\n <roleTerm authority=\"marcrelator\" type=\"text\">distributor</roleTerm>\n <roleTerm authority=\"marcrelator\" type=\"code\">dst</roleTerm>\n</role>\n</name>\n<name type=\"corporate\">\n <namePart>United States</namePart>\n <namePart>Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction</namePart>\n <role>\n <roleTerm authority=\"marcrelator\" type=\"text\">author</roleTerm>\n <roleTerm authority=\"marcrelator\" type=\"code\">aut</roleTerm>\n</role>\n <description>Government Organization</description>\n</name>\n<typeOfResource>text</typeOfResource>\n<genre authority=\"marcgt\">government publication</genre>\n<language>\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n</language>\n<extension>\n <collectionCode>GPO</collectionCode>\n <category>Executive Agency Publications</category>\n <branch>legislative</branch>\n <dateIngested>2013-02-25</dateIngested>\n</extension>\n<originInfo>\n <publisher>Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction</publisher>\n <dateIssued encoding=\"w3cdtf\">2005-03-31</dateIssued>\n <issuance>monographic</issuance>\n</originInfo>\n<physicalDescription>\n <note type=\"source content type\">Deposited</note>\n <digitalOrigin>born digital</digitalOrigin>\n</physicalDescription>\n<classification authority=\"sudocs\">PREX 1.19:IN 8/W 37</classification>\n<identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD</identifier>\n<identifier type=\"local\">P0b002ee183d8e4ad</identifier>\n<identifier type=\"ILS system id\">000576953</identifier>\n<recordInfo>\n <recordContentSource authority=\"marcorg\">DGPO</recordContentSource>\n <recordCreationDate encoding=\"w3cdtf\">2013-02-25</recordCreationDate>\n <recordChangeDate encoding=\"w3cdtf\">2019-03-28</recordChangeDate>\n <recordIdentifier source=\"DGPO\">GPO-WMD</recordIdentifier>\n <recordOrigin>machine generated</recordOrigin>\n <languageOfCataloging>\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\n</languageOfCataloging>\n</recordInfo>\n<accessCondition type=\"GPO scope determination\">fdlp</accessCondition>\n<extension>\n <docClass>GPO</docClass>\n <accessId>GPO-WMD</accessId>\n <ACCode>GPO</ACCode>\n <fedPubName>Featured Commission Publications</fedPubName>\n <description>The Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction was established in 2004 and charged with examining the capabilities and challenges of the American intelligence community concerning the capabilities, intentions, and activities of foreign powers relating to the design, development, manufacture, acquisition, possession, proliferation, transfer, testing, potential or threatened use, or use of weapons of mass destruction, related means of delivery, and other related threats of the 21st Century.</description>\n <image>thumbnails/GPO-WMD.jpg</image>\n <agency abbrev=\"\">Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction</agency>\n <genericNav1Value>Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction</genericNav1Value>\n <ggrank1>Weapons of Mass Destruction</ggrank1>\n</extension>\n<titleInfo>\n <title>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction</title>\n</titleInfo>\n<location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD</url>\n <url access=\"raw object\" displayLabel=\"JPEG rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/thumbnails/GPO-WMD.jpg</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD.pdf</url>\n</location>\n<abstract>The Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction was established in 2004 and charged with examining the capabilities and challenges of the American intelligence community concerning the capabilities, intentions, and activities of foreign powers relating to the design, development, manufacture, acquisition, possession, proliferation, transfer, testing, potential or threatened use, or use of weapons of mass destruction, related means of delivery, and other related threats of the 21st Century.</abstract>\n<name type=\"corporate\">\n <namePart>United States</namePart>\n <namePart>Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction</namePart>\n <role>\n <roleTerm authority=\"marcrelator\" type=\"text\">associated name</roleTerm>\n <roleTerm authority=\"marcrelator\" type=\"code\">asn</roleTerm>\n</role>\n <description>United States Government Agency</description>\n</name>\n<extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n </searchTitle>\n</extension>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384198823\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1/mods.xml\">\n <titleInfo>\n <title>Report Section</title>\n</titleInfo>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Report Section;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1</accessId>\n <sequenceNumber>1</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384234254\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-1/mods.xml\">\n <titleInfo>\n <title>Cover Matter</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-1.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d824</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-1</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-1</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-1.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Cover Matter;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-1</accessId>\n <sequenceNumber>2</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384249152\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-2/mods.xml\">\n <titleInfo>\n <title>Letter to the President on FBI and CIA Transformation Plans</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-2.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d82c</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-2</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-2</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-2.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Letter to the President on FBI and CIA Transformation Plans;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-2</accessId>\n <sequenceNumber>3</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384265001\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-3/mods.xml\">\n <titleInfo>\n <title>Transmittal Letter</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-3.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d81c</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-3</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-3</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-3.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Transmittal Letter;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-3</accessId>\n <sequenceNumber>4</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384279456\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-4/mods.xml\">\n <titleInfo>\n <title>Overview of the Report</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-4.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d822</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-4</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-4</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-4.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Overview of the Report;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-4</accessId>\n <sequenceNumber>5</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384293864\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-5/mods.xml\">\n <titleInfo>\n <title>Part One: Looking Back</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-5.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d823</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-5</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-5</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-5.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Part One: Looking Back;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-5</accessId>\n <sequenceNumber>6</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384310096\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-6/mods.xml\">\n <titleInfo>\n <title>Chapter One Case Study: Iraq</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-6.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d81b</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-6</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-6</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-6.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter One Case Study: Iraq;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-6</accessId>\n <sequenceNumber>7</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384324472\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-7/mods.xml\">\n <titleInfo>\n <title>Chapter Two Case Study: Libya</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-7.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d830</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-7</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-7</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-7.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Two Case Study: Libya;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-7</accessId>\n <sequenceNumber>8</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384341496\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-8/mods.xml\">\n <titleInfo>\n <title>Chapter Three Case Study: Al-Qa&apos;ida in Afghanistan</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-8.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d827</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-8</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-8</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-8.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Three Case Study: Al-Qa&apos;ida in Afghanistan;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-8</accessId>\n <sequenceNumber>9</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384358383\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-9/mods.xml\">\n <titleInfo>\n <title>Chapter Four: Terrorism: Managing Today&apos;s Threat</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-9.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d832</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-9</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-9</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-9.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Four: Terrorism: Managing Today&apos;s Threat;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-9</accessId>\n <sequenceNumber>10</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384376089\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-10/mods.xml\">\n <titleInfo>\n <title>Chapter Five: Iran and North Korea: Monitoring the Development of Nuclear Weapons</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-10.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d82b</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-10</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-10</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-10.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Five: Iran and North Korea: Monitoring the Development of Nuclear Weapons;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-10</accessId>\n <sequenceNumber>11</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384389089\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-11/mods.xml\">\n <titleInfo>\n <title>Part Two: Looking Forward</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-11.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d820</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-11</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-11</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-11.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Part Two: Looking Forward;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-11</accessId>\n <sequenceNumber>12</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384403849\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-12/mods.xml\">\n <titleInfo>\n <title>Chapter Six: Leadership and Management: Forging an Integrated Intelligence Community</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-12.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d834</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-12</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-12</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-12.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Six: Leadership and Management: Forging an Integrated Intelligence Community;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-12</accessId>\n <sequenceNumber>13</sequenceNumber>\n <law congress=\"108\" isPrivate=\"false\" number=\"458\"></law>\n</extension>\n <relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States Public Law 458 (108th Congress)</title>\n</titleInfo>\n <identifier type=\"public law citation\">Public Law 108-458</identifier>\n</relatedItem>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384424681\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-13/mods.xml\">\n <titleInfo>\n <title>Chapter Seven: Collection</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-13.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d829</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-13</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-13</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-13.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Seven: Collection;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-13</accessId>\n <sequenceNumber>14</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384438074\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-14/mods.xml\">\n <titleInfo>\n <title>Chapter Eight: Analysis</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-14.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d831</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-14</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-14</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-14.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Eight: Analysis;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-14</accessId>\n <sequenceNumber>15</sequenceNumber>\n <law congress=\"108\" isPrivate=\"false\" number=\"458\"></law>\n</extension>\n <relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States Public Law 458 (108th Congress)</title>\n</titleInfo>\n <identifier type=\"public law citation\">Public Law 108-458</identifier>\n</relatedItem>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384454490\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-15/mods.xml\">\n <titleInfo>\n <title>Chapter Nine: Information Sharing</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-15.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d82d</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-15</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-15</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-15.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Nine: Information Sharing;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-15</accessId>\n <sequenceNumber>16</sequenceNumber>\n <law congress=\"108\" isPrivate=\"false\" number=\"458\"></law>\n</extension>\n <relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States Public Law 458 (108th Congress)</title>\n</titleInfo>\n <identifier type=\"public law citation\">Public Law 108-458</identifier>\n</relatedItem>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384470348\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-16/mods.xml\">\n <titleInfo>\n <title>Chapter Ten: Intelligence at Home: The FBI, Justice, and Homeland Security</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-16.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d81f</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-16</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-16</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-16.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Ten: Intelligence at Home: The FBI, Justice, and Homeland Security;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-16</accessId>\n <sequenceNumber>17</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384484690\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-17/mods.xml\">\n <titleInfo>\n <title>Chapter Eleven: Counterintelligence</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-17.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d825</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-17</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-17</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-17.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Eleven: Counterintelligence;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-17</accessId>\n <sequenceNumber>18</sequenceNumber>\n <law congress=\"108\" isPrivate=\"false\" number=\"458\"></law>\n</extension>\n <relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States Public Law 458 (108th Congress)</title>\n</titleInfo>\n <identifier type=\"public law citation\">Public Law 108-458</identifier>\n</relatedItem>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384497155\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-18/mods.xml\">\n <titleInfo>\n <title>Chapter Twelve: Covert Action</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-18.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d82f</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-18</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-18</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-18.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Twelve: Covert Action;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-18</accessId>\n <sequenceNumber>19</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384517435\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-19/mods.xml\">\n <titleInfo>\n <title>Chapter Thirteen: The Changing Proliferation Threat and the Intelligence Response</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-19.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d835</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-19</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-19</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-19.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Chapter Thirteen: The Changing Proliferation Threat and the Intelligence Response;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-19</accessId>\n <sequenceNumber>20</sequenceNumber>\n <law congress=\"108\" isPrivate=\"false\" number=\"458\"></law>\n</extension>\n <relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States Public Law 458 (108th Congress)</title>\n</titleInfo>\n <identifier type=\"public law citation\">Public Law 108-458</identifier>\n</relatedItem>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384532339\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-20/mods.xml\">\n <titleInfo>\n <title>Conclusion</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-20.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d82e</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-20</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-20</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-20.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Conclusion;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-20</accessId>\n <sequenceNumber>21</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384560386\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-21/mods.xml\">\n <titleInfo>\n <title>Postscript: Additional Intelligence Challenges</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-21.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d826</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-21</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-21</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-21.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Postscript: Additional Intelligence Challenges;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-21</accessId>\n <sequenceNumber>22</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384575827\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-22/mods.xml\">\n <titleInfo>\n <title>Appendix A: Authorizing Executive Order</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-22.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d81d</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-22</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-22</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-22.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Appendix A: Authorizing Executive Order;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-22</accessId>\n <sequenceNumber>23</sequenceNumber>\n <USCode title=\"5\">\n <section number=\"5701\"></section>\n <section number=\"5707\"></section>\n </USCode>\n <USCode title=\"50\">\n <section detail=\"(1)\" number=\"2302\"></section>\n <section detail=\"(4)\" number=\"401a\"></section>\n </USCode>\n <USCode title=\"5\">\n <section number=\"5701\"></section>\n <section number=\"5707\"></section>\n </USCode>\n <USCode title=\"50\">\n <section detail=\"(1)\" number=\"2302\"></section>\n <section detail=\"(4)\" number=\"401a\"></section>\n </USCode>\n <presidentialDoc date=\"1995-04-17\" number=\"12958\" type=\"EXECORD\"></presidentialDoc>\n</extension>\n <relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States Code</title>\n <partNumber>Title 5 Section 5701</partNumber>\n <partNumber>Title 5 Section 5707</partNumber>\n</titleInfo>\n <identifier type=\"USC citation\">5 U.S.C. 5701</identifier>\n <identifier type=\"USC citation\">5 U.S.C. 5707</identifier>\n</relatedItem>\n <relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States Code</title>\n <partNumber>Title 50 Section 2302(1)</partNumber>\n <partNumber>Title 50 Section 401a(4)</partNumber>\n</titleInfo>\n <identifier type=\"USC citation\">50 U.S.C. 2302(1)</identifier>\n <identifier type=\"USC citation\">50 U.S.C. 401a(4)</identifier>\n</relatedItem>\n <relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States Code</title>\n <partNumber>Title 5 Section 5701</partNumber>\n <partNumber>Title 5 Section 5707</partNumber>\n</titleInfo>\n <identifier type=\"USC citation\">5 U.S.C. 5701</identifier>\n <identifier type=\"USC citation\">5 U.S.C. 5707</identifier>\n</relatedItem>\n <relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>United States Code</title>\n <partNumber>Title 50 Section 2302(1)</partNumber>\n <partNumber>Title 50 Section 401a(4)</partNumber>\n</titleInfo>\n <identifier type=\"USC citation\">50 U.S.C. 2302(1)</identifier>\n <identifier type=\"USC citation\">50 U.S.C. 401a(4)</identifier>\n</relatedItem>\n <relatedItem type=\"isReferencedBy\">\n <titleInfo>\n <title>Presidential Executive Order Number 12958</title>\n</titleInfo>\n <identifier type=\"presidential executive order number\">Executive Order 12958</identifier>\n</relatedItem>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384592754\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-23/mods.xml\">\n <titleInfo>\n <title>Appendix B: List of Findings and Recommendations</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-23.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d833</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-23</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-23</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-23.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Appendix B: List of Findings and Recommendations;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-23</accessId>\n <sequenceNumber>24</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384604507\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-24/mods.xml\">\n <titleInfo>\n <title>Appendix C: An Intelligence Community Primer</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-24.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d81e</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-24</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-24</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-24.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Appendix C: An Intelligence Community Primer;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-24</accessId>\n <sequenceNumber>25</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384621867\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-25/mods.xml\">\n <titleInfo>\n <title>Appendix D: Common Abbreviations</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-25.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d828</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-25</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-25</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-25.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Appendix D: Common Abbreviations;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-25</accessId>\n <sequenceNumber>26</sequenceNumber>\n</extension>\n</relatedItem>\n<relatedItem type=\"constituent\" ID=\"id-new_child1284384635060\" xlink:href=\"https://www.govinfo.gov/metadata/granule/GPO-WMD/GPO-WMD-1-26/mods.xml\">\n <titleInfo>\n <title>Appendix E: Biographical Information for Commissioners and List of Commission Staff</title>\n</titleInfo>\n <relatedItem type=\"otherFormat\" xlink:href=\"https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-26.pdf\">\n <identifier type=\"FDsys Unique ID\">D09002ee1a025d821</identifier>\n</relatedItem>\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-26</identifier>\n <location>\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/GPO-WMD/GPO-WMD-1-26</url>\n <url access=\"raw object\" displayLabel=\"PDF rendition\">https://www.govinfo.gov/content/pkg/GPO-WMD/pdf/GPO-WMD-1-26.pdf</url>\n</location>\n <subject>\n <hierarchicalGeographic>\n <country>United States of America</country>\n <state></state>\n</hierarchicalGeographic>\n</subject>\n <extension>\n <searchTitle>Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction;\n Appendix E: Biographical Information for Commissioners and List of Commission Staff;\n </searchTitle>\n <granuleClass>CONTENT</granuleClass>\n <accessId>GPO-WMD-1-26</accessId>\n <sequenceNumber>27</sequenceNumber>\n</extension>\n</relatedItem>\n</mods>",
2468
- "items": [
2469
- {
2470
- "itemType": "document",
2471
- "title": "Unclassified Version of the Report of the Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction",
2472
- "creators": [
2473
- {
2474
- "lastName": "United States: Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction",
2475
- "fieldMode": 1,
2476
- "creatorType": "author"
2477
- },
2478
- {
2479
- "lastName": "United States: Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction",
2480
- "fieldMode": 1,
2481
- "creatorType": "author"
2482
- }
2483
- ],
2484
- "date": "2005-03-31",
2485
- "abstractNote": "The Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction was established in 2004 and charged with examining the capabilities and challenges of the American intelligence community concerning the capabilities, intentions, and activities of foreign powers relating to the design, development, manufacture, acquisition, possession, proliferation, transfer, testing, potential or threatened use, or use of weapons of mass destruction, related means of delivery, and other related threats of the 21st Century.",
2486
- "callNumber": "PREX 1.19:IN 8/W 37",
2487
- "language": "eng",
2488
- "publisher": "Commission on the Intelligence Capabilities of the United States Regarding Weapons of Mass Destruction",
2489
- "rights": "fdlp",
2490
- "url": "https://www.govinfo.gov/app/details/GPO-WMD",
2491
- "attachments": [
2492
- {
2493
- "title": "JPEG rendition",
2494
- "mimeType": "image/jpeg"
2495
- },
2496
- {
2497
- "title": "PDF rendition",
2498
- "mimeType": "application/pdf"
2499
- }
2500
- ],
2501
- "tags": [],
2502
- "notes": [],
2503
- "seeAlso": []
2504
- }
2505
- ]
2506
- },
2507
- {
2508
- "type": "import",
2509
- "input": "<mods xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\" version=\"3.3\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd\" ID=\"P0b002ee1b786fa55\">\r\n <name type=\"corporate\">\r\n <namePart>United States Government Publishing Office</namePart>\r\n <role>\r\n <roleTerm authority=\"marcrelator\" type=\"text\">publisher</roleTerm>\r\n <roleTerm authority=\"marcrelator\" type=\"code\">pbl</roleTerm>\r\n </role>\r\n <role>\r\n <roleTerm authority=\"marcrelator\" type=\"text\">distributor</roleTerm>\r\n <roleTerm authority=\"marcrelator\" type=\"code\">dst</roleTerm>\r\n </role>\r\n </name>\r\n <name type=\"corporate\">\r\n <namePart>United States</namePart>\r\n <namePart>Congress</namePart>\r\n <namePart>Senate</namePart>\r\n <role>\r\n <roleTerm authority=\"marcrelator\" type=\"text\">author</roleTerm>\r\n <roleTerm authority=\"marcrelator\" type=\"code\">aut</roleTerm>\r\n </role>\r\n <description>Government Organization</description>\r\n </name>\r\n <name type=\"corporate\">\r\n <namePart>United States</namePart>\r\n <namePart>Congress</namePart>\r\n <namePart>House of Representatives</namePart>\r\n <role>\r\n <roleTerm authority=\"marcrelator\" type=\"text\">author</roleTerm>\r\n <roleTerm authority=\"marcrelator\" type=\"code\">aut</roleTerm>\r\n </role>\r\n <description>Government Organization</description>\r\n </name>\r\n <typeOfResource>text</typeOfResource>\r\n <genre authority=\"marcgt\">government publication</genre>\r\n <language>\r\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\r\n </language>\r\n <extension>\r\n <collectionCode>BILLS</collectionCode>\r\n <searchTitle>An Act To amend title 38, United States Code, to authorize the Secretary of Veterans Affairs to provide or assist in providing an additional vehicle adapted for operation by disabled individuals to certain eligible persons, and for other purposes.;Advancing Uniform Transportation Opportunities for Veterans Act;AUTO for Veterans Act;H.R. 3304 (RFS)\r\n </searchTitle>\r\n <category>Bills and Statutes</category>\r\n <waisDatabaseName>117_cong_bills</waisDatabaseName>\r\n <branch>legislative</branch>\r\n <dateIngested>2022-10-12</dateIngested>\r\n </extension>\r\n <titleInfo>\r\n <title>An Act To amend title 38, United States Code, to authorize the Secretary of Veterans Affairs to provide or assist in providing an additional vehicle adapted for operation by disabled individuals to certain eligible persons, and for other purposes.</title>\r\n </titleInfo>\r\n <titleInfo type=\"alternative\">\r\n <title>Advancing Uniform Transportation Opportunities for Veterans Act</title>\r\n </titleInfo>\r\n <titleInfo type=\"alternative\">\r\n <title>AUTO for Veterans Act</title>\r\n </titleInfo>\r\n <titleInfo type=\"alternative\">\r\n <title>H.R. 3304 (RFS)\r\n </title>\r\n </titleInfo>\r\n <originInfo>\r\n <publisher>U.S. Government Publishing Office</publisher>\r\n <dateIssued encoding=\"w3cdtf\">2022-10-11</dateIssued>\r\n <issuance>monographic</issuance>\r\n </originInfo>\r\n <physicalDescription>\r\n <note type=\"source content type\">deposited</note>\r\n <digitalOrigin>born digital</digitalOrigin>\r\n <extent>4 p.</extent>\r\n </physicalDescription>\r\n <classification authority=\"sudocs\">Y 1.6:</classification>\r\n <classification authority=\"sudocs\">Y 1.4/6:</classification>\r\n <identifier type=\"local\">P0b002ee1b786fa55</identifier>\r\n <identifier type=\"uri\">https://www.govinfo.gov/app/details/BILLS-117hr3304rfs</identifier>\r\n <identifier type=\"preferred citation\">H.R. 3304</identifier>\r\n <identifier type=\"stock number\">021-610-00252-9</identifier>\r\n <identifier type=\"Parent ILS system id\">000501532</identifier>\r\n <identifier type=\"Child ILS system id\">000325573</identifier>\r\n <identifier type=\"Parent ILS title\">Congressional bills</identifier>\r\n <identifier type=\"Child ILS title\">House bills</identifier>\r\n <identifier type=\"former package identifier\">f:h3304_rfs.txt</identifier>\r\n <location>\r\n <url displayLabel=\"Content Detail\" access=\"object in context\">https://www.govinfo.gov/app/details/BILLS-117hr3304rfs</url>\r\n <url displayLabel=\"HTML rendition\" access=\"raw object\">https://www.govinfo.gov/content/pkg/BILLS-117hr3304rfs/html/BILLS-117hr3304rfs.htm</url>\r\n <url displayLabel=\"PDF rendition\" access=\"raw object\">https://www.govinfo.gov/content/pkg/BILLS-117hr3304rfs/pdf/BILLS-117hr3304rfs.pdf</url>\r\n <url displayLabel=\"XML rendition\" access=\"raw object\">https://www.govinfo.gov/content/pkg/BILLS-117hr3304rfs/xml/BILLS-117hr3304rfs.xml</url>\r\n </location>\r\n <accessCondition type=\"GPO scope determination\">fdlp</accessCondition>\r\n <recordInfo>\r\n <recordContentSource authority=\"marcorg\">DGPO</recordContentSource>\r\n <recordCreationDate encoding=\"w3cdtf\">2022-10-12</recordCreationDate>\r\n <recordChangeDate encoding=\"w3cdtf\">2022-10-13</recordChangeDate>\r\n <recordIdentifier source=\"DGPO\">BILLS-117hr3304rfs</recordIdentifier>\r\n <recordOrigin>machine generated</recordOrigin>\r\n <languageOfCataloging>\r\n <languageTerm type=\"code\" authority=\"iso639-2b\">eng</languageTerm>\r\n </languageOfCataloging>\r\n </recordInfo>\r\n <name type=\"corporate\">\r\n <namePart>United States</namePart>\r\n <namePart>Congress</namePart>\r\n <namePart>Senate</namePart>\r\n <namePart>Committee on Veterans&apos; Affairs</namePart>\r\n <role>\r\n <roleTerm authority=\"marcrelator\" type=\"text\">associated name</roleTerm>\r\n <roleTerm authority=\"marcrelator\" type=\"code\">asn</roleTerm>\r\n </role>\r\n </name>\r\n <relatedItem type=\"isReferencedBy\">\r\n <titleInfo>\r\n <title>United States Code</title>\r\n <partNumber>Title 38 Section 1701(6)</partNumber>\r\n <partNumber>Title 38 Section 3729(b)(2)</partNumber>\r\n <partNumber>Title 38 Section 3903(a)</partNumber>\r\n </titleInfo>\r\n <identifier type=\"USC citation\">38 U.S.C. 1701(6)</identifier>\r\n <identifier type=\"USC citation\">38 U.S.C. 3729(b)(2)</identifier>\r\n <identifier type=\"USC citation\">38 U.S.C. 3903(a)</identifier>\r\n </relatedItem>\r\n <extension>\r\n <docClass>hr</docClass>\r\n <accessId>BILLS-117hr3304rfs</accessId>\r\n <congress>117</congress>\r\n <session>2</session>\r\n <originChamber>HOUSE</originChamber>\r\n <currentChamber>SENATE</currentChamber>\r\n <billNumber>3304</billNumber>\r\n <billVersion reprint=\"false\">rfs</billVersion>\r\n <fileSuffix>rfs</fileSuffix>\r\n <shortTitle type=\"measure\">Advancing Uniform Transportation Opportunities for Veterans Act</shortTitle>\r\n <shortTitle type=\"measure\">AUTO for Veterans Act</shortTitle>\r\n <officialTitle>To amend title 38, United States Code, to authorize the Secretary of Veterans Affairs to provide or assist in providing an additional vehicle adapted for operation by disabled individuals to certain eligible persons, and for other purposes.</officialTitle>\r\n <action date=\"2022-10-11\">Received; read twice and referred to the Committee on Veterans&apos; Affairs</action>\r\n <congCommittee authorityId=\"ssva00\" chamber=\"S\" congress=\"117\" type=\"S\">\r\n \r\n <name type=\"authority-standard\">Committee on Veterans&apos; Affairs</name>\r\n \r\n <name type=\"authority-short\">Veterans&apos; Affairs</name>\r\n \r\n </congCommittee>\r\n <isPrivate>false</isPrivate>\r\n <isAppropriation>false</isAppropriation>\r\n <USCode title=\"38\">\r\n \r\n <section detail=\"(6)\" number=\"1701\"></section>\r\n \r\n <section detail=\"(b)(2)\" number=\"3729\"></section>\r\n \r\n <section detail=\"(a)\" number=\"3903\"></section>\r\n \r\n </USCode>\r\n </extension>\r\n</mods>",
2510
- "items": [
2511
- {
2512
- "itemType": "bill",
2513
- "title": "Advancing Uniform Transportation Opportunities for Veterans Act",
2514
- "creators": [],
2515
- "date": "2022-10-11",
2516
- "billNumber": "H.R. 3304",
2517
- "code": "U.S.C.",
2518
- "codePages": "1701, 3729, 3903",
2519
- "codeVolume": "38",
2520
- "language": "eng",
2521
- "legislativeBody": "House",
2522
- "rights": "fdlp",
2523
- "session": "117",
2524
- "url": "https://www.govinfo.gov/app/details/BILLS-117hr3304rfs",
2525
- "attachments": [
2526
- {
2527
- "title": "HTML rendition",
2528
- "mimeType": "text/html"
2529
- },
2530
- {
2531
- "title": "PDF rendition",
2532
- "mimeType": "application/pdf"
2533
- },
2534
- {
2535
- "title": "XML rendition"
2536
- }
2537
- ],
2538
- "tags": [],
2539
- "notes": [],
2540
- "seeAlso": []
2541
- }
2542
- ]
2543
- }
2544
- ]
2545
- /** END TEST CASES **/