From 716747e744c739bdbfdd5ef08c79f6725ad20c5d Mon Sep 17 00:00:00 2001 From: Rekyt Date: Mon, 18 Nov 2019 18:05:07 +0100 Subject: [PATCH 1/4] Add VCR version and cassettes for bi_image() --- DESCRIPTION | 5 +- R/bi_image.R | 24 ++-- tests/fixtures/bi_image.yml | 214 +++++++++++++++++++++++++++++++ tests/testthat/helper-bnfimage.R | 4 + tests/testthat/test-bi_image.R | 158 ++++++++++++++++++++++- 5 files changed, 391 insertions(+), 14 deletions(-) create mode 100644 tests/fixtures/bi_image.yml create mode 100644 tests/testthat/helper-bnfimage.R diff --git a/DESCRIPTION b/DESCRIPTION index 658b437..acf1a5b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -12,10 +12,11 @@ Encoding: UTF-8 LazyData: true Imports: httr, - vcr, + vcr (>= 0.3.0.9132), magick, tibble Roxygen: list(markdown = TRUE) RoxygenNote: 6.1.1 Suggests: - testthat (>= 2.1.0) + testthat (>= 2.1.0), + vcr diff --git a/R/bi_image.R b/R/bi_image.R index adc51cb..58e17fc 100644 --- a/R/bi_image.R +++ b/R/bi_image.R @@ -14,18 +14,18 @@ #' to the final image (`0` for no rotation) #' @param quality \[`character(1)`\]\cr{} #' -#' * `"native"` for native colors of the image or, -#' * `"color"` for the image in color, -#' * `"gray"` for levels of gray, -#' * `"bitonal"` for only black and white pixels. +#' * `"native"` for native colors of the image or, +#' * `"color"` for the image in color, +#' * `"gray"` for levels of gray, +#' * `"bitonal"` for only black and white pixels. #' @param format \[`character(1)`\]\cr{} #' -#' * `"jpg"` for JPEG image, -#' * `"tif"` for TIFF image, -#' * `"png"` for PNG image, -#' * `"gif"` for GIF image, -#' * `"jp2"` for JP2 image, -#' * `"pdf"` for PDF image. +#' * `"jpg"` for JPEG image, +#' * `"tif"` for TIFF image, +#' * `"png"` for PNG image, +#' * `"gif"` for GIF image, +#' * `"jp2"` for JP2 image, +#' * `"pdf"` for PDF image. #' #' @return a matrix of the image #' @export @@ -63,8 +63,10 @@ bi_image = function(identifier = NULL, region = c(0L, 0L, 500L, 500L), bi_query = bi_GET(identifier, region, size, rotation, paste0(quality, ".", format)) - if (httr::http_error(bi_query)) { + if (bi_query$status_code == 503) { stop("The API could not be reached, please try again later") + } else if (bi_query$status_code == 500) { + stop("The query gave no answer. Please try another query") } magick::image_read(bi_query$content) diff --git a/tests/fixtures/bi_image.yml b/tests/fixtures/bi_image.yml new file mode 100644 index 0000000..936dd54 --- /dev/null +++ b/tests/fixtures/bi_image.yml @@ -0,0 +1,214 @@ +http_interactions: +- request: + method: get + uri: https://gallica.bnf.fr/iiif/ark:/12345/full/150,75/0/native.png + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + user-agent: http://github.com/Rekyt/bnfimage R package bnfimage/v.0.0.1 + response: + status: + status_code: 500 + category: Server error + reason: Internal Server Error + message: 'Server error: (500) Internal Server Error' + headers: + date: Mon, 18 Nov 2019 17:02:46 GMT + server: Apache + x-oneagent-js-injection: 'true' + content-type: text/html;charset=utf-8 + content-language: fr + content-length: '2556' + connection: close + body: + encoding: UTF-8 + string: "État HTTP 500 – Internal + Server Error

État + HTTP 500 – Internal Server Error


Type + Rapport d''exception

message Could not resolve view with name + 'error' in servlet with name 'arkDispatcherServlet'

description + Le serveur a rencontré une erreur interne qui l''a empêché de satisfaire + la requête.

exception

javax.servlet.ServletException:
+        Could not resolve view with name 'error' in servlet with name 'arkDispatcherServlet'\n\torg.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1305)\n\torg.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1069)\n\torg.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1008)\n\torg.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:925)\n\torg.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:974)\n\torg.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:866)\n\tjavax.servlet.http.HttpServlet.service(HttpServlet.java:635)\n\torg.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:851)\n\tjavax.servlet.http.HttpServlet.service(HttpServlet.java:742)\n\torg.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)\n\torg.jasig.cas.client.session.SingleSignOutFilter.doFilter(SingleSignOutFilter.java:100)\n\torg.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:357)\n\torg.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:270)\n

note + La trace complète de la cause mère de cette erreur est disponible dans les + fichiers journaux de ce serveur.


XXXXX/XXXXX

" + recorded_at: 2019-11-18 17:02:53 GMT + recorded_with: vcr/0.3.0.9132, webmockr/0.4.1.9100 +- request: + method: get + uri: https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/f1/full/150,75/0/native.png + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + user-agent: http://github.com/Rekyt/bnfimage R package bnfimage/v.0.0.1 + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Mon, 18 Nov 2019 17:02:48 GMT + server: Apache + x-oneagent-js-injection: 'true' + access-control-allow-origin: '*' + link: ;rel="profile" + content-type: image/png + content-length: '22533' + body: + encoding: UTF-8 + string: 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 + recorded_at: 2019-11-18 17:02:53 GMT + recorded_with: vcr/0.3.0.9132, webmockr/0.4.1.9100 +- request: + method: get + uri: https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/f1/full/15,7/0/native.png + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + user-agent: http://github.com/Rekyt/bnfimage R package bnfimage/v.0.0.1 + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Mon, 18 Nov 2019 17:02:50 GMT + server: Apache + x-oneagent-js-injection: 'true' + access-control-allow-origin: '*' + link: ;rel="profile" + content-type: image/png + content-length: '306' + body: + encoding: UTF-8 + string: iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHEAAAAACifpS4AAAACXBIWXMAAD2EAAA9hAHVrK90AAAA5ElEQVQI1wHZACb/AE5Zef15u3URfA1sRogaljeQ4pQqoKCeYp7AnvlWRwBtBrhxtb+wFa2XhoS02br4v7vFccmt0jvWvdnJdOQAbUC5E6ltoy+VunAXs+DFIMz4zgHQFNRB1pbc43nhAGiFsgibJI05T49YvmxsplqrQqoBscy32b0WzFV5gQAzmzzCO8Y0MkGiUG1CrT64Qj4yxTlaNsouCzOMNNUAJ0UkpyM9H8gZ+SGLVkUlujpFUBdRWFP9TdNJwzlCAC5sJD4m+ySiIL4X5T/mLsBEslM4V3trDnnogm5q8Hv7ZTfAMNEGAAAAAElFTkSuQmCC + recorded_at: 2019-11-18 17:02:53 GMT + recorded_with: vcr/0.3.0.9132, webmockr/0.4.1.9100 +- request: + method: get + uri: https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/f1/full/15,7/0/native.jpg + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + user-agent: http://github.com/Rekyt/bnfimage R package bnfimage/v.0.0.1 + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Mon, 18 Nov 2019 17:02:50 GMT + server: Apache + x-oneagent-js-injection: 'true' + access-control-allow-origin: '*' + link: ;rel="profile" + content-type: image/jpeg + content-length: '224' + body: + encoding: UTF-8 + string: /9j/4AAQSkZJRgABAQEBkAGQAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/wAALCAAHAA8BAREA/8QAFAABAAAAAAAAAAAAAAAAAAAABv/EACQQAAEDAgQHAAAAAAAAAAAAAAECAwQFEQAGMVEHEhMhIkFh/9oACAEBAAA/ACUXiSy2/BbaosdCY6LKBseqUptqALe9+9sKZ+dnqtQpEdrLMMIXy+aZABTZQOhR83x//9k= + recorded_at: 2019-11-18 17:02:53 GMT + recorded_with: vcr/0.3.0.9132, webmockr/0.4.1.9100 +- request: + method: get + uri: https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/f1/full/15,7/0/native.tif + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + user-agent: http://github.com/Rekyt/bnfimage R package bnfimage/v.0.0.1 + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Mon, 18 Nov 2019 17:02:51 GMT + server: Apache + x-oneagent-js-injection: 'true' + access-control-allow-origin: '*' + link: ;rel="profile" + content-type: image/tif + vary: Accept-Encoding,User-Agent + content-encoding: gzip + content-length: '422' + body: + encoding: UTF-8 + string: SUkqANoAAABZTv15u3kRdQ18RmwaiDeW4pAqlKCgYp7AnvmeR1YGbXG4v7UVsJethIbZtPi6u79xxa3JO9K91snZ5HRAbRO5bakvo7qVF3DgsyDF+MwBzhTQQdSW1uPc4XmFaAiyJJs5jY9PvlhsbFqmQqsBqsyx2bcWvVXMgXmbM8I8xjsyNKJBbVCtQrg+PkLFMlo5yjYLLowz1TRFJ6ckPSPIH/kZiyFFVrolRToXUFhR/VPTTcNJQjlsLj4k+yaiJL4g5RfmP8AuskQ4U3tXDmvoeW6C8GoSAAABAwABAAAADwAAAAEBAwABAAAABwAAAAIBAwABAAAAEAAAAAMBAwABAAAAAQAAAAYBAwABAAAAAQAAAAoBAwABAAAAAQAAAA0BAgABAAAAAAAAABEBBAABAAAACAAAABIBAwABAAAAAQAAABUBAwABAAAAAQAAABYBAwABAAAAEQEAABcBBAABAAAA0gAAABoBBQABAAAAuAEAABsBBQABAAAAwAEAABwBAwABAAAAAQAAACgBAwABAAAAAgAAACkBAwACAAAAAAABADEBAgBFAAAAyAEAAAAAAAAAAAAyAAAgAAAAADIAACAASW1hZ2VNYWdpY2sgNi41LjQtNyAyMDE0LTAyLTEwIFExNiBPcGVuTVAgaHR0cDovL3d3dy5pbWFnZW1hZ2ljay5vcmcA + recorded_at: 2019-11-18 17:02:53 GMT + recorded_with: vcr/0.3.0.9132, webmockr/0.4.1.9100 +- request: + method: get + uri: https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/f1/full/15,7/0/color.gif + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + user-agent: http://github.com/Rekyt/bnfimage R package bnfimage/v.0.0.1 + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Mon, 18 Nov 2019 17:02:52 GMT + server: Apache + x-oneagent-js-injection: 'true' + access-control-allow-origin: '*' + link: ;rel="profile" + content-type: image/gif + content-length: '526' + body: + encoding: UTF-8 + string: R0lGODlhDwAHAPYAABgYGBoaGiAgICEhISEhISMjIyQkJCQkJCUlJSYmJicnJycnJy4uLi4uLi8vLzMzMzMzMzMzMzQ0NDU1NTc3Nzk5OTk5OTo6Ojw8PD09PT4+PkBAQEFBQUJCQkJCQkRERElJSU5OTk5OTk9PT1BQUFBQUFFRUVNTU1RUVFZWVlZWVldXV1hYWGhoaGtra2tra2xsbGxsbG1tbW1tbXBwcHR0dHV1dXl5eXl5eXl5eXl5eXp6enx8fIKCgoaGhoiIiI2NjZCQkJSUlJWVlZaWlpubm56enp6enp6enqCgoKOjo6ampqmpqampqaurq62tra+vr7GxsbGxsbOzs7S0tLW1tbe3t7i4uLi4uLq6ury8vL+/v8TExMXFxcnJyczMzMzMzM3Nzc/Pz9HR0dPT09bW1tbW1tnZ2dzc3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAAAAAAALAAAAAAPAAcAAAdrgCI7ODY8MD9EQUJJRkdIKjJXVVBPPlRZW11eY2ZnNTNYTEpDNFNcYGFiZGVoOS1SRUAjLDFLTk1RVlpfNxEZGBIcJR4aHQ8WFAwQEwsIBQIBBCkJFyQmKCEgFQ0GCgcDABsOHycrLzo9LoEAOw== + recorded_at: 2019-11-18 17:02:53 GMT + recorded_with: vcr/0.3.0.9132, webmockr/0.4.1.9100 +- request: + method: get + uri: https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/f1/full/15,7/0/bitonal.gif + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + user-agent: http://github.com/Rekyt/bnfimage R package bnfimage/v.0.0.1 + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Mon, 18 Nov 2019 17:02:52 GMT + server: Apache + x-oneagent-js-injection: 'true' + access-control-allow-origin: '*' + link: ;rel="profile" + content-type: image/gif + content-length: '58' + body: + encoding: UTF-8 + string: R0lGODlhDwAHAPABAAAAAP///yH5BAAAAAAALAAAAAAPAAcAAAIRhHOhi+wPWHxqogSN3rz7DxYAOw== + recorded_at: 2019-11-18 17:02:53 GMT + recorded_with: vcr/0.3.0.9132, webmockr/0.4.1.9100 diff --git a/tests/testthat/helper-bnfimage.R b/tests/testthat/helper-bnfimage.R new file mode 100644 index 0000000..11ccee9 --- /dev/null +++ b/tests/testthat/helper-bnfimage.R @@ -0,0 +1,4 @@ +library("vcr") +invisible(vcr::vcr_configure( + dir = "../fixtures" +)) diff --git a/tests/testthat/test-bi_image.R b/tests/testthat/test-bi_image.R index 3e3a6f9..2fcab63 100644 --- a/tests/testthat/test-bi_image.R +++ b/tests/testthat/test-bi_image.R @@ -1,4 +1,4 @@ -test_that("bi_image() fails gracefully", { +test_that("bi_image() fails gracefully on wrong arguments", { # Test for identifier expect_error(bi_image(NULL), "Define an identifier for your image", fixed = TRUE) @@ -45,3 +45,159 @@ test_that("bi_image() fails gracefully", { expect_error(bi_image("a", format = 1), "'arg' must be NULL or a character vector", fixed = TRUE) }) + +use_cassette("bi_image", { + test_that("bi_image() fails gracefully when sending a wrong query", { + expect_error( + bi_image( + identifier = "ark:/12345", + region = "full", + size = c(150, 75), + rotation = 0, + quality = "native", + format = "png"), + "The query gave no answer. Please try another query", fixed = TRUE) + }) + + test_that("bi_image() works with correct query", { + + # Regular query + eiffel_tower = bi_image( + identifier = "ark:/12148/btv1b9055204k/f1", + region = "full", + size = c(150, 75), + rotation = 0, + quality = "native", + format = "png") + + expect_is(eiffel_tower, "magick-image") + + eiffel_info = magick::image_info(eiffel_tower) + + expect_equal(eiffel_info, + tibble::tibble( + format = "PNG", + width = 150L, + height = 75L, + colorspace = "Gray", + matte = FALSE, + filesize = 22533L, + density = "157x157" + )) + + # Smaller size + eiffel_tower = bi_image( + identifier = "ark:/12148/btv1b9055204k/f1", + region = "full", + size = c(15, 7), + rotation = 0, + quality = "native", + format = "png") + expect_is(eiffel_tower, "magick-image") + + eiffel_info = magick::image_info(eiffel_tower) + + expect_equal(eiffel_info, + tibble::tibble( + format = "PNG", + width = 15L, + height = 7L, + colorspace = "Gray", + matte = FALSE, + filesize = 306L, + density = "157x157" + )) + + + # Change image format + ## JPEG + eiffel_tower = bi_image( + identifier = "ark:/12148/btv1b9055204k/f1", + region = "full", + size = c(15, 7), + rotation = 0, + quality = "native", + format = "jpg") + expect_is(eiffel_tower, "magick-image") + + eiffel_info = magick::image_info(eiffel_tower) + + expect_equal(eiffel_info, + tibble::tibble( + format = "JPEG", + width = 15L, + height = 7L, + colorspace = "Gray", + matte = FALSE, + filesize = 224L, + density = "400x400" + )) + ## TIFF + eiffel_tower = bi_image( + identifier = "ark:/12148/btv1b9055204k/f1", + region = "full", + size = c(15, 7), + rotation = 0, + quality = "native", + format = "tif") + expect_is(eiffel_tower, "magick-image") + + eiffel_info = magick::image_info(eiffel_tower) + + expect_equal(eiffel_info, + tibble::tibble( + format = "TIFF", + width = 15L, + height = 7L, + colorspace = "Gray", + matte = FALSE, + filesize = 525L, + density = "400x400" + )) + + # Color + ## Color + eiffel_tower = bi_image( + identifier = "ark:/12148/btv1b9055204k/f1", + region = "full", + size = c(15, 7), + rotation = 0, + quality = "color", + format = "gif") + expect_is(eiffel_tower, "magick-image") + + eiffel_info = magick::image_info(eiffel_tower) + + expect_equal(eiffel_info, + tibble::tibble( + format = "GIF", + width = 15L, + height = 7L, + colorspace = "sRGB", + matte = FALSE, + filesize = 526L, + density = "72x72")) + ## Bitonal + eiffel_tower = bi_image( + identifier = "ark:/12148/btv1b9055204k/f1", + region = "full", + size = c(15, 7), + rotation = 0, + quality = "bitonal", + format = "gif") + expect_is(eiffel_tower, "magick-image") + + eiffel_info = magick::image_info(eiffel_tower) + + expect_equal(eiffel_info, + tibble::tibble( + format = "GIF", + width = 15L, + height = 7L, + colorspace = "sRGB", + matte = FALSE, + filesize = 58L, + density = "72x72")) + + }) +}) From 4b693f9b7f4432816b1601d60ee39497fd2ab444 Mon Sep 17 00:00:00 2001 From: Rekyt Date: Mon, 18 Nov 2019 18:36:10 +0100 Subject: [PATCH 2/4] Fix vcr version --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index acf1a5b..99584df 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -12,7 +12,7 @@ Encoding: UTF-8 LazyData: true Imports: httr, - vcr (>= 0.3.0.9132), + vcr (>= 0.3.0), magick, tibble Roxygen: list(markdown = TRUE) From 6a67856a67ce0a058a09ce488640dfd8314e37ca Mon Sep 17 00:00:00 2001 From: Rekyt Date: Mon, 18 Nov 2019 18:48:58 +0100 Subject: [PATCH 3/4] Add VCR dependency as Remotes --- DESCRIPTION | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 99584df..a3f53c0 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -12,9 +12,10 @@ Encoding: UTF-8 LazyData: true Imports: httr, - vcr (>= 0.3.0), + vcr (>= 0.3.0.9132), magick, tibble +Remotes: ropensci/vcr Roxygen: list(markdown = TRUE) RoxygenNote: 6.1.1 Suggests: From 985dae2d3af2ce66ea53f2907e13cd6440e02ff6 Mon Sep 17 00:00:00 2001 From: Rekyt Date: Mon, 18 Nov 2019 19:20:43 +0100 Subject: [PATCH 4/4] Tests for bi_metadata() --- R/bi_metadata.R | 15 +- tests/fixtures/bi_metadata.yml | 882 ++++++++++++++++++++++++++++++ tests/testthat/test-bi_metadata.R | 28 + 3 files changed, 923 insertions(+), 2 deletions(-) create mode 100644 tests/fixtures/bi_metadata.yml create mode 100644 tests/testthat/test-bi_metadata.R diff --git a/R/bi_metadata.R b/R/bi_metadata.R index 4e91beb..d006b3e 100644 --- a/R/bi_metadata.R +++ b/R/bi_metadata.R @@ -8,6 +8,17 @@ bi_metadata = function(identifier = NULL) { } bi_query = bi_GET(identifier, "manifest.json") - httr::http_error(bi_query) - httr::content(bi_query) + + bi_content = httr::content(bi_query, encoding = "UTF-8") + + bi_error = ifelse(!is.null(bi_content$ErrorFragment$contenu), TRUE, FALSE) + + if (bi_query$status_code == 503) { + stop("The API could not be reached, please try again later") + } else if (bi_query$status_code == 500 | + bi_error) { + stop("The query gave no answer. Please try another query") + } + + return(bi_content) } diff --git a/tests/fixtures/bi_metadata.yml b/tests/fixtures/bi_metadata.yml new file mode 100644 index 0000000..25d3e42 --- /dev/null +++ b/tests/fixtures/bi_metadata.yml @@ -0,0 +1,882 @@ +http_interactions: +- request: + method: get + uri: https://gallica.bnf.fr/iiif/12345/manifest.json + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + user-agent: http://github.com/Rekyt/bnfimage R package bnfimage/v.0.0.1 + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Mon, 18 Nov 2019 18:17:32 GMT + server: Apache + x-oneagent-js-injection: 'true' + cache-control: no-store + content-type: application/json;charset=UTF-8 + content-language: fr-FR + vary: Accept-Encoding,User-Agent + content-encoding: gzip + transfer-encoding: chunked + body: + encoding: UTF-8 + string: "{\"messageSignalFragment\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Signalez-nous + votre problème\",\"description\":\"Erreur interne du serveur Gallica concernant + l'ark https://gallica.bnf.fr/iiif/12345/manifest.json\",\"selected\":false,\"url\":\"gallica@bnf.fr\",\"etat\":\"\",\"bindUrl\":\"\"},\"HeaderBarFragment\":{\"display\":true,\"active\":true,\"parameters\":{},\"contenu\":{},\"firstGroupFragment\":{\"display\":true,\"active\":true,\"parameters\":{},\"etat\":\"\"},\"secondGroupFragment\":{\"display\":true,\"active\":true,\"parameters\":{},\"etat\":\"\"},\"thirdGroupFragment\":{\"display\":true,\"active\":true,\"parameters\":{},\"etat\":\"\"},\"fourthGroupFragment\":{\"display\":true,\"active\":true,\"parameters\":{},\"etat\":\"\"},\"mainHeaderBarFragment\":{\"display\":true,\"active\":true,\"parameters\":{},\"contenu\":{\"lienPanier\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"https://achatsreproduction.bnf.fr/views/vel/mon_panier.jsf\",\"selected\":false,\"etat\":\"\"},\"newDoc\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Nouveau\",\"selected\":false,\"etat\":\"\"},\"titleDoc\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Titre\",\"selected\":false,\"etat\":\"\"},\"Libelles\":{\"display\":true,\"active\":true,\"parameters\":{\"listeLibelles\":[[\"EN + SAVOIR +\"],[\"A propos\"],[\"Conditions d'utilisation\"],[\"LIENS UTILES\"],[\"Aide\"],[\"Accessibilité\"],[\"Une + question ?\"],[\"SERVICES MOBILES\"],[\"Accéder au site mobile\"],[\"RETROUVER + GALLICA SUR\"],[\"Lire les derniers billets du blog\"],[\"Recevoir la lettre + d'information\"],[\"S'abonner\"],[\"Consulter les anciens numéros\"],[\"Espace + personnel : cette fonction n'est pas encore disponible\"],[\"Panier\"],[\"Espace + personnel\"],[\"En ligne\"],[\"Mentions légales\"]],\"labelBlogLien\":\"Lire + les derniers billets du blog\"},\"etat\":\"\"},\"delDoc\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Supprimer\",\"selected\":false,\"etat\":\"\"},\"espacePerso\":{\"display\":true,\"active\":true,\"parameters\":{},\"contenu\":[{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"description\":\"Profil\",\"selected\":false,\"url\":\"https://noticesetdocuments.bnf.fr/views/modifierCompte.jsf?AppOrigine=Gallica\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"description\":\"Documents\",\"selected\":false,\"url\":\"https://noticesetdocuments.bnf.fr/views/gallicaDocs.jsf?AppOrigine=Gallica\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"description\":\"Marques-pages\",\"selected\":false,\"url\":\"https://noticesetdocuments.bnf.fr/views/gallicaAffichageMarquePageDoc.jsf?AppOrigine=Gallica\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"description\":\"Préférences\",\"selected\":false,\"url\":\"https://noticesetdocuments.bnf.fr/views/gallicaPreferences.jsf?AppOrigine=Gallica\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"description\":\"Recherches\",\"selected\":false,\"url\":\"https://noticesetdocuments.bnf.fr/views/gallicaSearches.jsf?AppOrigine=Gallica\",\"etat\":\"\",\"bindUrl\":\"\"}],\"etat\":\"\"},\"lienProfil\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"https://noticesetdocuments.bnf.fr/views/accueilEspacePerso.jsf?AppOrigine=Gallica\",\"selected\":false,\"etat\":\"\"},\"menuSelection\":{\"display\":true,\"active\":true,\"parameters\":{},\"menu\":{\"raccourciLabelAllerAuContenu\":\"accessibilite.aller.contenu\",\"btnSelectionLabel\":\"nos + sélections\",\"toutesel\":{\"touteseltitre\":\"EXPLORER TOUT\",\"toutesellien\":\"/html/und/les-selections-de-gallica\",\"touteseltexte\":\"

Partez + à la découverte de documents sélectionnés et regroupés par nos soins

\\n\",\"touteselimage\":\"https://gallica.bnf.fr/html/sites/default/files/gallica_menuselections_test02.jpg\"},\"menu_abcd\":{\"001-4737\":{\"Title\":\"TOUTES + NOS SÉLECTIONS\",\"href\":\"\",\"below\":{\"001-4738\":{\"Title\":\"A\",\"href\":\"\",\"below\":{\"001-4746\":{\"Title\":\"Abécédaires\",\"href\":\"https://gallica.bnf.fr/html/und/livres/abecedaires\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4748\":{\"Title\":\"Affiches\",\"href\":\"https://gallica.bnf.fr/html/und/images/affiches-et-affichistes-xixe-xxe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4788\":{\"Title\":\"Afrique\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4790\":{\"Title\":\"Amérique\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4800\":{\"Title\":\"Architecture + (dessins)\",\"href\":\"https://gallica.bnf.fr/html/und/images/dessins-darchitectes-xvie-xxe-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4817\":{\"Title\":\"Archives + de la parole (1911-1914)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/archives-de-la-parole-ferdinand-brunot-1911-1914\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-4818\":{\"Title\":\"Archives + de la parole (1920-1924)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/archives-de-la-parole-jean-poirot-enregistrements-la-sorbonne\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5542\":{\"Title\":\"Asie\",\"href\":\"https://gallica.bnf.fr/html/und/asie/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5625\":{\"Title\":\"Athlètes\",\"href\":\"https://gallica.bnf.fr/html/und/images/athletes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5616\":{\"Title\":\"Athlétisme\",\"href\":\"https://gallica.bnf.fr/html/und/images/athletisme\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-4812\":{\"Title\":\"Audio\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fonds-sonores\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-5586\":{\"Title\":\"Auvergne + Rhône-Alpes\",\"href\":\"https://gallica.bnf.fr/html/und/france/auvergne-rhone-alpes\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-4749\":{\"Title\":\"B\",\"href\":\"\",\"below\":{\"001-4750\":{\"Title\":\"Bastille\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/archives-de-la-bastille\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5564\":{\"Title\":\"Botanique\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-botanique-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5587\":{\"Title\":\"Bourgogne\",\"href\":\"https://gallica.bnf.fr/html/und/france/bourgogne-franche-comte\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5615\":{\"Title\":\"Boxeurs\",\"href\":\"https://gallica.bnf.fr/html/und/images/boxeurs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5591\":{\"Title\":\"Bretagne\",\"href\":\"https://gallica.bnf.fr/html/und/france/bretagne\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-5567\":{\"Title\":\"Brésil\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/france-bresil\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-4751\":{\"Title\":\"C\",\"href\":\"\",\"below\":{\"001-5644\":{\"Title\":\"Canards + (livrets)\",\"href\":\"https://gallica.bnf.fr/html/und/livres/origines-de-la-presse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4775\":{\"Title\":\"Cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/cartes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4776\":{\"Title\":\"Cartes + marines\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/cartes-marines-sur-parchemin\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4777\":{\"Title\":\"Cassini\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/france-en-cartes/la-carte-de-cassini\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5592\":{\"Title\":\"Centre + Val de Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/centre-val-de-loire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-5561\":{\"Title\":\"Céramique\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/arts-de-la-terre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-4819\":{\"Title\":\"Chansons + 14-18\",\"href\":\"https://gallica.bnf.fr/html/enregistrements-sonores/chansons-et-musiques-de-la-premiere-guerre-mondiale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-4829\":{\"Title\":\"Chants + de Noël\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chants-et-musique-de-noel\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5544\":{\"Title\":\"Chevaux\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/patrimoine-equestre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5568\":{\"Title\":\"Chine\",\"href\":\"https://gallica.bnf.fr/html/und/asie/france-chine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-4785\":{\"Title\":\"Christine + de Pizan\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/christine-de-pizan\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-5579\":{\"Title\":\"Cinéma + (presse de)\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-de-cinema\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-5585\":{\"Title\":\"Cinéma + (vidéos sur le)\",\"href\":\"https://gallica.bnf.fr/html/und/videos/cinema-et-audiovisuel\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-4832\":{\"Title\":\"Collection + Charles Cros\",\"href\":\"https://gallica.bnf.fr/html/und/objets/collection-charles-cros\",\"below\":null,\"submenu\":null,\"abcd\":null},\"015-4797\":{\"Title\":\"Collection + Deloynes\",\"href\":\"https://gallica.bnf.fr/html/und/images/collection-deloynes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"016-5553\":{\"Title\":\"Coloriages\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/coloriages\",\"below\":null,\"submenu\":null,\"abcd\":null},\"017-4839\":{\"Title\":\"Conférences + de la BnF\",\"href\":\"https://gallica.bnf.fr/html/und/videos/conferences-de-la-bnf\",\"below\":null,\"submenu\":null,\"abcd\":null},\"018-4836\":{\"Title\":\"Consoles + de jeux vidéo\",\"href\":\"https://gallica.bnf.fr/html/und/objets/consoles-de-jeux-video\",\"below\":null,\"submenu\":null,\"abcd\":null},\"019-5593\":{\"Title\":\"Corse\",\"href\":\"https://gallica.bnf.fr/html/und/france/corse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"020-5547\":{\"Title\":\"Cuisine\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/patrimoine-gourmand\",\"below\":null,\"submenu\":null,\"abcd\":null},\"021-5617\":{\"Title\":\"Cyclisme\",\"href\":\"https://gallica.bnf.fr/html/und/images/cyclisme\",\"below\":null,\"submenu\":null,\"abcd\":null},\"022-4813\":{\"Title\":\"Cylindres\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/cylindres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"023-5627\":{\"Title\":\"Coureurs + automobiles\",\"href\":\"https://gallica.bnf.fr/html/und/images/coureurs-automobiles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"024-5628\":{\"Title\":\"Coureur + cyclistes\",\"href\":\"https://gallica.bnf.fr/html/und/images/coureurs-cyclistes\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-4752\":{\"Title\":\"D\",\"href\":\"\",\"below\":{\"001-5563\":{\"Title\":\"Debussy + (Claude)\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/claude-debussy\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4826\":{\"Title\":\"Deleuze + (Gilles)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1979-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4798\":{\"Title\":\"Dessins + de presse\",\"href\":\"https://gallica.bnf.fr/html/und/images/dessin-de-presse-xx-xxie-siecles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4827\":{\"Title\":\"Deux + (Fred )\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fred-deux-une-vie-parlee-autobiographie-sonore-enregistree-entre-1963-et\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4778\":{\"Title\":\"Dictionnaires\",\"href\":\"https://gallica.bnf.fr/html/und/livres/dictionnaires-larousse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4821\":{\"Title\":\"Don + Hubert Pernot\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/don-dhubert-pernot-au-musee-de-la-parole-et-du-geste-1924-1930\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5555\":{\"Title\":\"Droit\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/essentiels-du-droit\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"005-4753\":{\"Title\":\"E\",\"href\":\"\",\"below\":{\"001-4828\":{\"Title\":\"Édition + phonographique\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/rencontres-autour-de-ledition-phonographique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5629\":{\"Title\":\"Escrimeurs\",\"href\":\"https://gallica.bnf.fr/html/und/images/escrimeurs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4793\":{\"Title\":\"Estampes\",\"href\":\"https://gallica.bnf.fr/html/und/images/lestampe-du-xve-au-xxe-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4789\":{\"Title\":\"Europe\",\"href\":\"https://gallica.bnf.fr/html/und/europe/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4822\":{\"Title\":\"Exposition + coloniale de 1931\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/exposition-coloniale-internationale-de-paris-1931\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"006-4754\":{\"Title\":\"F\",\"href\":\"\",\"below\":{\"001-5583\":{\"Title\":\"Faits + divers\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/faits-divers\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5581\":{\"Title\":\"Féminisme\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-feministe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5552\":{\"Title\":\"Flaubert + (Gustave)\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/gustave-flaubert\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4816\":{\"Title\":\"Fonotipia\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fonotipia\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4791\":{\"Title\":\"France\",\"href\":\"https://gallica.bnf.fr/html/und/france/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-5588\":{\"Title\":\"Franche-Comté\",\"href\":\"https://gallica.bnf.fr/html/und/france/bourgogne-franche-comte\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"007-4755\":{\"Title\":\"G\",\"href\":\"\",\"below\":{\"001-5543\":{\"Title\":\"Gastronomie\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/patrimoine-gourmand\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5575\":{\"Title\":\"Généalogie + \",\"href\":\"https://gallica.bnf.fr/html/und/histoire/ressources-genealogiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5565\":{\"Title\":\"Géologie\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-geologie-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4787\":{\"Title\":\"Globes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/globes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5551\":{\"Title\":\"Globes + en 3D\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-globes-en-3d\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-5631\":{\"Title\":\"Golfeurs\",\"href\":\"https://gallica.bnf.fr/html/und/images/golfeurs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5594\":{\"Title\":\"Grand-Est\",\"href\":\"https://gallica.bnf.fr/html/und/france/grand-est\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-4782\":{\"Title\":\"Gravure + sur bois\",\"href\":\"https://gallica.bnf.fr/html/und/livres/les-livrets-xylographiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5595\":{\"Title\":\"Guadeloupe\",\"href\":\"https://gallica.bnf.fr/html/und/france/guadeloupe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5596\":{\"Title\":\"Guyane\",\"href\":\"https://gallica.bnf.fr/html/und/france/guyane\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"008-4756\":{\"Title\":\"H\",\"href\":\"\",\"below\":{\"001-5632\":{\"Title\":\"Haltérophiles\",\"href\":\"https://gallica.bnf.fr/html/und/images/halterophiles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5597\":{\"Title\":\"Hauts-de-France\",\"href\":\"https://gallica.bnf.fr/html/und/france/nord-pas-de-calais-picardie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5578\":{\"Title\":\"Hebdomadaires + (presse)\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/les-hebdomadaires\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5558\":{\"Title\":\"Hellé + (André)\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/andre-helle-1871-1945\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5570\":{\"Title\":\"Histoire\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4794\":{\"Title\":\"Histoire + de France par l'image\",\"href\":\"https://gallica.bnf.fr/html/und/images/lhistoire-de-france-par-limage\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5572\":{\"Title\":\"Hopitaux\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopitaux-parisiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5557\":{\"Title\":\"Horticulture\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/horticulture\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"009-4757\":{\"Title\":\"I\",\"href\":\"\",\"below\":{\"001-5598\":{\"Title\":\"Île-de-France\",\"href\":\"https://gallica.bnf.fr/html/und/france/ile-de-france\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4779\":{\"Title\":\"Imprimerie\",\"href\":\"https://gallica.bnf.fr/html/und/livres/imprimes-du-xve-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"010-4758\":{\"Title\":\"J\",\"href\":\"\",\"below\":{\"001-4792\":{\"Title\":\"Japon\",\"href\":\"https://gallica.bnf.fr/html/und/asie/france-japon\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5545\":{\"Title\":\"Jardin\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/jardins\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5618\":{\"Title\":\"Jeux + olympiques\",\"href\":\"https://gallica.bnf.fr/html/und/images/jeux-olympiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4807\":{\"Title\":\"Journaux + clandestins\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-clandestins-de-la-resistance\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4809\":{\"Title\":\"Journaux + de tranchées\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-tranchees\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"011-4759\":{\"Title\":\"K\",\"href\":\"\",\"below\":{\"001-5611\":{\"Title\":\"Karakos + (Jean)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretiens-avec-jean-karakos\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"012-4760\":{\"Title\":\"L\",\"href\":\"\",\"below\":{\"001-5546\":{\"Title\":\"La + Fontaine (Jean de)\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/jean-de-la-fontaine-1621-1695\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5569\":{\"Title\":\"Lequeu + (Jean-Jacques)\",\"href\":\"https://gallica.bnf.fr/html/und/images/jean-jacques-lequeu\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5574\":{\"Title\":\"Littérature\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5554\":{\"Title\":\"Littérature + jeunesse\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/litterature-jeunesse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4783\":{\"Title\":\"Livres\",\"href\":\"https://gallica.bnf.fr/html/und/livres/livres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"013-4761\":{\"Title\":\"M\",\"href\":\"\",\"below\":{\"001-4784\":{\"Title\":\"Manuscrits\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/manuscrits\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4786\":{\"Title\":\"Manuscrits + carolingiens\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/manuscrits-carolingiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4835\":{\"Title\":\"Marionnettes\",\"href\":\"https://gallica.bnf.fr/html/und/objets/collections-de-marionnettes-titre-page\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4815\":{\"Title\":\"Marseillaise\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/la-marseillaise\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5601\":{\"Title\":\"Martinique\",\"href\":\"https://gallica.bnf.fr/html/und/france/martinique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4834\":{\"Title\":\"Masques\",\"href\":\"https://gallica.bnf.fr/html/und/objets/collections-de-masques-titre-page\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5602\":{\"Title\":\"Mayotte\",\"href\":\"https://gallica.bnf.fr/html/und/france/mayotte\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5573\":{\"Title\":\"Médicale + (presse)\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/presse-medicale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5577\":{\"Title\":\"Mérovingiens\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/les-temps-merovingiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5560\":{\"Title\":\"Métal\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/arts-du-metal\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-5580\":{\"Title\":\"Mode\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-de-mode\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-4833\":{\"Title\":\"Monnaies\",\"href\":\"https://gallica.bnf.fr/html/und/objets/monnaies\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-4820\":{\"Title\":\"Musée + de la parole\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/archives-de-la-parole-musee-de-la-parole-et-du-geste-hubert-pernot-1924-1930\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-4814\":{\"Title\":\"Musique + du Japon\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/musique-et-parole-du-japon-enregistrements-historiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"015-4825\":{\"Title\":\"Musiques + du monde\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/musiques-du-monde\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"014-4762\":{\"Title\":\"N\",\"href\":\"\",\"below\":{\"001-5633\":{\"Title\":\"Nageurs/nageuses\",\"href\":\"https://gallica.bnf.fr/html/und/images/nageurs-nageuses\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5603\":{\"Title\":\"Normandie\",\"href\":\"https://gallica.bnf.fr/html/und/france/normandie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5604\":{\"Title\":\"Nouvelle-Aquitaine\",\"href\":\"https://gallica.bnf.fr/html/und/france/nouvelle-aquitaine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5605\":{\"Title\":\"Nouvelle-Calédonie\",\"href\":\"https://gallica.bnf.fr/html/und/france/nouvelle-caledonie\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"015-4763\":{\"Title\":\"O\",\"href\":\"\",\"below\":{\"001-4831\":{\"Title\":\"Objets\",\"href\":\"https://gallica.bnf.fr/html/und/objets/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5606\":{\"Title\":\"Occitanie\",\"href\":\"https://gallica.bnf.fr/html/und/france/occitanie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4801\":{\"Title\":\"Opéra + en images\",\"href\":\"https://gallica.bnf.fr/html/und/images/lopera-en-images-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4781\":{\"Title\":\"Ouvrages + de référence\",\"href\":\"https://gallica.bnf.fr/html/und/livres/ouvrages-de-reference\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5582\":{\"Title\":\"Ouvriers\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-ouvriere\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"016-4764\":{\"Title\":\"P\",\"href\":\"\",\"below\":{\"001-4803\":{\"Title\":\"Paris\",\"href\":\"https://gallica.bnf.fr/html/und/france/paris\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4830\":{\"Title\":\"Partitions\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/partitions\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5634\":{\"Title\":\"Patineurs\",\"href\":\"https://gallica.bnf.fr/html/und/images/patineurs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5607\":{\"Title\":\"Pays-de-la-Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/pays-de-la-loire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4795\":{\"Title\":\"Photographies\",\"href\":\"https://gallica.bnf.fr/html/und/images/photographes-et-photographie-1839-1940\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4841\":{\"Title\":\"Photos + de la Société de Géographie\",\"href\":\"https://gallica.bnf.fr/html/und/images/photographies-de-la-societe-de-geographie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5556\":{\"Title\":\"Politique\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/essentiels-de-la-politique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5608\":{\"Title\":\"Polynésie + française\",\"href\":\"https://gallica.bnf.fr/html/und/france/polynesie-francaise\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5576\":{\"Title\":\"Première + Guerre mondiale\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/premiere-guerre-mondiale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-4805\":{\"Title\":\"Presse\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-et-revues\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-4799\":{\"Title\":\"Presse + (dessins)\",\"href\":\"https://gallica.bnf.fr/html/und/images/dessin-de-presse-xx-xxie-siecles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-4808\":{\"Title\":\"Presse + locale\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-locale-et-regionale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-4810\":{\"Title\":\"Presse + par pays\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-par-pays-ou-zones-geographiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-4806\":{\"Title\":\"Presse + quotidienne\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/les-principaux-quotidiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"015-5609\":{\"Title\":\"Provence-Alpes-Côte-d'Azur\",\"href\":\"https://gallica.bnf.fr/html/und/france/provence-alpes-cote-dazur\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"017-4765\":{\"Title\":\"Q\",\"href\":\"\",\"below\":{\"001-5614\":{\"Title\":\"Quadrilatère + Richelieu\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/quadilatere-richelieu\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"018-4766\":{\"Title\":\"R\",\"href\":\"\",\"below\":{\"001-4840\":{\"Title\":\"Radio-télévision + scolaire\",\"href\":\"https://gallica.bnf.fr/html/und/videos/la-radio-television-scolaire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5599\":{\"Title\":\"Réunion + (île de La)\",\"href\":\"https://gallica.bnf.fr/html/und/france/reunion\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4811\":{\"Title\":\"Revues + savantes\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-par-zones-geographiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5589\":{\"Title\":\"Rhône-Alpes\",\"href\":\"https://gallica.bnf.fr/html/und/france/auvergne-rhone-alpes\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"019-4767\":{\"Title\":\"S\",\"href\":\"\",\"below\":{\"001-5600\":{\"Title\":\"Saint-Pierre-et-Miquelon\",\"href\":\"https://gallica.bnf.fr/html/und/france/saint-pierre-et-miquelon\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5571\":{\"Title\":\"Sciences\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5584\":{\"Title\":\"Sciences + naturelles\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/essentiels-des-sciences-naturelles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5548\":{\"Title\":\"Ségur + (Sophie de)\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/sophie-de-segur-1799-1874\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4804\":{\"Title\":\"Société + de géographie\",\"href\":\"https://gallica.bnf.fr/html/und/images/photographies-de-la-societe-de-geographie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4802\":{\"Title\":\"Spectacle\",\"href\":\"https://gallica.bnf.fr/html/und/images/la-photographie-de-spectacle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-4796\":{\"Title\":\"Sport + par l'image\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-et-sportifs-en-image\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5562\":{\"Title\":\"Stations + thermales\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/stations-thermales\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5619\":{\"Title\":\"Sports + collectifs\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-collectifs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5620\":{\"Title\":\"Sports + de combat\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-de-combat\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-5621\":{\"Title\":\"Sports + de raquette\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-de-raquette\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-5622\":{\"Title\":\"Sports + mécaniques\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-mecaniques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-5623\":{\"Title\":\"Sports + nautiques\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-nautiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-5624\":{\"Title\":\"Sports + nautiques\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-nautiques\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"020-4768\":{\"Title\":\"T\",\"href\":\"\",\"below\":{\"001-5635\":{\"Title\":\"Tennis(wo)men\",\"href\":\"https://gallica.bnf.fr/html/und/images/tenniswomen\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5610\":{\"Title\":\"Théâtre\",\"href\":\"https://gallica.bnf.fr/html/und/images/la-photographie-de-spectacle\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"021-4769\":{\"Title\":\"U\",\"href\":\"\",\"below\":null,\"submenu\":null,\"abcd\":null},\"022-4770\":{\"Title\":\"V\",\"href\":\"\",\"below\":{\"001-5549\":{\"Title\":\"Verne + (Jules)\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/jules-verne-1828-1905\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5559\":{\"Title\":\"Verrerie + et vitrail\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/arts-du-verre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4838\":{\"Title\":\"Vidéos\",\"href\":\"https://gallica.bnf.fr/html/und/videos/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"023-4771\":{\"Title\":\"W\",\"href\":\"\",\"below\":{\"001-5550\":{\"Title\":\"Wolinski + (Georges)\",\"href\":\"https://gallica.bnf.fr/html/und/images/georges-wolinski-1934-2015\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"024-4772\":{\"Title\":\"X\",\"href\":\"\",\"below\":{\"001-4780\":{\"Title\":\"Xylographie\",\"href\":\"https://gallica.bnf.fr/html/und/livres/les-livrets-xylographiques\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"025-4773\":{\"Title\":\"Y\",\"href\":\"\",\"below\":{\"001-5612\":{\"Title\":\"Yonne\",\"href\":\"https://gallica.bnf.fr/html/und/france/yonne\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5613\":{\"Title\":\"Yvelines\",\"href\":\"https://gallica.bnf.fr/html/und/france/yvelines\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"026-4774\":{\"Title\":\"Z\",\"href\":\"\",\"below\":{\"001-5566\":{\"Title\":\"Zoologie\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-zoologie-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":[{\"Title\":\"A\",\"href\":\"\",\"below\":{\"001-4746\":{\"Title\":\"Abécédaires\",\"href\":\"https://gallica.bnf.fr/html/und/livres/abecedaires\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4748\":{\"Title\":\"Affiches\",\"href\":\"https://gallica.bnf.fr/html/und/images/affiches-et-affichistes-xixe-xxe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4788\":{\"Title\":\"Afrique\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4790\":{\"Title\":\"Amérique\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4800\":{\"Title\":\"Architecture + (dessins)\",\"href\":\"https://gallica.bnf.fr/html/und/images/dessins-darchitectes-xvie-xxe-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4817\":{\"Title\":\"Archives + de la parole (1911-1914)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/archives-de-la-parole-ferdinand-brunot-1911-1914\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-4818\":{\"Title\":\"Archives + de la parole (1920-1924)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/archives-de-la-parole-jean-poirot-enregistrements-la-sorbonne\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5542\":{\"Title\":\"Asie\",\"href\":\"https://gallica.bnf.fr/html/und/asie/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5625\":{\"Title\":\"Athlètes\",\"href\":\"https://gallica.bnf.fr/html/und/images/athletes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5616\":{\"Title\":\"Athlétisme\",\"href\":\"https://gallica.bnf.fr/html/und/images/athletisme\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-4812\":{\"Title\":\"Audio\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fonds-sonores\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-5586\":{\"Title\":\"Auvergne + Rhône-Alpes\",\"href\":\"https://gallica.bnf.fr/html/und/france/auvergne-rhone-alpes\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"B\",\"href\":\"\",\"below\":{\"001-4750\":{\"Title\":\"Bastille\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/archives-de-la-bastille\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5564\":{\"Title\":\"Botanique\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-botanique-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5587\":{\"Title\":\"Bourgogne\",\"href\":\"https://gallica.bnf.fr/html/und/france/bourgogne-franche-comte\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5615\":{\"Title\":\"Boxeurs\",\"href\":\"https://gallica.bnf.fr/html/und/images/boxeurs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5591\":{\"Title\":\"Bretagne\",\"href\":\"https://gallica.bnf.fr/html/und/france/bretagne\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-5567\":{\"Title\":\"Brésil\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/france-bresil\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"C\",\"href\":\"\",\"below\":{\"001-5644\":{\"Title\":\"Canards + (livrets)\",\"href\":\"https://gallica.bnf.fr/html/und/livres/origines-de-la-presse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4775\":{\"Title\":\"Cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/cartes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4776\":{\"Title\":\"Cartes + marines\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/cartes-marines-sur-parchemin\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4777\":{\"Title\":\"Cassini\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/france-en-cartes/la-carte-de-cassini\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5592\":{\"Title\":\"Centre + Val de Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/centre-val-de-loire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-5561\":{\"Title\":\"Céramique\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/arts-de-la-terre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-4819\":{\"Title\":\"Chansons + 14-18\",\"href\":\"https://gallica.bnf.fr/html/enregistrements-sonores/chansons-et-musiques-de-la-premiere-guerre-mondiale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-4829\":{\"Title\":\"Chants + de Noël\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chants-et-musique-de-noel\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5544\":{\"Title\":\"Chevaux\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/patrimoine-equestre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5568\":{\"Title\":\"Chine\",\"href\":\"https://gallica.bnf.fr/html/und/asie/france-chine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-4785\":{\"Title\":\"Christine + de Pizan\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/christine-de-pizan\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-5579\":{\"Title\":\"Cinéma + (presse de)\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-de-cinema\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-5585\":{\"Title\":\"Cinéma + (vidéos sur le)\",\"href\":\"https://gallica.bnf.fr/html/und/videos/cinema-et-audiovisuel\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-4832\":{\"Title\":\"Collection + Charles Cros\",\"href\":\"https://gallica.bnf.fr/html/und/objets/collection-charles-cros\",\"below\":null,\"submenu\":null,\"abcd\":null},\"015-4797\":{\"Title\":\"Collection + Deloynes\",\"href\":\"https://gallica.bnf.fr/html/und/images/collection-deloynes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"016-5553\":{\"Title\":\"Coloriages\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/coloriages\",\"below\":null,\"submenu\":null,\"abcd\":null},\"017-4839\":{\"Title\":\"Conférences + de la BnF\",\"href\":\"https://gallica.bnf.fr/html/und/videos/conferences-de-la-bnf\",\"below\":null,\"submenu\":null,\"abcd\":null},\"018-4836\":{\"Title\":\"Consoles + de jeux vidéo\",\"href\":\"https://gallica.bnf.fr/html/und/objets/consoles-de-jeux-video\",\"below\":null,\"submenu\":null,\"abcd\":null},\"019-5593\":{\"Title\":\"Corse\",\"href\":\"https://gallica.bnf.fr/html/und/france/corse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"020-5547\":{\"Title\":\"Cuisine\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/patrimoine-gourmand\",\"below\":null,\"submenu\":null,\"abcd\":null},\"021-5617\":{\"Title\":\"Cyclisme\",\"href\":\"https://gallica.bnf.fr/html/und/images/cyclisme\",\"below\":null,\"submenu\":null,\"abcd\":null},\"022-4813\":{\"Title\":\"Cylindres\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/cylindres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"023-5627\":{\"Title\":\"Coureurs + automobiles\",\"href\":\"https://gallica.bnf.fr/html/und/images/coureurs-automobiles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"024-5628\":{\"Title\":\"Coureur + cyclistes\",\"href\":\"https://gallica.bnf.fr/html/und/images/coureurs-cyclistes\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"D\",\"href\":\"\",\"below\":{\"001-5563\":{\"Title\":\"Debussy + (Claude)\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/claude-debussy\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4826\":{\"Title\":\"Deleuze + (Gilles)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1979-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4798\":{\"Title\":\"Dessins + de presse\",\"href\":\"https://gallica.bnf.fr/html/und/images/dessin-de-presse-xx-xxie-siecles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4827\":{\"Title\":\"Deux + (Fred )\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fred-deux-une-vie-parlee-autobiographie-sonore-enregistree-entre-1963-et\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4778\":{\"Title\":\"Dictionnaires\",\"href\":\"https://gallica.bnf.fr/html/und/livres/dictionnaires-larousse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4821\":{\"Title\":\"Don + Hubert Pernot\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/don-dhubert-pernot-au-musee-de-la-parole-et-du-geste-1924-1930\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5555\":{\"Title\":\"Droit\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/essentiels-du-droit\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"E\",\"href\":\"\",\"below\":{\"001-4828\":{\"Title\":\"Édition + phonographique\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/rencontres-autour-de-ledition-phonographique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5629\":{\"Title\":\"Escrimeurs\",\"href\":\"https://gallica.bnf.fr/html/und/images/escrimeurs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4793\":{\"Title\":\"Estampes\",\"href\":\"https://gallica.bnf.fr/html/und/images/lestampe-du-xve-au-xxe-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4789\":{\"Title\":\"Europe\",\"href\":\"https://gallica.bnf.fr/html/und/europe/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4822\":{\"Title\":\"Exposition + coloniale de 1931\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/exposition-coloniale-internationale-de-paris-1931\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"F\",\"href\":\"\",\"below\":{\"001-5583\":{\"Title\":\"Faits + divers\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/faits-divers\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5581\":{\"Title\":\"Féminisme\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-feministe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5552\":{\"Title\":\"Flaubert + (Gustave)\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/gustave-flaubert\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4816\":{\"Title\":\"Fonotipia\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fonotipia\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4791\":{\"Title\":\"France\",\"href\":\"https://gallica.bnf.fr/html/und/france/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-5588\":{\"Title\":\"Franche-Comté\",\"href\":\"https://gallica.bnf.fr/html/und/france/bourgogne-franche-comte\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"G\",\"href\":\"\",\"below\":{\"001-5543\":{\"Title\":\"Gastronomie\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/patrimoine-gourmand\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5575\":{\"Title\":\"Généalogie + \",\"href\":\"https://gallica.bnf.fr/html/und/histoire/ressources-genealogiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5565\":{\"Title\":\"Géologie\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-geologie-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4787\":{\"Title\":\"Globes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/globes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5551\":{\"Title\":\"Globes + en 3D\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-globes-en-3d\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-5631\":{\"Title\":\"Golfeurs\",\"href\":\"https://gallica.bnf.fr/html/und/images/golfeurs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5594\":{\"Title\":\"Grand-Est\",\"href\":\"https://gallica.bnf.fr/html/und/france/grand-est\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-4782\":{\"Title\":\"Gravure + sur bois\",\"href\":\"https://gallica.bnf.fr/html/und/livres/les-livrets-xylographiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5595\":{\"Title\":\"Guadeloupe\",\"href\":\"https://gallica.bnf.fr/html/und/france/guadeloupe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5596\":{\"Title\":\"Guyane\",\"href\":\"https://gallica.bnf.fr/html/und/france/guyane\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"H\",\"href\":\"\",\"below\":{\"001-5632\":{\"Title\":\"Haltérophiles\",\"href\":\"https://gallica.bnf.fr/html/und/images/halterophiles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5597\":{\"Title\":\"Hauts-de-France\",\"href\":\"https://gallica.bnf.fr/html/und/france/nord-pas-de-calais-picardie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5578\":{\"Title\":\"Hebdomadaires + (presse)\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/les-hebdomadaires\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5558\":{\"Title\":\"Hellé + (André)\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/andre-helle-1871-1945\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5570\":{\"Title\":\"Histoire\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4794\":{\"Title\":\"Histoire + de France par l'image\",\"href\":\"https://gallica.bnf.fr/html/und/images/lhistoire-de-france-par-limage\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5572\":{\"Title\":\"Hopitaux\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopitaux-parisiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5557\":{\"Title\":\"Horticulture\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/horticulture\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"I\",\"href\":\"\",\"below\":{\"001-5598\":{\"Title\":\"Île-de-France\",\"href\":\"https://gallica.bnf.fr/html/und/france/ile-de-france\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4779\":{\"Title\":\"Imprimerie\",\"href\":\"https://gallica.bnf.fr/html/und/livres/imprimes-du-xve-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"J\",\"href\":\"\",\"below\":{\"001-4792\":{\"Title\":\"Japon\",\"href\":\"https://gallica.bnf.fr/html/und/asie/france-japon\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5545\":{\"Title\":\"Jardin\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/jardins\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5618\":{\"Title\":\"Jeux + olympiques\",\"href\":\"https://gallica.bnf.fr/html/und/images/jeux-olympiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4807\":{\"Title\":\"Journaux + clandestins\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-clandestins-de-la-resistance\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4809\":{\"Title\":\"Journaux + de tranchées\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-tranchees\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"K\",\"href\":\"\",\"below\":{\"001-5611\":{\"Title\":\"Karakos + (Jean)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretiens-avec-jean-karakos\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"L\",\"href\":\"\",\"below\":{\"001-5546\":{\"Title\":\"La + Fontaine (Jean de)\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/jean-de-la-fontaine-1621-1695\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5569\":{\"Title\":\"Lequeu + (Jean-Jacques)\",\"href\":\"https://gallica.bnf.fr/html/und/images/jean-jacques-lequeu\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5574\":{\"Title\":\"Littérature\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5554\":{\"Title\":\"Littérature + jeunesse\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/litterature-jeunesse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4783\":{\"Title\":\"Livres\",\"href\":\"https://gallica.bnf.fr/html/und/livres/livres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"M\",\"href\":\"\",\"below\":{\"001-4784\":{\"Title\":\"Manuscrits\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/manuscrits\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4786\":{\"Title\":\"Manuscrits + carolingiens\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/manuscrits-carolingiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4835\":{\"Title\":\"Marionnettes\",\"href\":\"https://gallica.bnf.fr/html/und/objets/collections-de-marionnettes-titre-page\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4815\":{\"Title\":\"Marseillaise\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/la-marseillaise\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5601\":{\"Title\":\"Martinique\",\"href\":\"https://gallica.bnf.fr/html/und/france/martinique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4834\":{\"Title\":\"Masques\",\"href\":\"https://gallica.bnf.fr/html/und/objets/collections-de-masques-titre-page\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5602\":{\"Title\":\"Mayotte\",\"href\":\"https://gallica.bnf.fr/html/und/france/mayotte\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5573\":{\"Title\":\"Médicale + (presse)\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/presse-medicale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5577\":{\"Title\":\"Mérovingiens\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/les-temps-merovingiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5560\":{\"Title\":\"Métal\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/arts-du-metal\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-5580\":{\"Title\":\"Mode\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-de-mode\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-4833\":{\"Title\":\"Monnaies\",\"href\":\"https://gallica.bnf.fr/html/und/objets/monnaies\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-4820\":{\"Title\":\"Musée + de la parole\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/archives-de-la-parole-musee-de-la-parole-et-du-geste-hubert-pernot-1924-1930\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-4814\":{\"Title\":\"Musique + du Japon\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/musique-et-parole-du-japon-enregistrements-historiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"015-4825\":{\"Title\":\"Musiques + du monde\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/musiques-du-monde\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"N\",\"href\":\"\",\"below\":{\"001-5633\":{\"Title\":\"Nageurs/nageuses\",\"href\":\"https://gallica.bnf.fr/html/und/images/nageurs-nageuses\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5603\":{\"Title\":\"Normandie\",\"href\":\"https://gallica.bnf.fr/html/und/france/normandie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5604\":{\"Title\":\"Nouvelle-Aquitaine\",\"href\":\"https://gallica.bnf.fr/html/und/france/nouvelle-aquitaine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5605\":{\"Title\":\"Nouvelle-Calédonie\",\"href\":\"https://gallica.bnf.fr/html/und/france/nouvelle-caledonie\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"O\",\"href\":\"\",\"below\":{\"001-4831\":{\"Title\":\"Objets\",\"href\":\"https://gallica.bnf.fr/html/und/objets/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5606\":{\"Title\":\"Occitanie\",\"href\":\"https://gallica.bnf.fr/html/und/france/occitanie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4801\":{\"Title\":\"Opéra + en images\",\"href\":\"https://gallica.bnf.fr/html/und/images/lopera-en-images-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4781\":{\"Title\":\"Ouvrages + de référence\",\"href\":\"https://gallica.bnf.fr/html/und/livres/ouvrages-de-reference\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5582\":{\"Title\":\"Ouvriers\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-ouvriere\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"P\",\"href\":\"\",\"below\":{\"001-4803\":{\"Title\":\"Paris\",\"href\":\"https://gallica.bnf.fr/html/und/france/paris\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4830\":{\"Title\":\"Partitions\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/partitions\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5634\":{\"Title\":\"Patineurs\",\"href\":\"https://gallica.bnf.fr/html/und/images/patineurs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5607\":{\"Title\":\"Pays-de-la-Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/pays-de-la-loire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4795\":{\"Title\":\"Photographies\",\"href\":\"https://gallica.bnf.fr/html/und/images/photographes-et-photographie-1839-1940\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4841\":{\"Title\":\"Photos + de la Société de Géographie\",\"href\":\"https://gallica.bnf.fr/html/und/images/photographies-de-la-societe-de-geographie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5556\":{\"Title\":\"Politique\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/essentiels-de-la-politique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5608\":{\"Title\":\"Polynésie + française\",\"href\":\"https://gallica.bnf.fr/html/und/france/polynesie-francaise\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5576\":{\"Title\":\"Première + Guerre mondiale\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/premiere-guerre-mondiale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-4805\":{\"Title\":\"Presse\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-et-revues\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-4799\":{\"Title\":\"Presse + (dessins)\",\"href\":\"https://gallica.bnf.fr/html/und/images/dessin-de-presse-xx-xxie-siecles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-4808\":{\"Title\":\"Presse + locale\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-locale-et-regionale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-4810\":{\"Title\":\"Presse + par pays\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-par-pays-ou-zones-geographiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-4806\":{\"Title\":\"Presse + quotidienne\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/les-principaux-quotidiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"015-5609\":{\"Title\":\"Provence-Alpes-Côte-d'Azur\",\"href\":\"https://gallica.bnf.fr/html/und/france/provence-alpes-cote-dazur\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"Q\",\"href\":\"\",\"below\":{\"001-5614\":{\"Title\":\"Quadrilatère + Richelieu\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/quadilatere-richelieu\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"R\",\"href\":\"\",\"below\":{\"001-4840\":{\"Title\":\"Radio-télévision + scolaire\",\"href\":\"https://gallica.bnf.fr/html/und/videos/la-radio-television-scolaire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5599\":{\"Title\":\"Réunion + (île de La)\",\"href\":\"https://gallica.bnf.fr/html/und/france/reunion\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4811\":{\"Title\":\"Revues + savantes\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-par-zones-geographiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5589\":{\"Title\":\"Rhône-Alpes\",\"href\":\"https://gallica.bnf.fr/html/und/france/auvergne-rhone-alpes\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"S\",\"href\":\"\",\"below\":{\"001-5600\":{\"Title\":\"Saint-Pierre-et-Miquelon\",\"href\":\"https://gallica.bnf.fr/html/und/france/saint-pierre-et-miquelon\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5571\":{\"Title\":\"Sciences\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5584\":{\"Title\":\"Sciences + naturelles\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/essentiels-des-sciences-naturelles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5548\":{\"Title\":\"Ségur + (Sophie de)\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/sophie-de-segur-1799-1874\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4804\":{\"Title\":\"Société + de géographie\",\"href\":\"https://gallica.bnf.fr/html/und/images/photographies-de-la-societe-de-geographie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4802\":{\"Title\":\"Spectacle\",\"href\":\"https://gallica.bnf.fr/html/und/images/la-photographie-de-spectacle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-4796\":{\"Title\":\"Sport + par l'image\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-et-sportifs-en-image\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5562\":{\"Title\":\"Stations + thermales\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/stations-thermales\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5619\":{\"Title\":\"Sports + collectifs\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-collectifs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5620\":{\"Title\":\"Sports + de combat\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-de-combat\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-5621\":{\"Title\":\"Sports + de raquette\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-de-raquette\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-5622\":{\"Title\":\"Sports + mécaniques\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-mecaniques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-5623\":{\"Title\":\"Sports + nautiques\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-nautiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-5624\":{\"Title\":\"Sports + nautiques\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-nautiques\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"T\",\"href\":\"\",\"below\":{\"001-5635\":{\"Title\":\"Tennis(wo)men\",\"href\":\"https://gallica.bnf.fr/html/und/images/tenniswomen\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5610\":{\"Title\":\"Théâtre\",\"href\":\"https://gallica.bnf.fr/html/und/images/la-photographie-de-spectacle\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"U\",\"href\":\"\",\"below\":null,\"submenu\":null,\"abcd\":null},{\"Title\":\"V\",\"href\":\"\",\"below\":{\"001-5549\":{\"Title\":\"Verne + (Jules)\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/jules-verne-1828-1905\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5559\":{\"Title\":\"Verrerie + et vitrail\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/arts-du-verre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4838\":{\"Title\":\"Vidéos\",\"href\":\"https://gallica.bnf.fr/html/und/videos/accueil\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"W\",\"href\":\"\",\"below\":{\"001-5550\":{\"Title\":\"Wolinski + (Georges)\",\"href\":\"https://gallica.bnf.fr/html/und/images/georges-wolinski-1934-2015\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"X\",\"href\":\"\",\"below\":{\"001-4780\":{\"Title\":\"Xylographie\",\"href\":\"https://gallica.bnf.fr/html/und/livres/les-livrets-xylographiques\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"Y\",\"href\":\"\",\"below\":{\"001-5612\":{\"Title\":\"Yonne\",\"href\":\"https://gallica.bnf.fr/html/und/france/yonne\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5613\":{\"Title\":\"Yvelines\",\"href\":\"https://gallica.bnf.fr/html/und/france/yvelines\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},{\"Title\":\"Z\",\"href\":\"\",\"below\":{\"001-5566\":{\"Title\":\"Zoologie\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-zoologie-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}]}},\"menu_rubrique\":{\"001-1955\":{\"Title\":\"PAR + TYPES DE DOCUMENTS\",\"href\":\"\",\"below\":{\"001-1969\":{\"Title\":\"Livres\",\"href\":\"https://gallica.bnf.fr/html/und/livres/livres\",\"below\":null,\"submenu\":{\"001-1360\":{\"Title\":\"Livrets + xylographiques\",\"href\":\"https://gallica.bnf.fr/html/und/livres/les-livrets-xylographiques\",\"below\":{\"001-1490\":{\"Title\":\"Ouvrages + de dévotion\",\"href\":\"https://gallica.bnf.fr/html/und/livres/ouvrages-de-devotion\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1489\":{\"Title\":\"Ouvrages + profanes\",\"href\":\"https://gallica.bnf.fr/html/und/livres/ouvrages-profanes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1487\":{\"Title\":\"Thèmes + et sujets bibliques\",\"href\":\"https://gallica.bnf.fr/html/und/livres/themes-et-sujets-bibliques\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-4153\":{\"Title\":\"Origines + de l'imprimerie\",\"href\":\"https://gallica.bnf.fr/html/und/livres/imprimes-du-xve-siecle\",\"below\":{\"001-4154\":{\"Title\":\"Naissance + de l'imprimerie à caractères mobiles\",\"href\":\"https://gallica.bnf.fr/html/und/livres/naissance-de-limprimerie-caracteres-mobiles\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-4156\":{\"Title\":\"Les + techniques d’illustration du livre imprimé\",\"href\":\"https://gallica.bnf.fr/html/und/livres/les-techniques-dillustration-du-livre-imprime\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-4161\":{\"Title\":\"La + diffusion du savoir\",\"href\":\"https://gallica.bnf.fr/html/und/livres/la-diffusion-du-savoir\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-4517\":{\"Title\":\"Des + canards aux Histoires tragiques, l’information aux XVe-XVIIe siècles\",\"href\":\"https://gallica.bnf.fr/html/und/livres/origines-de-la-presse\",\"below\":{\"001-4525\":{\"Title\":\"Désordres + moraux et troubles sociaux\",\"href\":\"https://gallica.bnf.fr/html/und/livres/desordres-moraux-et-troubles-sociaux\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4526\":{\"Title\":\"Catastrophes + naturelles\",\"href\":\"https://gallica.bnf.fr/html/und/livres/catastrophes-naturelles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4527\":{\"Title\":\"Surnaturel + et merveilleux\",\"href\":\"https://gallica.bnf.fr/html/und/livres/surnaturel-et-merveilleux\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4528\":{\"Title\":\"Monstres\",\"href\":\"https://gallica.bnf.fr/html/und/livres/monstres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4529\":{\"Title\":\"Diableries\",\"href\":\"https://gallica.bnf.fr/html/und/livres/diableries\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4530\":{\"Title\":\"Histoires + tragiques\",\"href\":\"https://gallica.bnf.fr/html/und/livres/histoires-tragiques\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-3849\":{\"Title\":\"Ouvrages + de référence\",\"href\":\"https://gallica.bnf.fr/html/und/livres/ouvrages-de-reference\",\"below\":{\"001-3850\":{\"Title\":\"Généralités, + encyclopédies\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-encyclopedies\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-3851\":{\"Title\":\"Sciences + religieuses, philosophie\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-sciences-religieuses-philo\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3855\":{\"Title\":\"Pédagogie, + enseignement\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-pedagogie-enseignement\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3852\":{\"Title\":\"Histoire\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-histoire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-3853\":{\"Title\":\"Arts, + archéologie\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-arts-et-archeologie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-3854\":{\"Title\":\"Lettres, + langues\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-lettres-et-langues\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-3856\":{\"Title\":\"Sciences + juridiques\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-sciences-juridiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-3857\":{\"Title\":\"Sciences + économiques, politiques et sociales\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-sciences-economiques-politiques-et\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-3858\":{\"Title\":\"Sciences + géographiques\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-sciences-geographiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-3859\":{\"Title\":\"Sciences\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-sciences\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-3860\":{\"Title\":\"Techniques, + arts de vivre\",\"href\":\"https://gallica.bnf.fr/html/und/livres/bibliographie-transmission-des-savoirs-congres-cths-techniques-arts-de-vivre\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"005-1281\":{\"Title\":\"Dictionnaires + Larousse\",\"href\":\"https://gallica.bnf.fr/html/und/livres/dictionnaires-larousse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4846\":{\"Title\":\"Abécédaires\",\"href\":\"https://gallica.bnf.fr/html/und/livres/abecedaires\",\"below\":{\"001-5525\":{\"Title\":\"Accès + thématique\",\"href\":\"https://gallica.bnf.fr/html/und/livres/acces-thematique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5526\":{\"Title\":\"Accès + chronologique\",\"href\":\"https://gallica.bnf.fr/html/und/livres/acces-chronologique\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"002-1972\":{\"Title\":\"Manuscrits\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/manuscrits\",\"below\":null,\"submenu\":{\"001-5698\":{\"Title\":\"Manuscrits + mérovingiens\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/collection-de-manuscrits-merovingiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1660\":{\"Title\":\"Manuscrits + carolingiens\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/manuscrits-carolingiens\",\"below\":{\"001-1661\":{\"Title\":\"Accès + par Auteur\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/acces-par-auteur\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1663\":{\"Title\":\"Accès + par Titre\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/acces-par-titre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1666\":{\"Title\":\"Accès + par Genre\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/acces-par-genre\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-1668\":{\"Title\":\"Accès + par Ecriture\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/acces-par-ecriture\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-1669\":{\"Title\":\"Accès + par Décoration\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/acces-par-decoration\",\"below\":{},\"submenu\":null,\"abcd\":null},\"006-1667\":{\"Title\":\"Accès + par Date\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/acces-par-date\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-4290\":{\"Title\":\"Le + Roman de Renart\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/le-roman-de-renart\",\"below\":{\"001-4294\":{\"Title\":\"Aux + sources du Roman de Renart...\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/le-goupil-dans-le-bestiaire-medieval\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4291\":{\"Title\":\"Les + manuscrits de Renart\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/les-manuscrits-de-renart\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4292\":{\"Title\":\"Les + réécritures du Roman de Renart\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/les-reecritures-du-roman-de-renart\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-4270\":{\"Title\":\"Le + Roman de la Rose\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/les-manuscrits-du-roman-de-la-rose\",\"below\":{\"001-4271\":{\"Title\":\"Manuscrits + du Roman de la Rose\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/romans-de-la-rose\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4278\":{\"Title\":\"Le + Testament et le Codicille\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/le-testament-et-le-codicille-de-jean-de-meun\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4272\":{\"Title\":\"Remaniements\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/remaniements\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4273\":{\"Title\":\"Postérité\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/posterite\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4274\":{\"Title\":\"Querelle + du Roman de la Rose\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/querelle-du-roman-de-la-rose\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4275\":{\"Title\":\"Editions + imprimées\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/editions-imprimees\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"005-3898\":{\"Title\":\"Chrétien + de Troyes\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/chretien-de-troyes\",\"below\":{\"001-3903\":{\"Title\":\"Erec + et Enide\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/erec-et-enide\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-3902\":{\"Title\":\"Cligès\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/cliges\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3901\":{\"Title\":\"Le + Chevalier de la Charette\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/chevalier-de-la-charette\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3904\":{\"Title\":\"Le + Chevalier au Lion\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/le-chevalier-au-lion\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-3905\":{\"Title\":\"Le + Conte du Graal\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/le-conte-du-graal\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"006-3383\":{\"Title\":\"Christine + de Pizan\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/christine-de-pizan\",\"below\":{\"001-3380\":{\"Title\":\"Les + premières oeuvres\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/poemes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-3381\":{\"Title\":\"Critique + des codes du roman courtois\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/une-critique-des-codes-du-roman-courtois\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3382\":{\"Title\":\"Querelle + du Roman de la Rose\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/la-querelle-du-roman-de-la-rose\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3384\":{\"Title\":\"Défense + des femmes\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/defense-des-femmes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-3387\":{\"Title\":\"Oeuvres + religieuses\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/oeuvres-religieuses\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-3386\":{\"Title\":\"Philosophie + morale\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/philosophie-morale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-3388\":{\"Title\":\"Traités + politiques\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/traites-politiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-3371\":{\"Title\":\"Tous + les manuscrits\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/manuscrits-de-christine-de-pizan\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"007-1717\":{\"Title\":\"Archives + de la Bastille\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/archives-de-la-bastille\",\"below\":{\"001-1724\":{\"Title\":\"La + Bastille, de la forteresse à la prison\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/la-bastille-de-la-forteresse-la-prison\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1716\":{\"Title\":\"Administration + du lieutenant général de police\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/administration-du-lieutenant-general-de-police\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1868\":{\"Title\":\"Administration + intérieure de la Bastille et de quelques autres prisons\",\"href\":\"https://gallica.bnf.fr/html/und/manuscrits/administration-de-la-bastille-et-autres-prisons\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"003-1973\":{\"Title\":\"Cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/cartes\",\"below\":null,\"submenu\":{\"001-1076\":{\"Title\":\"Cartes + marines sur parchemin\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/cartes-marines-sur-parchemin\",\"below\":{\"001-1077\":{\"Title\":\"Les + plus beaux portulans\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-plus-beaux-portulans\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1078\":{\"Title\":\"Accès + par grands espaces maritimes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/acces-par-grands-espaces-maritimes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1079\":{\"Title\":\"Accès + par lieux de production\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/acces-par-lieux-de-production\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-1227\":{\"Title\":\"Albums\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/albums\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-2892\":{\"Title\":\"Globes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/globes\",\"below\":{\"001-2893\":{\"Title\":\"Les + globes en 3D\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-globes-en-3d\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-3562\":{\"Title\":\"Les + globes en 2D\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-globes-en-2d\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-2894\":{\"Title\":\"Les + globes en fuseaux\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-globes-en-fuseaux\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-3390\":{\"Title\":\"L'Afrique + en cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/lafrique-en-cartes\",\"below\":{\"001-3392\":{\"Title\":\"Accès + chronologique\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/lafrique-en-cartes/acc%C3%A8s-chronologique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-3404\":{\"Title\":\"Accès + géographique\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/lafrique-en-cartes/acc%C3%A8s-g%C3%A9ographique\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-3394\":{\"Title\":\"La + carte de Lannoy de Bissy\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/lafrique-en-cartes/la-carte-de-lannoy-de-bissy\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-3379\":{\"Title\":\"L'Europe + en cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/leurope-en-cartes-0\",\"below\":{\"001-3319\":{\"Title\":\"Cartes + générales\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/leurope-en-cartes/cartes-g%C3%A9n%C3%A9rales\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1664\":{\"Title\":\"Accès + par pays\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/leurope-en-cartes/acc%C3%A8s-par-pays\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"005-1477\":{\"Title\":\"La + France en cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/la-france-en-cartes\",\"below\":{\"001-1478\":{\"Title\":\"Accès + chronologique\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/france-en-cartes/acces-chronologique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1328\":{\"Title\":\"Accès + géographique\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/france-en-cartes/acces-geographique\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-3187\":{\"Title\":\"La + carte de Cassini\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/france-en-cartes/la-carte-de-cassini\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"006-2067\":{\"Title\":\"Le + Japon en cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/le-japon-en-cartes\",\"below\":{\"001-2068\":{\"Title\":\"Service + hydrographique de la Marine\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/service-hydrographique-de-la-marine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-2069\":{\"Title\":\"Collection + d'Anville\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/collection-danville\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-2074\":{\"Title\":\"Accès + chronologique\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/acces-chronologique-0\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"007-4452\":{\"Title\":\"Les + Amériques en cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-ameriques-en-cartes\",\"below\":{\"001-4454\":{\"Title\":\"Accès + chronologique\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/acces-par-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4455\":{\"Title\":\"Tous + les pays\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/tous-les-pays\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4453\":{\"Title\":\"Amérique + du Nord, Centrale et Caraïbes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/amerique-du-nord-centrale-et-caraibes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4456\":{\"Title\":\"Amérique + du Sud\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/amerique-du-sud\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"004-1974\":{\"Title\":\"Images\",\"href\":\"https://gallica.bnf.fr/html/und/images/images\",\"below\":null,\"submenu\":{\"001-1457\":{\"Title\":\"Estampe\",\"href\":\"https://gallica.bnf.fr/html/und/images/lestampe-du-xve-au-xxe-siecle\",\"below\":{\"001-1482\":{\"Title\":\"L'estampe + aux XVe et XVIe siècles\",\"href\":\"https://gallica.bnf.fr/html/und/images/lestampe-aux-xve-et-xvie-siecles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1481\":{\"Title\":\"L'estampe + au XVIIe siècle\",\"href\":\"https://gallica.bnf.fr/html/und/images/lestampe-au-xviie-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1483\":{\"Title\":\"L'estampe + au XVIIIe siècle\",\"href\":\"https://gallica.bnf.fr/html/und/images/lestampe-au-xviiie-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1479\":{\"Title\":\"L'estampe + après 1800\",\"href\":\"https://gallica.bnf.fr/html/und/images/lestampe-apres-1800\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-2905\":{\"Title\":\"Inventaires + du fonds français\",\"href\":\"https://gallica.bnf.fr/html/und/images/inventaires-du-fonds-francais\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-2901\":{\"Title\":\"Manuels + et traités sur la gravure\",\"href\":\"https://gallica.bnf.fr/html/und/images/manuels-et-traites-sur-la-gravure\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-2907\":{\"Title\":\"Répertoires + divers\",\"href\":\"https://gallica.bnf.fr/html/und/images/autres-repertoires\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-3884\":{\"Title\":\"Collection + Deloynes\",\"href\":\"https://gallica.bnf.fr/html/und/images/collection-deloynes\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-4471\":{\"Title\":\"Dessin + d'architecte\",\"href\":\"https://gallica.bnf.fr/html/und/images/dessins-darchitectes-xvie-xxe-siecle\",\"below\":{\"001-4475\":{\"Title\":\"Jean-Jacques + Lequeu (1757-1826)\",\"href\":\"https://gallica.bnf.fr/html/und/images/jean-jacques-lequeu\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5500\":{\"Title\":\"Henri + Labrouste (1801-1875)\",\"href\":\"https://gallica.bnf.fr/html/und/images/henri-labrouste-1801-1875\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-4524\":{\"Title\":\"Dessin + de presse\",\"href\":\"https://gallica.bnf.fr/html/und/images/dessin-de-presse-xx-xxie-siecles\",\"below\":{\"001-5501\":{\"Title\":\"Georges + Wolinski (1934-2015)\",\"href\":\"https://gallica.bnf.fr/html/und/images/georges-wolinski-1934-2015\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-1729\":{\"Title\":\"Affiche\",\"href\":\"https://gallica.bnf.fr/html/und/images/affiches-et-affichistes-xixe-xxe\",\"below\":{\"001-1730\":{\"Title\":\"Accès + par auteur\",\"href\":\"https://gallica.bnf.fr/html/und/images/affiches-acces-par-auteur\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1731\":{\"Title\":\"Accès + par sujet\",\"href\":\"https://gallica.bnf.fr/html/und/images/affiches-acces-par-sujet\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"005-1377\":{\"Title\":\"Photographes + et photographie\",\"href\":\"https://gallica.bnf.fr/html/und/images/photographes-et-photographie-1839-1940\",\"below\":{\"001-1379\":{\"Title\":\"Accès + par auteur\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-auteur\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1380\":{\"Title\":\"Accès + par collection\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-collection\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1378\":{\"Title\":\"Accès + par procédé\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-procede\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"006-3864\":{\"Title\":\"Photographies + Société de géographie\",\"href\":\"https://gallica.bnf.fr/html/und/images/photographies-de-la-societe-de-geographie\",\"below\":{\"001-3865\":{\"Title\":\"Accès + géographique\",\"href\":\"https://gallica.bnf.fr/html/und/images/photos-SG/acces-geographique\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-3868\":{\"Title\":\"Accès + par photographe\",\"href\":\"https://gallica.bnf.fr/html/und/images/photos-SG/acces-par-photographe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3897\":{\"Title\":\"Accès + thématique\",\"href\":\"https://gallica.bnf.fr/html/und/images/photos-SG/acces-thematique\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"007-3420\":{\"Title\":\"Photographies + de spectacle\",\"href\":\"https://gallica.bnf.fr/html/und/images/la-photographie-de-spectacle\",\"below\":{\"001-3422\":{\"Title\":\"Accès + par photographe\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-photographe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-3423\":{\"Title\":\"Accès + par théâtre\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-theatre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3421\":{\"Title\":\"Accès + par festival\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-festival\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"008-1327\":{\"Title\":\"Histoire + par l'image\",\"href\":\"https://gallica.bnf.fr/html/und/images/lhistoire-de-france-par-limage\",\"below\":{\"001-1335\":{\"Title\":\"Accès + par corpus\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-corpus\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1324\":{\"Title\":\"Accès + par périodes historiques\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-periodes-historiques\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"009-2778\":{\"Title\":\"Paris + par l'image\",\"href\":\"https://gallica.bnf.fr/html/und/images/paris-en-images\",\"below\":{\"001-2786\":{\"Title\":\"Accès + par arrondissement\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-arrondissement\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-2779\":{\"Title\":\"Accès + par collection ou oeuvre\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-collection-ou-oeuvre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-2781\":{\"Title\":\"Accès + par grand événement\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-grands-evenements\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-2808\":{\"Title\":\"Accès + par site, édifice ou monument\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-edifice-ou-monument\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"010-5503\":{\"Title\":\"Nature + en images\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/nature-en-images\",\"below\":{\"001-5522\":{\"Title\":\"Botanique + illustrée\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-botanique-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5523\":{\"Title\":\"Géologie + illustrée\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-geologie-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5524\":{\"Title\":\"Zoologie + illustrée\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-zoologie-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"011-1354\":{\"Title\":\"Sport + en images\",\"href\":\"https://gallica.bnf.fr/html/und/images/sports-et-sportifs-en-image\",\"below\":{\"001-1355\":{\"Title\":\"Accès + par corpus\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-corpus-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1358\":{\"Title\":\"Accès + par discipline\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-discipline-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-2636\":{\"Title\":\"Accès + par sportif / sportive\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-sportif-sportive\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-1356\":{\"Title\":\"Accès + par événement sportif\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-evenement-sportif\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"012-4457\":{\"Title\":\"Opéra + en images\",\"href\":\"https://gallica.bnf.fr/html/und/images/lopera-en-images-0\",\"below\":{\"001-3834\":{\"Title\":\"Maquettes + de costumes\",\"href\":\"https://gallica.bnf.fr/html/und/images/maquettes-de-costumes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4458\":{\"Title\":\"Gravures + de costumes\",\"href\":\"https://gallica.bnf.fr/html/und/images/gravures-de-costumes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3835\":{\"Title\":\"Maquettes + de décors\",\"href\":\"https://gallica.bnf.fr/html/und/images/maquettes-de-decors\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4459\":{\"Title\":\"Décors + en volume\",\"href\":\"https://gallica.bnf.fr/html/und/images/decors-en-volume\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4460\":{\"Title\":\"Scènes + de spectacle\",\"href\":\"https://gallica.bnf.fr/html/und/images/scenes-de-spectacle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4476\":{\"Title\":\"Plans + de Charles Garnier\",\"href\":\"https://gallica.bnf.fr/html/und/images/plans-de-charles-garnier\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"005-1975\":{\"Title\":\"Presses + et revues\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-et-revues\",\"below\":null,\"submenu\":{\"001-1277\":{\"Title\":\"Les + principaux quotidiens\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/les-principaux-quotidiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4124\":{\"Title\":\"Hebdomadaires + et presse magazine\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/les-hebdomadaires\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-882\":{\"Title\":\"Presse + par thématiques\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-par-thematiques\",\"below\":{\"001-907\":{\"Title\":\"Anciens + combattants\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/anciens-combattants\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-2109\":{\"Title\":\"Faits + divers\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/faits-divers\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-894\":{\"Title\":\"Presse + artistique\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-artistique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-889\":{\"Title\":\"Presse + coloniale\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-coloniale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-2755\":{\"Title\":\"Presse + culinaire\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-culinaire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-887\":{\"Title\":\"Presse + d'annonces\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-dannonces\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-1877\":{\"Title\":\"Presse + de cinéma\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-de-cinema\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-895\":{\"Title\":\"Presse + de loisirs\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-de-loisirs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-1529\":{\"Title\":\"Presse + de mode\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-de-mode\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-1527\":{\"Title\":\"Presse + de musique\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-de-musique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-897\":{\"Title\":\"Presse + de spectacles\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-de-spectacles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-896\":{\"Title\":\"Presse + en langue étrangère en France\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-des-immigrations\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-890\":{\"Title\":\"Presse + économique\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-economique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-893\":{\"Title\":\"Presse + enfantine et de jeunesse\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-enfantine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"015-5506\":{\"Title\":\"Presse + et entreprise\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-et-entreprise\",\"below\":{},\"submenu\":null,\"abcd\":null},\"016-888\":{\"Title\":\"Presse + féminine\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-feminine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"017-1528\":{\"Title\":\"Presse + féministe\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-feministe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"018-899\":{\"Title\":\"Presse + littéraire\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-litteraire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"019-1495\":{\"Title\":\"Presse + médicale\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/presse-medicale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"020-881\":{\"Title\":\"Presse + ouvrière\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-ouvriere\",\"below\":null,\"submenu\":null,\"abcd\":null},\"021-902\":{\"Title\":\"Presse + politique\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-politique\",\"below\":{},\"submenu\":null,\"abcd\":null},\"022-903\":{\"Title\":\"Presse + professionnelle\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-professionnelle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"023-904\":{\"Title\":\"Presse + religieuse\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-religieuse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"024-891\":{\"Title\":\"Presse + satirique\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-satirique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"025-905\":{\"Title\":\"Presse + scientifique\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/presse-scientifique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"026-906\":{\"Title\":\"Presse + sportive\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-sportive\",\"below\":null,\"submenu\":null,\"abcd\":null},\"027-892\":{\"Title\":\"Presse + syndicale\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-syndicale\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-2172\":{\"Title\":\"Presse + locale et régionale\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-locale-et-regionale\",\"below\":{\"001-2369\":{\"Title\":\"Alsace + Champagne-Ardenne Lorraine\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/alsace-champagne-ardenne-lorraine\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-2373\":{\"Title\":\"Aquitaine + Limousin Poitou-Charentes\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/aquitaine-limousin-poitou-charentes\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-2371\":{\"Title\":\"Auvergne + Rhône-Alpes\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/auvergne-rhone-alpes\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-2370\":{\"Title\":\"Bourgogne + Franche-Comté\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/bourgogne-franche-comte\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-2377\":{\"Title\":\"Bretagne\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/bretagne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"006-2374\":{\"Title\":\"Centre + Val de Loire\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/centre-val-de-loire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"007-2364\":{\"Title\":\"Corse\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/corse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-2367\":{\"Title\":\"Hauts-de-France\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/nord-pas-de-calais-picardie\",\"below\":{},\"submenu\":null,\"abcd\":null},\"009-2368\":{\"Title\":\"Ile-de-France\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/ile-de-france\",\"below\":{},\"submenu\":null,\"abcd\":null},\"010-2372\":{\"Title\":\"Languedoc-Roussillon + Midi-Pyrenées\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/languedoc-roussillon-midi-pyren%C3%A9es\",\"below\":{},\"submenu\":null,\"abcd\":null},\"011-2376\":{\"Title\":\"Normandie\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/normandie\",\"below\":{},\"submenu\":null,\"abcd\":null},\"012-914\":{\"Title\":\"Outre-mer\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/outre-mer\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-2375\":{\"Title\":\"Pays + de la Loire\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/pays-de-la-loire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"014-2205\":{\"Title\":\"Provence-Alpes-Côte-d'Azur\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/provence-alpes-cote-dazur\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"005-883\":{\"Title\":\"Presse + par pays ou zones géographiques\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-par-pays-ou-zones-geographiques\",\"below\":{\"001-909\":{\"Title\":\"Afrique-équatoriale + française\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/afrique-equatoriale-francaise\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-910\":{\"Title\":\"Afrique-occidentale + française\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/afrique-occidentale-francaise\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1028\":{\"Title\":\"Algérie\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/algerie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-911\":{\"Title\":\"Belgique\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/belgique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-1130\":{\"Title\":\"Cameroun\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/cameroun\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-912\":{\"Title\":\"Canada\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/canada\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-913\":{\"Title\":\"Chine\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/chine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-915\":{\"Title\":\"Etablissements + français de l'Inde\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/etablissements-francais-de-linde\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-916\":{\"Title\":\"Etats-Unis\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/etats-unis\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-917\":{\"Title\":\"Haïti\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/haiti\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-918\":{\"Title\":\"Indochine\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/indochine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-886\":{\"Title\":\"Madagascar\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/madagascar\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-919\":{\"Title\":\"Maroc\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/maroc\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-921\":{\"Title\":\"Syrie-Liban\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/syrie-liban\",\"below\":null,\"submenu\":null,\"abcd\":null},\"015-920\":{\"Title\":\"Suisse\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/suisse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"016-3536\":{\"Title\":\"Presse + ottomane francophone\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-ottomane\",\"below\":null,\"submenu\":null,\"abcd\":null},\"017-885\":{\"Title\":\"Tunisie\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/tunisie\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"006-1496\":{\"Title\":\"Journaux + de tranchées\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-tranchees\",\"below\":{\"001-1507\":{\"Title\":\"Liste + alphabétique\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/liste-alphabetique-des-feuilles\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-1497\":{\"Title\":\"Journaux + de l'infanterie\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-linfanterie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1506\":{\"Title\":\"Journaux + de l'artillerie\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-lartillerie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1503\":{\"Title\":\"Journaux + de la cavalerie\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-la-cavalerie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-1504\":{\"Title\":\"Journaux + du génie\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-du-genie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-1501\":{\"Title\":\"Journaux + des chasseurs\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-des-chasseurs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-1498\":{\"Title\":\"Journaux + \ de la Coloniale\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-la-coloniale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-1505\":{\"Title\":\"Journaux + des régiments de zouaves\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-des-regiments-de-zouaves\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-1502\":{\"Title\":\"Journaux + de l'armée d'Orient\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-larmee-dorient\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-1499\":{\"Title\":\"Journaux + d'autres unités\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-dautres-unites\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-1508\":{\"Title\":\"Journaux + de liaison entre poilus\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-liaison-entre-poilus\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-1665\":{\"Title\":\"Journaux + de camps de prisonniers\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-camps-de-prisonniers\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-1526\":{\"Title\":\"Journaux + de front allemands\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-de-front-allemands\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"007-1651\":{\"Title\":\"Journaux + clandestins de la Résistance\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/journaux-clandestins-de-la-resistance\",\"below\":{\"001-2311\":{\"Title\":\"Principaux + titres\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/principaux-titres-de-presse-clandestine-de-la-resistance\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1652\":{\"Title\":\"Acces + par mouvements et organisations\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/acces-par-grands-mouvements\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-1655\":{\"Title\":\"Accès + géographique\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/acces-geographique\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"008-1322\":{\"Title\":\"Revues + savantes\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-par-zones-geographiques\",\"below\":{\"001-2527\":{\"Title\":\"Alsace + Champagne-Ardenne Lorraine\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-alsace-champagne-ardenne-lorraine\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-2528\":{\"Title\":\"Aquitaine + Limousin Poitou-Charentes\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-aquitaine-limousin-poitou-charentes\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-2529\":{\"Title\":\"Auvergne + Rhône-Alpes\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-auvergne-rhone-alpes\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-2530\":{\"Title\":\"Bourgogne + Franche-Comté\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-bourgogne-franche-comte\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-2531\":{\"Title\":\"Bretagne\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-bretagne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"006-2532\":{\"Title\":\"Centre + Val-de-Loire\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-centre-val-de-loire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"007-2533\":{\"Title\":\"Corse\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-corse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-2536\":{\"Title\":\"Hauts-de-France\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-nord-pas-de-calais-picardie\",\"below\":{},\"submenu\":null,\"abcd\":null},\"009-2534\":{\"Title\":\"Ile-de-France\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-ile-de-france\",\"below\":{},\"submenu\":null,\"abcd\":null},\"010-2535\":{\"Title\":\"Languedoc-Roussillon + Midi-Pyrénées\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-languedoc-roussillon-midi-pyrenees\",\"below\":{},\"submenu\":null,\"abcd\":null},\"011-2537\":{\"Title\":\"Normandie\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-normandie\",\"below\":{},\"submenu\":null,\"abcd\":null},\"012-2538\":{\"Title\":\"Pays-de-la-Loire\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-pays-de-la-loire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"013-2539\":{\"Title\":\"Provence-Alpes-Côte-d'Azur\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-savantes-provence-alpes-cote-dazur\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"006-1976\":{\"Title\":\"Enregistrements + sonores\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fonds-sonores\",\"below\":null,\"submenu\":{\"001-3344\":{\"Title\":\"Fonds + sonores\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fonds-sonores\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4128\":{\"Title\":\"Cylindres\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/cylindres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1674\":{\"Title\":\"Musique + et parole du Japon\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/musique-et-parole-du-japon-enregistrements-historiques\",\"below\":{\"001-1675\":{\"Title\":\"Cylindres + - シリンダー\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/musique-et-langue-du-japon-enregistrements-historiques-ri-ben-noyin-le-toyan\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1676\":{\"Title\":\"Disques + inédits - 未刊行?\x81?ディスク\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/disques-enregistres-par-les-archives-de-la-parole-et-par-le-musee-de-la\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1677\":{\"Title\":\"Disques + édités - 刊行?\x81?れ?\x81?ディスク\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/disques-edites-entre-1928-et-1941\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-1466\":{\"Title\":\"La + Marseillaise\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/la-marseillaise\",\"below\":{\"001-1468\":{\"Title\":\"Interprètes + solistes\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/interpretes-solistes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1469\":{\"Title\":\"Orchestres\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/orchestres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1470\":{\"Title\":\"Choeurs + et orchestres\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/choeurs-et-orchestres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1471\":{\"Title\":\"Variantes + de la Marseillaise\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/variantes-de-la-marseillaise\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"005-3425\":{\"Title\":\"Fonotipia\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fonotipia\",\"below\":{\"001-3426\":{\"Title\":\"Artistes + lyriques\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/artistes-lyriques\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-3427\":{\"Title\":\"Violonistes\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/violonistes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3428\":{\"Title\":\"Opéras, + ballets et musiques de scène\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/operas\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3431\":{\"Title\":\"Compositeurs\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/compositeurs\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-3429\":{\"Title\":\"Choeurs + et orchestres\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/musiques-dorchestre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-3432\":{\"Title\":\"Chansons\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chansons-populaires\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-3433\":{\"Title\":\"Enregistrements + parlés\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/lecture\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-3507\":{\"Title\":\"Fonotipia + et la presse\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fonotipia-et-la-presse\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"006-1014\":{\"Title\":\"Archives + de la Parole (1911-1914)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/archives-de-la-parole-ferdinand-brunot-1911-1914\",\"below\":{\"001-1096\":{\"Title\":\"Enregistrements + à la Sorbonne\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/enregistrements-la-sorbonne-paris-1911-1914\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-1029\":{\"Title\":\"Enquête + dans les Ardennes\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/enquete-dans-les-ardennes-juin-juillet-1912\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-1060\":{\"Title\":\"Enquête + dans le Berry\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/enquete-dans-le-berry-juin-1913\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-1067\":{\"Title\":\"Enquête + en Limousin\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/enquete-en-limousin-aout-1913-0\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"007-1381\":{\"Title\":\"Chansons + et musiques de la Première Guerre mondiale\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chansons-et-musiques-de-la-premiere-guerre-mondiale\",\"below\":{\"001-1382\":{\"Title\":\"Chansons + revanchardes\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chansons-revanchardes\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-1383\":{\"Title\":\"Chansons + de combat, chansons de propagande\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chansons-de-combat-chansons-de-propagande\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-1440\":{\"Title\":\"Chansons + de soutien aux poilus, chansons patriotiques\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chansons-de-soutien-aux-poilus-chansons-patriotiques\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-1434\":{\"Title\":\"Chansons + de la vie quotidienne du poilu\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chansons-de-la-vie-quotidienne-du-poilu-au-front\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-1441\":{\"Title\":\"Chansons + de la vie de l'arrière\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chansons-de-la-vie-de-larriere\",\"below\":{},\"submenu\":null,\"abcd\":null},\"006-1438\":{\"Title\":\"Chansons + anglophones\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chansons-americaines\",\"below\":{},\"submenu\":null,\"abcd\":null},\"007-1442\":{\"Title\":\"Chansons + de la victoire : armistice et défilés\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chansons-de-la-victoire-armistice-et-defiles\",\"below\":{},\"submenu\":null,\"abcd\":null},\"008-1456\":{\"Title\":\"Ensemble + des titres\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/ensemble-des-titres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"008-1033\":{\"Title\":\"Discours + et témoignages de la Première Guerre Mondiale\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-et-temoignages-de-la-premiere-guerre-mondiale\",\"below\":{\"001-1347\":{\"Title\":\"Discours + de M. René Viviani (4 août 1914)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-rene-viviani-4-aout-1914\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1341\":{\"Title\":\"Discours + de M. Paul Deschanel (22 décembre 1914)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-paul-deschanel-22-decembre-1914\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1343\":{\"Title\":\"Discours + de M. René Viviani (22 décembre 1914)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-rene-viviani-22-decembre-1914\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1339\":{\"Title\":\"Discours + de M. Raymond Poincaré (14 juillet 1915)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-raymond-poincare-14-juillet-1915\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-1344\":{\"Title\":\"Discours + de M. Paul Deschanel (5 août 1915)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-paul-deschanel-5-aout-1915\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-1348\":{\"Title\":\"Discours + de M. Gaston Doumergue (5 septembre 1916)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-gaston-doumergue-5-septembre-1916\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-1342\":{\"Title\":\"Discours + de M. Paul Deschanel (25 octobre 1916)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-paul-deschanel-25-octobre-1916\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-1346\":{\"Title\":\"Discours + de M. Alexandre Ribot [5 avril 1917]\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-alexandre-ribot-5-avril-1917\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-1345\":{\"Title\":\"Discours + de M. René Viviani (29 avril 1917)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-rene-viviani-29-avril-1917\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-1350\":{\"Title\":\"Discours + de M. René Viviani (3 mai 1917)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-rene-viviani-3-mai-1917\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-1340\":{\"Title\":\"Discours + de M. Léon Bourgeois (9 novembre 1917)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/discours-de-m-leon-bourgeois-9-novembre-1917\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-1407\":{\"Title\":\"Témoignage + du Cardinal Luçon\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/temoignage-du-cardinal-lucon-archeveque-de-reims\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-1420\":{\"Title\":\"Conférence + sur la Grande Guerre\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/conference-sur-la-grande-guerre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-1421\":{\"Title\":\"Récit + de guerre\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/recit-de-guerre\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"009-1101\":{\"Title\":\"Archives + de la Parole (1920-1924)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/archives-de-la-parole-jean-poirot-enregistrements-la-sorbonne\",\"below\":{\"001-1134\":{\"Title\":\"Locuteurs + français (langue nationale)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/locuteurs-francais-langue-nationale-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1233\":{\"Title\":\"Dialectes + français\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/dialectes-francais\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1034\":{\"Title\":\"Locuteurs + étrangers\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/locuteurs-etrangers-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1035\":{\"Title\":\"Phoniatrie\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/phoniatrie-1\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"010-1013\":{\"Title\":\"Archives + de la Parole, Musée de la Parole et du Geste (1924-1930)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/archives-de-la-parole-musee-de-la-parole-et-du-geste-hubert-pernot-1924-1930\",\"below\":{\"001-1015\":{\"Title\":\"Enregistrements + à la Sorbonne\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/enregistrements-la-sorbonne-paris-1924-1930\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-3272\":{\"Title\":\"Mission + en Roumanie (1928)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/mission-en-roumanie-1928-0\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-3520\":{\"Title\":\"Mission + en Tchécoslovaquie (1929)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/mission-phonographique-en-tchecoslovaquie-1929\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"011-1120\":{\"Title\":\"Don + Hubert Pernot\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/don-dhubert-pernot-au-musee-de-la-parole-et-du-geste-1924-1930\",\"below\":{\"001-1131\":{\"Title\":\"Linguistic + survey of India\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/linguistic-survey-india-collecte-ethnolinguistique-1914-1922\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1129\":{\"Title\":\"Linguistic + survey of Burma\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/linguistic-survey-burma-collecte-ethnolinguistique-1917-1919\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1117\":{\"Title\":\"Disques + Gramophone (Inde)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/disques-gramophone-collecte-ethnolinguistique-et-de-musiques-traditionnelles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1108\":{\"Title\":\"Autres + disques\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/autres-disques-disques-edites-et-disques-de-travail\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"012-1195\":{\"Title\":\"Exposition + coloniale internationale de Paris (1931)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/exposition-coloniale-internationale-de-paris-1931\",\"below\":{\"001-1100\":{\"Title\":\"Algérie\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/algerie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1137\":{\"Title\":\"Maroc\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/maroc\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-988\":{\"Title\":\"Tunisie\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/tunisie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1098\":{\"Title\":\"Afrique + Equatoriale Française (A.E.F.)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/afrique-equatoriale-francaise-aef\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-1099\":{\"Title\":\"Afrique + Occidentale Française (A.O.F.)\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/afrique-occidentale-francaise-aof\",\"below\":{},\"submenu\":null,\"abcd\":null},\"006-1110\":{\"Title\":\"Autres + pays d'Afrique subsaharienne\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/autres-pays-dafrique-subsaharienne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"007-1136\":{\"Title\":\"Madagascar\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/madagascar\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-1210\":{\"Title\":\"Laos\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/laos\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-1211\":{\"Title\":\"Cambodge\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/cambodge\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-1212\":{\"Title\":\"Vietnam\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/vietnam\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-1111\":{\"Title\":\"Bali\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/bali\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-1127\":{\"Title\":\"Inde\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/inde\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-1142\":{\"Title\":\"Nouvelle-Calédonie\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/nouvelle-caledonie\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"013-1056\":{\"Title\":\"Musiques + du monde\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/musiques-du-monde\",\"below\":{\"001-1460\":{\"Title\":\"France\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/france\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1216\":{\"Title\":\"Europe\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/europe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1220\":{\"Title\":\"Europe + : traditions juives\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/europe-traditions-juives\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1221\":{\"Title\":\"Afrique + du Nord\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/afrique-du-nord\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-1097\":{\"Title\":\"Afrique + subsaharienne\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/afrique-subsaharienne\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-1189\":{\"Title\":\"Moyen-Orient\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/moyen-orient\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-1074\":{\"Title\":\"Asie\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/asie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-1070\":{\"Title\":\"Océanie\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/oceanie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-1069\":{\"Title\":\"Amérique + du Nord\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/amerique-du-nord\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-1068\":{\"Title\":\"Antilles\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/antilles-haiti\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-1055\":{\"Title\":\"Chants + de marins\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chants-de-marins\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"014-1226\":{\"Title\":\"Fonds + Gilles Deleuze\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1979-0\",\"below\":{\"001-1692\":{\"Title\":\"Année + universitaire 1979-1980\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1979\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1693\":{\"Title\":\"Année + universitaire 1980-1981\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1980\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1694\":{\"Title\":\"Année + universitaire 1981-1982\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1981\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1695\":{\"Title\":\"Année + universitaire 1982-1983\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1982\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-1697\":{\"Title\":\"Année + universitaire 1983-1984\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1983\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-1696\":{\"Title\":\"Année + universitaire 1984-1985\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1984\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-1698\":{\"Title\":\"Année + universitaire 1985-1986\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1985\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-1699\":{\"Title\":\"Année + universitaire 1986-1987\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/gilles-deleuze-cours-donnes-luniversite-paris-8-vincennes-saint-denis-1986\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"015-1214\":{\"Title\":\"Fonds + Fred Deux\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fred-deux-une-vie-parlee-autobiographie-sonore-enregistree-entre-1963-et\",\"below\":null,\"submenu\":null,\"abcd\":null},\"016-1775\":{\"Title\":\"Rencontres + autour de l'édition phonographique\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/rencontres-autour-de-ledition-phonographique\",\"below\":{\"001-1849\":{\"Title\":\"Entretiens + avec Gérard Terronès\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretiens-avec-gerard-terrones\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1852\":{\"Title\":\"Entretien + avec Gilbert Castro\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-gilbert-castro\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1853\":{\"Title\":\"Entretien + avec Pierre Barouh\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-pierre-barouh\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1854\":{\"Title\":\"Entretien + avec Jean Rochard\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-jean-rochard\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-1855\":{\"Title\":\"Entretien + avec Gilles Fruchaux\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-gilles-fruchaux\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-1856\":{\"Title\":\"Entretien + avec Marsu\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-marsu\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-1857\":{\"Title\":\"Entretien + avec Eric Basset\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-eric-basset\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-1858\":{\"Title\":\"Entretiens + avec Jean Karakos\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretiens-avec-jean-karakos\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-1861\":{\"Title\":\"Entretien + avec Richard Pinhas\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-richard-pinhas\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-1862\":{\"Title\":\"Entretien + avec Didier Petit\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-didier-petit\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-1863\":{\"Title\":\"Entretien + avec Marc Thonon\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-marc-thonon\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-1864\":{\"Title\":\"Entretien + avec Jean-Marie Salhani\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-jean-marie-salhani\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-1865\":{\"Title\":\"Entretien + avec Alain Normand\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-alain-normand\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-2323\":{\"Title\":\"Entretiens + avec Laurent Thibault\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretiens-avec-laurent-thibault\",\"below\":null,\"submenu\":null,\"abcd\":null},\"015-2324\":{\"Title\":\"Entretien + avec Hervé Bergerat\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-herve-bergerat\",\"below\":null,\"submenu\":null,\"abcd\":null},\"016-2763\":{\"Title\":\"Entretien + avec Jacques Le Calvé\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-jacques-le-calve\",\"below\":null,\"submenu\":null,\"abcd\":null},\"017-3518\":{\"Title\":\"Entretien + avec Jean-Yves Labat de Rossi\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-jean-yves-labat-de-rossi\",\"below\":null,\"submenu\":null,\"abcd\":null},\"018-3519\":{\"Title\":\"Entretien + avec Gilbert Artman\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-gilbert-artman\",\"below\":null,\"submenu\":null,\"abcd\":null},\"019-3561\":{\"Title\":\"Entretien + avec Frédéric Leibovitz\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-frederic-leibovitz\",\"below\":null,\"submenu\":null,\"abcd\":null},\"020-3521\":{\"Title\":\"Entretien + avec Patrick Mathé\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-patrick-mathe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"021-3890\":{\"Title\":\"Entretien + avec Claude Ermelin\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-claude-ermelin\",\"below\":null,\"submenu\":null,\"abcd\":null},\"022-4451\":{\"Title\":\"Entretien + avec Jacqueline Caux et François Tusques\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-jacqueline-caux-et-francois-tusques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"023-4463\":{\"Title\":\"Entretiens + avec Bernard de Bosson\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretiens-avec-bernard-de-bosson\",\"below\":null,\"submenu\":null,\"abcd\":null},\"024-4515\":{\"Title\":\"Entretien + avec Gérard Meys\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-gerard-meys\",\"below\":null,\"submenu\":null,\"abcd\":null},\"025-5637\":{\"Title\":\"Entretien + avec Claude Puterflam\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-claude-puterflam\",\"below\":null,\"submenu\":null,\"abcd\":null},\"026-5766\":{\"Title\":\"Entretien + avec Dominic Lamblin\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/entretien-avec-dominic-lamblin\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"017-1036\":{\"Title\":\"Offrir + une voix\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/offrir-une-voix\",\"below\":null,\"submenu\":null,\"abcd\":null},\"018-3553\":{\"Title\":\"Chants + et musiques de Noël\",\"href\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/chants-et-musique-de-noel\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"007-1977\":{\"Title\":\"Partitions\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/partitions\",\"below\":null,\"submenu\":{\"001-1312\":{\"Title\":\"Les + partitions par genre\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/les-partitions-par-genre\",\"below\":{\"001-1890\":{\"Title\":\"Danses\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/danses\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-3506\":{\"Title\":\"Musique + dramatique\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/musique-dramatique-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1894\":{\"Title\":\"Musique + instrumentale\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/musique-instrumentale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3551\":{\"Title\":\"Musique + religieuse\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/musique-religieuse-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-1892\":{\"Title\":\"Musique + vocale profane\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/musique-vocale-profane\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-1889\":{\"Title\":\"Oeuvres + théoriques et pédagogiques\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/oeuvres-theoriques-et-pedagogiques\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-1878\":{\"Title\":\"Les + compositeurs\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/les-manuscrits-autographes\",\"below\":{\"001-1880\":{\"Title\":\"Marc-Antoine + Charpentier\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/marc-antoine-charpentier\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5767\":{\"Title\":\"Jean-Philippe + Rameau\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/jean-philippe-rameau-1683-1764\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-1879\":{\"Title\":\"Joseph + et Michael Haydn\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/joseph-et-michael-haydn\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3990\":{\"Title\":\"Wolfgang + Amadeus Mozart\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/wolfgang-amadeus-mozart\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-3642\":{\"Title\":\"Ludwig + van Beethoven\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/ludwig-van-beethoven\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-5636\":{\"Title\":\"Franz + Schubert\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/franz-schubert-1797-1828\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-4480\":{\"Title\":\"Claude + Debussy\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/claude-debussy\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-1316\":{\"Title\":\"Les + corpus de partitions\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/les-corpus-de-partition\",\"below\":{\"001-1317\":{\"Title\":\"La + collection Chambure\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/la-collection-chambure\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1691\":{\"Title\":\"La + collection Philidor\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/la-collection-philidor\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3832\":{\"Title\":\"La + collection Brossard\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/la-collection-brossard\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1722\":{\"Title\":\"Les + livres d'airs de différents auteurs\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/les-livres-dairs-de-differents-auteurs\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-1642\":{\"Title\":\"La + collection Rameau-Decroix\",\"href\":\"https://gallica.bnf.fr/html/und/partitions/la-collection-decroix\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"008-2007\":{\"Title\":\"Objets\",\"href\":\"https://gallica.bnf.fr/html/und/objets/accueil\",\"below\":null,\"submenu\":{\"001-1519\":{\"Title\":\"Monnaies + et jetons\",\"href\":\"https://gallica.bnf.fr/html/und/objets/monnaies\",\"below\":{\"001-1325\":{\"Title\":\"Monnaies + grecques\",\"href\":\"https://gallica.bnf.fr/html/und/objets/monnaies-grecques\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-2083\":{\"Title\":\"Monnaies + romaines\",\"href\":\"https://gallica.bnf.fr/html/und/objets/monnaies-romaines\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-1755\":{\"Title\":\"Jetons\",\"href\":\"https://gallica.bnf.fr/html/und/objets/le-jeton\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1752\":{\"Title\":\"Monnaies + françaises\",\"href\":\"https://gallica.bnf.fr/html/und/objets/monnaies-francaises\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-5693\":{\"Title\":\"Globes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/globes\",\"below\":{\"001-5695\":{\"Title\":\"Globes + en 2D\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-globes-en-2d\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5694\":{\"Title\":\"Globes + en 3D\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-globes-en-3d\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5696\":{\"Title\":\"Globes + en fuseaux\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-globes-en-fuseaux\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-3635\":{\"Title\":\"Masques\",\"href\":\"https://gallica.bnf.fr/html/und/objets/collections-de-masques-titre-page\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3634\":{\"Title\":\"Marionnettes\",\"href\":\"https://gallica.bnf.fr/html/und/objets/collections-de-marionnettes-titre-page\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-2144\":{\"Title\":\"Collection + Charles Cros\",\"href\":\"https://gallica.bnf.fr/html/und/objets/collection-charles-cros\",\"below\":{\"001-2142\":{\"Title\":\"Instruments + des Archives de la Parole\",\"href\":\"https://gallica.bnf.fr/html/und/objets/instruments-des-archives-de-la-parole\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-2143\":{\"Title\":\"Instruments + de phonétique expérimentale\",\"href\":\"https://gallica.bnf.fr/html/und/objets/instruments-de-phonetique-experimentale\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-4479\":{\"Title\":\"Le + son voyageur\",\"href\":\"https://gallica.bnf.fr/html/und/objets/son-en-voyage\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3424\":{\"Title\":\"Apprendre + et enseigner : l'audiovisuel à l'école\",\"href\":\"https://gallica.bnf.fr/html/und/objets/cros-pedagogie\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-3510\":{\"Title\":\"Consoles + de jeux vidéo anciennes\",\"href\":\"https://gallica.bnf.fr/html/und/objets/consoles-de-jeux-video\",\"below\":{},\"submenu\":null,\"abcd\":null},\"006-4282\":{\"Title\":\"Matériel + vidéo\",\"href\":\"https://gallica.bnf.fr/html/und/objets/materiel-video-0\",\"below\":{},\"submenu\":null,\"abcd\":null},\"007-4296\":{\"Title\":\"Micro-ordinateurs\",\"href\":\"https://gallica.bnf.fr/html/und/objets/les-micro-ordinateurs\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"009-4065\":{\"Title\":\"Vidéos\",\"href\":\"https://gallica.bnf.fr/html/und/videos/accueil\",\"below\":null,\"submenu\":{\"001-4125\":{\"Title\":\"Conférences + de la BnF\",\"href\":\"https://gallica.bnf.fr/html/und/videos/conferences-de-la-bnf\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-2762\":{\"Title\":\"Radio-télévision + scolaire\",\"href\":\"https://gallica.bnf.fr/html/und/videos/la-radio-television-scolaire\",\"below\":{\"001-3973\":{\"Title\":\"Arts + et littérature\",\"href\":\"https://gallica.bnf.fr/html/und/videos/arts\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4063\":{\"Title\":\"Cinéma + et audiovisuel\",\"href\":\"https://gallica.bnf.fr/html/und/videos/cinema-et-audiovisuel\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3984\":{\"Title\":\"Géographie\",\"href\":\"https://gallica.bnf.fr/html/und/videos/geographie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3978\":{\"Title\":\"Histoire\",\"href\":\"https://gallica.bnf.fr/html/und/videos/histoire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4024\":{\"Title\":\"Société\",\"href\":\"https://gallica.bnf.fr/html/und/videos/societe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-4056\":{\"Title\":\"Théâtre\",\"href\":\"https://gallica.bnf.fr/html/und/videos/theatre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-3981\":{\"Title\":\"Radiovision\",\"href\":\"https://gallica.bnf.fr/html/und/videos/radiovisions\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-4057\":{\"Title\":\"Séries + de la radio-télévision scolaire\",\"href\":\"https://gallica.bnf.fr/html/und/videos/series-de-la-radio-television-scolaire\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-1956\":{\"Title\":\"PAR + THÉMATIQUES\",\"href\":\"\",\"below\":{\"001-1984\":{\"Title\":\"Arts, + loisirs, sports\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/accueil\",\"below\":null,\"submenu\":{\"001-3020\":{\"Title\":\"Arts + du feu\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/arts-du-feu\",\"below\":{\"001-3060\":{\"Title\":\"Arts + de la terre\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/arts-de-la-terre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-3069\":{\"Title\":\"Arts + du verre\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/arts-du-verre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3070\":{\"Title\":\"Arts + du métal\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/arts-du-metal\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-1732\":{\"Title\":\"Jardins\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/jardins\",\"below\":{\"001-1735\":{\"Title\":\"Art + des jardins\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/art-des-jardins\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-1738\":{\"Title\":\"Horticulture\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/horticulture\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-1736\":{\"Title\":\"Jardins + célèbres\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/jardins-celebres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-2657\":{\"Title\":\"Patrimoine + équestre\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/patrimoine-equestre\",\"below\":{\"001-2658\":{\"Title\":\"Les + classiques du cheval\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-classiques-du-cheval\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-2665\":{\"Title\":\"Equitation, + élevage\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/equitation-elevage\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-2679\":{\"Title\":\"Soins + du cheval\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/soins-du-cheval\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-2680\":{\"Title\":\"Cheval + au travail\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/cheval-au-travail\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-2723\":{\"Title\":\"Loisirs + équestres\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/loisirs-equestres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-2756\":{\"Title\":\"Sites + et patrimoine immobilier équestres\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/sites-et-patrimoine-immobilier-equestres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-2684\":{\"Title\":\"Patrimoine + gourmand\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/patrimoine-gourmand\",\"below\":{\"001-2685\":{\"Title\":\"Essentiels + de la gastronomie\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/essentiels-de-la-gastronomie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-2868\":{\"Title\":\"Ecrits + gourmands\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/ecrits-gourmands\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-3211\":{\"Title\":\"Métiers + et savoir-faire : cuisine, boucherie, boulangerie, pâtisserie...\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/metiers-et-savoir-faire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-3316\":{\"Title\":\"Menus\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/menus\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-4084\":{\"Title\":\"Boissons\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/boissons\",\"below\":{},\"submenu\":null,\"abcd\":null},\"006-4085\":{\"Title\":\"Gastronomie + en images\",\"href\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/gastronomie-en-images\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"005-2163\":{\"Title\":\"Se + soigner par les eaux\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/se-soigner-par-les-eaux\",\"below\":{\"001-2164\":{\"Title\":\"Traités + généraux\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/traites-generaux\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-2165\":{\"Title\":\"Stations + thermales\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/stations-thermales\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"002-2009\":{\"Title\":\"Droit, + économie, politique\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/accueil\",\"below\":null,\"submenu\":{\"001-1293\":{\"Title\":\"Essentiels + du droit\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/essentiels-du-droit\",\"below\":{\"001-1297\":{\"Title\":\"Législation + et réglementation\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/sources-legislatives-et-reglementaires\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1294\":{\"Title\":\"Jurisprudence\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/sources-jurisprudentielles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4486\":{\"Title\":\"Factums\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/factums\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-4025\":{\"Title\":\"Revues + de droit\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/revues-de-droit\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-1299\":{\"Title\":\"Doctrine\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/sources-doctrinales\",\"below\":{},\"submenu\":null,\"abcd\":null},\"006-1296\":{\"Title\":\"Auteurs + de doctrine\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/liste-alphabetique-dauteurs-de-doctrine\",\"below\":{},\"submenu\":null,\"abcd\":null},\"007-4135\":{\"Title\":\"Actes + royaux\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/actes-royaux\",\"below\":{},\"submenu\":null,\"abcd\":null},\"008-3565\":{\"Title\":\"Droit + coutumier et local\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/droit-coutumier-et-local\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-5648\":{\"Title\":\"Essentiels + de l'économie\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/essentiels-de-leconomie\",\"below\":{\"001-5655\":{\"Title\":\"Sources + pour l'histoire des entreprises\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/sources-pour-lhistoire-des-entreprises\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-3754\":{\"Title\":\"Essentiels + de la politique\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/essentiels-de-la-politique\",\"below\":{\"001-3756\":{\"Title\":\"Histoire + des idées politiques\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/theorie-politique\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-4223\":{\"Title\":\"Personnalités + politiques\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/personnalites-politiques-0\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-3755\":{\"Title\":\"Sources + sur l'histoire de la vie politique\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/sources-sur-lhistoire-de-la-vie-politique\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-3759\":{\"Title\":\"Les + débuts de la science politique\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/les-debuts-de-la-science-politique\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-3796\":{\"Title\":\"La + politique dans la culture\",\"href\":\"https://gallica.bnf.fr/html/und/droit-economie/la-politique-dans-la-culture\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"003-2010\":{\"Title\":\"Histoire\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/accueil\",\"below\":null,\"submenu\":{\"001-5536\":{\"Title\":\"Histoire + par l'image\",\"href\":\"https://gallica.bnf.fr/html/und/images/lhistoire-de-france-par-limage\",\"below\":{\"001-5537\":{\"Title\":\"Accès + par corpus\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-corpus\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5538\":{\"Title\":\"Accès + par périodes historiques\",\"href\":\"https://gallica.bnf.fr/html/und/images/acces-par-periodes-historiques\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-3326\":{\"Title\":\"Les + Temps mérovingiens\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/les-temps-merovingiens\",\"below\":{\"001-3327\":{\"Title\":\"Romains + ou barbares, la Gaule avant la conquête franque\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/romains-ou-barbares\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-3337\":{\"Title\":\"Le + pouvoir mérovingien et ses manifestations\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/le-pouvoir-merovingien-et-ses-manifestations\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3336\":{\"Title\":\"La + persistance de la romanité en Gaule franque\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/la-persistance-de-la-romanite-en-gaule-franque\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-3330\":{\"Title\":\"Une + culture chrétienne\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/une-culture-chretienne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-3339\":{\"Title\":\"Sources + et Historiographie mérovingienne\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/constructions-historiographiques-et-historiographie-merovingienne\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-3360\":{\"Title\":\"Imagerie + mérovingienne\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/imagerie-merovingienne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"007-3385\":{\"Title\":\"Manuscrits + mérovingiens\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/collection-de-manuscrits-merovingiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-3494\":{\"Title\":\"Monnaies + mérovingiennes\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/collection-de-monnaies-merovingiennes\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-2063\":{\"Title\":\"Première + Guerre mondiale\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/premiere-guerre-mondiale\",\"below\":{\"001-2855\":{\"Title\":\"Chansons + et musiques\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/chansons-et-musiques\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-2111\":{\"Title\":\"Discours + d'hommes politiques\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/discours-et-temoignages\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-2086\":{\"Title\":\"Journaux + de tranchées\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/journaux-de-tranchees\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-2110\":{\"Title\":\"La + guerre en images\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/la-guerre-en-images\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-2788\":{\"Title\":\"Les + armées françaises dans la Grande Guerre\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/les-armees-francaises-dans-la-grande-guerre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-2799\":{\"Title\":\"Les + bulletins de presse étrangère\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/les-bulletins-de-presse-etrangere\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-3620\":{\"Title\":\"Médaillés + posthumes de la Grande Guerre\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/medailles-posthumes-de-la-grande-guerre\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-2801\":{\"Title\":\"Revues + illustrées\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/revues-illustrees-durant-la-grande-guerre\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-3513\":{\"Title\":\"Quadrilatère + Richelieu\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/quadilatere-richelieu\",\"below\":{\"001-3556\":{\"Title\":\"De + 1700 à 1750\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/de-1700-1750\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-3557\":{\"Title\":\"De + 1750 à 1853\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/de-1750-1853\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-3558\":{\"Title\":\"De + 1854 à 1875\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/de-1854-1875\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-3594\":{\"Title\":\"De + 1875 à 1932\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/de-1875-1932\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-3595\":{\"Title\":\"De + 1932 à 1955\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/de-1932-1955-1\",\"below\":{},\"submenu\":null,\"abcd\":null},\"006-3596\":{\"Title\":\"de + 1955 à nos jours\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/de-1955-nos-jours-0\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"005-3004\":{\"Title\":\"Ressources + généalogiques\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/ressources-genealogiques\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"005-2014\":{\"Title\":\"Littératures\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/accueil\",\"below\":null,\"submenu\":{\"001-4468\":{\"Title\":\"Dossiers + d'écrivain\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/dossiers-decrivain\",\"below\":{\"001-4252\":{\"Title\":\"Gustave + Flaubert\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/gustave-flaubert\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-2077\":{\"Title\":\"Presse + littéraire\",\"href\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-litteraire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5683\":{\"Title\":\"Paris + dans la littérature\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/paris-dans-la-litterature\",\"below\":{\"001-5684\":{\"Title\":\"Utopistes\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/paris-vu-par-les-utopistes-du-xixe-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5685\":{\"Title\":\"Honoré + de Balzac\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/le-paris-dhonore-de-balzac\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5686\":{\"Title\":\"Victor + Hugo\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/le-paris-de-victor-hugo\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5687\":{\"Title\":\"Émile + Zola\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/le-paris-demile-zola\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-2075\":{\"Title\":\"Littérature + jeunesse\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/litterature-jeunesse\",\"below\":{\"001-1533\":{\"Title\":\"Abécédaires\",\"href\":\"https://gallica.bnf.fr/html/und/livres/abecedaires\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-4286\":{\"Title\":\"Coloriages\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/coloriages\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4097\":{\"Title\":\"Drôles + de bêtes\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/droles-de-betes\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-4093\":{\"Title\":\"Figures + littérature jeunesse\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/figures-de-la-litterature-pour-la-jeunesse\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-2079\":{\"Title\":\"Presse + enfantine\",\"href\":\"https://gallica.bnf.fr/html/und/litteratures/presse-enfantine\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"006-2024\":{\"Title\":\"Philosophie, + sciences sociales\",\"href\":\"https://gallica.bnf.fr/html/und/philosophie/philosophie-accueil\",\"below\":{\"001-5771\":{\"Title\":\"Ethnologie + française\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/ethnologie-francaise-premieres-missions-en-afrique-subsaharienne\",\"below\":{\"001-5772\":{\"Title\":\"Les + ethnologues\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/les-ethnologues\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5773\":{\"Title\":\"Les + premières missions\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/les-premieres-missions\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5774\":{\"Title\":\"Manuscrits + éthiopiens\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/manuscrits-ethiopiens\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5775\":{\"Title\":\"Méthodologies + et pluridisciplinarité\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/methodes-disciplines\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5776\":{\"Title\":\"Echos + dans la presse\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/en-parle-dans-la-presse\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-4198\":{\"Title\":\"Philosophie\",\"href\":\"https://gallica.bnf.fr/html/und/philosophie/les-essentiels-de-la-philosophie-francaise\",\"below\":{\"001-4843\":{\"Title\":\"XVIe + siècle\",\"href\":\"https://gallica.bnf.fr/html/und/philosophie/les-grands-textes-de-philosophie-du-xvie-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5638\":{\"Title\":\"XVIIe + siècle\",\"href\":\"https://gallica.bnf.fr/html/und/philosophie/les-grands-textes-de-philosophie-du-xviie-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5642\":{\"Title\":\"XVIIIe + siècle\",\"href\":\"https://gallica.bnf.fr/html/und/philosophie/les-grands-textes-de-philosophie-du-xviiie-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5643\":{\"Title\":\"XIXe + et XXe siècles\",\"href\":\"https://gallica.bnf.fr/html/und/philosophie/les-grands-textes-de-philosophie-des-xixe-et-xxe-siecles\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"007-2052\":{\"Title\":\"Sciences\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/accueil\",\"below\":null,\"submenu\":{\"001-1283\":{\"Title\":\"Essentiels + des sciences naturelles\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/essentiels-des-sciences-naturelles\",\"below\":{\"001-1288\":{\"Title\":\"XVIe + siècle\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/xvie-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1285\":{\"Title\":\"XVIIe + siècle\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/xviie-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1289\":{\"Title\":\"XVIIIe + siècle\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/xviiie-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1290\":{\"Title\":\"XIXe + siècle\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/xixe-siecle\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-5507\":{\"Title\":\"Hôpitaux + parisiens\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopitaux-parisiens\",\"below\":{\"001-5508\":{\"Title\":\"Ouvrages + généraux\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/ouvrages-generaux\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5509\":{\"Title\":\"Beaujon\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-beaujon\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5510\":{\"Title\":\"Bichat-Claude + Bernard\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-bichat-claude-bernard\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5511\":{\"Title\":\"Cochin\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-cochin\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5512\":{\"Title\":\"Hôtel-Dieu\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hotel-dieu\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-5513\":{\"Title\":\"La + Pitié-Salpêtrière\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-de-la-pitie-salpetriere\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5514\":{\"Title\":\"Lariboisière\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-lariboisiere\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5515\":{\"Title\":\"Necker-Enfants + malades\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-necker-enfants-malades\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5516\":{\"Title\":\"Port-Royal-Baudelocque\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-port-royal-baudelocque\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-5517\":{\"Title\":\"Saint-Antoine\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-saint-antoine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"011-5518\":{\"Title\":\"Sainte-Anne\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-sainte-anne\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-5519\":{\"Title\":\"Tenon\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-tenon\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-5520\":{\"Title\":\"Trousseau\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/hopital-trousseau\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-5521\":{\"Title\":\"Val-de-Grâce\",\"href\":\"https://gallica.bnf.fr/html/und/histoire/val-de-grace\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-2162\":{\"Title\":\"Jardins\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/jardins\",\"below\":{\"001-2272\":{\"Title\":\"Art + des jardins\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/art-des-jardins\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-2302\":{\"Title\":\"Horticulture\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/horticulture\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-2275\":{\"Title\":\"Jardins + célèbres\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/jardins-celebres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-4446\":{\"Title\":\"La + Nature en images\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/nature-en-images\",\"below\":{\"001-4288\":{\"Title\":\"Botanique + illustrée\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-botanique-illustres\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-4289\":{\"Title\":\"Géologie + illustrée\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-geologie-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-4287\":{\"Title\":\"Zoologie + illustrée\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-plus-beaux-ouvrages-de-zoologie-illustres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"005-2963\":{\"Title\":\"Patrimoine + équestre\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/patrimoine-equestre\",\"below\":{\"001-2964\":{\"Title\":\"Les + classiques du cheval\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/les-classiques-du-cheval\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-2965\":{\"Title\":\"Equitation, + élevage\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/equitation-elevage\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-2966\":{\"Title\":\"Soins + du cheval\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/soins-du-cheval\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-2967\":{\"Title\":\"Cheval + au travail\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/cheval-au-travail\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-2968\":{\"Title\":\"Loisirs + équestres\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/loisirs-equestres\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-2969\":{\"Title\":\"Sites + et patrimoine immobilier équestres\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/sites-et-patrimoine-immobilier-equestres\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"006-2306\":{\"Title\":\"Presse + médicale\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/presse-medicale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-2307\":{\"Title\":\"Presse + scientifique\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/presse-scientifique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-1673\":{\"Title\":\"Se + soigner par les eaux\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/se-soigner-par-les-eaux\",\"below\":{\"001-1682\":{\"Title\":\"Traités + généraux\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/traites-generaux\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1681\":{\"Title\":\"Stations + thermales\",\"href\":\"https://gallica.bnf.fr/html/und/sciences/stations-thermales\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-1957\":{\"Title\":\"PAR + AIRES GÉOGRAPHIQUES\",\"href\":\"\",\"below\":{\"001-1985\":{\"Title\":\"France\",\"href\":\"https://gallica.bnf.fr/html/und/france/accueil\",\"below\":null,\"submenu\":{\"001-5701\":{\"Title\":\"Accès + par régions\",\"href\":\"https://gallica.bnf.fr/html/und/france/france-acces-par-region\",\"below\":{\"001-2504\":{\"Title\":\"Auvergne + Rhône-Alpes\",\"href\":\"https://gallica.bnf.fr/html/und/france/auvergne-rhone-alpes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-2517\":{\"Title\":\"Bourgogne + Franche-Comté\",\"href\":\"https://gallica.bnf.fr/html/und/france/bourgogne-franche-comte\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-2084\":{\"Title\":\"Bretagne\",\"href\":\"https://gallica.bnf.fr/html/und/france/bretagne\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-2526\":{\"Title\":\"Centre-Val + de Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/centre-val-de-loire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5704\":{\"Title\":\"Corse\",\"href\":\"https://gallica.bnf.fr/html/und/france/corse\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-2481\":{\"Title\":\"Grand-Est\",\"href\":\"https://gallica.bnf.fr/html/und/france/grand-est\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-5705\":{\"Title\":\"Guadeloupe\",\"href\":\"https://gallica.bnf.fr/html/und/france/guadeloupe\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5706\":{\"Title\":\"Guyane\",\"href\":\"https://gallica.bnf.fr/html/und/france/guyane\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-2560\":{\"Title\":\"Hauts-de-France\",\"href\":\"https://gallica.bnf.fr/html/und/france/nord-pas-de-calais-picardie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-2546\":{\"Title\":\"Île-de-France\",\"href\":\"https://gallica.bnf.fr/html/und/france/ile-de-france\",\"below\":{},\"submenu\":null,\"abcd\":null},\"011-5708\":{\"Title\":\"La + Réunion\",\"href\":\"https://gallica.bnf.fr/html/und/france/reunion\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-5709\":{\"Title\":\"Martinique\",\"href\":\"https://gallica.bnf.fr/html/und/france/martinique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"013-5711\":{\"Title\":\"Mayotte\",\"href\":\"https://gallica.bnf.fr/html/und/france/mayotte\",\"below\":null,\"submenu\":null,\"abcd\":null},\"014-2561\":{\"Title\":\"Normandie\",\"href\":\"https://gallica.bnf.fr/html/und/france/normandie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"015-2491\":{\"Title\":\"Nouvelle-Aquitaine\",\"href\":\"https://gallica.bnf.fr/html/und/france/nouvelle-aquitaine\",\"below\":null,\"submenu\":null,\"abcd\":null},\"016-2559\":{\"Title\":\"Occitanie\",\"href\":\"https://gallica.bnf.fr/html/und/france/occitanie\",\"below\":{},\"submenu\":null,\"abcd\":null},\"017-2564\":{\"Title\":\"Pays-de-la-Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/pays-de-la-loire\",\"below\":null,\"submenu\":null,\"abcd\":null},\"018-2562\":{\"Title\":\"Provence-Alpes-Côte-d'Azur\",\"href\":\"https://gallica.bnf.fr/html/und/france/provence-alpes-cote-dazur\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-5702\":{\"Title\":\"Accès + par départements\",\"href\":\"https://gallica.bnf.fr/html/und/france/france-acces-par-departements\",\"below\":{\"001-2505\":{\"Title\":\"Ain\",\"href\":\"https://gallica.bnf.fr/html/und/france/ain\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-2584\":{\"Title\":\"Aisne\",\"href\":\"https://gallica.bnf.fr/html/und/france/aisne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-2506\":{\"Title\":\"Allier\",\"href\":\"https://gallica.bnf.fr/html/und/france/allier\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-2608\":{\"Title\":\"Alpes-de-Haute-Provence\",\"href\":\"https://gallica.bnf.fr/html/und/france/alpes-de-haute-provence\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-5779\":{\"Title\":\"Alpes-Maritimes\",\"href\":\"https://gallica.bnf.fr/html/und/france/alpes-maritimes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-2507\":{\"Title\":\"Ardèche\",\"href\":\"https://gallica.bnf.fr/html/und/france/ardeche\",\"below\":{},\"submenu\":null,\"abcd\":null},\"007-2482\":{\"Title\":\"Ardennes\",\"href\":\"https://gallica.bnf.fr/html/und/france/ardennes\",\"below\":{},\"submenu\":null,\"abcd\":null},\"008-2571\":{\"Title\":\"Ariège\",\"href\":\"https://gallica.bnf.fr/html/und/france/ariege\",\"below\":{},\"submenu\":null,\"abcd\":null},\"009-2483\":{\"Title\":\"Aube\",\"href\":\"https://gallica.bnf.fr/html/und/france/aube\",\"below\":{},\"submenu\":null,\"abcd\":null},\"010-2572\":{\"Title\":\"Aude\",\"href\":\"https://gallica.bnf.fr/html/und/france/aude\",\"below\":{},\"submenu\":null,\"abcd\":null},\"011-5780\":{\"Title\":\"Aveyron\",\"href\":\"https://gallica.bnf.fr/html/und/france/aveyron\",\"below\":null,\"submenu\":null,\"abcd\":null},\"012-2484\":{\"Title\":\"Bas-Rhin\",\"href\":\"https://gallica.bnf.fr/html/und/france/bas-rhin\",\"below\":{},\"submenu\":null,\"abcd\":null},\"013-2609\":{\"Title\":\"Bouches-du-Rhône\",\"href\":\"https://gallica.bnf.fr/html/und/france/bouches-du-rhone\",\"below\":{},\"submenu\":null,\"abcd\":null},\"014-2589\":{\"Title\":\"Calvados\",\"href\":\"https://gallica.bnf.fr/html/und/france/calvados\",\"below\":{},\"submenu\":null,\"abcd\":null},\"015-2508\":{\"Title\":\"Cantal\",\"href\":\"https://gallica.bnf.fr/html/und/france/cantal\",\"below\":{},\"submenu\":null,\"abcd\":null},\"016-2492\":{\"Title\":\"Charente\",\"href\":\"https://gallica.bnf.fr/html/und/france/charente\",\"below\":{},\"submenu\":null,\"abcd\":null},\"017-2493\":{\"Title\":\"Charente-Maritime\",\"href\":\"https://gallica.bnf.fr/html/und/france/charente-maritime\",\"below\":{},\"submenu\":null,\"abcd\":null},\"018-2565\":{\"Title\":\"Cher\",\"href\":\"https://gallica.bnf.fr/html/und/france/cher\",\"below\":{},\"submenu\":null,\"abcd\":null},\"019-2494\":{\"Title\":\"Corrèze\",\"href\":\"https://gallica.bnf.fr/html/und/france/correze\",\"below\":{},\"submenu\":null,\"abcd\":null},\"020-2545\":{\"Title\":\"Corse\",\"href\":\"https://gallica.bnf.fr/html/und/france/corse\",\"below\":{},\"submenu\":null,\"abcd\":null},\"021-2518\":{\"Title\":\"Côte-d'Or\",\"href\":\"https://gallica.bnf.fr/html/und/france/cote-dor\",\"below\":{},\"submenu\":null,\"abcd\":null},\"022-2115\":{\"Title\":\"Côtes + d'Armor\",\"href\":\"https://gallica.bnf.fr/html/und/france/cotes-darmor\",\"below\":{},\"submenu\":null,\"abcd\":null},\"023-2495\":{\"Title\":\"Creuse\",\"href\":\"https://gallica.bnf.fr/html/und/france/creuse\",\"below\":{},\"submenu\":null,\"abcd\":null},\"024-2496\":{\"Title\":\"Deux-Sèvres\",\"href\":\"https://gallica.bnf.fr/html/und/france/deux-sevres\",\"below\":{},\"submenu\":null,\"abcd\":null},\"025-2497\":{\"Title\":\"Dordogne\",\"href\":\"https://gallica.bnf.fr/html/und/france/dordogne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"026-2519\":{\"Title\":\"Doubs\",\"href\":\"https://gallica.bnf.fr/html/und/france/doubs\",\"below\":{},\"submenu\":null,\"abcd\":null},\"027-2509\":{\"Title\":\"Drôme\",\"href\":\"https://gallica.bnf.fr/html/und/france/drome\",\"below\":{},\"submenu\":null,\"abcd\":null},\"028-2547\":{\"Title\":\"Essonne\",\"href\":\"https://gallica.bnf.fr/html/und/france/essonne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"029-2590\":{\"Title\":\"Eure\",\"href\":\"https://gallica.bnf.fr/html/und/france/eure\",\"below\":{},\"submenu\":null,\"abcd\":null},\"030-2566\":{\"Title\":\"Eure-et-Loir\",\"href\":\"https://gallica.bnf.fr/html/und/france/eure-et-loir\",\"below\":{},\"submenu\":null,\"abcd\":null},\"031-2122\":{\"Title\":\"Finistère\",\"href\":\"https://gallica.bnf.fr/html/und/france/finistere\",\"below\":{},\"submenu\":null,\"abcd\":null},\"032-2574\":{\"Title\":\"Gard\",\"href\":\"https://gallica.bnf.fr/html/und/france/gard\",\"below\":{},\"submenu\":null,\"abcd\":null},\"033-2575\":{\"Title\":\"Gers\",\"href\":\"https://gallica.bnf.fr/html/und/france/gers\",\"below\":{},\"submenu\":null,\"abcd\":null},\"034-2498\":{\"Title\":\"Gironde\",\"href\":\"https://gallica.bnf.fr/html/und/france/gironde\",\"below\":{},\"submenu\":null,\"abcd\":null},\"035-2594\":{\"Title\":\"Guadeloupe\",\"href\":\"https://gallica.bnf.fr/html/und/france/guadeloupe\",\"below\":{},\"submenu\":null,\"abcd\":null},\"036-2595\":{\"Title\":\"Guyane\",\"href\":\"https://gallica.bnf.fr/html/und/france/guyane\",\"below\":{},\"submenu\":null,\"abcd\":null},\"037-2485\":{\"Title\":\"Haut-Rhin\",\"href\":\"https://gallica.bnf.fr/html/und/france/haut-rhin\",\"below\":{},\"submenu\":null,\"abcd\":null},\"038-2577\":{\"Title\":\"Haute-Garonne\",\"href\":\"https://gallica.bnf.fr/html/und/france/haute-garonne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"039-2510\":{\"Title\":\"Haute-Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/haute-loire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"040-2486\":{\"Title\":\"Haute-Marne\",\"href\":\"https://gallica.bnf.fr/html/und/france/haute-marne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"041-2520\":{\"Title\":\"Haute-Saône\",\"href\":\"https://gallica.bnf.fr/html/und/france/haute-saone\",\"below\":{},\"submenu\":null,\"abcd\":null},\"042-2511\":{\"Title\":\"Haute-Savoie\",\"href\":\"https://gallica.bnf.fr/html/und/france/haute-savoie\",\"below\":{},\"submenu\":null,\"abcd\":null},\"043-2499\":{\"Title\":\"Haute-Vienne\",\"href\":\"https://gallica.bnf.fr/html/und/france/haute-vienne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"044-5778\":{\"Title\":\"Hautes-Alpes\",\"href\":\"https://gallica.bnf.fr/html/und/france/hautes-alpes\",\"below\":null,\"submenu\":null,\"abcd\":null},\"045-2578\":{\"Title\":\"Hautes-Pyrénées\",\"href\":\"https://gallica.bnf.fr/html/und/france/hautes-pyrenees\",\"below\":{},\"submenu\":null,\"abcd\":null},\"046-2576\":{\"Title\":\"Hérault\",\"href\":\"https://gallica.bnf.fr/html/und/france/herault\",\"below\":{},\"submenu\":null,\"abcd\":null},\"047-2250\":{\"Title\":\"Ille-et-Vilaine\",\"href\":\"https://gallica.bnf.fr/html/und/france/ille-et-vilaine\",\"below\":{},\"submenu\":null,\"abcd\":null},\"048-2567\":{\"Title\":\"Indre\",\"href\":\"https://gallica.bnf.fr/html/und/france/indre\",\"below\":{},\"submenu\":null,\"abcd\":null},\"049-2568\":{\"Title\":\"Indre-et-Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/indre-et-loire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"050-2512\":{\"Title\":\"Isère\",\"href\":\"https://gallica.bnf.fr/html/und/france/isere\",\"below\":{},\"submenu\":null,\"abcd\":null},\"051-2521\":{\"Title\":\"Jura\",\"href\":\"https://gallica.bnf.fr/html/und/france/jura\",\"below\":{},\"submenu\":null,\"abcd\":null},\"052-2600\":{\"Title\":\"La + Réunion\",\"href\":\"https://gallica.bnf.fr/html/und/france/reunion\",\"below\":{},\"submenu\":null,\"abcd\":null},\"053-2500\":{\"Title\":\"Landes\",\"href\":\"https://gallica.bnf.fr/html/und/france/landes\",\"below\":{},\"submenu\":null,\"abcd\":null},\"054-2569\":{\"Title\":\"Loir-et-Cher\",\"href\":\"https://gallica.bnf.fr/html/und/france/loir-et-cher\",\"below\":{},\"submenu\":null,\"abcd\":null},\"055-2513\":{\"Title\":\"Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/loire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"056-2602\":{\"Title\":\"Loire-Atlantique\",\"href\":\"https://gallica.bnf.fr/html/und/france/loire-atlantique\",\"below\":{},\"submenu\":null,\"abcd\":null},\"057-2570\":{\"Title\":\"Loiret\",\"href\":\"https://gallica.bnf.fr/html/und/france/loiret\",\"below\":{},\"submenu\":null,\"abcd\":null},\"058-2579\":{\"Title\":\"Lot\",\"href\":\"https://gallica.bnf.fr/html/und/france/lot\",\"below\":{},\"submenu\":null,\"abcd\":null},\"059-2501\":{\"Title\":\"Lot-et-Garonne\",\"href\":\"https://gallica.bnf.fr/html/und/france/lot-et-garonne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"060-2580\":{\"Title\":\"Lozère\",\"href\":\"https://gallica.bnf.fr/html/und/france/lozere\",\"below\":{},\"submenu\":null,\"abcd\":null},\"061-2603\":{\"Title\":\"Maine-et-Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/maine-et-loire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"062-2591\":{\"Title\":\"Manche\",\"href\":\"https://gallica.bnf.fr/html/und/france/manche\",\"below\":{},\"submenu\":null,\"abcd\":null},\"063-2487\":{\"Title\":\"Marne\",\"href\":\"https://gallica.bnf.fr/html/und/france/marne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"064-2596\":{\"Title\":\"Martinique\",\"href\":\"https://gallica.bnf.fr/html/und/france/martinique\",\"below\":{},\"submenu\":null,\"abcd\":null},\"065-2604\":{\"Title\":\"Mayenne\",\"href\":\"https://gallica.bnf.fr/html/und/france/mayenne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"066-2597\":{\"Title\":\"Mayotte\",\"href\":\"https://gallica.bnf.fr/html/und/france/mayotte\",\"below\":{},\"submenu\":null,\"abcd\":null},\"067-2488\":{\"Title\":\"Meurthe-et-Moselle\",\"href\":\"https://gallica.bnf.fr/html/und/france/meurthe-et-moselle\",\"below\":{},\"submenu\":null,\"abcd\":null},\"068-2671\":{\"Title\":\"Meuse\",\"href\":\"https://gallica.bnf.fr/html/und/france/meuse\",\"below\":{},\"submenu\":null,\"abcd\":null},\"069-2251\":{\"Title\":\"Morbihan\",\"href\":\"https://gallica.bnf.fr/html/und/france/morbihan\",\"below\":{},\"submenu\":null,\"abcd\":null},\"070-2489\":{\"Title\":\"Moselle\",\"href\":\"https://gallica.bnf.fr/html/und/france/moselle\",\"below\":{},\"submenu\":null,\"abcd\":null},\"071-2522\":{\"Title\":\"Nièvre\",\"href\":\"https://gallica.bnf.fr/html/und/france/nievre\",\"below\":{},\"submenu\":null,\"abcd\":null},\"072-2585\":{\"Title\":\"Nord\",\"href\":\"https://gallica.bnf.fr/html/und/france/nord\",\"below\":{},\"submenu\":null,\"abcd\":null},\"073-2586\":{\"Title\":\"Oise\",\"href\":\"https://gallica.bnf.fr/html/und/france/oise\",\"below\":{},\"submenu\":null,\"abcd\":null},\"074-2592\":{\"Title\":\"Orne\",\"href\":\"https://gallica.bnf.fr/html/und/france/orne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"075-2549\":{\"Title\":\"Paris\",\"href\":\"https://gallica.bnf.fr/html/und/france/paris\",\"below\":{},\"submenu\":null,\"abcd\":null},\"076-2587\":{\"Title\":\"Pas-de-Calais\",\"href\":\"https://gallica.bnf.fr/html/und/france/pas-de-calais\",\"below\":{},\"submenu\":null,\"abcd\":null},\"077-2514\":{\"Title\":\"Puy-de-Dôme\",\"href\":\"https://gallica.bnf.fr/html/und/france/puy-de-dome\",\"below\":{},\"submenu\":null,\"abcd\":null},\"078-2502\":{\"Title\":\"Pyrénées-Atlantiques\",\"href\":\"https://gallica.bnf.fr/html/und/france/pyrenees-atlantiques\",\"below\":{},\"submenu\":null,\"abcd\":null},\"079-2581\":{\"Title\":\"Pyrénées-Orientales\",\"href\":\"https://gallica.bnf.fr/html/und/france/pyrenees-orientales\",\"below\":{},\"submenu\":null,\"abcd\":null},\"080-2515\":{\"Title\":\"Rhône\",\"href\":\"https://gallica.bnf.fr/html/und/france/rhone\",\"below\":{},\"submenu\":null,\"abcd\":null},\"081-2523\":{\"Title\":\"Saône-et-Loire\",\"href\":\"https://gallica.bnf.fr/html/und/france/saone-et-loire\",\"below\":{},\"submenu\":null,\"abcd\":null},\"082-2605\":{\"Title\":\"Sarthe\",\"href\":\"https://gallica.bnf.fr/html/und/france/sarthe\",\"below\":{},\"submenu\":null,\"abcd\":null},\"083-2516\":{\"Title\":\"Savoie\",\"href\":\"https://gallica.bnf.fr/html/und/france/savoie\",\"below\":{},\"submenu\":null,\"abcd\":null},\"084-2593\":{\"Title\":\"Seine-Maritime\",\"href\":\"https://gallica.bnf.fr/html/und/france/seine-maritime\",\"below\":{},\"submenu\":null,\"abcd\":null},\"085-2550\":{\"Title\":\"Seine-Saint-Denis\",\"href\":\"https://gallica.bnf.fr/html/und/france/seine-saint-denis\",\"below\":{},\"submenu\":null,\"abcd\":null},\"086-2555\":{\"Title\":\"Seine-et-Marne\",\"href\":\"https://gallica.bnf.fr/html/und/france/seine-et-marne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"087-2588\":{\"Title\":\"Somme\",\"href\":\"https://gallica.bnf.fr/html/und/france/somme\",\"below\":{},\"submenu\":null,\"abcd\":null},\"088-2582\":{\"Title\":\"Tarn\",\"href\":\"https://gallica.bnf.fr/html/und/france/tarn\",\"below\":{},\"submenu\":null,\"abcd\":null},\"089-2583\":{\"Title\":\"Tarn-et-Garonne\",\"href\":\"https://gallica.bnf.fr/html/und/france/tarn-et-garonne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"090-2524\":{\"Title\":\"Territoire + de Belfort\",\"href\":\"https://gallica.bnf.fr/html/und/france/territoire-de-belfort\",\"below\":{},\"submenu\":null,\"abcd\":null},\"091-2556\":{\"Title\":\"Val-d'Oise\",\"href\":\"https://gallica.bnf.fr/html/und/france/val-doise\",\"below\":{},\"submenu\":null,\"abcd\":null},\"092-2557\":{\"Title\":\"Val-de-Marne\",\"href\":\"https://gallica.bnf.fr/html/und/france/val-de-marne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"093-2611\":{\"Title\":\"Var\",\"href\":\"https://gallica.bnf.fr/html/und/france/var\",\"below\":{},\"submenu\":null,\"abcd\":null},\"094-2612\":{\"Title\":\"Vaucluse\",\"href\":\"https://gallica.bnf.fr/html/und/france/vaucluse\",\"below\":{},\"submenu\":null,\"abcd\":null},\"095-2606\":{\"Title\":\"Vendée\",\"href\":\"https://gallica.bnf.fr/html/und/france/vendee\",\"below\":{},\"submenu\":null,\"abcd\":null},\"096-2503\":{\"Title\":\"Vienne\",\"href\":\"https://gallica.bnf.fr/html/und/france/vienne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"097-2490\":{\"Title\":\"Vosges\",\"href\":\"https://gallica.bnf.fr/html/und/france/vosges\",\"below\":{},\"submenu\":null,\"abcd\":null},\"098-2525\":{\"Title\":\"Yonne\",\"href\":\"https://gallica.bnf.fr/html/und/france/yonne\",\"below\":{},\"submenu\":null,\"abcd\":null},\"099-2558\":{\"Title\":\"Yvelines\",\"href\":\"https://gallica.bnf.fr/html/und/france/yvelines\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-5703\":{\"Title\":\"Accès + par grandes villes\",\"href\":\"https://gallica.bnf.fr/html/und/france/france-acces-par-grandes-villes\",\"below\":{\"001-4493\":{\"Title\":\"Bastia\",\"href\":\"https://gallica.bnf.fr/html/und/france/histoire-de-bastia\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4489\":{\"Title\":\"Besançon\",\"href\":\"https://gallica.bnf.fr/html/und/france/histoire-de-besancon\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3644\":{\"Title\":\"Clermont-Ferrand\",\"href\":\"https://gallica.bnf.fr/html/und/france/histoire-de-clermont-ferrand\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-4484\":{\"Title\":\"Grenoble\",\"href\":\"https://gallica.bnf.fr/html/und/france/histoire-de-grenoble\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-4498\":{\"Title\":\"Lille\",\"href\":\"https://gallica.bnf.fr/html/und/france/histoire-de-lille\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-3637\":{\"Title\":\"Marseille\",\"href\":\"https://gallica.bnf.fr/html/und/france/histoire-de-marseille\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-4495\":{\"Title\":\"Nancy\",\"href\":\"https://gallica.bnf.fr/html/und/france/histoire-de-nancy\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-5717\":{\"Title\":\"Paris\",\"href\":\"https://gallica.bnf.fr/html/und/france/paris\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-3645\":{\"Title\":\"Rouen\",\"href\":\"https://gallica.bnf.fr/html/und/france/histoire-de-rouen\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-5755\":{\"Title\":\"Outre-mer + (collectivités et territoires)\",\"href\":\"https://gallica.bnf.fr/html/und/france/france-collectivites-et-territoires-doutre-mer\",\"below\":{\"001-5756\":{\"Title\":\"Clipperton\",\"href\":\"https://gallica.bnf.fr/html/und/france/clipperton\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5758\":{\"Title\":\"Iles + Crozet\",\"href\":\"https://gallica.bnf.fr/html/und/france/iles-crozet\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5757\":{\"Title\":\"Iles + Eparses de l'Océan Indien\",\"href\":\"https://gallica.bnf.fr/html/und/france/iles-eparses-de-locean-indien\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5759\":{\"Title\":\"Iles + Kerguelen\",\"href\":\"https://gallica.bnf.fr/html/und/france/iles-kerguelen\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-5760\":{\"Title\":\"Iles + Saint-Paul et Nouvelle-Amsterdam\",\"href\":\"https://gallica.bnf.fr/html/und/france/iles-saint-paul-et-nouvelle-amsterdam\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-2598\":{\"Title\":\"Nouvelle-Calédonie\",\"href\":\"https://gallica.bnf.fr/html/und/france/nouvelle-caledonie\",\"below\":{},\"submenu\":null,\"abcd\":null},\"007-5716\":{\"Title\":\"Polynésie + française\",\"href\":\"https://gallica.bnf.fr/html/und/france/polynesie-francaise\",\"below\":{},\"submenu\":null,\"abcd\":null},\"008-5761\":{\"Title\":\"Saint-Barthélemy\",\"href\":\"https://gallica.bnf.fr/html/und/france/saint-barthelemy\",\"below\":null,\"submenu\":null,\"abcd\":null},\"009-5762\":{\"Title\":\"Saint-Martin\",\"href\":\"https://gallica.bnf.fr/html/und/france/saint-martin\",\"below\":null,\"submenu\":null,\"abcd\":null},\"010-2601\":{\"Title\":\"Saint-Pierre-et-Miquelon\",\"href\":\"https://gallica.bnf.fr/html/und/france/saint-pierre-et-miquelon\",\"below\":{},\"submenu\":null,\"abcd\":null},\"011-5763\":{\"Title\":\"Terre-Adélie\",\"href\":\"https://gallica.bnf.fr/html/und/france/terre-adelie\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"002-2023\":{\"Title\":\"Afrique\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/accueil\",\"below\":null,\"submenu\":{\"001-5527\":{\"Title\":\"Cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/lafrique-en-cartes\",\"below\":{\"001-5529\":{\"Title\":\"Accès + chronologique\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/lafrique-en-cartes/acc%C3%A8s-chronologique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5530\":{\"Title\":\"Accès + géographique\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/lafrique-en-cartes/acc%C3%A8s-g%C3%A9ographique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5531\":{\"Title\":\"carte + de Lannoy de Bissy\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/lafrique-en-cartes/la-carte-de-lannoy-de-bissy\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-3668\":{\"Title\":\"Publications + officielles\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/publications-officielles-dafrique\",\"below\":{\"001-3653\":{\"Title\":\"Afrique + équatoriale française\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/afrique-equatoriale-francaise\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-3652\":{\"Title\":\"Afrique + occidentale française\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/afrique-occidentale-francaise\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3669\":{\"Title\":\"Archipel + des Comores\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/protectorat-des-comores\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3667\":{\"Title\":\"Algérie\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/algerie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-3671\":{\"Title\":\"Côte + française des Somalis\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/cote-francaise-des-somalis\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-2072\":{\"Title\":\"Madagascar + et dépendances\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/madagascar\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-3672\":{\"Title\":\"Régence + de Tunis\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/regence-de-tunis\",\"below\":null,\"submenu\":null,\"abcd\":null},\"008-3673\":{\"Title\":\"Résidence + générale du Maroc\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/residence-generale-du-maroc\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"003-3800\":{\"Title\":\"Echanges + scientifiques et culturels\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/echanges-scientifiques-et-culturels\",\"below\":{\"001-3802\":{\"Title\":\"Echanges + avec l'Afrique occidentale\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/echanges-scientifiques-et-culturels-avec-lafrique-occidentale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-3803\":{\"Title\":\"Echanges + avec l'Afrique équatoriale\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/echanges-scientifiques-et-culturels-avec-lafrique-equatoriale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3670\":{\"Title\":\"Echanges + avec l'Algérie\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/echanges-scientifiques-et-culturels-avec-lalgerie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3804\":{\"Title\":\"Echanges + avec la Tunisie\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/echanges-scientifiques-et-culturels-avec-la-tunisie\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-3801\":{\"Title\":\"Echanges + avec le Maroc\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/echanges-scientifiques-et-culturels-avec-le-maroc\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-3625\":{\"Title\":\"Publications + sur l'Afrique du Nord ancienne\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/lafrique-ancienne\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"004-5528\":{\"Title\":\"Photographies + de la Société de géographie\",\"href\":\"https://gallica.bnf.fr/html/und/images/photos-SG/acces-geographique/afrique\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-3989\":{\"Title\":\"Voyages + en Afrique\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/voyages-en-afrique-0\",\"below\":{\"001-4005\":{\"Title\":\"Découvertes\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/decouvertes-0\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-4007\":{\"Title\":\"Explorations\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/explorations\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-4008\":{\"Title\":\"Colonisations\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/colonisations\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-3994\":{\"Title\":\"Tourisme\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/tourisme\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-4009\":{\"Title\":\"Revue + Le Tour du monde\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/le-tour-du-monde\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"006-4309\":{\"Title\":\"Ethnologie + française\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/ethnologie-francaise-premieres-missions-en-afrique-subsaharienne\",\"below\":{\"001-4310\":{\"Title\":\"Les + ethnologues\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/les-ethnologues\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-4334\":{\"Title\":\"Les + premières missions\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/les-premieres-missions\",\"below\":{},\"submenu\":null,\"abcd\":null},\"003-4349\":{\"Title\":\"Manuscrits + éthiopiens\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/manuscrits-ethiopiens\",\"below\":{},\"submenu\":null,\"abcd\":null},\"004-4358\":{\"Title\":\"Méthodologies + et pluridisciplinarité\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/methodes-disciplines\",\"below\":{},\"submenu\":null,\"abcd\":null},\"005-4418\":{\"Title\":\"Echos + dans la presse\",\"href\":\"https://gallica.bnf.fr/html/und/afrique/en-parle-dans-la-presse\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"003-2017\":{\"Title\":\"Amériques\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/accueil\",\"below\":null,\"submenu\":{\"001-1725\":{\"Title\":\"France-Brésil\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/france-bresil\",\"below\":{\"001-3468\":{\"Title\":\"La + découverte du Brésil : logiques coloniales\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/la-decouverte-du-bresil-logiques-coloniales\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-3469\":{\"Title\":\"Le + voyage au Brésil\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/le-voyage-au-bresil\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-3470\":{\"Title\":\"La + mission artistique française à Rio de Janeiro en 1816\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/la-mission-artistique-francaise-a-Rio-de-Janeiro-en-1816\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-3475\":{\"Title\":\"La + nature sous les Tropiques\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/la-nature-sous-les-tropiques\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-3471\":{\"Title\":\"Lettres + et littérature : visions du Brésil\",\"href\":\"https://gallica.bnf.fr/html/und/ameriques/lettres-et-litterature-visions-du-Bresil\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-5539\":{\"Title\":\"Photographies + Amérique du Nord et centrale\",\"href\":\"https://gallica.bnf.fr/html/und/images/photos-SG/acces-geographique/amerique-nord-centrale\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-5540\":{\"Title\":\"Photographies + Amérique du Sud\",\"href\":\"https://gallica.bnf.fr/html/und/images/photos-SG/acces-geographique/amerique-sud\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-5541\":{\"Title\":\"Cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/les-ameriques-en-cartes\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"004-2034\":{\"Title\":\"Asie\",\"href\":\"https://gallica.bnf.fr/html/und/asie/accueil\",\"below\":null,\"submenu\":{\"001-1643\":{\"Title\":\"Chine\",\"href\":\"https://gallica.bnf.fr/html/und/asie/france-chine\",\"below\":{\"001-1552\":{\"Title\":\"Première + mission française en Chine (XVIIe siècle)\",\"href\":\"https://gallica.bnf.fr/html/und/asie/premiere-mission-francaise-en-chine-xviie-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-1553\":{\"Title\":\"Naissance + de la sinologie (XVIIe -XVIIIe siècles)\",\"href\":\"https://gallica.bnf.fr/html/und/asie/naissance-de-la-sinologie-xviie-xviiie-siecles\",\"below\":null,\"submenu\":null,\"abcd\":null},\"003-1548\":{\"Title\":\"Les + progrès de la sinologie (XIXe siècle)\",\"href\":\"https://gallica.bnf.fr/html/und/asie/progres-de-la-sinologie-xixe-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"004-1555\":{\"Title\":\"Age + d'or de la sinologie (XXe siècle)\",\"href\":\"https://gallica.bnf.fr/html/und/asie/age-dor-de-la-sinologie-xxe-siecle\",\"below\":null,\"submenu\":null,\"abcd\":null},\"005-1558\":{\"Title\":\"Récits + de voyage\",\"href\":\"https://gallica.bnf.fr/html/und/asie/recits-de-voyage\",\"below\":null,\"submenu\":null,\"abcd\":null},\"006-1561\":{\"Title\":\"Les + sciences et les arts\",\"href\":\"https://gallica.bnf.fr/html/und/asie/sciences-et-arts\",\"below\":null,\"submenu\":null,\"abcd\":null},\"007-1557\":{\"Title\":\"Textes + canoniques et littérature\",\"href\":\"https://gallica.bnf.fr/html/und/asie/les-premiers-classiques-chinois-traduits\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-1443\":{\"Title\":\"France-Japon\",\"href\":\"https://gallica.bnf.fr/html/und/asie/france-japon\",\"below\":{\"001-1702\":{\"Title\":\"Parcours + thématique\",\"href\":\"https://gallica.bnf.fr/html/und/asie/parcours-thematique\",\"below\":{},\"submenu\":null,\"abcd\":null},\"002-1408\":{\"Title\":\"Collections + précieuses\",\"href\":\"https://gallica.bnf.fr/html/und/asie/collections-precieuses\",\"below\":{},\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"abcd\":null},\"005-2019\":{\"Title\":\"Europe\",\"href\":\"https://gallica.bnf.fr/html/und/europe/accueil\",\"below\":null,\"submenu\":{\"001-5532\":{\"Title\":\"Cartes\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/leurope-en-cartes-0\",\"below\":{\"001-5534\":{\"Title\":\"Cartes + générales\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/leurope-en-cartes/cartes-g%C3%A9n%C3%A9rales\",\"below\":null,\"submenu\":null,\"abcd\":null},\"002-5535\":{\"Title\":\"Cartes + par pays\",\"href\":\"https://gallica.bnf.fr/html/und/cartes/leurope-en-cartes/acc%C3%A8s-par-pays\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"submenu\":null,\"abcd\":null},\"002-5533\":{\"Title\":\"Photographies + de la Société de géographie\",\"href\":\"https://gallica.bnf.fr/html/und/images/photos-SG/acces-geographique/europe\",\"below\":null,\"submenu\":null,\"abcd\":null}},\"abcd\":null}},\"submenu\":null,\"abcd\":null}},\"raccourciAccessibleLabel\":\"accessibilite.acces.direct.selections\"},\"lienBlog\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"blog\",\"description\":\"Accéder + à la page du blog (nouvelle fenêtre)\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/blog\",\"etat\":\"\",\"bindUrl\":\"\"},\"socialNetwork\":[{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\",\"iconStyle\":\"facebook\"},\"contenu\":\"Facebook\",\"description\":\"Page + Facebook de Gallica\",\"selected\":false,\"url\":\"https://www.facebook.com/GallicaBnF\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\",\"iconStyle\":\"twitter\"},\"contenu\":\"Twitter\",\"description\":\"Page + Twitter de Gallica\",\"selected\":false,\"url\":\"https://twitter.com/@GallicaBnF\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\",\"iconStyle\":\"pinterest\"},\"contenu\":\"Pinterest\",\"description\":\"Page + Pinterest de Gallica\",\"selected\":false,\"url\":\"https://www.pinterest.fr/gallicabnf\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\",\"iconStyle\":\"instagram\"},\"contenu\":\"Instagram\",\"description\":\"Page + Instagram de Gallica\",\"selected\":false,\"url\":\"https://www.instagram.com/gallicabnf\",\"etat\":\"\",\"bindUrl\":\"\"}],\"etat\":\"\"},\"mySelectDoc\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Mes + sélections\",\"selected\":false,\"etat\":\"\"},\"name_espace\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\",\"title_Compte\":\"Mon + compte\"},\"contenu\":\"\",\"selected\":false,\"etat\":\"\"},\"linkNewsletter\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"S'inscrire + à la lettre d'information\",\"description\":\"S'inscrire à la lettre d'information\",\"selected\":false,\"url\":\"https://lettre.bnf.fr/\",\"etat\":\"\",\"bindUrl\":\"\"},\"linkBlog\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"blog\",\"description\":\"Accéder + à la page du blog (nouvelle fenêtre)\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/blog\",\"etat\":\"\",\"bindUrl\":\"\"},\"urlProtocol\":{\"display\":true,\"active\":false,\"parameters\":{\"role\":\"\"},\"contenu\":\"https://\",\"etat\":\"optionDisabled\"},\"linkConnect\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"/ConnexionAuth?AppOrigine=Gallica&urlReferer=https%3A%2F%2Fgallica.bnf.fr%2Fiiif%2F12345%2Fmanifest.json\",\"selected\":false,\"etat\":\"\"},\"linkDisconnect\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\",\"title_disconnect\":\"Se + déconnecter\"},\"contenu\":\"/Deconnexion?AppOrigine=Gallica&urlReferer=https%3A%2F%2Fgallica.bnf.fr%2Fiiif%2F12345%2Fmanifest.json\",\"selected\":false,\"etat\":\"\"},\"linkInfo\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"lien + info Contenu\",\"description\":\"A propos\",\"selected\":false,\"url\":\"/edit/und/a-propos\",\"etat\":\"\",\"bindUrl\":\"\"},\"addDoc\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Ajouter\",\"selected\":false,\"etat\":\"\"},\"identifiant\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"\",\"selected\":false,\"etat\":\"\"},\"nvlleFenetre\":{\"display\":false,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"(Nouvelle + fenêtre)\",\"selected\":false,\"etat\":\"optionHidden\"},\"selectedLangAccessibleLabel\":{\"display\":true,\"active\":false,\"parameters\":{\"role\":\"\"},\"contenu\":\"mode + actif\",\"etat\":\"optionDisabled\"},\"HeaderSimpleSearchFragment\":{\"display\":true,\"active\":true,\"parameters\":{},\"contenu\":[],\"placeholder\":\"Rechercher...\",\"titleInputSearch\":\"Champ + de saisie de la recherche simple\",\"erase\":\"Effacer le champ de recherche\",\"titleLanguage\":\"Langue + du site\",\"titleMenu\":\"Menu\",\"searchValue\":\"\",\"query\":\"https://gallica.bnf.fr/services/engine/search/sru?operation=searchRetrieve&version=1.2&\",\"searchButtonFragment\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\",\"tabletteMobileButtonSubmitLibelle\":\"ok\"},\"contenu\":\"\",\"description\":\"Rechercher\",\"selected\":false,\"url\":\"\",\"etat\":\"\",\"bindUrl\":\"\"},\"dropDownTitle\":\"Choisir + la catégorie de recherche\",\"docTypes\":[{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"\",\"description\":\"TOUT + GALLICA\",\"selected\":true,\"selectionState\":\"selected\",\"url\":\"\",\"etat\":\" + optionSelected\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"monographie\",\"description\":\"LIVRES\",\"selected\":false,\"selectionState\":\"\",\"url\":\"\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"manuscrit\",\"description\":\"MANUSCRITS\",\"selected\":false,\"selectionState\":\"\",\"url\":\"\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"carte\",\"description\":\"CARTES\",\"selected\":false,\"selectionState\":\"\",\"url\":\"\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"image\",\"description\":\"IMAGES\",\"selected\":false,\"selectionState\":\"\",\"url\":\"\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"fascicule\",\"description\":\"PRESSE\",\"selected\":false,\"selectionState\":\"\",\"url\":\"\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"sonore\",\"description\":\"SONS\",\"selected\":false,\"selectionState\":\"\",\"url\":\"\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"partition\",\"description\":\"PARTITIONS\",\"selected\":false,\"selectionState\":\"\",\"url\":\"\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"objet\",\"description\":\"OBJETS\",\"selected\":false,\"selectionState\":\"\",\"url\":\"\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"video\",\"description\":\"VIDEOS\",\"selected\":false,\"selectionState\":\"\",\"url\":\"\",\"etat\":\"\",\"bindUrl\":\"\"}],\"titreTooltipLancerRecherche\":\"Lancer + la recherche\",\"etat\":\"\"},\"LibelleAfficheLiensQuestionnaire\":{\"display\":true,\"active\":true,\"parameters\":{},\"contenu\":{\"isAfficheLiensQuestionnaire\":\"hide\",\"loadCSS\":\"notloadCSS\"},\"etat\":\"\"},\"linkHelp\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"lien + aide contenu\",\"description\":\"Aide et foire aux questions\",\"selected\":false,\"url\":\"/edit/und/aide-et-foire-aux-questions\",\"etat\":\"\",\"bindUrl\":\"\"},\"MarqueBlancheAutoSuggest\":{\"display\":true,\"active\":false,\"parameters\":{\"role\":\"\"},\"contenu\":\"typeahead__container\",\"etat\":\"optionDisabled\"},\"CollectionsFragment\":{\"display\":true,\"active\":true,\"parameters\":{},\"contenu\":[{\"display\":true,\"active\":true,\"parameters\":{\"title\":\"Types + de documents\"},\"contenu\":[{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Livres\",\"description\":\"Livres\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/livres/livres\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Manuscrits\",\"description\":\"Manuscrits\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/manuscrits/manuscrits\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Cartes\",\"description\":\"Cartes\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/cartes/cartes\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Images\",\"description\":\"Images\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/images/images\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Presse + et revues\",\"description\":\"Presse et revues\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/presse-et-revues/presse-et-revues\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Enregistrements + sonores\",\"description\":\"Enregistrements sonores\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/enregistrements-sonores/fonds-sonores\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Partitions\",\"description\":\"Partitions\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/partitions/partitions\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Objets\",\"description\":\"Objets\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/objets/accueil\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Vidéos\",\"description\":\"Vidéos\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/videos/accueil\",\"etat\":\"\",\"bindUrl\":\"\"}],\"etat\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"title\":\"Thématiques\"},\"contenu\":[{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Arts, + loisirs, sports\",\"description\":\"Arts, loisirs, sports\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/arts-loisirs-sports/accueil\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Droit, + économie\",\"description\":\"Droit, économie\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/droit-economie/accueil\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Histoire\",\"description\":\"Histoire\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/histoire/accueil\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":false,\"active\":false,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Langues\",\"description\":\"Langues\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/langues/accueil\",\"etat\":\"optionHidden\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Littératures\",\"description\":\"Littératures\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/litteratures/accueil\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":false,\"active\":false,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Philosophie\",\"description\":\"Philosophie\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/philosophie/accueil\",\"etat\":\"optionHidden\",\"bindUrl\":\"\"},{\"display\":false,\"active\":false,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Religions\",\"description\":\"Religions\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/religions/accueil\",\"etat\":\"optionHidden\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Sciences\",\"description\":\"Sciences\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/sciences/accueil\",\"etat\":\"\",\"bindUrl\":\"\"}],\"etat\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"title\":\"Aires + géographiques\"},\"contenu\":[{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"France\",\"description\":\"France\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/france/accueil\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Afrique\",\"description\":\"Afrique\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/afrique/accueil\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Amériques\",\"description\":\"Amériques\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/ameriques/accueil\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Asie\",\"description\":\"Asie\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/asie/accueil\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Europe\",\"description\":\"Europe\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/europe/accueil\",\"etat\":\"\",\"bindUrl\":\"\"},{\"display\":false,\"active\":false,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Océanie\",\"description\":\"Océanie\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/oceanie/accueil\",\"etat\":\"optionHidden\",\"bindUrl\":\"\"},{\"display\":false,\"active\":false,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Autres + régions du monde\",\"description\":\"Autres régions du monde\",\"selected\":false,\"url\":\"https://gallica.bnf.fr/html/und/autres-regions-du-monde/accueil\",\"etat\":\"optionHidden\",\"bindUrl\":\"\"}],\"etat\":\"\"}],\"etat\":\"\"},\"paramConn\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"not_connected\",\"selected\":false,\"etat\":\"\"},\"Personnalisations\":{\"display\":true,\"active\":true,\"parameters\":{},\"contenu\":{\"isCollectionsDisplay\":\"hide\",\"isAdvancedSearchDisplay\":\"\",\"boutontooltiptext\":\"Accéder + à la page Recherche avancée\",\"isLanguesInterface\":\"\",\"isCollectionsDisplayNew\":\"\",\"libelleCollection\":\"Sélections\",\"libelleRechercheAvancee\":\"Recherche + avancée\",\"isLangueDisplay\":\"\",\"isEspacePersonnelDisplay\":\"\",\"isSearchTypeDocDisplay\":\"\",\"titleAccessibilite\":\"Accéder + au menu des pages éditoriales\",\"isBurgerDisplay\":\"\"},\"etat\":\"\"}},\"logo1\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"https://gallica.bnf.fr/mbImage/perso/logo_header_1.png\",\"description\":\"Accéder + au site de la Bibliothèque nationale de France\",\"selected\":false,\"url\":\"http://www.bnf.fr\",\"etat\":\"\"},\"logo2\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"https://gallica.bnf.fr/mbImage/perso/logo_header_2.png\",\"description\":\"Accéder + à la page d'accueil de Gallica\",\"selected\":false,\"url\":\"https://gallica.bnf.fr\",\"etat\":\"\"},\"listLangue\":[{\"code\":\"FR\",\"description\":\"Français\",\"selected\":true,\"currentLanguage\":null},{\"code\":\"EN\",\"description\":\"English\",\"selected\":false,\"currentLanguage\":null},{\"code\":\"ES\",\"description\":\"Español\",\"selected\":false,\"currentLanguage\":null},{\"code\":\"IT\",\"description\":\"Italiano\",\"selected\":false,\"currentLanguage\":null}],\"currentLanguage\":{\"code\":\"FR\",\"description\":\"Français\",\"selected\":true,\"currentLanguage\":null},\"etat\":\"\"},\"etat\":\"\"},\"XitiFragment\":{\"display\":true,\"active\":true,\"parameters\":{\"modeDev\":false},\"contenu\":{},\"urlServiceScriptXiti\":\"https://logs\",\"pageName\":\"Error::500\",\"codeNiveau2\":\"15\",\"idSite\":\"18798\",\"implicationDegree\":\"\",\"paramXiti\":\"\",\"motcle\":\"\",\"numPageResultat\":0,\"logoNoScriptUrl\":\"https://logs.xiti.com/hit.xiti?s=18798&s2=15&p=Error::500&mc=\",\"protocol\":\"https://\",\"etat\":\"\"},\"persoGraphiqueFragment\":{\"display\":true,\"active\":false,\"parameters\":{},\"contenu\":{\"vignette_mosaique_description_bg_color\":\"#F1F1F1\",\"pictos_desactive_color\":\"#D3D3D3\",\"mot_cle_palier8_width\":\"40%\",\"bandeau_selection_liste_selected_bgcolor\":\"#ffffff\",\"navigation_bar_bg_color\":\"#d2cfc8\",\"background_color_cookies\":\"#ffffff\",\"haut_page_picto_color\":\"#23262A\",\"logos_palier5_width\":\"260px\",\"barre_menu_palier4_width\":\"60%\",\"buttons_pagination_picto_focus_color\":\"#404953\",\"haut_page_contenu_font_color\":\"#000000\",\"buttons_font_color\":\"#FFF\",\"select_recherche_avancee_bg_color\":\"#ffffff\",\"buttons_pagination_bg_focus_color\":\"#EEEEEE\",\"input_font_color\":\"#58523f\",\"toolbar_bg_focus_color\":\"#EEE\",\"barre_menu_palier7_width\":\"78%\",\"toolbar_bg_color\":\"#ffffff\",\"font_focus_color\":\"#262626\",\"vignette_bg_color\":\"#D2CFC8\",\"mecenat_font\":\"#766E54\",\"bloc_pagination_bg_color\":\"#343b43\",\"accueil_fleche_actualite_bg_color\":\"#0098AA\",\"buttons_cookies_bg_color\":\"#ff2500\",\"font_color_cookies\":\"#333\",\"conseil_bloc_doc_type_blog_font_color\":\"#F2065A\",\"infobulle_bg_color\":\"#000\",\"accordion_texte_ferme_color\":\"#ffffff\",\"conseil_entete_bg_color\":\"#e33a23\",\"barre_menu_palier6_width\":\"63%\",\"haut_page_bg_color\":\"#ffffff\",\"toolbar_picto_color\":\"#343B43\",\"mois_desactive_bg_color\":\"#ECE6DD\",\"palier2\":\"650px\",\"palier1\":\"350px\",\"palier6\":\"1023px\",\"navigation_bloc_font_color\":\"#ffffff\",\"palier5\":\"900px\",\"palier4\":\"750px\",\"palier3\":\"700px\",\"navigation_bar_font_focus_color\":\"#333\",\"palier8\":\"1600px\",\"palier7\":\"1250px\",\"accueil_fleche_mobilite_bg_color\":\"#BAB82F\",\"accueil_fleche_partenaires_bg_color\":\"#B6985E\",\"toolbar_separator_color\":\"#343b43\",\"logos_palier6_width\":\"25%\",\"accueil_fleche_nvx_docs_color\":\"#CC1161\",\"back_to_top_bg_color\":\"#d2ccbe\",\"background_color\":\"#EBEBEB\",\"barre_menu_palier5_width\":\"56%\",\"navigation_bar_picto_color\":\"#343B43\",\"back_to_top_picto_color\":\"#343b43\",\"conseil_entete_fontactive_color\":\"#FFFFFF\",\"conseil_bloc_doc_type_document_font_color\":\"#e33a23\",\"accueil_fleche_gallicanautes_bg_color\":\"#FF6F40\",\"scrollbar_curseur_color\":\"#000000\",\"annee_desactive_texte_color\":\"#695D5C\",\"collections_layer_palier4_right\":\"-110px\",\"scrollbar_rail_color\":\"#D2CFC8\",\"buttons_cookies_font_color\":\"#ffffff\",\"select_picto_color\":\"#8f9092\",\"mot_cle_palier7_width\":\"24%\",\"buttons_bg_color\":\"#404953\",\"bandeau_selection_onglet_actif_fontcolor\":\"#ffffff\",\"ombre_annee_cadre_resultat\":\"#d6d1c3\",\"navigation_bar_font_color\":\"#333\",\"pictos_color\":\"#343B43\",\"haut_page_font_color\":\"#23262A\",\"font_color\":\"#333\",\"dropdown_hover_font_color\":\"#333\",\"annee_desactive_bg_color\":\"#DFD9CD\",\"accueil_fleche_selection_bg_color\":\"#7A58BF\",\"navigation_bloc_bg_color\":\"#ff6f40\",\"barre_menu_palier3_width\":\"50%\",\"accordion_bg_ouvert_color\":\"#d2ccbe\",\"bandeau_selection_liste_selected_fontcolor\":\"#e33a23\",\"accordion_texte_ouvert_color\":\"#23262a\",\"buttons_pagination_bg_color\":\"#fff\",\"collections_layer_sans_palier_right\":\"-50px\",\"bouton_reseau_social_picto_fonds_color\":\"#EBEBEB\",\"conseil_bloc_font_color\":\"#797676\",\"onglet_actif_bg_color\":\"#fff\",\"accueil_fleche_contribution_bg_color\":\"#0098CD\",\"vignette_mosaique_description_font_color\":\"#343B43\",\"haut_page_contenu_picto_color\":\"#000000\",\"vignette_active_mosaique_degrade_2\":\"#808080\",\"conseil_bloc_bg_color\":\"#FFFFFF\",\"search_form_palier8_margin_right\":\"10%\",\"vignette_active_mosaique_degrade_1\":\"#404953\",\"conseil_bloc_doc_type_selection_font_color\":\"#9D6B0C\",\"dropdown_bg_color\":\"#ffffff\",\"bandeau_selection_onglet_actif_bgcolor\":\"#e33a23\",\"infobulle_font_color\":\"#FFF\",\"dropdown_hover_bg_color\":\"#f5f5f5\",\"haut_page_bg_contenu_color\":\"#ffffff\",\"bouton_reseau_social_picto_color\":\"#23262a\",\"picto_oeil_color\":\"#000000\",\"resultat_bg_color\":\"#ffffff\",\"buttons_pagination_picto_color\":\"#404953\",\"mecenat_bg\":\"#f2f1ed\",\"ombre_cadre_resultat\":\"#dddddd\",\"recherche_palier2_padding_bottom\":\"10px\",\"conseil_entete_fontdesactive_color\":\"#01110E\",\"accordion_bg_ferme_color\":\"#343b43\",\"bloc_pagination_text_color\":\"#909090\",\"conteneur_bouton_reseau_social_bg_color\":\"#C3C3C3\",\"annee_bg_color\":\"#fafafa\",\"barre_menu_palier8_width\":\"80%\"},\"etat\":\"optionDisabled\"},\"InfoFragment\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Veuillez + nous excuser pour la gêne occasionnée.\",\"selected\":false,\"etat\":\"\"},\"ErrorFragment\":{\"display\":true,\"active\":true,\"parameters\":{\"role\":\"link\"},\"contenu\":\"Erreur + 500 : Erreur Interne du Serveur\",\"selected\":false,\"etat\":\"\"},\"PageModel\":{\"display\":true,\"active\":true,\"parameters\":{\"favicon\":\"https://gallica.bnf.fr/mbImage/perso/favicon.ico\"},\"etat\":\"\"}}" + recorded_at: 2019-11-18 18:17:32 GMT + recorded_with: vcr/0.3.0.9132, webmockr/0.4.1.9100 +- request: + method: get + uri: https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/f1/manifest.json + body: + encoding: ISO-8859-1 + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + user-agent: http://github.com/Rekyt/bnfimage R package bnfimage/v.0.0.1 + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Mon, 18 Nov 2019 18:17:32 GMT + server: Apache + x-oneagent-js-injection: 'true' + access-control-allow-origin: '*' + content-type: application/json;charset=UTF-8 + vary: Accept-Encoding,User-Agent + content-encoding: gzip + content-length: '1132' + body: + encoding: ISO-8859-1 + string: |- + { + "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/manifest.json", + "label" : "BnF, département Estampes et photographie, EI-13 (2726)", + "attribution" : "Bibliothèque nationale de France", + "license" : "https://gallica.bnf.fr/html/und/conditions-dutilisation-des-contenus-de-gallica", + "logo" : "https://gallica.bnf.fr/mbImage/logos/logo-bnf.png", + "related" : "https://gallica.bnf.fr/ark:/12148/btv1b9055204k", + "seeAlso" : [ "http://oai.bnf.fr/oai2/OAIHandler?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:bnf.fr:gallica/ark:/12148/btv1b9055204k" ], + "description" : "Monuments de Paris : La Tour Eiffel : [photographie de presse] / Agence Meurisse", + "metadata" : [ { + "label" : "Repository", + "value" : "Bibliothèque nationale de France" + }, { + "label" : "Digitised by", + "value" : "Bibliothèque nationale de France" + }, { + "label" : "Source Images", + "value" : "https://gallica.bnf.fr/ark:/12148/btv1b9055204k" + }, { + "label" : "Metadata Source", + "value" : "http://oai.bnf.fr/oai2/OAIHandler?verb=GetRecord&metadataPrefix=oai_dc&identifier=oai:bnf.fr:gallica/ark:/12148/btv1b9055204k" + }, { + "label" : "Shelfmark", + "value" : "Bibliothèque nationale de France, département Estampes et photographie, EI-13 (2726)" + }, { + "label" : "Title", + "value" : "Monuments de Paris : La Tour Eiffel : [photographie de presse] / Agence Meurisse" + }, { + "label" : "Date", + "value" : "1922" + }, { + "label" : "Language", + "value" : [ { + "@value" : "français" + } ] + }, { + "label" : "Format", + "value" : [ { + "@value" : "1 photogr. nég. sur verre ; 13 x 18 cm (sup.) ou moins" + }, { + "@value" : "image/jpeg" + }, { + "@value" : "Nombre total de vues : 1" + } ] + }, { + "label" : "Creator", + "value" : "Agence de presse Meurisse. Agence photographique" + }, { + "label" : "Relation", + "value" : "Notice de recueil : http://catalogue.bnf.fr/ark:/12148/cb404994307" + }, { + "label" : "Relation", + "value" : "Appartient à : [Recueil. Actualités 1922-06-25**1923-05-14. Agence Meurisse MEU 98603-6091 A]" + }, { + "label" : "Relation", + "value" : "Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb415818268" + }, { + "label" : "Type", + "value" : "image" + } ], + "sequences" : [ { + "canvases" : [ { + "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/canvas/f1", + "label" : "NP", + "height" : 7000, + "width" : 5127, + "images" : [ { + "motivation" : "sc:painting", + "on" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/canvas/f1", + "resource" : { + "format" : "image/jpeg", + "service" : { + "profile" : "http://library.stanford.edu/iiif/image-api/1.1/compliance.html#level2", + "@context" : "http://iiif.io/api/image/1/context.json", + "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/f1" + }, + "height" : 7000, + "width" : 5127, + "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/f1/full/full/0/native.jpg", + "@type" : "dctypes:Image" + }, + "@type" : "oa:Annotation" + } ], + "thumbnail" : { + "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b9055204k/f1.thumbnail" + }, + "@type" : "sc:Canvas" + } ], + "label" : "Current Page Order", + "@type" : "sc:Sequence", + "@id" : "https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/sequence/default" + } ], + "thumbnail" : { + "@id" : "https://gallica.bnf.fr/ark:/12148/btv1b9055204k.thumbnail" + }, + "@type" : "sc:Manifest", + "@context" : "http://iiif.io/api/presentation/2/context.json" + } + recorded_at: 2019-11-18 18:17:32 GMT + recorded_with: vcr/0.3.0.9132, webmockr/0.4.1.9100 diff --git a/tests/testthat/test-bi_metadata.R b/tests/testthat/test-bi_metadata.R new file mode 100644 index 0000000..759f9de --- /dev/null +++ b/tests/testthat/test-bi_metadata.R @@ -0,0 +1,28 @@ + +test_that("bi_metadata() fails when forgetting id", { + expect_error(bi_metadata(NULL), + "Define an identifier for your image", + fixed = TRUE) +}) + +vcr::use_cassette("bi_metadata", { + test_that("bi_metadata() fails gracefully", { + expect_error(bi_metadata("12345"), + "The query gave no answer. Please try another query", + fixed = TRUE) + }) + + + test_that("bi_metadata() works when using good id", { + expect_silent(eif <- bi_metadata("ark:/12148/btv1b9055204k/f1")) + + expect_is(eif, "list") + expect_length(eif, 13) + expect_equal(eif[["@id"]], + paste0("https://gallica.bnf.fr/iiif/ark:/12148/btv1b9055204k/", + "manifest.json")) + expect_equal(eif[["logo"]], + "https://gallica.bnf.fr/mbImage/logos/logo-bnf.png") + }) +}) +