diff --git a/es/folder/local-snippet.mdx b/es/folder/local-snippet.mdx
new file mode 100644
index 000000000..7341d1804
--- /dev/null
+++ b/es/folder/local-snippet.mdx
@@ -0,0 +1,5 @@
+export const localMessage = "Este fragmento de código está en la misma carpeta que la página de prueba!";
+
+
+ Este es **local-snippet.mdx**, un fragmento (archivo hermano) en el mismo directorio.
+
diff --git a/es/folder/nested/deep-relative-test.mdx b/es/folder/nested/deep-relative-test.mdx
new file mode 100644
index 000000000..30f9dd4e7
--- /dev/null
+++ b/es/folder/nested/deep-relative-test.mdx
@@ -0,0 +1,95 @@
+---
+title: "Prueba de fragmentos relativos anidados en profundidad"
+description: "Página de prueba oculta para validar importaciones de fragmentos relativos con anidamiento profundo"
+---
+
+
+ # Prueba de fragmentos con rutas relativas de varios niveles
+
+
+Esta página se encuentra en `/folder/nested/deep-relative-test.mdx` para probar importaciones relativas de varios niveles.
+
+---
+
+
+ ## Prueba 1: Dos niveles arriba (`../../snippets/`)
+
+
+Importando desde `/snippets/test-snippet-a.mdx` mediante `../../snippets/`:
+
+import TestSnippetA from "../../snippets/test-snippet-a.mdx";
+
+
+
+***
+
+
+
+ ## Prueba 2: Dos niveles arriba con exportación con nombre
+
+
+Importando desde `/snippets/test-snippet-b.mdx`:
+
+import TestSnippetB, { testVariable } from "../../snippets/test-snippet-b.mdx";
+
+
+
+**Valor de la variable exportada:** {testVariable}
+
+***
+
+
+
+ ## Test 3: Un nivel superior (`../`)
+
+
+Importando desde `/folder/local-snippet.mdx` (directorio padre):
+
+import LocalSnippet, { localMessage } from "../local-snippet.mdx";
+
+
+
+**Valor de la variable exportada:** {localMessage}
+
+***
+
+
+
+ ## Prueba 4: Archivo del mismo directorio (`./`)
+
+
+Importando desde `/folder/nested/deep-snippet.mdx` (mismo directorio):
+
+import DeepSnippet, { deepMessage } from "./deep-snippet.mdx";
+
+
+
+**Valor de la variable exportada:** {deepMessage}
+
+***
+
+
+
+ ## Prueba 5: Mixta: ruta absoluta (para comparación)
+
+
+Importación mediante ruta absoluta:
+
+import IconsRequired from "/snippets/es/icons-required.mdx";
+
+
+
+***
+
+
+
+ ## Resumen de la resolución de rutas
+
+
+Desde esta página ubicada en `/folder/nested/deep-relative-test.mdx`:
+
+| Ruta relativa | Se resuelve como |
+|---------------|-------------|
+| `../../snippets/test-snippet-a.mdx` | `/snippets/test-snippet-a.mdx` |
+| `../local-snippet.mdx` | `/folder/local-snippet.mdx` |
+| `./deep-snippet.mdx` | `/folder/nested/deep-snippet.mdx` |
\ No newline at end of file
diff --git a/es/folder/nested/deep-snippet.mdx b/es/folder/nested/deep-snippet.mdx
new file mode 100644
index 000000000..31c5a64a3
--- /dev/null
+++ b/es/folder/nested/deep-snippet.mdx
@@ -0,0 +1,5 @@
+export const deepMessage = "¡Saludos desde las profundidades!";
+
+
+ Este es el archivo **deep-snippet.mdx**, que se encuentra en `/folder/nested/`.
+
diff --git a/es/folder/relative-snippets-test.mdx b/es/folder/relative-snippets-test.mdx
new file mode 100644
index 000000000..30115d628
--- /dev/null
+++ b/es/folder/relative-snippets-test.mdx
@@ -0,0 +1,95 @@
+---
+title: "Prueba de fragmentos relativos"
+description: "Página de prueba oculta para validar las importaciones relativas de fragmentos"
+---
+
+
+ # Página de prueba de fragmentos relativos
+
+
+Esta es una página de prueba oculta para validar la funcionalidad de importación de fragmentos mediante rutas relativas.
+
+---
+
+
+ ## Prueba 1: Importación desde el directorio superior (`../snippets/`)
+
+
+Importando desde `/snippets/test-snippet-a.mdx` mediante `../snippets/test-snippet-a.mdx`:
+
+import TestSnippetA from "../snippets/test-snippet-a.mdx";
+
+
+
+***
+
+
+
+ ## Prueba 2: Importación desde el directorio padre con exportación nombrada
+
+
+Importando `testVariable` desde `/snippets/test-snippet-b.mdx`:
+
+import TestSnippetB from "../snippets/test-snippet-b.mdx";
+
+
+
+**Valor de la variable exportada:** {testVariable}
+
+***
+
+
+
+ ## Prueba 3: Importación desde el mismo directorio (`./`)
+
+
+Importando desde `local-snippet.mdx` en la misma carpeta:
+
+import LocalSnippet, { localMessage } from "./local-snippet.mdx";
+
+
+
+**Valor de la variable exportada:** {localMessage}
+
+***
+
+
+
+ ## Test 4: Importación desde subdirectorio (`./nested/`)
+
+
+Importación desde `nested/deep-snippet.mdx`:
+
+import DeepSnippet, { deepMessage } from "./nested/deep-snippet.mdx";
+
+
+
+**Valor de la variable exportada:** {deepMessage}
+
+***
+
+
+
+ ## Prueba 5: importación absoluta (para comparación)
+
+
+Importando mediante la ruta absoluta `/snippets/icons-optional.mdx`:
+
+import IconsOptional from "/snippets/es/icons-optional.mdx";
+
+
+
+***
+
+
+
+ ## Resumen
+
+
+| Prueba | Ruta de importación | Tipo | Estado |
+|------|-------------|------|--------|
+| 1 | `../snippets/test-snippet-a.mdx` | Directorio superior | Ver más arriba |
+| 2 | `../snippets/test-snippet-b.mdx` | Directorio superior + export | Ver más arriba |
+| 3 | `./local-snippet.mdx` | Mismo directorio | Ver más arriba |
+| 4 | `./nested/deep-snippet.mdx` | Subdirectorio | Ver más arriba |
+| 5 | `/snippets/icons-optional.mdx` | Ruta absoluta | Ver más arriba |
\ No newline at end of file
diff --git a/fr/folder/local-snippet.mdx b/fr/folder/local-snippet.mdx
new file mode 100644
index 000000000..ac7929231
--- /dev/null
+++ b/fr/folder/local-snippet.mdx
@@ -0,0 +1,5 @@
+export const localMessage = "Cet extrait se trouve dans le même dossier que la page de test !";
+
+
+ Ceci est **local-snippet.mdx** - un extrait au même niveau dans le même répertoire.
+
diff --git a/fr/folder/nested/deep-relative-test.mdx b/fr/folder/nested/deep-relative-test.mdx
new file mode 100644
index 000000000..5f3095807
--- /dev/null
+++ b/fr/folder/nested/deep-relative-test.mdx
@@ -0,0 +1,95 @@
+---
+title: "Test des snippets relatifs imbriqués en profondeur"
+description: "Page de test cachée pour valider les imports de snippets relatifs imbriqués en profondeur"
+---
+
+
+ # Test de snippets avec chemins relatifs profonds
+
+
+Cette page est située à `/folder/nested/deep-relative-test.mdx` afin de tester les imports relatifs multi-niveaux.
+
+---
+
+
+ ## Test 1 : Deux niveaux au-dessus (`../../snippets/`)
+
+
+Import de `/snippets/test-snippet-a.mdx` en utilisant `../../snippets/` :
+
+import TestSnippetA from "../../snippets/test-snippet-a.mdx";
+
+
+
+***
+
+
+
+ ## Test 2 : Deux niveaux au-dessus avec un export nommé
+
+
+Importation depuis `/snippets/test-snippet-b.mdx` :
+
+import TestSnippetB, { testVariable } from "../../snippets/test-snippet-b.mdx";
+
+
+
+**Valeur de la variable exportée :** {testVariable}
+
+***
+
+
+
+ ## Test 3 : Un niveau au-dessus (`../`)
+
+
+Import depuis `/folder/local-snippet.mdx` (répertoire parent) :
+
+import LocalSnippet, { localMessage } from "../local-snippet.mdx";
+
+
+
+**Valeur de la variable exportée :** {localMessage}
+
+***
+
+
+
+ ## Test 4 : Fichier au même niveau (`./`)
+
+
+Importation depuis `/folder/nested/deep-snippet.mdx` (même répertoire) :
+
+import DeepSnippet, { deepMessage } from "./deep-snippet.mdx";
+
+
+
+**Valeur de la variable exportée :** {deepMessage}
+
+***
+
+
+
+ ## Test 5 : Mixte - chemin absolu (à titre de comparaison)
+
+
+Importation à l’aide d’un chemin absolu :
+
+import IconsRequired from "/snippets/fr/icons-required.mdx";
+
+
+
+***
+
+
+
+ ## Résumé de la résolution des chemins
+
+
+Depuis cette page située à `/folder/nested/deep-relative-test.mdx` :
+
+| Chemin relatif | Chemin de destination |
+|---------------|-----------------------|
+| `../../snippets/test-snippet-a.mdx` | `/snippets/test-snippet-a.mdx` |
+| `../local-snippet.mdx` | `/folder/local-snippet.mdx` |
+| `./deep-snippet.mdx` | `/folder/nested/deep-snippet.mdx` |
\ No newline at end of file
diff --git a/fr/folder/nested/deep-snippet.mdx b/fr/folder/nested/deep-snippet.mdx
new file mode 100644
index 000000000..8d28f21c4
--- /dev/null
+++ b/fr/folder/nested/deep-snippet.mdx
@@ -0,0 +1,5 @@
+export const deepMessage = "Salutations des profondeurs !";
+
+
+ Il s’agit du fichier **deep-snippet.mdx** qui se trouve dans `/folder/nested/`.
+
diff --git a/fr/folder/relative-snippets-test.mdx b/fr/folder/relative-snippets-test.mdx
new file mode 100644
index 000000000..a07b89589
--- /dev/null
+++ b/fr/folder/relative-snippets-test.mdx
@@ -0,0 +1,95 @@
+---
+title: "Test des extraits de code relatifs"
+description: "Page de test cachée pour valider les imports d'extraits de code relatifs"
+---
+
+
+ # Page de test des extraits relatifs
+
+
+Ceci est une page de test cachée destinée à valider la fonctionnalité d’importation d’extraits de code relatifs.
+
+---
+
+
+ ## Test 1 : Import du répertoire parent (`../snippets/`)
+
+
+Import de `/snippets/test-snippet-a.mdx` en utilisant `../snippets/test-snippet-a.mdx` :
+
+import TestSnippetA from "../snippets/test-snippet-a.mdx";
+
+
+
+***
+
+
+
+ ## Test 2 : import du répertoire parent avec export nommé
+
+
+Import de `testVariable` depuis `/snippets/test-snippet-b.mdx` :
+
+import TestSnippetB from "../snippets/test-snippet-b.mdx";
+
+
+
+**Valeur de la variable exportée :** {testVariable}
+
+***
+
+
+
+ ## Test 3 : Import dans le même répertoire (`./`)
+
+
+Import du fichier `local-snippet.mdx` dans le même dossier :
+
+import LocalSnippet, { localMessage } from "./local-snippet.mdx";
+
+
+
+**Valeur de la variable exportée :** {localMessage}
+
+***
+
+
+
+ ## Test 4 : Import depuis un sous-répertoire (`./nested/`)
+
+
+Import depuis `nested/deep-snippet.mdx` :
+
+import DeepSnippet, { deepMessage } from "./nested/deep-snippet.mdx";
+
+
+
+**Valeur de la variable exportée :** {deepMessage}
+
+***
+
+
+
+ ## Test 5 : Import absolu (à titre de comparaison)
+
+
+Import en utilisant le chemin absolu `/snippets/icons-optional.mdx` :
+
+import IconsOptional from "/snippets/fr/icons-optional.mdx";
+
+
+
+***
+
+
+
+ ## Résumé
+
+
+| Test | Chemin d’importation | Type | Statut |
+|------|----------------------|------|--------|
+| 1 | `../snippets/test-snippet-a.mdx` | Dossier parent | Voir ci-dessus |
+| 2 | `../snippets/test-snippet-b.mdx` | Dossier parent + export | Voir ci-dessus |
+| 3 | `./local-snippet.mdx` | Même dossier | Voir ci-dessus |
+| 4 | `./nested/deep-snippet.mdx` | Sous-dossier | Voir ci-dessus |
+| 5 | `/snippets/icons-optional.mdx` | Chemin absolu | Voir ci-dessus |
\ No newline at end of file
diff --git a/gt-lock.json b/gt-lock.json
index a4cee6615..0aeba7579 100644
--- a/gt-lock.json
+++ b/gt-lock.json
@@ -2604,15 +2604,15 @@
},
"3b1032380ef798fcedd8c29f00cbb97133dd488db84d904735363c8b6e23afd4": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.354Z",
+ "updatedAt": "2026-01-06T23:12:19.668Z",
"postProcessHash": "21cbca2b31b435d6eb5cd19c5aac3fda053cdea04d95f69d1a566d98756ab285"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.355Z",
+ "updatedAt": "2026-01-06T23:12:19.670Z",
"postProcessHash": "a0066d004b4fa1ec1a4c402b9eb55f4fed631d85a13f78438b31630c0b862f6c"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.356Z",
+ "updatedAt": "2026-01-06T23:12:19.673Z",
"postProcessHash": "7f39a02cab3d06754e8aebcf11d22e9ac4f0355ebf11f1c2fb60102237ea58be"
}
}
@@ -2734,15 +2734,15 @@
},
"cbc72373b33e1c6831bd9caa316c63859a999660273f79233d901f2039abc904": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.378Z",
+ "updatedAt": "2026-01-06T23:12:19.714Z",
"postProcessHash": "68ddbfd5f9d5c93f3aa059a36cde9629d20db59029eb8a0fe3561d664adf60c9"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.378Z",
+ "updatedAt": "2026-01-06T23:12:19.715Z",
"postProcessHash": "af4f79893bda59b171af462cfd8251bd26eb00e876c8c9e81a906ad0ca0f313b"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.379Z",
+ "updatedAt": "2026-01-06T23:12:19.715Z",
"postProcessHash": "62a15f3a129295c8173ebcfb634272e858d80a9aeaaaebcf7e944de93834deff"
}
}
@@ -2750,15 +2750,15 @@
"23468f0552fb3e6e3e07f5ccc3f3267c1f9e3dde0f865e866f185cb2947d3700": {
"cf671b42a22bf53b553d52737aa0ebd2832efeeb3c4329997d454109b44b2d0b": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.383Z",
+ "updatedAt": "2026-01-06T23:12:19.730Z",
"postProcessHash": "0dcb24a821f6210e76e947eb5f6d0ac515f880cddf8d8f863c3f89ee6d07a2ee"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.384Z",
+ "updatedAt": "2026-01-06T23:12:19.731Z",
"postProcessHash": "d8f94ac787cbcf1c6c3f809e4867f5da828393f9df972d61175c5371cbb03806"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.385Z",
+ "updatedAt": "2026-01-06T23:12:19.732Z",
"postProcessHash": "e627ac75f507c186c4e17ce56c74814f83795f7530786508096aaba835fc20fc"
}
}
@@ -2777,15 +2777,15 @@
},
"33b27f6424e49160a6a8f7ca639a6ecabe4ccb6c81e109c16357715ed5705d59": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.330Z",
+ "updatedAt": "2026-01-06T23:12:19.592Z",
"postProcessHash": "074fa429573f00a1a21055dff2b0a74ec8972d03a84e1950b7b9c7fba4d093d9"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.332Z",
+ "updatedAt": "2026-01-06T23:12:19.594Z",
"postProcessHash": "3bd6f9d399a6dac7643be1d4dba76192f6188a388d66f180dd730f64c22ca80f"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.332Z",
+ "updatedAt": "2026-01-06T23:12:19.596Z",
"postProcessHash": "f623c406f79201a2fd99b95d00e73b254f3d4b5fd9d6b84fd90b818557fb1467"
}
}
@@ -2865,15 +2865,15 @@
},
"44f50f06fbe1771c459ffe9ff95226985327cfe93e10042f5b5500851408b82c": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.382Z",
+ "updatedAt": "2026-01-06T23:12:19.728Z",
"postProcessHash": "a70c8dc62b65cc8e211957164ff633722ce0e644be7defa1c1e5cbbd996dfbe7"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.383Z",
+ "updatedAt": "2026-01-06T23:12:19.729Z",
"postProcessHash": "276f83f728ce451f02bcedfbb4b7207d74c445f66f2c228bd72f1fdd3732fd0b"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.383Z",
+ "updatedAt": "2026-01-06T23:12:19.730Z",
"postProcessHash": "b81250faef79b586a7cc0aa558b23819551eb651dc9ddd0d5f45ab89963573e3"
}
}
@@ -2903,15 +2903,15 @@
},
"4bbec825257b2e44662cece56ea8f6d2a270af8295558ba8c49333d01f531512": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.339Z",
+ "updatedAt": "2026-01-06T23:12:19.607Z",
"postProcessHash": "e4ada9eb602ad5fdb51ee876050480b47fccc31953e905efe8f44011a48d5565"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.340Z",
+ "updatedAt": "2026-01-06T23:12:19.607Z",
"postProcessHash": "ebc1a190db69005bf50e4f2c8752f264c20f759797c7656057b619bb924e6937"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.347Z",
+ "updatedAt": "2026-01-06T23:12:19.649Z",
"postProcessHash": "73aad7b3e20eced796388977990b133e5e83bff0ac1873c62d3289b440d823d0"
}
}
@@ -2941,15 +2941,15 @@
},
"64a3699238f7091a57f32a304d4d6ea95e7b276b252acad469433afd381059d3": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.335Z",
+ "updatedAt": "2026-01-06T23:12:19.600Z",
"postProcessHash": "488d2901ae32fae3c5e865187c72139349368ff3de72b1e30801cf5c6bf51734"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.344Z",
+ "updatedAt": "2026-01-06T23:12:19.611Z",
"postProcessHash": "f3064f57a2d2b4c212fdf58658bf9e4ca38fe7e5f74250630abfa517d17be1f3"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.345Z",
+ "updatedAt": "2026-01-06T23:12:19.645Z",
"postProcessHash": "3f67b199792c8ebffc05370ede5870ebb5e3b0418ca6c2ef26cc564d8f25c918"
}
}
@@ -3042,15 +3042,15 @@
},
"e6a344d226f71ec9d74b139ad033dcf67bc7845e173faafb769737d5a53e20e0": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.354Z",
+ "updatedAt": "2026-01-06T23:12:19.666Z",
"postProcessHash": "81fc3568f3c86637333bdcb90c56f48b3f6af658bee62196b16e2a1a98442545"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.354Z",
+ "updatedAt": "2026-01-06T23:12:19.667Z",
"postProcessHash": "c6fb9315d254d49befeadbab24e28e02dc6c42ddc9a7f14abd005bff4d261b02"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.401Z",
+ "updatedAt": "2026-01-06T23:12:19.768Z",
"postProcessHash": "bc1ab086b0f83492f839de81e82dee958d7e38258f4973dafe1749135da3cb0e"
}
}
@@ -3091,15 +3091,15 @@
},
"9242b786b93718623d525ba9255744e28d36cba2b1a87db50bc7d4c700693c27": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.353Z",
+ "updatedAt": "2026-01-06T23:12:19.661Z",
"postProcessHash": "0dfce139955738c77a275458dd53278808d6fd24f3e701551150cdbbfbce5b01"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.353Z",
+ "updatedAt": "2026-01-06T23:12:19.663Z",
"postProcessHash": "28eceddc3cf9e7a65cce6084f46c71231a4d5add174ae3e6182a3c6b5a42d554"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.400Z",
+ "updatedAt": "2026-01-06T23:12:19.768Z",
"postProcessHash": "8546874971ef988b94a9f39dda6382b3c44b77bc52e6898f6fb159f55eb71f55"
}
}
@@ -3174,15 +3174,15 @@
},
"22943bb7c8ea41a1a41125a07dcec46f91be5e41eab264fb26cc6e4ca1b5a4e5": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.355Z",
+ "updatedAt": "2026-01-06T23:12:19.671Z",
"postProcessHash": "81cf88cb88024bfac14670f92574347d21b17c46a56ad624689236fa8f33bb56"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.356Z",
+ "updatedAt": "2026-01-06T23:12:19.673Z",
"postProcessHash": "97733770d3dbcb45f34ab227a47a88e4387a8b3c5303d67446e7dbf38e398987"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.357Z",
+ "updatedAt": "2026-01-06T23:12:19.674Z",
"postProcessHash": "c4c5161328a735875b084745a09e2da97a7f5722b8e527416e7ebbc7aa94b633"
}
}
@@ -3201,15 +3201,15 @@
},
"7df72a5c83b1558be5c0fa2deec46e528d5f4d2df119cca457c97ad94568dafd": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.336Z",
+ "updatedAt": "2026-01-06T23:12:19.602Z",
"postProcessHash": "ef36a326da3d8fa106566418e5c1b31a03e9e8ed4cd5b25bc67066b302acc4ee"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.336Z",
+ "updatedAt": "2026-01-06T23:12:19.603Z",
"postProcessHash": "88f0c4b5718472ba8b2016909e7787c4c1126bcdb87296fd6f921b455393bd01"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.339Z",
+ "updatedAt": "2026-01-06T23:12:19.606Z",
"postProcessHash": "280ad2a610db0eee1030c4fd9a623eaaa9a0127945201be88540eab3124e1e3c"
}
}
@@ -3275,15 +3275,15 @@
},
"0965ae28ece3d3c3d5e10a49890e4d424a7196e1cc325921cdee9f9d8775d554": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.357Z",
+ "updatedAt": "2026-01-06T23:12:19.675Z",
"postProcessHash": "e9079648372645beb581593ceb0ccf349132811088a022797123f24db8f8f028"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.358Z",
+ "updatedAt": "2026-01-06T23:12:19.676Z",
"postProcessHash": "fd8fa286ab5dc0f1c6f7034cf4f6fd87d3905e1adfe776a1967ff103526c2fcd"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.358Z",
+ "updatedAt": "2026-01-06T23:12:19.677Z",
"postProcessHash": "8557a5fd4a396c44eca8dda9ea37a70bfdb667aa8a2e081afd1dc7b0d10ce3f9"
}
}
@@ -3302,15 +3302,15 @@
},
"4ba815c35fc1d6ae05c075a25e63c14bb4f99030f6269e2e624b6a6cf7b40e43": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.330Z",
+ "updatedAt": "2026-01-06T23:12:19.591Z",
"postProcessHash": "5650fd1e5b54ca1f661e47670d18329aa1f7bffa14db3c976ac8c62b7d8f83db"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.331Z",
+ "updatedAt": "2026-01-06T23:12:19.593Z",
"postProcessHash": "7335a32222b237a0727718dba49a451bab788d164964f432fb24439da285b365"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.332Z",
+ "updatedAt": "2026-01-06T23:12:19.595Z",
"postProcessHash": "9564fd4e27315a68427db20238bfd5b1ef80c3cc44a87580e41f928358511c6c"
}
}
@@ -3340,15 +3340,15 @@
},
"eb20f767427fb4ce5134a35c35949a707ee0443db110d0b9778a731d5cfc0e82": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.334Z",
+ "updatedAt": "2026-01-06T23:12:19.598Z",
"postProcessHash": "d877c19b8c7d77430f40b3e355f978e688beb88f69826e706fc3f6b0613ece0a"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.348Z",
+ "updatedAt": "2026-01-06T23:12:19.651Z",
"postProcessHash": "d418dfc3e19cfe9aaa58501f8a8b7d713008cec5d60b7a8694ea652a199dbff8"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.348Z",
+ "updatedAt": "2026-01-06T23:12:19.651Z",
"postProcessHash": "370d177442be0ae1e7a10e8dfdf6200f7cf08662a5bb0c0a1b6bcbe8762a91fe"
}
}
@@ -3520,15 +3520,15 @@
},
"9ee5cd65f58dd8a3710d6c2809a53ac3598b4566a8a9f06ae673835b04b973a3": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.379Z",
+ "updatedAt": "2026-01-06T23:12:19.716Z",
"postProcessHash": "2bf49fe157d5e3cb213bf5849bc249082d57ddfcf64b681ca3cbf4e25af194a7"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.380Z",
+ "updatedAt": "2026-01-06T23:12:19.717Z",
"postProcessHash": "5b37b5d4b152f489042024dbd7bb7862d27483a61055ea1d2affce1ba2946700"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.380Z",
+ "updatedAt": "2026-01-06T23:12:19.725Z",
"postProcessHash": "c03a0e00c148e6c63de4d0faa0b511769b6f25dc11531641e3c2391054a569ee"
}
}
@@ -3698,15 +3698,15 @@
},
"f2d2eba18f2d99a846a22e37f08013200d0d53bea29eed47e8ab65c63ea495d2": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.335Z",
+ "updatedAt": "2026-01-06T23:12:19.601Z",
"postProcessHash": "8f24befec031ba478bdd384847f30297bd4ef16bc475812d2c75015c0ccc4244"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.360Z",
+ "updatedAt": "2026-01-06T23:12:19.680Z",
"postProcessHash": "d82dfc5acb2b61f2c3dcf98d604456bd2239dfe0662d3c0b1a3dbf3fb298f759"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.349Z",
+ "updatedAt": "2026-01-06T23:12:19.653Z",
"postProcessHash": "0f69fa5eacefb31067b354e86a6584c3aa538822dc0be4cc80ac164559e79e7f"
}
}
@@ -3850,15 +3850,15 @@
},
"02ca72f9634b89e4ed8a7bc3fab5729cc2dfd8af88cba73808d1edb324a02d92": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.369Z",
+ "updatedAt": "2026-01-06T23:12:19.702Z",
"postProcessHash": "3c3f01e47121d3ab6015e7437c549db1465fad1b11a55d2556efe31683aa7dc2"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.370Z",
+ "updatedAt": "2026-01-06T23:12:19.703Z",
"postProcessHash": "8242976226017ba97078deddb5a1f6d3dc52aff1cc85fb818ec96ea2938929f9"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.370Z",
+ "updatedAt": "2026-01-06T23:12:19.704Z",
"postProcessHash": "205585177b650fe3951e258ecf2f587315a5c408fd152bf8452198c09bfa376e"
}
}
@@ -4121,15 +4121,15 @@
},
"9dcc7f03c2a4c809a58adccea60b3392c73dbf75dc97b65b8d7de8dd233dbd4a": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.363Z",
+ "updatedAt": "2026-01-06T23:12:19.694Z",
"postProcessHash": "00f20bc5b0ea1d95931aa99c713fc59747d3848df4f64c770d44eb65f30edab0"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.364Z",
+ "updatedAt": "2026-01-06T23:12:19.695Z",
"postProcessHash": "d974bdad36f92597c7c27bcd686e5cbf7691860f91f1f83ac264b794f87fc036"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.364Z",
+ "updatedAt": "2026-01-06T23:12:19.696Z",
"postProcessHash": "8a307cc6daf2beb05e05031a658c3d276036ef166e58962809c5eab9a208b1c4"
}
}
@@ -4223,15 +4223,15 @@
},
"1cbbe47a32a096526623143d33f45013e34af1af39f55bb937c7659b932781be": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.381Z",
+ "updatedAt": "2026-01-06T23:12:19.726Z",
"postProcessHash": "c31408da784b77382ff9dee888161f528f64922c2c3fc1d847f12c0f6d81675b"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.381Z",
+ "updatedAt": "2026-01-06T23:12:19.726Z",
"postProcessHash": "5b8d6942db03e6f1b1dc2cdff81c20eea0f6c00ed2b4862baf3a1a7e65e82824"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.381Z",
+ "updatedAt": "2026-01-06T23:12:19.727Z",
"postProcessHash": "0b184eae1a36f7aa0713472fa5c542a2dc165718978d5080685ebddd38975d18"
}
}
@@ -4261,15 +4261,15 @@
},
"239feca6504164e8bcbd82b2524a752018ed7a39e7c99c5bd82283b05ad42419": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.391Z",
+ "updatedAt": "2026-01-06T23:12:19.743Z",
"postProcessHash": "ecf86e0cda0ae341235df6b851ef4573dba152f96a2d7ae573b89a51176dd861"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.392Z",
+ "updatedAt": "2026-01-06T23:12:19.754Z",
"postProcessHash": "08ce82e18ad44239f39f8edeed8f61bd6e4414375d457afc6569d5c261ded3c1"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.394Z",
+ "updatedAt": "2026-01-06T23:12:19.757Z",
"postProcessHash": "f2a4fceea4e9f8d0dabbab77430230ebbbc6f7c99cc3c0a26f95428fa0bfcb61"
}
}
@@ -4299,15 +4299,15 @@
},
"6b6eb89e73eae4cff9d6413f91f2f4ce27e6b47013fb676bde0cdced959047d5": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.342Z",
+ "updatedAt": "2026-01-06T23:12:19.608Z",
"postProcessHash": "803b849c10972536e3c3f4efafbfdd1440ff1b2eccbaea67ecec345932e04bb6"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.343Z",
+ "updatedAt": "2026-01-06T23:12:19.609Z",
"postProcessHash": "d51ce93ab00e9613dc28df79c1214f96a300d0b730098afc58493ea1c3f80dfd"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.343Z",
+ "updatedAt": "2026-01-06T23:12:19.609Z",
"postProcessHash": "faa968f415d917b5ccb0b41591c9d744f7353d9738cf8eae88687cc50f5e5a8e"
}
}
@@ -4348,15 +4348,15 @@
},
"2142b34f605ba6b02fc694f8930d1d6a0068a69bd4e2f55d94bb3b33512bc21b": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.402Z",
+ "updatedAt": "2026-01-06T23:12:19.771Z",
"postProcessHash": "2b42ae5d214bdcf117c9fccef9536d943bd0ac0610021e8dc23f864c425ae69f"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.403Z",
+ "updatedAt": "2026-01-06T23:12:19.772Z",
"postProcessHash": "b21adce213645928d0461969a163d45bb40eafa7a46bc8b45e65ac6428965944"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.403Z",
+ "updatedAt": "2026-01-06T23:12:19.771Z",
"postProcessHash": "75a48247570e4aeed9288553e74fdc1ee72bd2b93625d091b06ac31aee4f0058"
}
}
@@ -4375,15 +4375,15 @@
},
"9b746c5834165dc199fdd794e1657e4116749bcc2ce014fa6bc5e7a59751e5e0": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.406Z",
+ "updatedAt": "2026-01-06T23:12:19.777Z",
"postProcessHash": "bcc5ad8c02a010869436abf275abe92007f40251eff63cbe8586d2dbec9b2405"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.407Z",
+ "updatedAt": "2026-01-06T23:12:19.779Z",
"postProcessHash": "19e6d916d166ac44f673ee4a0752179bfaff59e83f5984ca86856ef64df7b9b9"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.406Z",
+ "updatedAt": "2026-01-06T23:12:19.777Z",
"postProcessHash": "ada3db3d9afc6df89f01fffe6cdaf172e275fea40aad0d1e6a440bc530a7df77"
}
}
@@ -4413,15 +4413,15 @@
},
"1579230cd266b076718d44b00c6f2b14c604bd1468d47abd65c5b3f284ee238b": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.338Z",
+ "updatedAt": "2026-01-06T23:12:19.604Z",
"postProcessHash": "5a9e558f007c8216799e85d6928b6fa60a1215fe540ee35cdea429b4d19c2791"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.338Z",
+ "updatedAt": "2026-01-06T23:12:19.605Z",
"postProcessHash": "f7f2e7cda47e2a406adf5e7fc43ad3d6b8107d0b39726bf0e5e4ab5a44a52ab0"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.345Z",
+ "updatedAt": "2026-01-06T23:12:19.644Z",
"postProcessHash": "54ae54d4908aa6cb881c0abdbf013394d75bda9828f4008e0a1df9c56470041c"
}
}
@@ -4440,15 +4440,15 @@
},
"84e1f1ee89d0e933d7883bd51c19cc1497abc66ebb4cfc68cb7f690d71de87f5": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.396Z",
+ "updatedAt": "2026-01-06T23:12:19.762Z",
"postProcessHash": "33591395616a90822fbcd2632ebabcb49a8803494aba8a028b69dc51afdb0c54"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.398Z",
+ "updatedAt": "2026-01-06T23:12:19.763Z",
"postProcessHash": "5bf50d02759ee62bce8f381578b2d0eee1508437b88246e4189a66676257c9f8"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.399Z",
+ "updatedAt": "2026-01-06T23:12:19.764Z",
"postProcessHash": "f7b5fc36c896417e53f8535f588715f6086fbc9a8562db1d79b0aec3258dc0e4"
}
}
@@ -4478,15 +4478,15 @@
},
"b0fc3fe18db44f5d5e3138970ce56042937cae027c36a20826e5e83b18448c2c": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.337Z",
+ "updatedAt": "2026-01-06T23:12:19.604Z",
"postProcessHash": "38b483ace0062e2e4d7aff7f92af31e591ad0bd5b6afef17e7f20df38b27992d"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.348Z",
+ "updatedAt": "2026-01-06T23:12:19.650Z",
"postProcessHash": "f18539681eb6e25076b0fcccb6513d5a61fd58771c86fb5443c0dca4703d8f54"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.349Z",
+ "updatedAt": "2026-01-06T23:12:19.654Z",
"postProcessHash": "b7558b56b96127532fe43b6ceedfcd79da5f33583082d1ebf164a81d437c1d8e"
}
}
@@ -4516,15 +4516,15 @@
},
"f6377bf2dbd5497b12e74eecdf1c1400c517c2aec35e1ac91f461cd4769214b4": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.393Z",
+ "updatedAt": "2026-01-06T23:12:19.756Z",
"postProcessHash": "5a6eabb55ef741d3a9ec91052b2ece9b7b05b8515464f34dee55482405f9f214"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.399Z",
+ "updatedAt": "2026-01-06T23:12:19.765Z",
"postProcessHash": "ff221cad8299c0441a89215d748949d4791cb6b17955ce5281e73544785b5d1b"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.400Z",
+ "updatedAt": "2026-01-06T23:12:19.767Z",
"postProcessHash": "2bb9222be8ad6a93309739feef0dace849861e6d34c15ba08a59ea8543ddebd0"
}
}
@@ -4554,15 +4554,15 @@
},
"bc8397cc9a6ce325952185bd403e7322c795c94318958e9c38b0cbea30872f53": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.389Z",
+ "updatedAt": "2026-01-06T23:12:19.739Z",
"postProcessHash": "3dfe0b3a8adea57098cf6a28353cf3c877a5085cbd41a6e0e78c119243fd9156"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.393Z",
+ "updatedAt": "2026-01-06T23:12:19.755Z",
"postProcessHash": "7c29ebf872683033685b8098cffab0e516dfcc75434a8dac6c025d8c5cee4a61"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.396Z",
+ "updatedAt": "2026-01-06T23:12:19.760Z",
"postProcessHash": "8ba797a7b6f6ce48010f809e0f9c0a1d958f740c94e593f0b8cf0d296a6d44a5"
}
}
@@ -4595,15 +4595,15 @@
},
"b14ea7d2935e7f31137092f520b495ef77c95ada9ca283401985d81fd043b520": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.411Z",
+ "updatedAt": "2026-01-06T23:12:19.789Z",
"postProcessHash": "24e9eba8d06cd737cbe3d721778ace673b2d136e1f098dd4be4e870c646c05da"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.411Z",
+ "updatedAt": "2026-01-06T23:12:19.789Z",
"postProcessHash": "d3af600abd546684b143e27175152b3ac250ebf0405f220176289fc8451e2ce0"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.411Z",
+ "updatedAt": "2026-01-06T23:12:19.790Z",
"postProcessHash": "9dc0f62949362a8f23197ec7b998c58c39d0f855c5cd4dfcc72adc9f9382f2ee"
}
}
@@ -4633,15 +4633,15 @@
},
"6065a4c2de7e7a039acb75fd86ac55270b68e0a1c50cce78c38218d7e17332be": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.389Z",
+ "updatedAt": "2026-01-06T23:12:19.737Z",
"postProcessHash": "f505d335e7e41002bead32a72ef8770e0f01aa55ddfd00df962df90c74fa6f30"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.397Z",
+ "updatedAt": "2026-01-06T23:12:19.763Z",
"postProcessHash": "4d31183d779a1f62ff522cd37888cdbe563be18971040f0cbebc87f22a3de068"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.395Z",
+ "updatedAt": "2026-01-06T23:12:19.759Z",
"postProcessHash": "c3b64d28e24a0b671275be48dc47ab4eb1e3e0b21912431067473846b817cd36"
}
}
@@ -4682,15 +4682,15 @@
},
"58530194580e1f232e86282b69ce2eca0690f31f7c0d6cace4af03fc68418734": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.385Z",
+ "updatedAt": "2026-01-06T23:12:19.732Z",
"postProcessHash": "abb859b784f13b6e795d658969fa78e074298e010e41db1cb3d828a1e91bcd8b"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.386Z",
+ "updatedAt": "2026-01-06T23:12:19.733Z",
"postProcessHash": "427a7a11f12a4c4197f656bc7720ac76d40c480c07ab129dd0195d007b58dcf5"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.386Z",
+ "updatedAt": "2026-01-06T23:12:19.734Z",
"postProcessHash": "fbaabf2cf64092cef80bb797cd12417c96f2545bea053c2aedae63197293533f"
}
}
@@ -4709,15 +4709,15 @@
},
"fa529df5efd3bbc04a1b2491b1b102472a547fa0543ac8eb62229ff695e1e2b8": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.333Z",
+ "updatedAt": "2026-01-06T23:12:19.596Z",
"postProcessHash": "4d4bf4147726be0b1956e1a1100c527d4bcf9fa1ce583d3c4d75a3814d33c519"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.333Z",
+ "updatedAt": "2026-01-06T23:12:19.597Z",
"postProcessHash": "820c6b8dd20c8435f1420f6b3345ca0f2c79af6d4c6c40a2047a821b12b65ab4"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.346Z",
+ "updatedAt": "2026-01-06T23:12:19.647Z",
"postProcessHash": "20a74979d1a3488b4b6d50975ca30584004746e99f1a7f632600aea7852a4342"
}
}
@@ -4747,15 +4747,15 @@
},
"7af7098ed0591bb1b52aeda833b7c793c648c594ddc27001cc458732beb61d42": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.344Z",
+ "updatedAt": "2026-01-06T23:12:19.610Z",
"postProcessHash": "ee7927a66bca5f3914e782982c16c4bd197ad1fc99475d6b796714ec5cdca520"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.344Z",
+ "updatedAt": "2026-01-06T23:12:19.611Z",
"postProcessHash": "c2ac1d60635a33b85cc74b7f3e9c7948eba155cc374c08a7b72a8db0fef9624e"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.347Z",
+ "updatedAt": "2026-01-06T23:12:19.648Z",
"postProcessHash": "09062f0322a3c03c37f1aadf8125a0bce1f1aef6090cc1100f954977b2ebfc3f"
}
}
@@ -4785,15 +4785,15 @@
},
"ff6db2e1d92370a81059bfc2de4d5a8e1f57d0325aba414f0579b5874c2f211c": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.393Z",
+ "updatedAt": "2026-01-06T23:12:19.755Z",
"postProcessHash": "68641cdacdd020c8dbaaf1b97877dd9c7c051bcf8df97cb41ec4f29dcd46f1df"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.398Z",
+ "updatedAt": "2026-01-06T23:12:19.764Z",
"postProcessHash": "548909345f09738e4c12e5ada740edfa12c3ba741627dd44bded6d3ba0157e98"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.396Z",
+ "updatedAt": "2026-01-06T23:12:19.761Z",
"postProcessHash": "499b29d6d13c9bf97ba8da19b96795e7c22aae097e67886ccd9fbb5ce7d46536"
}
}
@@ -4823,15 +4823,15 @@
},
"d6a5a6940e86056dceb450ae7e7d83a0ff1ae53e967a7386f2ee6e1a51cb1919": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.391Z",
+ "updatedAt": "2026-01-06T23:12:19.743Z",
"postProcessHash": "cb3a885b4c1e16998b51e7a68e2f80acc0c85795405cb8e5bea6213adb689962"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.391Z",
+ "updatedAt": "2026-01-06T23:12:19.752Z",
"postProcessHash": "e6ef32b6539f0fc8a299077c2101f4517407000d422c5751cecb64c25e31f40a"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.399Z",
+ "updatedAt": "2026-01-06T23:12:19.766Z",
"postProcessHash": "20a7ff032325dc1f4a2b20302aae40c6514032b0bb46bbec277ed5ebe0268a8d"
}
}
@@ -4872,15 +4872,15 @@
},
"7b5e31679e6dc64290dcbaf7ebdc38d509f113fac1106932fc5c382eae0f70f2": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.352Z",
+ "updatedAt": "2026-01-06T23:12:19.659Z",
"postProcessHash": "65d9d06b4c59c29060ebc535647e1d043c06d0af011948127afc661f003ff8bf"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.352Z",
+ "updatedAt": "2026-01-06T23:12:19.660Z",
"postProcessHash": "50b56894e24fefc140d3295b7479b802008f2870f0de88257d15c192eb066e83"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.401Z",
+ "updatedAt": "2026-01-06T23:12:19.769Z",
"postProcessHash": "ba83d909f06c536eed658c3bb9988e8b972ab31bf4ba50f21dbb7308a9183589"
}
}
@@ -4943,15 +4943,15 @@
},
"eb41c43939f88bd3938929ecf1ed929135f2aa5ad83f4775c2d2a29f1c9da37c": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.406Z",
+ "updatedAt": "2026-01-06T23:12:19.778Z",
"postProcessHash": "08d306d2877f2153abbf0658f9fe970c34da297bfeffc8b4b0b3a0cf04cf8aaa"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.402Z",
+ "updatedAt": "2026-01-06T23:12:19.770Z",
"postProcessHash": "1f333e535afbc58a202038b0e7bf2ce948a1666a4778f4d6195ba04a9acb7855"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.402Z",
+ "updatedAt": "2026-01-06T23:12:19.770Z",
"postProcessHash": "5af3afa46d9c04147a478614a47e51230424ac1d381fc18674b1db7684202306"
}
}
@@ -5031,15 +5031,15 @@
},
"3f50f271cd1d2dbe840583edd841a17c6b0d0176fccf3e298330d766418dfe0d": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.414Z",
+ "updatedAt": "2026-01-06T23:12:19.794Z",
"postProcessHash": "bfd93dfe0da1dacc9cf6533c50e546aa19e32f8b87c1e4c942840ff3d5e959b0"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.414Z",
+ "updatedAt": "2026-01-06T23:12:19.794Z",
"postProcessHash": "298c145bbddc1b7402993206f1a8c6b717ab8675df1bb0446da2c481197374df"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.415Z",
+ "updatedAt": "2026-01-06T23:12:19.795Z",
"postProcessHash": "1f3896ab99cb5be495e3e84ca5768bb4ea14a6f767e1935bbb8d213233335c41"
}
}
@@ -5069,15 +5069,15 @@
},
"4b669eac3d8af5dba744f7619f5f1d7a71791df3e93cb61cdd5f4efa1a49e7a8": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.345Z",
+ "updatedAt": "2026-01-06T23:12:19.612Z",
"postProcessHash": "60896f6123f2a4804458e79e2db3fad7f776186252a130553dc6ad22dd1e1e44"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.346Z",
+ "updatedAt": "2026-01-06T23:12:19.646Z",
"postProcessHash": "d94bc7df19d521fbc5c43c567ee788bc635b8b6c208c98483330d9ce1a3d7a51"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.349Z",
+ "updatedAt": "2026-01-06T23:12:19.652Z",
"postProcessHash": "6f065465e8d462d374a00f95654c7a9dbabbfb291c4daac02d10dbc2289947c0"
}
}
@@ -5118,15 +5118,15 @@
},
"a36886f4bb4adc67e3f0f6784b450b2375adaa18049fbf2130e009b7e3e6b136": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.394Z",
+ "updatedAt": "2026-01-06T23:12:19.758Z",
"postProcessHash": "21e51ff7cc048a52da442b366a5f2a5c5734a924304df0d3ba6df9c0127277fc"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.395Z",
+ "updatedAt": "2026-01-06T23:12:19.759Z",
"postProcessHash": "c341c7751529f0f05840a6fcce139c1e968d7e7c3321e239cc1156302bc08268"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.396Z",
+ "updatedAt": "2026-01-06T23:12:19.761Z",
"postProcessHash": "a4f6eec5bf7b66e1894fd56f3e83bb4b725c0fc532cec374ca1e700c71379315"
}
}
@@ -5192,15 +5192,15 @@
},
"3174b41b9ec842bbc78c540a781b3ea089109a03d4bccf17300cce86e14f38b8": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.470Z",
+ "updatedAt": "2026-01-06T23:12:19.881Z",
"postProcessHash": "c25433b4d89b1fa66968e8437270a78488840752321712181a2dcbb41e9de1cd"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.471Z",
+ "updatedAt": "2026-01-06T23:12:19.882Z",
"postProcessHash": "ba28bc66a8e00173dc7c8bd83367ff5d5dbeab9d2b2583ac10dc3cc9681c55dd"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.471Z",
+ "updatedAt": "2026-01-06T23:12:19.882Z",
"postProcessHash": "2e812c8c3aabde2b2df87041f6cb6f50c79e442d5dda38130851a40ce4b05b41"
}
}
@@ -5230,15 +5230,15 @@
},
"daac240f9481ada70f4ab82196cb275ec718d8c2d714eb60b5c567634c3e725a": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.426Z",
+ "updatedAt": "2026-01-06T23:12:19.813Z",
"postProcessHash": "cef778ece2656866f974984362d25317410be8bdac20f55a8a8f3426ee3644a8"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.428Z",
+ "updatedAt": "2026-01-06T23:12:19.818Z",
"postProcessHash": "3fb68cc6016006437b9b159efff45fa7d81eaf3924d82544042ea2e740009f34"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.429Z",
+ "updatedAt": "2026-01-06T23:12:19.819Z",
"postProcessHash": "747a1a67ef6492bbff4d4659f4a1faa894e9830ee7b848803844019d038affe8"
}
}
@@ -5279,15 +5279,15 @@
},
"5f164293a7b7d857847dd6724df827abe1235b34e02d3b3ff596ad6884d30fda": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.459Z",
+ "updatedAt": "2026-01-06T23:12:19.858Z",
"postProcessHash": "5077d55dfb194414de3ccc6ad4fce47bcbb2b706604913baa4fd433cf0df42b7"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.430Z",
+ "updatedAt": "2026-01-06T23:12:19.820Z",
"postProcessHash": "468c6b7cbad8a8a544c73a25e2be40efc8ac71b6a372eb982cb8e4bc9062588d"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.433Z",
+ "updatedAt": "2026-01-06T23:12:19.825Z",
"postProcessHash": "15ccf30c58932162164363615489bfc2cc6a657bdd49f185ec2b7c96fa0cd1b6"
}
}
@@ -5317,15 +5317,15 @@
},
"c0ecdfc77f161f9ec951eeea61e89d87be13c8dcbf63cc28240bc8e495f7e7f4": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.388Z",
+ "updatedAt": "2026-01-06T23:12:19.737Z",
"postProcessHash": "448ce5d2b5fbbd572a78038bf7132cff0e71ba1e347160ba1a7198576e2f6195"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.389Z",
+ "updatedAt": "2026-01-06T23:12:19.738Z",
"postProcessHash": "d2820ec3ae42bd301ac2d90b8b9d73078a74b545ae61cce9372844fa64e22f1f"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.395Z",
+ "updatedAt": "2026-01-06T23:12:19.758Z",
"postProcessHash": "1551047fa8b5fc350260b9cee71617212cf7eb90682fb3981d11a6659c6153f9"
}
}
@@ -5382,15 +5382,15 @@
},
"a45a6dd4b1c9c8d543c6f5e73acbb7b6565f6f86085050f0a9bff17e2026d626": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.467Z",
+ "updatedAt": "2026-01-06T23:12:19.875Z",
"postProcessHash": "285b37a97f044c8c0e406af840bfaa9f0a7500f65c7a6504c7fa23c3fe10b6ac"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.467Z",
+ "updatedAt": "2026-01-06T23:12:19.876Z",
"postProcessHash": "44b12f400f5bd4673a70276dc83eca1680dc6169de2524c29f9a36223d83df2c"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.467Z",
+ "updatedAt": "2026-01-06T23:12:19.877Z",
"postProcessHash": "f2bf2a896296fa00ab960d420226acf234a1f2ecb485cf7bf34f3992d8a2c64c"
}
}
@@ -5434,15 +5434,15 @@
},
"86b8e097a9b0e46381251b330ee2994848fa61c2f11f64334905dbfc1ca8e17c": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.419Z",
+ "updatedAt": "2026-01-06T23:12:19.805Z",
"postProcessHash": "11bae015734e64879e0d11a17f951f92c9b15f7dccbba52fba05be561836220d"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.420Z",
+ "updatedAt": "2026-01-06T23:12:19.805Z",
"postProcessHash": "3e4f7108c4d0ecf5c5fddda1f03e971c3749a3376c5d9b686c3346ac98d9abdf"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.420Z",
+ "updatedAt": "2026-01-06T23:12:19.806Z",
"postProcessHash": "79cff003f9b18f62b1f0aa24cd6df20f42f8bcd8493c67ff57052d34b41e5e45"
}
}
@@ -5472,15 +5472,15 @@
},
"2a0f0b7a4c2e97c104841a7ca775cb7ea2d904d3c58797b4df16f21bed656cbf": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.392Z",
+ "updatedAt": "2026-01-06T23:12:19.754Z",
"postProcessHash": "4c51eeb094c01e18e658e0aa81d2a1b92a5571ef0d457cbddebceedcd29e9559"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.427Z",
+ "updatedAt": "2026-01-06T23:12:19.816Z",
"postProcessHash": "fdfca5d48424f7e26c868ff031ddd100aca0b0b2b06b56c6d913ffed3564f324"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.430Z",
+ "updatedAt": "2026-01-06T23:12:19.821Z",
"postProcessHash": "9558b0a06dfe4c8cd1da2a6b691060d876dedbff3c04057d522619fa4e173adb"
}
}
@@ -5524,15 +5524,15 @@
},
"14e1806ed07c352e544dba7d2f9a8e867092bd6a807186bcd7b76f3007109783": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.418Z",
+ "updatedAt": "2026-01-06T23:12:19.801Z",
"postProcessHash": "49647b78dad5c8878c3ab1b34839e760388920a23323da3328cd9d8ad45906d6"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.418Z",
+ "updatedAt": "2026-01-06T23:12:19.802Z",
"postProcessHash": "a85e2aacb29ee34828479b4037c2d648618631725ca94f50fbaa00a46914062a"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.418Z",
+ "updatedAt": "2026-01-06T23:12:19.802Z",
"postProcessHash": "897c562149982662a13f7eaca173b11904255dd48a5d5b8248d95e7d09747d45"
}
}
@@ -5573,15 +5573,15 @@
},
"1e5e24c5831011296eb0d6e6dbb9c228554eb4545d985aa2aabfa4b2eb8010b6": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.427Z",
+ "updatedAt": "2026-01-06T23:12:19.815Z",
"postProcessHash": "ea641246293f4eec3bab002aa06c10563068b6cd2c1da2b85234f81d6287f545"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.431Z",
+ "updatedAt": "2026-01-06T23:12:19.823Z",
"postProcessHash": "b2347b905781b2791126330873e2dced730a5a8fc4125ccb217f81918cd323a5"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.434Z",
+ "updatedAt": "2026-01-06T23:12:19.825Z",
"postProcessHash": "1af0f69d927b2d1aa2a98fdd99bd69001706144f79cfdeaf1963d703ced347d9"
}
}
@@ -5622,15 +5622,15 @@
},
"2202aa02e9ae341447ee588b80ce34cf38f9e450be559627fb28845418cd4906": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.431Z",
+ "updatedAt": "2026-01-06T23:12:19.822Z",
"postProcessHash": "ddd5dca0075078e52e20d43c61eed52d651375256591c6042d8b20b558219273"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.428Z",
+ "updatedAt": "2026-01-06T23:12:19.817Z",
"postProcessHash": "fd534b52300a6685457e2dd9e6563e7dfb52e5a84d8e2fc3dd6c8c6bec435eff"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.434Z",
+ "updatedAt": "2026-01-06T23:12:19.826Z",
"postProcessHash": "62073aff38c1e8c02c4c9ecbe9fe9cbddccacb380883c754e298e9d9620296de"
}
}
@@ -5674,15 +5674,15 @@
},
"16ffb9f1c23dab6f47df9381a23e5d7e91e36132221c0b7f111e766fcff1f50f": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.419Z",
+ "updatedAt": "2026-01-06T23:12:19.803Z",
"postProcessHash": "b73cd584801252c7df5fdaa0f1340538b79a687b2478f2982a02d096b2eddaed"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.419Z",
+ "updatedAt": "2026-01-06T23:12:19.803Z",
"postProcessHash": "416e947039ecb7f48b8538ca3767057e50ac1f8a71ced0dec8ced92b6e2056d6"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.419Z",
+ "updatedAt": "2026-01-06T23:12:19.804Z",
"postProcessHash": "c1a3a89da04cb3e41c20b10019e39cc52710f4df1e6fe5c2211d77fabe368354"
}
}
@@ -5712,15 +5712,15 @@
},
"717ba6ec955149d36b641a29e243d1a562bc0a4a45246ea8f00e97a12de033a2": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.458Z",
+ "updatedAt": "2026-01-06T23:12:19.856Z",
"postProcessHash": "bf21ae9fd3d5b766a06fb12a9cf16816ce273a35e9aa75c13938d0824ed0fee0"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.457Z",
+ "updatedAt": "2026-01-06T23:12:19.855Z",
"postProcessHash": "ef9907be38c9bc93ad52723ed826bb9b8a417740689d459f6b42870a213d6002"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.435Z",
+ "updatedAt": "2026-01-06T23:12:19.827Z",
"postProcessHash": "abd93d995fc73a033db16ab360f5dfdb5d301c2c82cb755a0aadbb26ac035203"
}
}
@@ -5789,15 +5789,15 @@
},
"f6cbcc5d42d0ee4a190683826a659b4c6cf4dbc3c41978d762e09268d4c285c2": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.464Z",
+ "updatedAt": "2026-01-06T23:12:19.868Z",
"postProcessHash": "700a4a8c12c6927e54d28c2ece4a84a037fb56940a72e7ddebbafbec31bb67f1"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.465Z",
+ "updatedAt": "2026-01-06T23:12:19.869Z",
"postProcessHash": "6acd94708a3be697485f9d3e8492ea1b6be7da310e7a14248660be537b4d3350"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.466Z",
+ "updatedAt": "2026-01-06T23:12:19.871Z",
"postProcessHash": "64b1c03d0790b82cec3b2939858d9648ba28cac442ad49590fe50ef22218288f"
}
}
@@ -5869,15 +5869,15 @@
},
"db495be65e2b4b9d45c98f9b191298f1db556059e120c93318910595c6346010": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.464Z",
+ "updatedAt": "2026-01-06T23:12:19.867Z",
"postProcessHash": "7142dd3f2d68586a9fac7d9657fb1c036c5ee8f8248acee7b502baa50a1896c2"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.465Z",
+ "updatedAt": "2026-01-06T23:12:19.870Z",
"postProcessHash": "be017ce6e79e15aa2f2dd6d8655bf4359b9337afce7a2e13c497fc9dc4f1bd11"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.465Z",
+ "updatedAt": "2026-01-06T23:12:19.871Z",
"postProcessHash": "1dac3a2b5e5eba616a71b3d762dc3c8e130184cd29aadd2724f0719d24e0345d"
}
}
@@ -5907,15 +5907,15 @@
},
"9e6bd9dddc84ee56ab61dd51d66778954d94835fa02e115422354fbc956a4a8d": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.459Z",
+ "updatedAt": "2026-01-06T23:12:19.858Z",
"postProcessHash": "caa3e0316a4a3480a61d22d8cb5ebbab62d94b89282fb6bf718ae6d1ba46c992"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.457Z",
+ "updatedAt": "2026-01-06T23:12:19.855Z",
"postProcessHash": "9718fb7d06f4c55a514dffa5450cfefd8c1d27ceb38178a3ef96f0a2ef42bd69"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.428Z",
+ "updatedAt": "2026-01-06T23:12:19.816Z",
"postProcessHash": "aaaefa2927cd92debed8c8c6de6a5d4e5439e0c5b51b9a4217ce3367ef4249a4"
}
}
@@ -5956,15 +5956,15 @@
},
"ce6876fe5f22e2c6437a4d497bad2b008231a76eb534358aeec83c667205144a": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.404Z",
+ "updatedAt": "2026-01-06T23:12:19.775Z",
"postProcessHash": "8227d59cca45c6364e78b3e8a5228f00c143c37612d56f3e2e4ce9c95c70f80b"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.405Z",
+ "updatedAt": "2026-01-06T23:12:19.775Z",
"postProcessHash": "eb7b1485c64f6bc6a5a07c86f490de17cae3eb944fbb52484e1a5adc254e98bd"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.405Z",
+ "updatedAt": "2026-01-06T23:12:19.776Z",
"postProcessHash": "d886c4d488c36fa262c26e6be5be60241c8783a105fdedbdae5a037b29de8da2"
}
}
@@ -6008,15 +6008,15 @@
},
"dc80b079dd896690e98afd1ef45635076734ca23fda5ef186ec737736a24bdf3": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.416Z",
+ "updatedAt": "2026-01-06T23:12:19.797Z",
"postProcessHash": "4029b80b66ade641424238ff2f57c35f96979def04548404a8096b3ee01e24ee"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.416Z",
+ "updatedAt": "2026-01-06T23:12:19.798Z",
"postProcessHash": "c51aa9b4090b13b17c890fec4e8854cd35ad84af56ce08ab9b9ca9e9f1d579cf"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.416Z",
+ "updatedAt": "2026-01-06T23:12:19.798Z",
"postProcessHash": "e4c3b8571385268a765c7f9c78aa1dcacf52856d7c02bcbcd70e8a2ce4c00301"
}
}
@@ -6068,15 +6068,15 @@
},
"ee4f96bff0470723b7a10737aa848e0d3cdf797351ac32229d9d22a82ed34e59": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.387Z",
+ "updatedAt": "2026-01-06T23:12:19.735Z",
"postProcessHash": "943ad62ccf5e87246cbd8032a56ef87fac96dcf23591fc46e9c3b397f95dad53"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.387Z",
+ "updatedAt": "2026-01-06T23:12:19.735Z",
"postProcessHash": "2ff0148d1a8d9be8b0b5a9c4d5d3f3a3dcef4d1189434a43373b809e4d43b30a"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.388Z",
+ "updatedAt": "2026-01-06T23:12:19.736Z",
"postProcessHash": "e6f38994ff4810c823540cf2ce0102d796cdaf5590d8b6657eb370f19f07c40b"
}
}
@@ -6145,15 +6145,15 @@
},
"875ef9867362696caa8d42608c359ee5c57d2cdfda165a883a83aaa450ece63a": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.471Z",
+ "updatedAt": "2026-01-06T23:12:19.883Z",
"postProcessHash": "25861d5bfeb8c61dcd4fd5362b32eb99eaa5fa257a70a9cc00035149709211ba"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.472Z",
+ "updatedAt": "2026-01-06T23:12:19.883Z",
"postProcessHash": "27134223d1fa9a532e3a1a33514c13d6ba7baf53c2be55a76b4de8d60cc91915"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.472Z",
+ "updatedAt": "2026-01-06T23:12:19.884Z",
"postProcessHash": "8a16d92966e40398b6294a2ff3707cf7a75371440b112f40011fd693000e2c7f"
}
}
@@ -6197,15 +6197,15 @@
},
"18964c583c436757ada5f9e3e01597cd55e950732497275de082ca135f42022a": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.412Z",
+ "updatedAt": "2026-01-06T23:12:19.791Z",
"postProcessHash": "e91529f8eeb8ca4b234331c7e2657bf8b44860d8a751bd9e48f2b8e16bff5ae4"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.412Z",
+ "updatedAt": "2026-01-06T23:12:19.792Z",
"postProcessHash": "ce65b171c54b8b178988d9e6bcf720f303cc7b8c626449cfb29b8cc04f8bf89a"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.413Z",
+ "updatedAt": "2026-01-06T23:12:19.792Z",
"postProcessHash": "b3d9dacd4c27a434706a47873840f34e889d62a4456837eb0058c49ea430f2a0"
}
}
@@ -6332,15 +6332,15 @@
},
"348103b9fe0c8a65805e5418decd17a5a94ff23b7711e6c8706209f8116cbfc7": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.546Z",
+ "updatedAt": "2026-01-06T23:12:20.012Z",
"postProcessHash": "80eacd3c5ae0fc96ee7dec091e61d59b0d4d5622f1d0a975e18287cb519df4c3"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.546Z",
+ "updatedAt": "2026-01-06T23:12:20.013Z",
"postProcessHash": "9d5f476a2574531ce954bb536ff502cca5b62bacaa306cf2d4b24e25a4356ee8"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.547Z",
+ "updatedAt": "2026-01-06T23:12:20.014Z",
"postProcessHash": "aaa682888b0f6d355835ce62ffc2a0476d9278cb506c7c0a860c57672c280d51"
}
}
@@ -6348,15 +6348,15 @@
"53c3b9e499ef5bd5e368aa05a9a2484ab2e83e086a848e4dc65f744f4303c18f": {
"fc7569e7101cf497720e212cf9526dfda81c1a7301c1866a84396fb6339961ed": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.552Z",
+ "updatedAt": "2026-01-06T23:12:20.027Z",
"postProcessHash": "fc75c2d9938841194e2d671eef3d30c51041573d551759f489ffcb22eced7246"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.552Z",
+ "updatedAt": "2026-01-06T23:12:20.027Z",
"postProcessHash": "10b19f2607796220023bffe69a09859b9214413133e5553d2e12a9329e0c3b30"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.552Z",
+ "updatedAt": "2026-01-06T23:12:20.028Z",
"postProcessHash": "6f470191e7ba5700ea93b6111e10536bd7763d866c23a98d3433de076a76deda"
}
}
@@ -6411,15 +6411,15 @@
},
"e9f35e799a18372788d3b05519568f254cb8cc054c7a531b226649594e1ef9eb": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.510Z",
+ "updatedAt": "2026-01-06T23:12:19.955Z",
"postProcessHash": "ed28fc593548f02c7f8c84978d304379394f9bd2be10fee1e2a357612a63b2fe"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.511Z",
+ "updatedAt": "2026-01-06T23:12:19.956Z",
"postProcessHash": "2f3a26bcbcf45d932276bc9268dd1f91a063b4bf17a24231cc5280262231fb68"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.511Z",
+ "updatedAt": "2026-01-06T23:12:19.956Z",
"postProcessHash": "ed98dd76dd45e3c921dcfacb303c53e300ea8c99481b3b89e8514fc27b7a245e"
}
}
@@ -6477,15 +6477,15 @@
},
"a7b8ab8bda8b9905c54f8f43b7ec0cdbf6c5be363728d34f7ba8207046c26601": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.456Z",
+ "updatedAt": "2026-01-06T23:12:19.852Z",
"postProcessHash": "66e9001db96c8e09e935164afc1a82edc9711f28aedb4f5cd045941c1325217f"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.456Z",
+ "updatedAt": "2026-01-06T23:12:19.853Z",
"postProcessHash": "249372341b87a2b36eacf8aa21e9faee32712865d62bf50cd7b84e762157b95a"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.457Z",
+ "updatedAt": "2026-01-06T23:12:19.854Z",
"postProcessHash": "3d47fa73bf3727f318826f1d33802752f0f28931cadeb0d1bb1bea382692e66f"
}
}
@@ -6529,15 +6529,15 @@
},
"01290fa007a0f57b5ac8910f8ddece3d78aba156c2440a930980537161e635d5": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.513Z",
+ "updatedAt": "2026-01-06T23:12:19.959Z",
"postProcessHash": "264b6e4351614710d6fe05948ea9dec55a42d3f0abed17d39ba93979d8ad5c29"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.513Z",
+ "updatedAt": "2026-01-06T23:12:19.959Z",
"postProcessHash": "e4de1258988a73cf94c5d2b37a1e3c01a028833abc5de3a185ab3ba8b31602b4"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.514Z",
+ "updatedAt": "2026-01-06T23:12:19.960Z",
"postProcessHash": "11af7117fc4682167a3b5cdb6ec8063cd2896184df1acc755b1ed1b2c5b7af2a"
}
}
@@ -6567,15 +6567,15 @@
},
"adbe9541002b1646c97b2808c84189ee9f023c72ad021051e865d9d5ef268ec9": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.423Z",
+ "updatedAt": "2026-01-06T23:12:19.811Z",
"postProcessHash": "4b0acbfe6598a091275b0e8bb0e204956606e3250e939e46c796cc67719609c4"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.424Z",
+ "updatedAt": "2026-01-06T23:12:19.812Z",
"postProcessHash": "9db8494b6a5fc6f8d035c978771fda3d0f622d7365996b5086201f7cea7ba409"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.429Z",
+ "updatedAt": "2026-01-06T23:12:19.818Z",
"postProcessHash": "113a8f8013e81920fc3346eb087306aefbe82ef33b8bc0648c4d0acf9bb7ce97"
}
}
@@ -6663,15 +6663,15 @@
},
"f569468e88cb3be8bee1d9097f6a2f0e114340f05ef2f7660b2eab613c615e8f": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.503Z",
+ "updatedAt": "2026-01-06T23:12:19.938Z",
"postProcessHash": "98c2aff541493254dafdf42c69abeef9727e5f363611d2b37fdca899a03ecf44"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.502Z",
+ "updatedAt": "2026-01-06T23:12:19.937Z",
"postProcessHash": "776fe5b8d16024155657a0eec2cddd9bceafaa578415c400e8f198d1028484a4"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.503Z",
+ "updatedAt": "2026-01-06T23:12:19.939Z",
"postProcessHash": "a492be40675d72c724b4ed398656683441c3659697dc4cc601afe3ac97917293"
}
}
@@ -6701,15 +6701,15 @@
},
"79ce9a01a754dff7caa2815c273adb26f9fa5e7a21f6e8e07fc94d1f85cdba74": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.423Z",
+ "updatedAt": "2026-01-06T23:12:19.891Z",
"postProcessHash": "4f3d9036b6c463c31d5d73da325be00fc2f397e1caacd8189f0ccc1ee8e14a33"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.425Z",
+ "updatedAt": "2026-01-06T23:12:19.901Z",
"postProcessHash": "fa4b69feb4a7ff9a420eb06a60cf2ee33443e29243043d54a564a6b12a4228d3"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.433Z",
+ "updatedAt": "2026-01-06T23:12:19.908Z",
"postProcessHash": "edb3a451e5f74672eb9931e14a85482d7ed3e838a1c45b58040fcdb8ca2a8243"
}
}
@@ -6739,15 +6739,15 @@
},
"cb332adcfe09bedb087e499ecf60d6a233e8053ca49c78bb30ca1add261b4ea8": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.478Z",
+ "updatedAt": "2026-01-06T23:12:19.894Z",
"postProcessHash": "d3f4ff69a82a65ed50e89bef979ce2e2a4177f6aecd78ed924d81542122e8812"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.482Z",
+ "updatedAt": "2026-01-06T23:12:19.899Z",
"postProcessHash": "831df8b865aa0658cf5481cc3a6d40eb2d06d3ba5e4232130dbd8208ae905817"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.486Z",
+ "updatedAt": "2026-01-06T23:12:19.904Z",
"postProcessHash": "154f89bdf5fd85627d81ad5d075da2c577fccb2126d8c2d2f87418b89ff5f52f"
}
}
@@ -6777,15 +6777,15 @@
},
"0d47285825c7ae55984e6f9c3d7528dd673f95650add2cbb567f8c29315f01d5": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.424Z",
+ "updatedAt": "2026-01-06T23:12:19.812Z",
"postProcessHash": "7b1d3ca88d0e73f3be028e1fe38f0322a2efed3dcb2988bd5da04967bd3c2e05"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.426Z",
+ "updatedAt": "2026-01-06T23:12:19.814Z",
"postProcessHash": "55880c10f3d37ee1d716a38031a483f2543afba521909dc4408c72579b11ba55"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.432Z",
+ "updatedAt": "2026-01-06T23:12:19.824Z",
"postProcessHash": "099305d139ec4025d49c85572a0fcdf7aa05cb23992d78d03ffb3aed637b9d85"
}
}
@@ -6815,15 +6815,15 @@
},
"9277c5d065b05d3f338e148bb8b9a7359baa986e51127a488155faacbc3c3a72": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.478Z",
+ "updatedAt": "2026-01-06T23:12:19.893Z",
"postProcessHash": "faee58249dd8a9113f3aba705d6dfaec41a3fe393600f29d7135705206db09fa"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.480Z",
+ "updatedAt": "2026-01-06T23:12:19.897Z",
"postProcessHash": "a60b72007a91b910277cefb0cfa09e751a90eb2e5b663cb1a1047689c6c50cb4"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.488Z",
+ "updatedAt": "2026-01-06T23:12:19.907Z",
"postProcessHash": "7f5ae4e82939f74154200b48db75a609911af14e320bcf71bdd1ed44ed4dffd7"
}
}
@@ -6864,15 +6864,15 @@
},
"c957730742bfb92e2dc7fb525f717a4437abf5f9440efbbac1db614a1b98a392": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.436Z",
+ "updatedAt": "2026-01-06T23:12:19.829Z",
"postProcessHash": "cced41b6e6d7b9628f4573f9468ee1759122bb6f0570669d067a4873bdba1fa8"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.437Z",
+ "updatedAt": "2026-01-06T23:12:19.831Z",
"postProcessHash": "08a684c08c6145f36f681fcdcd5a809e2241033d14484876bc1de355fe6294ff"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.438Z",
+ "updatedAt": "2026-01-06T23:12:19.832Z",
"postProcessHash": "75f945df223e9bc12d4dfbe86962bd30eecc250670cd63a3cd480c403d07ce66"
}
}
@@ -6930,15 +6930,15 @@
},
"96936b7bd088bd93198335995a2157eb2fcf45aa073fec70f91f3cf09198cfb5": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.493Z",
+ "updatedAt": "2026-01-06T23:12:19.911Z",
"postProcessHash": "c0ee9bd57dbd708b85602cb7b74025d987d6ff500838c4e4383d95a86fa2c81b"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.493Z",
+ "updatedAt": "2026-01-06T23:12:19.911Z",
"postProcessHash": "f83ce2a2fb979b9674d6ee4607976282aa5d4bfa150562c0096e23123ef3efe4"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.494Z",
+ "updatedAt": "2026-01-06T23:12:19.912Z",
"postProcessHash": "0aaac8ddba26f157f0d01455b88a48089930d0a182e015b0329ba28835abeb07"
}
}
@@ -6968,15 +6968,15 @@
},
"077aa8e71ac9b1ad9784f1fdb2f0f2272d89aef4e499c387a943a032aa224732": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.390Z",
+ "updatedAt": "2026-01-06T23:12:19.742Z",
"postProcessHash": "f0b4564abe56b90d979fd97246c207ebd30c74de30f0e64b94824db60f7e60bb"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.431Z",
+ "updatedAt": "2026-01-06T23:12:19.821Z",
"postProcessHash": "c481f3a0059f7ddc6e91388789cb8a9471ed02ad32e4ba9090b6b3fafc2ddb0c"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.435Z",
+ "updatedAt": "2026-01-06T23:12:19.828Z",
"postProcessHash": "39d867622e218bdaa5d41f34fb9ebc79bd6cc4a3674aa92102c522722b3002b8"
}
}
@@ -7031,15 +7031,15 @@
},
"b6ea0c7a225755bacd477acbbc5b8dbd73479fed92ebf8f8efd929e0e8a8a9be": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.512Z",
+ "updatedAt": "2026-01-06T23:12:19.957Z",
"postProcessHash": "f53d39e4a7b80b8a9bedb81b3247069a4e81755a32d1bb1d8348096980c01cf2"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.512Z",
+ "updatedAt": "2026-01-06T23:12:19.957Z",
"postProcessHash": "a826efeec4fa4189192e630acfa71494cc692aa80dff0719168d716f84509286"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.513Z",
+ "updatedAt": "2026-01-06T23:12:19.958Z",
"postProcessHash": "e057cec31a86d8972d74e812f23ed9f74a802f8a7d8d8d80b6aeb41d398d17f7"
}
}
@@ -7083,15 +7083,15 @@
},
"d92856d44cc85192115b053808dddef14b196614e976c43cc94d371f77b84d56": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.469Z",
+ "updatedAt": "2026-01-06T23:12:19.879Z",
"postProcessHash": "132078580308fcd2f4ee5e0dbce5df2b150a2339bd15395a10df3f4cc0ffff79"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.469Z",
+ "updatedAt": "2026-01-06T23:12:19.880Z",
"postProcessHash": "2dcd009be2f7bfa03a9579469ae607f8e6c302454d0aab2f15da11858bbd71c3"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.470Z",
+ "updatedAt": "2026-01-06T23:12:19.881Z",
"postProcessHash": "6313d6bd5b442916fd45688fd60f771c45284e2082b6050a34b184217e3fb4f6"
}
}
@@ -7132,15 +7132,15 @@
},
"932164e54df873e85483457879f18e64e32a0b2e369f5ac02f63fa24d0b597e8": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.422Z",
+ "updatedAt": "2026-01-06T23:12:19.887Z",
"postProcessHash": "056911e012472d793cdaba50a2c8ca12f4349eb3638a494c3b195b49d77a72e2"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.422Z",
+ "updatedAt": "2026-01-06T23:12:19.887Z",
"postProcessHash": "7f0676d4ad461ace403c926ce54814362c763cd819d35541fca58540e71f867f"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.475Z",
+ "updatedAt": "2026-01-06T23:12:19.888Z",
"postProcessHash": "0140c7068930261b4ca0c63f9afcf41fa317a62e0d09e283570ad12a6ada18db"
}
}
@@ -7181,15 +7181,15 @@
},
"ec71bf3822a4c56c270e9b788ef048e6f9cee300afd195dca52467da091b89a9": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.461Z",
+ "updatedAt": "2026-01-06T23:12:19.862Z",
"postProcessHash": "8aa134d755c87182a2a2c754987870ec6bef9069233c2afce67cf50dc6b0a46d"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.461Z",
+ "updatedAt": "2026-01-06T23:12:19.863Z",
"postProcessHash": "bae6438ff1d33e4cfc1694d8f2c5084af8bce770aae84786a6f4d1870601acfd"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.462Z",
+ "updatedAt": "2026-01-06T23:12:19.863Z",
"postProcessHash": "526616ad2a6ef4c92f94be4802a62f779caaf8ec5ce1aea6caef80fa78a19159"
}
}
@@ -7219,15 +7219,15 @@
},
"160f5f116c9fa308d3ec6a5259bbd3981661441ed3005e4cecde5805eb67d49f": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.390Z",
+ "updatedAt": "2026-01-06T23:12:19.740Z",
"postProcessHash": "b28d42a6f94c40653c2068e6658b348d192f91c3a4d711f865121c8cf9dd1130"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.390Z",
+ "updatedAt": "2026-01-06T23:12:19.741Z",
"postProcessHash": "b296312f68f318d7230611776108eea87a4b53ed201c8aabe3ee79bfd290c562"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.392Z",
+ "updatedAt": "2026-01-06T23:12:19.753Z",
"postProcessHash": "8510c54a3b69f2ef327f022a09fb5e0e960dbd13b0700a28548f682f8c98f3ec"
}
}
@@ -7279,15 +7279,15 @@
},
"c9b2cc3264dd28035c31174a00e7a3504fa6b70444ad3e472634e138afa04319": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.460Z",
+ "updatedAt": "2026-01-06T23:12:19.861Z",
"postProcessHash": "ea8bbcd89d42a8e2c0721a7ece139530b580b0c7cb371a1f34c26ded8e6d8813"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.462Z",
+ "updatedAt": "2026-01-06T23:12:19.864Z",
"postProcessHash": "b22782c350becf853cf1dc0dd62c4856f03f686ef279eac76dab13a900f8c16f"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.463Z",
+ "updatedAt": "2026-01-06T23:12:19.866Z",
"postProcessHash": "01a11811d746c3f84e24719f9c34d630e81333caa40a2d91251403b0c20ce425"
}
}
@@ -7356,15 +7356,15 @@
},
"7438d52f60601ebe532d0f2e64a869cef76f3ccc261378edbdf588685d1b33cb": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.468Z",
+ "updatedAt": "2026-01-06T23:12:19.877Z",
"postProcessHash": "d58eba8e19184ba44f87aaace0a7d4a49ebcb59316bea6398a3439afe7497546"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.468Z",
+ "updatedAt": "2026-01-06T23:12:19.878Z",
"postProcessHash": "e440259f4585880d6577d552cb0e43ffa9032062e0f669160cde5be8f5068381"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.468Z",
+ "updatedAt": "2026-01-06T23:12:19.879Z",
"postProcessHash": "bdedc75c24ff43f9e4826b291f8b17200643517c9d839f2cb33dcebe4b293983"
}
}
@@ -7427,15 +7427,15 @@
},
"b2941acc9defbd3d9c3b300b73704cac0dd2fb86b77e667eb6cde4d0fa6c5495": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.437Z",
+ "updatedAt": "2026-01-06T23:12:19.830Z",
"postProcessHash": "c6f28bc8100939a6fbdeeaf3abddf03ffd521cac6a8f9a8c9ef27654ea4446c5"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.459Z",
+ "updatedAt": "2026-01-06T23:12:19.859Z",
"postProcessHash": "b5baf0b834fa723f2343b63f5e321b8a30d7305b3e43b85726e6346a367df99d"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.437Z",
+ "updatedAt": "2026-01-06T23:12:19.830Z",
"postProcessHash": "a4fa03f2c6225f764bb541f9b1b603f772d36521832551be5048899fd37222f7"
}
}
@@ -7504,15 +7504,15 @@
},
"0d42b34b032d660a471eb899bc862c89483af7db4bcba5396865e5fbf8e2ae97": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.466Z",
+ "updatedAt": "2026-01-06T23:12:19.872Z",
"postProcessHash": "964e8d903c836590ddca3aac6af204bc9cfc5ed0d46386154308a45dc92feea5"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.501Z",
+ "updatedAt": "2026-01-06T23:12:19.873Z",
"postProcessHash": "76df176282efc75b4a19abe36c447d7528b827d40a8e46fad9e79f0cbc299527"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.502Z",
+ "updatedAt": "2026-01-06T23:12:19.874Z",
"postProcessHash": "8096eb57b9b5031d4166f2c671139a361c0d7ca31ddf219d4d766f8202649e82"
}
}
@@ -7566,15 +7566,15 @@
},
"acfaa578e31469bba912c816947b7f178d4832f82c00d05c3e244edd94887e39": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.521Z",
+ "updatedAt": "2026-01-06T23:12:19.980Z",
"postProcessHash": "1bf805d28357fd4c6516184713411d605ca067fec74cc0d93dfe220ff49585bb"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.522Z",
+ "updatedAt": "2026-01-06T23:12:19.981Z",
"postProcessHash": "13005ac041b93bd857d8e59aaa93c6efd67ced33e802174e8b0d67f43e384265"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.523Z",
+ "updatedAt": "2026-01-06T23:12:19.985Z",
"postProcessHash": "792476f5828a03d073e4b19df36512d43f64747ae6d95f7ae3be63b9f4fec9e9"
}
}
@@ -7582,15 +7582,15 @@
"d94f062276e8ad0d42732979d06ce717dd7311616fe48748e00dba55829e49e7": {
"38383b08735a5cb0e05fd23251b27a3ee86198c1e15186670fc6283782cd16ac": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.554Z",
+ "updatedAt": "2026-01-06T23:12:20.030Z",
"postProcessHash": "7be6faa4e42554befd520c19a6f3491993e94a21f662c1efdb2d40c9cedff8f9"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.555Z",
+ "updatedAt": "2026-01-06T23:12:20.032Z",
"postProcessHash": "1b8a6318b0dfe185d0659617edc34dbca1e15a9c7c691840d2b863f61ecee115"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.555Z",
+ "updatedAt": "2026-01-06T23:12:20.031Z",
"postProcessHash": "61a8388dd04e334392c1787d6c488bdc84b7c6700c627791b00fb54d534be8d2"
}
}
@@ -7598,15 +7598,15 @@
"b75acb2803501aae1bc445e5c4671f7a1cb79a55d21e1658ded84494ddd40dd7": {
"2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.555Z",
+ "updatedAt": "2026-01-06T23:12:20.032Z",
"postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.556Z",
+ "updatedAt": "2026-01-06T23:12:20.033Z",
"postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.556Z",
+ "updatedAt": "2026-01-06T23:12:20.034Z",
"postProcessHash": "2d3ea0369c9e0a1cae4d532293d6570f21f57b514c73f999de5c56c3a56fa419"
}
}
@@ -7636,15 +7636,15 @@
},
"70ae68e58bd169fcaad5883e12866d9623dd08aeda647b33d080900e63da30ae": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.479Z",
+ "updatedAt": "2026-01-06T23:12:19.896Z",
"postProcessHash": "f5f221ba2d8314ef1816a191296a593d06fd07914a257fd35677d80acbe77127"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.481Z",
+ "updatedAt": "2026-01-06T23:12:19.898Z",
"postProcessHash": "e69840c0323e058adde26e5c16ba77be21fb16092c2b0486a533fd3a0a4533d6"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.487Z",
+ "updatedAt": "2026-01-06T23:12:19.905Z",
"postProcessHash": "874e43e0aeff69d04c072315bd02c26fc170450ace3dfdfe271838a07640fdc3"
}
}
@@ -7674,15 +7674,15 @@
},
"abd558ca5dff83fea0f652890cb390fbf5a7818d903e464a8407cbac75b6926b": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.532Z",
+ "updatedAt": "2026-01-06T23:12:19.917Z",
"postProcessHash": "df401d1fb70452352dfd19f417d03ac67d4157ce1fb061c488118515f304fcc8"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.530Z",
+ "updatedAt": "2026-01-06T23:12:19.913Z",
"postProcessHash": "e91542489d8909439b4f25d8d514c0b9eee432a9102578c35340641a1b995708"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.534Z",
+ "updatedAt": "2026-01-06T23:12:19.919Z",
"postProcessHash": "e78b8df95f3554b1e5796fd4431fc6ceed73b4e2524ccbb6b815754d80243461"
}
}
@@ -7701,15 +7701,15 @@
},
"14c735b1f5d231158fc82ee047c2c33adf31bf94b27796f516f1287a5bcec0be": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.495Z",
+ "updatedAt": "2026-01-06T23:12:19.914Z",
"postProcessHash": "9c992242df738e1c797c2559c72263d523df37252b4bf886b45fa0e6d1982974"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.496Z",
+ "updatedAt": "2026-01-06T23:12:19.918Z",
"postProcessHash": "272a49cce702d034dd784a972f2df536efad5e9666c3b2466a7df2a826b31ad7"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.496Z",
+ "updatedAt": "2026-01-06T23:12:19.918Z",
"postProcessHash": "4f947e6f4c702c653ee263be612941c3c69378052b0a439e6d4508d3fe3293ab"
}
}
@@ -7739,15 +7739,15 @@
},
"6b0824d08f834f9a5d538b3b8632f9b239036b14491d42acebef6408dc7ec637": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.478Z",
+ "updatedAt": "2026-01-06T23:12:19.894Z",
"postProcessHash": "5658e43759591f4255778f584e2633d06428537642b0becca5cc0039082d5da3"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.483Z",
+ "updatedAt": "2026-01-06T23:12:19.901Z",
"postProcessHash": "f7f3edda9e945c9383face672f3b3bea008ab3ee22fd84e4786e6d515542009a"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.491Z",
+ "updatedAt": "2026-01-06T23:12:19.908Z",
"postProcessHash": "4940c7b39b10be524409a7d1f44a6cc1058cfd07aa078891bf9254c3fa86d446"
}
}
@@ -7819,15 +7819,15 @@
},
"ecaf75c198097cadd93581be955e14d63ea192ea3db71778a0a8d717739ae81c": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.506Z",
+ "updatedAt": "2026-01-06T23:12:19.948Z",
"postProcessHash": "37d355640f9a476937d1fee64a0a6e85a78674e2f5f4253e8669ebd9e5efe8a7"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.508Z",
+ "updatedAt": "2026-01-06T23:12:19.951Z",
"postProcessHash": "7658ae964beb162c6a4800520cdc4a1f015745ed8916b572639d11e87b85ead9"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.509Z",
+ "updatedAt": "2026-01-06T23:12:19.952Z",
"postProcessHash": "168db6be772faeda8e2be6f893ba754e9c8fbd9c16366a9e51bd7a39161294bd"
}
}
@@ -7882,15 +7882,15 @@
},
"ee1c7a8be165d2c3b76cff25a417b7993ade3c80c38e7a15b4d1f51c5ac55fe8": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.558Z",
+ "updatedAt": "2026-01-06T23:12:20.020Z",
"postProcessHash": "a34abbfa2c498795b51eaa955455e438445fee8dc8987d6483cb7c5588f76d6f"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.558Z",
+ "updatedAt": "2026-01-06T23:12:20.021Z",
"postProcessHash": "141dfb7149be2efeca8a73baca53366209331387a9c7a25b244c414da75586e6"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.558Z",
+ "updatedAt": "2026-01-06T23:12:20.021Z",
"postProcessHash": "09d3a466bb69a1929036f6fa44585607100c26ae659326f3cf8f3bcf4bda4ab8"
}
}
@@ -7948,15 +7948,15 @@
},
"67539081d79f168ea041dbc6df2e80ea81bd84d60ac22ef1e59be0b56c30cf09": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.507Z",
+ "updatedAt": "2026-01-06T23:12:19.949Z",
"postProcessHash": "38ad89032d30bcd1a387213410956df7193257d464ae398c31f8e67abcaf8817"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.507Z",
+ "updatedAt": "2026-01-06T23:12:19.950Z",
"postProcessHash": "edf7c931b0ca801e6c5a08804d582709b776288ddc8e6ed544563d705ea5994a"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.508Z",
+ "updatedAt": "2026-01-06T23:12:19.951Z",
"postProcessHash": "dd5c2ba6a08e4578084dbf384338d33a4827e447bc32880b08505b69b6e6d278"
}
}
@@ -7986,15 +7986,15 @@
},
"072b9eebedb71c24eff9121c4c3df35b97b1ed50e4d085469528c9d2de05859f": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.477Z",
+ "updatedAt": "2026-01-06T23:12:19.892Z",
"postProcessHash": "ce43cffea176a18739de24137e8ba8b295ef20048cbd87f374f43c64fd61f9af"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.484Z",
+ "updatedAt": "2026-01-06T23:12:19.902Z",
"postProcessHash": "1b7200c17e4a1a70668709828b6960c49d796b2e48aca1217fc3202d7cc8cb8f"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.485Z",
+ "updatedAt": "2026-01-06T23:12:19.903Z",
"postProcessHash": "d5f4acd37da75353c4da7775bb4d6dee19433308a0fd075916c41abca972b311"
}
}
@@ -8024,15 +8024,15 @@
},
"60410e8de452c7da325a02a1b113b5f41efda66701da3ba2c1c778a5bfcf1c6b": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.476Z",
+ "updatedAt": "2026-01-06T23:12:19.889Z",
"postProcessHash": "c07eadec087884b8c15f2c85ff82af42cb2fdb230d500a5dc8838286b934344d"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.479Z",
+ "updatedAt": "2026-01-06T23:12:19.895Z",
"postProcessHash": "df7ebd8d0dc810d993a8ec36837a627e2cd4f5155a567f52a32b301c2cc5c916"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.481Z",
+ "updatedAt": "2026-01-06T23:12:19.897Z",
"postProcessHash": "2865c5a4d907fe77512ad9ca6f0c87933ff18542dd9d7cbf4aa1183d103cefb1"
}
}
@@ -8084,15 +8084,15 @@
},
"4eae604426bf8aea4e211d29fbdb8293ad317b800322c61d893101024cdadff0": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.497Z",
+ "updatedAt": "2026-01-06T23:12:19.920Z",
"postProcessHash": "d050cda4da0cd6807b3671ca7719f9e4a3d0592935b40fe0b6e5776c08314ac8"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.497Z",
+ "updatedAt": "2026-01-06T23:12:19.921Z",
"postProcessHash": "74cd4f6452e34e9ff2ebedf20d2113f6b3e081a079084e5bc367a5a6ffc6d23a"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.498Z",
+ "updatedAt": "2026-01-06T23:12:19.923Z",
"postProcessHash": "d181d20d3d4ad8e044f5e7ad78b356a816c999b73cd5a336403e87ceae9f02e8"
}
}
@@ -8133,15 +8133,15 @@
},
"b50bec2f6fbc20f925edb6d286c9764aae8d9649421d2ee0556e6a4354954892": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.497Z",
+ "updatedAt": "2026-01-06T23:12:19.921Z",
"postProcessHash": "7c00710bb6230a11a5e4a58d7832cd1ac3a4880c965fc054693ba27f275a594d"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.497Z",
+ "updatedAt": "2026-01-06T23:12:19.922Z",
"postProcessHash": "e3d8dc2fccf2b0e4df0e27bea8ed2f4158fad71db1bcc9f7f3fe9f9d896d6532"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.498Z",
+ "updatedAt": "2026-01-06T23:12:19.923Z",
"postProcessHash": "268c9b1e68fd46219de27c7862aacdb2c2b9df92f8c7d05ecc8c5bfef95131e5"
}
}
@@ -8182,15 +8182,15 @@
},
"0fc1c97ac1271e56711c24a8e174f746e5aba365ae68c766dfc386de28b68758": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.496Z",
+ "updatedAt": "2026-01-06T23:12:19.916Z",
"postProcessHash": "91eefb1610ac8a8e5960f09c348906baa3797d04bfebd24e3f93e69247182dd7"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.492Z",
+ "updatedAt": "2026-01-06T23:12:19.909Z",
"postProcessHash": "f036c788e9536b57ba87e7da391cbc5dc3365f53da6a3bb0e3033e43faa0f15d"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.495Z",
+ "updatedAt": "2026-01-06T23:12:19.915Z",
"postProcessHash": "54d380f074def6e5ae4cdba4c87608810d5345321934336421ca947f62fe9807"
}
}
@@ -8220,15 +8220,15 @@
},
"61916a309506445f20e4979e2a04f18a825fc867a7af92e1e9f217840401ff61": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.482Z",
+ "updatedAt": "2026-01-06T23:12:19.900Z",
"postProcessHash": "55bd9d8bb428656557707f1916f8b20e7cea4717aaaf254752cbb6139f20f549"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.486Z",
+ "updatedAt": "2026-01-06T23:12:19.903Z",
"postProcessHash": "1eeb6a01020112cb5f3193088e02387e8693dfa345669ce830ca209057eecce7"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.488Z",
+ "updatedAt": "2026-01-06T23:12:19.906Z",
"postProcessHash": "cb46b2a05f3b5821f1eb86d50386fa52ef26b7e704c6e999898aa1c667398eb2"
}
}
@@ -8283,15 +8283,15 @@
},
"cfd15be568facb919311c0bfa256f0b573e01679693e2cc34ba36928f2cf659b": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.505Z",
+ "updatedAt": "2026-01-06T23:12:19.946Z",
"postProcessHash": "189ad058486783b6a1975d7acade4a5304f22c2b66dc6a5793f6aea3eb5b08b9"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.506Z",
+ "updatedAt": "2026-01-06T23:12:19.947Z",
"postProcessHash": "4439a76083d8d538995285d7ad3b916795dc7dde1dd574bc5faaa69ae6e1f71a"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.506Z",
+ "updatedAt": "2026-01-06T23:12:19.948Z",
"postProcessHash": "48c17af9d44e79a5fb73c2f49c57b8b69f2d7bf4a6ee571f97c7e7b188984097"
}
}
@@ -8321,15 +8321,15 @@
},
"8868b228fc8a687b133035b70a0de2ce37b05bf402b2e01848c326ea1dea023f": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.480Z",
+ "updatedAt": "2026-01-06T23:12:19.896Z",
"postProcessHash": "2dfa29d17529516813e4f9d5cac8869f0e8443242aed5f9e9c371ff3ea3935ea"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.482Z",
+ "updatedAt": "2026-01-06T23:12:19.899Z",
"postProcessHash": "0df0fb5ee9eaeaf7bcbfac87a0997d52db99c11792c7b09d1d7df76d5be6b301"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.487Z",
+ "updatedAt": "2026-01-06T23:12:19.905Z",
"postProcessHash": "15cd17e2ec537cafb081a4ef7d7dc769843a0815247a25db22c877b1a3bba11e"
}
}
@@ -8381,15 +8381,15 @@
},
"e39e9caf29465b5d48d1d5115af5bc0b2609607382f1f48c6ff0b741fea2ed5c": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.499Z",
+ "updatedAt": "2026-01-06T23:12:19.924Z",
"postProcessHash": "571f4813c9c062f52e8e3413a3ef048b62a666a9d4619e7aed2f2d710fea5b30"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.499Z",
+ "updatedAt": "2026-01-06T23:12:19.925Z",
"postProcessHash": "0d2981af9f19eff8e0dbbea0b6ecdf65b237ce12e25ddb25338168f5e8d4de15"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.499Z",
+ "updatedAt": "2026-01-06T23:12:19.926Z",
"postProcessHash": "f6e80783266fb093cb61ef6c6d80af0b3184dce451a0b234d42757d843332668"
}
}
@@ -8558,15 +8558,15 @@
},
"8faf11b908379bbd5832ca329d15a4c3ef469eb6c12a868e5ad891da2e582ca7": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.548Z",
+ "updatedAt": "2026-01-06T23:12:20.015Z",
"postProcessHash": "401beb4ed4a974d74dd30a93876052721598be86bf1763e6acba747f202aa89a"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.549Z",
+ "updatedAt": "2026-01-06T23:12:20.016Z",
"postProcessHash": "bd8c42678e0e2fa7b3cad7ede602fbff06db0a2c4e2cd4fc4b0c2345a5779f82"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.550Z",
+ "updatedAt": "2026-01-06T23:12:20.017Z",
"postProcessHash": "137673a860c645ea0957cc5c977fed50e69bcdaf004b1b860298331fe49a635c"
}
}
@@ -8607,15 +8607,15 @@
},
"b45bae404e19ce4bf3d7eef53d482ed6ef014f4e3fa1a95ce29fa233498d3100": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.527Z",
+ "updatedAt": "2026-01-06T23:12:19.992Z",
"postProcessHash": "2b8465c471635af256b417b092985b8426f4d03bda6389d054bc306a7a529a75"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.527Z",
+ "updatedAt": "2026-01-06T23:12:19.993Z",
"postProcessHash": "9a4e68881747a5c197e74cb9af2c1cfb5c064dffea87037221768b4dc4b37982"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.528Z",
+ "updatedAt": "2026-01-06T23:12:19.993Z",
"postProcessHash": "ab75d9d838e3c216d891865945682e11b8c168bdd4c52b0878f15c1372736db3"
}
}
@@ -8645,15 +8645,15 @@
},
"e5f66a275721a9cc17c973319dccecc1dac2ac8dee59f4ab039032125acac1a5": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.515Z",
+ "updatedAt": "2026-01-06T23:12:19.967Z",
"postProcessHash": "957d17811fdc1a0a0bfefd536dc68c8a72663d76bf22cc3511d35a3c8684d9ef"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.477Z",
+ "updatedAt": "2026-01-06T23:12:19.892Z",
"postProcessHash": "fe0dc117f70e9942557c15b5cee3f12455c69e421e062504d8016ae6923bce50"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.522Z",
+ "updatedAt": "2026-01-06T23:12:19.983Z",
"postProcessHash": "cc22fdbc75d6087d1c7fe491329801246f9629ebcab8e7e68b078a8559e584b4"
}
}
@@ -8661,15 +8661,15 @@
"9f010ac20bb43e57e5a7e4090f5201d7cb2a2c159a75dcd9dc8c8fec762bdb2f": {
"ddf56b843c9eb02243bfeecfd91aaaa2ec31066e8332e46c84e6e2e13605c21f": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.553Z",
+ "updatedAt": "2026-01-06T23:12:20.029Z",
"postProcessHash": "fc8c5f6931a05856947a7c265ddaf7929c81cff612c556e9c54ef5e822724b4b"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.553Z",
+ "updatedAt": "2026-01-06T23:12:20.029Z",
"postProcessHash": "69ea9648fcfcc4e18e11cf3cb45e3dc9d78736de44f9fdf2d53ad2e064dbaa32"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.554Z",
+ "updatedAt": "2026-01-06T23:12:20.030Z",
"postProcessHash": "d9b22ad706f80a611cfa3450fbd9322f3a5091e5089fd5fbfa313ef5f1ff79e4"
}
}
@@ -8747,15 +8747,15 @@
},
"ddeb7f2354190cbc31ab09c6f70e517fff11b85b0d95e50c7db0f94bb98f084b": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.485Z",
+ "updatedAt": "2026-01-06T23:12:19.975Z",
"postProcessHash": "caca14a7c8131127e6530e569eea0ea790aec3703ba1941af9282a54fa82f47c"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.486Z",
+ "updatedAt": "2026-01-06T23:12:19.979Z",
"postProcessHash": "01eb4ba640b3f9904e85a6843a95902dc1066cff0458214269390403563839a5"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.491Z",
+ "updatedAt": "2026-01-06T23:12:19.991Z",
"postProcessHash": "8b3091ec7ab69e425ed7b4bbefc8f04ef65ef0d90f8a803b446ad272a9ac04e7"
}
}
@@ -8785,15 +8785,15 @@
},
"f07a3c65b544b1b6c3631e472056dfd51f9fbc79e28fe7073271fa963f1355a2": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.479Z",
+ "updatedAt": "2026-01-06T23:12:19.964Z",
"postProcessHash": "4496ca98a01e7502324d30bf0469b59ce40c1db2b03a86b44353ea82fd7ea120"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.484Z",
+ "updatedAt": "2026-01-06T23:12:19.973Z",
"postProcessHash": "08ca06a1338ba7049b87366bddb334e923088a7206035d664245d22801820110"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.491Z",
+ "updatedAt": "2026-01-06T23:12:19.990Z",
"postProcessHash": "b563eb2cea6afc1153afe426a3ac992bd028ce5fa354232e994b9a3a5d449291"
}
}
@@ -8823,15 +8823,15 @@
},
"9af3d645babdeca987fedca80aae0b76816b37e30bf3a25fc1db00ead3f1bca8": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.477Z",
+ "updatedAt": "2026-01-06T23:12:19.890Z",
"postProcessHash": "33c20bd73a7a8748f16da13e403820f6f6966387d9cfea733ef5e68057ec6cc6"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.514Z",
+ "updatedAt": "2026-01-06T23:12:19.965Z",
"postProcessHash": "c6c4a678806e221fab1713a0b18cf048bbf05300f7c6c9308b94c8c30c47d297"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.516Z",
+ "updatedAt": "2026-01-06T23:12:19.970Z",
"postProcessHash": "fe0bdd6098714b57e215235c69b6041a271ff0bfd974868e95c18b57981c0836"
}
}
@@ -8861,15 +8861,15 @@
},
"6958bd474f6a4553c34c8b0c0941dc296fda94522707820277c2a5d0c951d3d9": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.518Z",
+ "updatedAt": "2026-01-06T23:12:19.972Z",
"postProcessHash": "9dab242a07567b150cbdce7d855a21d5ebbdde9ebbb61991d4d2d4e94dcdae59"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.519Z",
+ "updatedAt": "2026-01-06T23:12:19.976Z",
"postProcessHash": "098c8d43ec5bc487807f87a1cd4206ec9c2d8e3c3067e471dc14d0326bc4c134"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.519Z",
+ "updatedAt": "2026-01-06T23:12:19.976Z",
"postProcessHash": "57a5c14521091112adecddb1fe39f246022dbfcbb42091857316c42cc6437584"
}
}
@@ -8899,15 +8899,15 @@
},
"9a8eb49e54fa21c3ff613191e3d1b289989902d0fa2e4ba51397002c40e93870": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.520Z",
+ "updatedAt": "2026-01-06T23:12:19.978Z",
"postProcessHash": "266d3597b0059ee6955b0d5a84ddb285c34240690f93ba963cb973e895b61350"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.524Z",
+ "updatedAt": "2026-01-06T23:12:19.989Z",
"postProcessHash": "bfaf25829776d4049319ebbabd5c6a3537254d6aaded2c22d0e680e9258b9144"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.525Z",
+ "updatedAt": "2026-01-06T23:12:19.990Z",
"postProcessHash": "b1bd6004b9a39368ebbe1b63ed8f9eaaff34054d720e733d69021cbf3de77ce2"
}
}
@@ -8937,15 +8937,15 @@
},
"1154edcbe3fdbda2eae42bc99ecc5bb63cae52c0474d507872da2f6dc8e7f297": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.489Z",
+ "updatedAt": "2026-01-06T23:12:19.983Z",
"postProcessHash": "21b5b35c9c3d7707093d026952bafea8cc25dbf0bcff32e2aa86cb21e76afdec"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.485Z",
+ "updatedAt": "2026-01-06T23:12:19.977Z",
"postProcessHash": "5253edd586464bf07b7b09aac7caa2e58b0153736207e6f57a2100c7da6252cb"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.491Z",
+ "updatedAt": "2026-01-06T23:12:19.987Z",
"postProcessHash": "425623b37f056b00d0ac9ed37f587ef02be5d38f06c26325833f28d0297440d6"
}
}
@@ -8999,15 +8999,15 @@
},
"0ea9b1d6e66497b1210bfe5724c2f7510c6e6d56377ada39d875c6fcfe0f87c8": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.521Z",
+ "updatedAt": "2026-01-06T23:12:19.981Z",
"postProcessHash": "24d9d322ff152b6781e9c20c39fa79706b3f966c971508286211d9548fe79d08"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.489Z",
+ "updatedAt": "2026-01-06T23:12:19.982Z",
"postProcessHash": "16136b9b1cf6ad2158710f24ff23c2d1f7f074dc7c545cc94ea5557715829b74"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.523Z",
+ "updatedAt": "2026-01-06T23:12:19.988Z",
"postProcessHash": "495d3333856c47fbfe3df780982819aef2f34e47671004a21c7e95c4712473a1"
}
}
@@ -9040,15 +9040,15 @@
},
"1ab8b9b2dd396f8535d042b00b5cec585a32c8af1e180b7335a5b527f301c014": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.537Z",
+ "updatedAt": "2026-01-06T23:12:19.933Z",
"postProcessHash": "cad9579300730c9dc42950672b1419b74be585c2172ae1e9b46761a667234a5f"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.541Z",
+ "updatedAt": "2026-01-06T23:12:20.003Z",
"postProcessHash": "f955fef90827d67c8a22958b8343c9c9f1dfe4d6b5b4a73d7fc4c040ee488991"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.544Z",
+ "updatedAt": "2026-01-06T23:12:20.009Z",
"postProcessHash": "6a24e0ac0570b7d077d243728e6e911c08112a51f3ddbbf22997a4b5cffb68e3"
}
}
@@ -9081,15 +9081,15 @@
},
"9b2521d77dcb0f3a1b076db93f0fce6fa228d763d08823a4923240744a33b6e4": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.539Z",
+ "updatedAt": "2026-01-06T23:12:20.000Z",
"postProcessHash": "19cb440bb33042f18c726298f421e3819fa5b0ca02effb9d0d5be85cedc98a89"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.541Z",
+ "updatedAt": "2026-01-06T23:12:20.003Z",
"postProcessHash": "77901b25a20d95a27bcb867a38ef4a439703ca53fa9494b4c05e5867643b6320"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.544Z",
+ "updatedAt": "2026-01-06T23:12:20.008Z",
"postProcessHash": "35120c1e9cf62caebfce2e2bda8fae590f34a7eb6d3c526cbf7483ece98d2022"
}
}
@@ -9122,15 +9122,15 @@
},
"3b4d746118c03d3f1689a6484a77b1123bdb898858cfb21d0c74f7c7530e5106": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.540Z",
+ "updatedAt": "2026-01-06T23:12:20.002Z",
"postProcessHash": "158a03497834c5483055cd5500cb606f423c04906604f6c74b2ef8f9148dcbb0"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.542Z",
+ "updatedAt": "2026-01-06T23:12:20.005Z",
"postProcessHash": "3c2b6dee76f34f1e2629226e79b5f14c0ab4c6d2e3e2d2b908c29d99db767e6a"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.543Z",
+ "updatedAt": "2026-01-06T23:12:20.007Z",
"postProcessHash": "6b6b920d5ecd82b7877a7dbe1681ab8266680167e0ad75ba6deb04edf83d4477"
}
}
@@ -9163,15 +9163,15 @@
},
"1aa9d2a0f653714017d2595d9219aac463355da86f4c5a7d4c4696bbb1d4ae8b": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.538Z",
+ "updatedAt": "2026-01-06T23:12:19.934Z",
"postProcessHash": "3f48bc4b124ed5e38bd6e4cf974f80212f3b88b9d6e5a94f865c683fcb02fb03"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.541Z",
+ "updatedAt": "2026-01-06T23:12:20.004Z",
"postProcessHash": "f9c9a37d205e9ce823edc1797661247aba4f5671f1c2ca3abbca2854dd42d93a"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.543Z",
+ "updatedAt": "2026-01-06T23:12:20.006Z",
"postProcessHash": "70b7981c1bbd9db6da6a1d3373aa7a7cd5c2e77f7d949ca4e5da2b464597ee7d"
}
}
@@ -9204,15 +9204,15 @@
},
"08f9dd3e813bd43ed49aaa064fdf92cb93b24e9b4681dbe1662083f135aa7a56": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.538Z",
+ "updatedAt": "2026-01-06T23:12:19.935Z",
"postProcessHash": "5dd24fae76476de9d20ca64a3f04352c0f7810de566260ee53744ae54e1830c5"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.538Z",
+ "updatedAt": "2026-01-06T23:12:19.936Z",
"postProcessHash": "a2f32cd38d1c834c2b4da83b5fc62eba6e058c030fb2f1b09d8657793d3b702b"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.543Z",
+ "updatedAt": "2026-01-06T23:12:20.008Z",
"postProcessHash": "98d91777bf0ccb78f4c52da809daa5d58b3429bec7e47528e745662cdab00a15"
}
}
@@ -9259,15 +9259,15 @@
},
"a09d0a1e722492938d9985a7dafcbac1018303df26b2b14e58d6e331ac12d83a": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.539Z",
+ "updatedAt": "2026-01-06T23:12:20.000Z",
"postProcessHash": "544dd5f4200b70a1a9faffaf88ab001aef72abadccc1f942d5da1383e06bb58c"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.540Z",
+ "updatedAt": "2026-01-06T23:12:20.001Z",
"postProcessHash": "48c44a45ad6c6b96afc96eb3743d3c144fb8844b09bc89fcab0b3dbc71b8e544"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.542Z",
+ "updatedAt": "2026-01-06T23:12:20.005Z",
"postProcessHash": "1e0e3fe0cd240d987b48c2e297048e3e1331db5342a664ac82882f0e65daa4f3"
}
}
@@ -9353,15 +9353,15 @@
},
"dc29a4c104b62197e512c067dcdf156031c5fda3f65bb84a0f91afc84fd74946": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.534Z",
+ "updatedAt": "2026-01-06T23:12:19.927Z",
"postProcessHash": "643b52c0c25e288ff66f0df8efb62a39cb42f30fea4abe6038794af475a85765"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.535Z",
+ "updatedAt": "2026-01-06T23:12:19.928Z",
"postProcessHash": "502a415c7501b5068e4e0300deabb1228d871a134300040dcabc74dfc3667364"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.535Z",
+ "updatedAt": "2026-01-06T23:12:19.929Z",
"postProcessHash": "ec434e09915311941f03a6154b984909b367197e82154c092702706da29c4cfe"
}
}
@@ -9383,15 +9383,15 @@
},
"51bcf4d81ac47aad8b4d4d0ee489e8af7924906fc1ffbc68bc7543d1c360bfdd": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.550Z",
+ "updatedAt": "2026-01-06T23:12:20.018Z",
"postProcessHash": "4a7fdbba23db103898b33138a2510ec97a20020fcf7c7a28701dfe98145ea486"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.551Z",
+ "updatedAt": "2026-01-06T23:12:20.019Z",
"postProcessHash": "4a7fdbba23db103898b33138a2510ec97a20020fcf7c7a28701dfe98145ea486"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.551Z",
+ "updatedAt": "2026-01-06T23:12:20.019Z",
"postProcessHash": "4a7fdbba23db103898b33138a2510ec97a20020fcf7c7a28701dfe98145ea486"
}
}
@@ -9446,15 +9446,15 @@
},
"9eb4b1c9fd2bfbc7a6af633185d350b7351f86a5af3afef2185bc98640b12c9c": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.410Z",
+ "updatedAt": "2026-01-06T23:12:19.787Z",
"postProcessHash": "7269105a5a473d96105acf21079f97316a9b6860c63e3a32b5f2cfdc204db8d7"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.410Z",
+ "updatedAt": "2026-01-06T23:12:19.787Z",
"postProcessHash": "62297e67780ea8029278b720cbda340eafe167025138ea9bfa59eca38575979f"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.411Z",
+ "updatedAt": "2026-01-06T23:12:19.788Z",
"postProcessHash": "0665f9a804cb1ba298ea6933f67bb07bdf9c92042f5671c26d0c604f06d82b06"
}
}
@@ -9495,15 +9495,15 @@
},
"eaf3b675306027bf04595dca52e74dd1614edc320fafff007530df01cbb22259": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.529Z",
+ "updatedAt": "2026-01-06T23:12:19.994Z",
"postProcessHash": "a3587b20ebaaff884bc5a71b020088e7cef33d8b63b3bd39058bea7096fd54d8"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.529Z",
+ "updatedAt": "2026-01-06T23:12:19.995Z",
"postProcessHash": "4171929429febde0247535e00c036a61f0a1d8975ce6750b115cb3065f6a98a5"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.529Z",
+ "updatedAt": "2026-01-06T23:12:19.995Z",
"postProcessHash": "1a90247d6776c6905777a0fadee52f8e5ba0dadaf221f8ec6bb0fe865ca109bd"
}
}
@@ -9533,15 +9533,15 @@
},
"df2826252d76bef142551e69ee162b565fd37e0e63cdd9159fb925f1f911f524": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.533Z",
+ "updatedAt": "2026-01-06T23:12:19.998Z",
"postProcessHash": "adde6a2d0fb1ee3bca85e28e51569c0f94aab798902466f85edb4b009a7fd7df"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.533Z",
+ "updatedAt": "2026-01-06T23:12:19.999Z",
"postProcessHash": "aa37022925bf21be39c3527ab3027b797f5665fafa64c76b81afff460fcc0ff6"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.531Z",
+ "updatedAt": "2026-01-06T23:12:20.040Z",
"postProcessHash": "27f8ce2d73d590a03d8a02df646039b494324138621ea9a0f03c25c3d4448950"
}
}
@@ -9571,15 +9571,15 @@
},
"3db39b6f8aead15f7b8dbe6824e173913fabaf7b510406e0124e1b2be61ca3de": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.534Z",
+ "updatedAt": "2026-01-06T23:12:20.041Z",
"postProcessHash": "f06a5dd3558711f58c181082bf6c8676ac4e63d47e1cad464e487726526a86de"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.531Z",
+ "updatedAt": "2026-01-06T23:12:19.996Z",
"postProcessHash": "4d47fed93a4a8afac5bfdd3efd0d24555d43b456cb05c8fb5c218871a18828f2"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.532Z",
+ "updatedAt": "2026-01-06T23:12:19.997Z",
"postProcessHash": "c68b1d083baeea6d45a83f3b2ea64f5bd398928876aec7641052ae88ee479622"
}
}
@@ -9609,15 +9609,15 @@
},
"4bc387e1ff76fddd88238476d65b74ade4cc2f449ce36eb3bc8b85f770c3f490": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.516Z",
+ "updatedAt": "2026-01-06T23:12:19.969Z",
"postProcessHash": "052f957adbf550b514f0b00fb1c6ce4d1f05ee2a1e8c78c4450c7ef4515ce0c6"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.517Z",
+ "updatedAt": "2026-01-06T23:12:19.971Z",
"postProcessHash": "890f0487febc4d3a384c1258113cff8ca9f4897a21aa5f02b498f09c3c436a91"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.518Z",
+ "updatedAt": "2026-01-06T23:12:19.972Z",
"postProcessHash": "4c92ed5694ff42e4e0b3df5381b266d95cc2b19b95ff2b9ee323faed4f1b853b"
}
}
@@ -9658,15 +9658,15 @@
},
"2e6a80a1a0b8e8424f493d4c864eb475de15f72d6014090c74d48ecd2104428c": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.528Z",
+ "updatedAt": "2026-01-06T23:12:20.037Z",
"postProcessHash": "5ce156680db30f828548b0a9a8396e18e5a3af8bb9ff529252ac1fe1be223ce4"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.528Z",
+ "updatedAt": "2026-01-06T23:12:20.038Z",
"postProcessHash": "ad231391fa7696cac3044bf4464023ffe8859f8bc46a24de55c6d25a4e495ce0"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.529Z",
+ "updatedAt": "2026-01-06T23:12:20.039Z",
"postProcessHash": "e1ec1af3e9ff1ce8f3858e2cdb4ecba29883568556230feb2676ae4fbb4eb1b1"
}
}
@@ -9696,15 +9696,15 @@
},
"62faf6816da4cc899a87cf65d8cdedfb2984c52d91929ff74e1ff826d2f3edf2": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.515Z",
+ "updatedAt": "2026-01-06T23:12:19.967Z",
"postProcessHash": "b1f670acba02bced80ecf8481bd5e6a406cc70e4ee79a7a5f7efc099100d922f"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.520Z",
+ "updatedAt": "2026-01-06T23:12:19.977Z",
"postProcessHash": "44ae5fefd7f32e159d738819b1eac4526220c2eb78652fabf17345e1b33b2883"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.524Z",
+ "updatedAt": "2026-01-06T23:12:19.989Z",
"postProcessHash": "5fb3b415edf7b8e382ac7d393d5f3867c85e1adbd9ac9c6a29038ab969598edc"
}
}
@@ -9734,15 +9734,15 @@
},
"ec813e998591f0d4114ebde9d66a49f01a39db4bc9c058a1340c41d38731a456": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.514Z",
+ "updatedAt": "2026-01-06T23:12:19.963Z",
"postProcessHash": "79c7dd77372a39e9d196a3a3d40f9e8355b5def4f469e2919fb82965f86e63ce"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.522Z",
+ "updatedAt": "2026-01-06T23:12:19.984Z",
"postProcessHash": "53027cd6eda8c980f27d3105ee31e080fff8cf3e7c52f66c3cf8c698a6da648b"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.521Z",
+ "updatedAt": "2026-01-06T23:12:19.979Z",
"postProcessHash": "4c93a613201a4ab30ddb7f265310a03f56e70b0cb53860b0cb31413b79f02b6d"
}
}
@@ -9783,15 +9783,15 @@
},
"725c514c7f51a988e1a1f21ba6c44e514520aa57b3b2f7ba21b45751dcfac18d": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.525Z",
+ "updatedAt": "2026-01-06T23:12:20.034Z",
"postProcessHash": "40e11462937239fe1be662299aaf082d0eb693c84d4f87a1f7e93617b37d1ba4"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.525Z",
+ "updatedAt": "2026-01-06T23:12:20.035Z",
"postProcessHash": "8405da61923d3d0b0e0384ca625ed33901fb4282f909afad0a1f02c156f64188"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.526Z",
+ "updatedAt": "2026-01-06T23:12:20.036Z",
"postProcessHash": "82548bec5d746f41292cf2fc1449753856ce64e8ee5ab2186658edb2373af083"
}
}
@@ -9821,15 +9821,15 @@
},
"02a3f8a9c2b7bed0ca12b135d6610f9dd0567e2045b9486068c3fcc46e5e7b9f": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.476Z",
+ "updatedAt": "2026-01-06T23:12:19.889Z",
"postProcessHash": "9a95b5516fce01f14489a297d66bbca47b91f015d8332ce935f6e3302a3fbcd1"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.516Z",
+ "updatedAt": "2026-01-06T23:12:19.968Z",
"postProcessHash": "00e8294e32af03a56d151ca0fc87fd279d476d3bcca0ce5c26d509ecedf60ce3"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.518Z",
+ "updatedAt": "2026-01-06T23:12:19.974Z",
"postProcessHash": "bd2e02bcf312fa532b075d1b76a9166b8815072855d47d9d2ed6f8c440ce2227"
}
}
@@ -9948,15 +9948,15 @@
},
"68102f46c8ccd3a6f21237dbd54f26e792281cccf6c3b29ae34b1b9f7a814886": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.547Z",
+ "updatedAt": "2026-01-06T23:12:20.046Z",
"postProcessHash": "7aa6251751b9a452052df1ea6087ddbd8ef1c09c90e539fb56211e95781589fc"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.548Z",
+ "updatedAt": "2026-01-06T23:12:20.047Z",
"postProcessHash": "6eea2e36096e1a8fe3bf974af729006d6055208f2a49e79bb17ebb95d015f87b"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.557Z",
+ "updatedAt": "2026-01-06T23:12:20.048Z",
"postProcessHash": "e88c6cdd095e73ea7688b611470d6471c34a6dfe2a7feb7b4556cd29ee3ec29c"
}
}
@@ -10000,15 +10000,15 @@
},
"b85bb5007e7deb7865d5b813a2c0c5ec688641c4b13448a178740389da412283": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.536Z",
+ "updatedAt": "2026-01-06T23:12:20.042Z",
"postProcessHash": "0c9882ea6d3ae01dc8e6353df56cccfc7e9f14c693b8f4b36faa7ff1e496a5ae"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.536Z",
+ "updatedAt": "2026-01-06T23:12:20.043Z",
"postProcessHash": "fa94ce937193dabe077a20a3de4dc18090bc1aab03488207448b489737ebdab7"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.537Z",
+ "updatedAt": "2026-01-06T23:12:20.045Z",
"postProcessHash": "9d1a036f1027d5108e7803529d3acd5348a1443ca061a4f7543a5d0479b66f40"
}
}
@@ -10038,15 +10038,15 @@
},
"d6087277997107007f0e8bb1fa131196a7db7e155e4fff201da51c38c12cdea4": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.530Z",
+ "updatedAt": "2026-01-06T23:12:19.996Z",
"postProcessHash": "691bf0ea140a4450f388147e38a4836c2e209f6cccfa6e7e9d681ec6f9b1e3c0"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.532Z",
+ "updatedAt": "2026-01-06T23:12:19.998Z",
"postProcessHash": "d6686de41fc374eb6f0fd40a27da93376cea048f4418896693752a77c0ed0c3b"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.523Z",
+ "updatedAt": "2026-01-06T23:12:19.985Z",
"postProcessHash": "d65a25d2af4c6a4b995a3a6b43f1b8a89e4a9cd54b8b761dd4be2cf10fd31bc3"
}
}
@@ -10090,15 +10090,15 @@
},
"e1b32efcb38e913a8487019173dfd90bb9cf940c6c9f730cee2615be52317c34": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.504Z",
+ "updatedAt": "2026-01-06T23:12:19.943Z",
"postProcessHash": "526307ad9532ca03deddb1755bcfa897847b0f69b69b352530101fc7a7e048c8"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.505Z",
+ "updatedAt": "2026-01-06T23:12:19.944Z",
"postProcessHash": "76aaaa777e5c23fdef78510083cd76e505025c7dbac3789fa4c969c1b60f364f"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.505Z",
+ "updatedAt": "2026-01-06T23:12:19.945Z",
"postProcessHash": "178208dead679f2bd66b1e88a7a7f2d6f80042cca480096f512182e57a75e4ac"
}
}
@@ -10128,15 +10128,15 @@
},
"b72d2b9d9ef504cbfecd6422d202a23f54cb213b4a6c7fbe372d2fe6c315757d": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.483Z",
+ "updatedAt": "2026-01-06T23:12:19.973Z",
"postProcessHash": "bbf4b3fc2fee65a6334d5b66c1603b7b6219e142b93e3db1fd55c60e81cc4fee"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.490Z",
+ "updatedAt": "2026-01-06T23:12:19.987Z",
"postProcessHash": "a2d361d2756d7fe746e60b623d07c14d40ae7115aaed3744a6540574ec8c2427"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.490Z",
+ "updatedAt": "2026-01-06T23:12:19.986Z",
"postProcessHash": "45babf5a62e66b6b4e205ccf73a62e99a96ed2c5c3062e56c1a45a8ec803e8b0"
}
}
@@ -10183,15 +10183,15 @@
},
"6203968c11808e9217382c2ff8ece2e89ef761438a04be4b9919c500293c8661": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.407Z",
+ "updatedAt": "2026-01-06T23:12:19.781Z",
"postProcessHash": "903acea913a7e2907ec647d60e1df407e72177f890754324a281d08dde08b10d"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.408Z",
+ "updatedAt": "2026-01-06T23:12:19.781Z",
"postProcessHash": "fa467a9d8c0a6148eed9f8618bc0f18992a24c0bfe7c6b31f917cec5327ca7a9"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.408Z",
+ "updatedAt": "2026-01-06T23:12:19.782Z",
"postProcessHash": "1eb037db59c7b2cf706d41ddd17ebf39f762684b2408d06bd6b0b05a8bd9e62e"
}
}
@@ -10213,15 +10213,15 @@
},
"7495e3fb569b2c03c70be9168321c853593529b80da8d66d8168318b9c9d859a": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.420Z",
+ "updatedAt": "2026-01-06T23:12:19.807Z",
"postProcessHash": "0e6d023e6d304ef54fca436590806c65ef75fd69f39da00b7f62c105eb0016ad"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.421Z",
+ "updatedAt": "2026-01-06T23:12:19.807Z",
"postProcessHash": "aa61f4a8fc9c06c889f7b43ea17491303a0103c334778e7e109857a7eee65864"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.421Z",
+ "updatedAt": "2026-01-06T23:12:19.808Z",
"postProcessHash": "ba25dabff2e908bf4a1c11b73cfe18d65a0aae8a288f6dae67e481f8ae9a739f"
}
}
@@ -10229,15 +10229,15 @@
"5ee2c22c5f816bd2e9ccb18534d94c7d2d0d1fd48d15aea7d344871cc05d6b5d": {
"ab26030a2677e7aee15a1962ed36cc8690f9395c1234a20e05071c72dccaff07": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.351Z",
+ "updatedAt": "2026-01-06T23:12:19.658Z",
"postProcessHash": "0e15065c7b17dd0473d4b62471e9b03f672d35c31958ff503b92faad6666bff8"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.352Z",
+ "updatedAt": "2026-01-06T23:12:19.660Z",
"postProcessHash": "df09cadfdb7957655bab1c4ead21eead119120f5c00be55289bdd0365bfc4336"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.353Z",
+ "updatedAt": "2026-01-06T23:12:19.664Z",
"postProcessHash": "43e517d5e0a0de32723b2715c99da4b2a3808a2d5691c6f2a806e89b47eb571c"
}
}
@@ -10259,15 +10259,15 @@
},
"e227008fbfc2b248344db88124c0887dc0ed1b50759b82aed634330fb78ab4d9": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.413Z",
+ "updatedAt": "2026-01-06T23:12:19.793Z",
"postProcessHash": "28db95563146a39627599fa1a98b3b4994023b84fd1896963d6d0644d98869f1"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.415Z",
+ "updatedAt": "2026-01-06T23:12:19.796Z",
"postProcessHash": "830aff23f078fd4b0505218f3b0a75da64a927f0a839b6c08f04186782b19097"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.415Z",
+ "updatedAt": "2026-01-06T23:12:19.796Z",
"postProcessHash": "c5d99f786cf9dbcb6630a7e8328757c065ae367c3bd003e84f8465b7dd3346a1"
}
}
@@ -10286,15 +10286,15 @@
},
"ad85637acb660ea365744e7a0e4d5c9af14dd3d61d032245a55b39a025dc998b": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.403Z",
+ "updatedAt": "2026-01-06T23:12:19.773Z",
"postProcessHash": "506d3775ab05180d214e1b5e68df61d13b9ed5535e611f67768174342a9f7d24"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.404Z",
+ "updatedAt": "2026-01-06T23:12:19.773Z",
"postProcessHash": "e6737aab81793e80f4f020d394525c37393bd1a238333b47860214cc059263d0"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.404Z",
+ "updatedAt": "2026-01-06T23:12:19.774Z",
"postProcessHash": "108c972a2b87e87349c9e9923f6a8faa88a8bfb0c609a4734249924ba89e35b2"
}
}
@@ -10313,15 +10313,15 @@
},
"6f7ef54468b886002503e049fe014aeecf19dbca85d972b5cc1aeb4f5cbcd259": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.474Z",
+ "updatedAt": "2026-01-06T23:12:19.809Z",
"postProcessHash": "bce9ca3d9a41150ad46e918a80a7256a50eaa19ccacd9694c94fe5df2247f408"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.474Z",
+ "updatedAt": "2026-01-06T23:12:19.809Z",
"postProcessHash": "6b2e087de45b6e4d6f7c563db270e9ea76d5ba2d98a96f0b2c5aab17dbf9f94c"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.475Z",
+ "updatedAt": "2026-01-06T23:12:19.810Z",
"postProcessHash": "88cdf8ccb3a9971a65a7449e35a0b4253033768eea0c85984e1982486b487797"
}
}
@@ -10329,15 +10329,15 @@
"be5e892f6c4f67bd81fe0cb2eb2c6926b3e1aed86319263030ba6de5aef81643": {
"2d45a98943adcf6323d8b9bd963e1a68b9c6d584fe97c7f01e9a6f37e4268f9c": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.494Z",
+ "updatedAt": "2026-01-06T23:12:19.913Z",
"postProcessHash": "38d1c711bb53d9d53bb702884b3a89e217354af6ffa2a61b056144094b266019"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.492Z",
+ "updatedAt": "2026-01-06T23:12:19.910Z",
"postProcessHash": "53d7fa6c39475cb74c45005d59a84607bcfa431872c4e186b32ed2e6e66c928a"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.495Z",
+ "updatedAt": "2026-01-06T23:12:19.916Z",
"postProcessHash": "5e800c917820203f87bab698aa0de6ea1e81629b29396f6980397c7af109d0a3"
}
}
@@ -10345,15 +10345,15 @@
"77ea8b1235af73346c74a76d9c806e3bb004764d3a0d8aa467b0cd38785523c1": {
"11572668be0bfa5784f337f06ff8b84bd549b35ba8986840db7e54a31ffd864f": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.460Z",
+ "updatedAt": "2026-01-06T23:12:19.860Z",
"postProcessHash": "d05b0d9edb9bedcbd421359ab56cc53319494a62c9916cc80ae3a2b7ddc4e3ee"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.439Z",
+ "updatedAt": "2026-01-06T23:12:19.834Z",
"postProcessHash": "d1d19e3a81ec8b70cee2253ac3ad9021ca441876e0f0b00913247ec03c0274bd"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.458Z",
+ "updatedAt": "2026-01-06T23:12:19.857Z",
"postProcessHash": "a04e6aba520c93cb0f509c13137efe68b1ecd7415eaca5054638ffd74f9844c7"
}
}
@@ -10361,15 +10361,15 @@
"855860e7e2c378e03eeadd8be43d2e9195684a4803997d926d976b0ca4a456f3": {
"c8947be6ab36b3f78b0e6b92140f2cbbf957e4dda05b552df8d7a165e6c3943f": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.350Z",
+ "updatedAt": "2026-01-06T23:12:19.655Z",
"postProcessHash": "b9e1c0ea328bc8007066439cda482c4a9afc5e311613da3a01c1aac272fa039b"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.350Z",
+ "updatedAt": "2026-01-06T23:12:19.656Z",
"postProcessHash": "4d75060075656650e3912b90c0992b2dfb1127968f782c0577a593d9b4fce22e"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.351Z",
+ "updatedAt": "2026-01-06T23:12:19.657Z",
"postProcessHash": "5f119e31ab9fa3f6bdac6775d876168bfc9d925e1820a1b31c660a192204c4e2"
}
}
@@ -10405,15 +10405,15 @@
},
"cc77bc43455772442376eec0dfcf4ad87b875c1c053848a6a44735c676c26757": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.544Z",
+ "updatedAt": "2026-01-06T23:12:20.010Z",
"postProcessHash": "56b11fe8e42a42387f76f57c0b91d8cd55733ae9e900d4b5a8119bd1f00464d2"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.545Z",
+ "updatedAt": "2026-01-06T23:12:20.010Z",
"postProcessHash": "e9f0d646e2713d6c2649d44df9f9dca159b62a69a762bbc865dd27b72d0fce92"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.545Z",
+ "updatedAt": "2026-01-06T23:12:20.011Z",
"postProcessHash": "6e884ac1551e6b4d015896df163b034304d7c1209d0c86f740b6c86ad7ad440f"
}
}
@@ -10446,15 +10446,15 @@
},
"9da429298db13c7a5d5e5785d737157adb7ceb8a8e62f690ce93d1276d0daf19": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.500Z",
+ "updatedAt": "2026-01-06T23:12:19.930Z",
"postProcessHash": "f595ded82601ffbd66c2de293c879c5053d3682d709a52c1760b0613ab80a2c5"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.500Z",
+ "updatedAt": "2026-01-06T23:12:19.931Z",
"postProcessHash": "f3dfe27159132fb19f4127e455136c9c6b514561ce522121657f57c99ff600c0"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.501Z",
+ "updatedAt": "2026-01-06T23:12:19.933Z",
"postProcessHash": "b7e7a71bbb391b2be21abd08729602ce00dfec3629b7e3987a5e8af30623b688"
}
}
@@ -10476,15 +10476,15 @@
},
"53b5875c23ebd3fc6ab3e9fad6f660b34cf7874b97fd4d2abbceb0b7fe555999": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.416Z",
+ "updatedAt": "2026-01-06T23:12:19.799Z",
"postProcessHash": "1dd6e21695b6516e0355af6f151e9ccc72ffff811290a7a42d4fa998b95affcc"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.417Z",
+ "updatedAt": "2026-01-06T23:12:19.800Z",
"postProcessHash": "420c93371057865a79359c203f469080a820f68a3e262ce769826211d7566162"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.417Z",
+ "updatedAt": "2026-01-06T23:12:19.800Z",
"postProcessHash": "8b6ecee2a69b91fa777ab51b93f9c0958763f7ecc95b901666c384c9364f8630"
}
}
@@ -10492,15 +10492,15 @@
"9f724bcc4d486aa89f9c4e82c6e29422eb310398ae25cb142dacea64acf986b9": {
"ec0fbd61c3b28b15222a91c56220501a2b86ef5978bfb81db7207e9ca891b07a": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.460Z",
+ "updatedAt": "2026-01-06T23:12:19.861Z",
"postProcessHash": "477b0b97f30cb4534c7bad2fc0eb393dc166eefdae7c063dca631434f81ce334"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.463Z",
+ "updatedAt": "2026-01-06T23:12:19.865Z",
"postProcessHash": "852610162c25a79a86c3463eea02da8162bc0950da5c10e3a2ca5abbb4a3ce62"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.463Z",
+ "updatedAt": "2026-01-06T23:12:19.867Z",
"postProcessHash": "666adb45cc1ef7701db118a622a04aa960d7c51d809a9c48cfa64ff331c93356"
}
}
@@ -10522,15 +10522,15 @@
},
"33ea9e1d25a0693943ddbfe1b935b673d368c09332e64560d8399b40ce6938f3": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.473Z",
+ "updatedAt": "2026-01-06T23:12:19.885Z",
"postProcessHash": "8e8ca64ae7fb757a78534a349849a1c9fe7551719d59ad5af5c01dac5efb3400"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.473Z",
+ "updatedAt": "2026-01-06T23:12:19.885Z",
"postProcessHash": "29fa2f4c36512149cc2da98f151fc56f6577182f1cee1fd9c6d854b2df29e232"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.473Z",
+ "updatedAt": "2026-01-06T23:12:19.886Z",
"postProcessHash": "d61de29372a14607107cbeb3781d2f0a5f9cc6db5a493b1766a6693b0f872f89"
}
}
@@ -10552,15 +10552,15 @@
},
"77f2c6f26022f2427fabf8811821459edf20420a3c34d90ddae03000de77d642": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.509Z",
+ "updatedAt": "2026-01-06T23:12:19.953Z",
"postProcessHash": "255e638e1b987b9387bea0c4661383c6ada10d96157e5c048c85db64cdf89023"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.510Z",
+ "updatedAt": "2026-01-06T23:12:19.954Z",
"postProcessHash": "49ea24fdbec6f2a8ddad59e2b642b8d0d6cf1ea19f60b183ccd7721587b3eb43"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.510Z",
+ "updatedAt": "2026-01-06T23:12:19.954Z",
"postProcessHash": "d4a00fd2b0d20896a03f7c1220d2560290d8d11d8615e42a54f218eb8fa8c123"
}
}
@@ -10568,15 +10568,15 @@
"a9865368a7fc7fa33065e35b2343f10d08fb79d65205435403d0a163a3044713": {
"1c56f57c0f6b8d7b90f241db9e06021b4e478d16e1964f7da423eca5607f49ab": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.367Z",
+ "updatedAt": "2026-01-06T23:12:19.699Z",
"postProcessHash": "f8950ed9763af98c37633d3f4c8053c6d7dd7cb9c813e71a3e34b1896826be83"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.368Z",
+ "updatedAt": "2026-01-06T23:12:19.700Z",
"postProcessHash": "97b5fa380e09f9fcaf886daf65d8c81e1dd70381be8d74b827fb95da2f4c2f49"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.369Z",
+ "updatedAt": "2026-01-06T23:12:19.702Z",
"postProcessHash": "49bba02fcbc3adbe95b13e3246d6d3be771bee716f7db0855564e990e43a1a76"
}
}
@@ -10612,15 +10612,15 @@
},
"f1f3d77cb3dde2a5cad759683f1f02b5315176efed51d9d1a65dee96c89a79d3": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.375Z",
+ "updatedAt": "2026-01-06T23:12:19.711Z",
"postProcessHash": "d6715f3ea919ffee195bc31b89a9117dcbcf4a62c80757721c2954531df63085"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.376Z",
+ "updatedAt": "2026-01-06T23:12:19.712Z",
"postProcessHash": "6c8291ffba2e53d7591714b65d30e84be1865e0d2d7e4a137c899408376edffd"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.377Z",
+ "updatedAt": "2026-01-06T23:12:19.713Z",
"postProcessHash": "f11c6f8d78d7b0195b02b0c456f41e5ccf16be50d77fe97ac88bdfabc6b0edfc"
}
}
@@ -10642,15 +10642,15 @@
},
"f2a306496a4aaeafdd44dfc757791400893e09c75ecc2ba9a98c6ce79ecbac56": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.372Z",
+ "updatedAt": "2026-01-06T23:12:19.706Z",
"postProcessHash": "b54cf1a4491d370e24a49c287b86e1d3a42dc2664a3d5c46ad0c533d366936ed"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.373Z",
+ "updatedAt": "2026-01-06T23:12:19.707Z",
"postProcessHash": "4dd8fb82c4397b8554ee04576f6d4bac49155ebcae2e833789fd12cd3b73e48d"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.374Z",
+ "updatedAt": "2026-01-06T23:12:19.709Z",
"postProcessHash": "e00b3861126c6829ac13e165e160975b1e4e7a594b9a01f4c2049ed862c18d86"
}
}
@@ -10730,15 +10730,15 @@
},
"7949bbd880c432391600bc91f84c2315ced2846910ba31820cb6174037065d95": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.407Z",
+ "updatedAt": "2026-01-06T23:12:19.780Z",
"postProcessHash": "813bbc23aface84de070bad50c3012c704c50363c68ccb2376d4654f8d24b25f"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.362Z",
+ "updatedAt": "2026-01-06T23:12:19.683Z",
"postProcessHash": "20566504275e173e1a9afd6eb26a58cd249518e93b68a29bb7f01a4779acc622"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.407Z",
+ "updatedAt": "2026-01-06T23:12:19.780Z",
"postProcessHash": "a594a695757f69e445fdb0655d39ebb0e35283c6d6901342e8e25adc1c32d629"
}
}
@@ -10774,15 +10774,15 @@
},
"141484ad03a1ae4c1416296e959b4b910bc1ddd21827844fa845fffcbff765d4": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.359Z",
+ "updatedAt": "2026-01-06T23:12:19.678Z",
"postProcessHash": "7659cf5d3622925123c7524f0c8b54573a88ea53f24809f7892c9f7d34078637"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.359Z",
+ "updatedAt": "2026-01-06T23:12:19.679Z",
"postProcessHash": "3f5bf5ff7d8741efacd7111163b43af16b2dddd1e3aec5ef22896804ed7d035d"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.360Z",
+ "updatedAt": "2026-01-06T23:12:19.679Z",
"postProcessHash": "cfc5ad2f0cfc3aa7e1e337da5dc518d5db6cfa4d3068f63fe75d9d90f326da3a"
}
}
@@ -10860,15 +10860,15 @@
},
"469d41967b8b7d422df7c02c27c3a63759571a4198bd73ec67ab08831abbe2ab": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.361Z",
+ "updatedAt": "2026-01-06T23:12:19.681Z",
"postProcessHash": "34a7063d4b67cdcf534616d327084c26000e63a84d4dea097155c85e48a24ccf"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.361Z",
+ "updatedAt": "2026-01-06T23:12:19.682Z",
"postProcessHash": "2edf998e7594d0d0ae4202b233e4c41a8632358c4cdde535fc1734d75185805e"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.362Z",
+ "updatedAt": "2026-01-06T23:12:19.683Z",
"postProcessHash": "62fd9b6f180855d327b8b628b351a8edad113e2320211cdf28504fdb6b8e4a0f"
}
}
@@ -10876,15 +10876,15 @@
"edb50f189db7d5bfeac8f5d547b43e347fde48c9ea7d5e24ad491e9ae61ab75b": {
"00c09e65a79f72278711c9fb568e4e1f395e409f4598d44e32c21dc3116da422": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.408Z",
+ "updatedAt": "2026-01-06T23:12:19.783Z",
"postProcessHash": "395acb5224ac7bb78ec6cebf58f580beb49730e83685f45b43ff1b6abe810917"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.409Z",
+ "updatedAt": "2026-01-06T23:12:19.783Z",
"postProcessHash": "ee86c7337fe5fd18652f517a6fd69df62058a3805a009a94e9e7a54d6473b32f"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.409Z",
+ "updatedAt": "2026-01-06T23:12:19.784Z",
"postProcessHash": "2dbf13d1f2e674684e1ff5c412bfc3fd5e8937c9fe07114d6bc3849c70fd80c5"
}
}
@@ -10892,15 +10892,15 @@
"6a7f5ca4c02df80ebdb424c28108900f31e2948a2eac34febbf1af9b5be6ab3f": {
"9daae89daa62a33c6822206d93c8c882ba2bd77553b093fa661822ec1f5e265c": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.409Z",
+ "updatedAt": "2026-01-06T23:12:19.785Z",
"postProcessHash": "83669cbbb749426482fc3a380778ee9c49719f0e6a562716e18c1decaf7b446e"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.409Z",
+ "updatedAt": "2026-01-06T23:12:19.785Z",
"postProcessHash": "993dad5dd15dc6fc804df496ab5ed1083e079fb20b64b52bb03ac1c60b02a539"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.410Z",
+ "updatedAt": "2026-01-06T23:12:19.786Z",
"postProcessHash": "d3d5458e2cfba34f8ac2066b2e9569a47ed62f7ea81529aa51d5c41b989b26ac"
}
}
@@ -10908,15 +10908,15 @@
"ff21ce384c9ed9f3867d4ca2ddacc155d70fa55a3dc2b40bcc2971d315b06dec": {
"f6cea4f10deb4dc4f5c608feb540a5fe04a6df77467ed4c44d08bb5e0187cb60": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.439Z",
+ "updatedAt": "2026-01-06T23:12:19.835Z",
"postProcessHash": "5dcefd4e7adeaa368da2365d1499105974a52d5f1c0d7ea7445f198bd63e3063"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.443Z",
+ "updatedAt": "2026-01-06T23:12:19.843Z",
"postProcessHash": "cc6ec7056e8a35bc9b96da20a3255eec4be2a066287a2f08ddd46c971af4ad4c"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.445Z",
+ "updatedAt": "2026-01-06T23:12:19.844Z",
"postProcessHash": "3b5025610d247bd48b72d1e053f4299cc0fef8079e0a295fce29740bae2dfc10"
}
}
@@ -10924,15 +10924,15 @@
"e9163acd4356ac344919e68e304db178754b2171129998e4546890bcfeb414ac": {
"c74933b013147feadf068e92d5de1ea6312ca6dd077985df9287d342d8a38eda": {
"zh": {
- "updatedAt": "2026-01-05T22:19:40.440Z",
+ "updatedAt": "2026-01-06T23:12:19.836Z",
"postProcessHash": "74704a57eddc553187dd557b4855896a8d41a30789ec1a6568f85227838809a6"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.449Z",
+ "updatedAt": "2026-01-06T23:12:19.850Z",
"postProcessHash": "751f52d704b398dbf012f8fbdc667549a411698836baee58058007f3413fe116"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.455Z",
+ "updatedAt": "2026-01-06T23:12:19.852Z",
"postProcessHash": "977b7670260a87fc371fcfe10f5f99fe153f3961c8ac2fe9b1bada529fac2440"
}
}
@@ -10954,15 +10954,15 @@
},
"a8930b690675d6766f3607e9d0717df05128da6a9164f7871ea6ed3c1ab1d21e": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.503Z",
+ "updatedAt": "2026-01-06T23:12:19.940Z",
"postProcessHash": "81d69467e3af0c243b572b3d4ada162c00c5491ce24cb4860d2f05bab6815be0"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.504Z",
+ "updatedAt": "2026-01-06T23:12:19.941Z",
"postProcessHash": "e4b52f619a0bc2800cd9b74094a4fa4a6257845b7a631908215c38ccdcbbf65b"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.504Z",
+ "updatedAt": "2026-01-06T23:12:19.942Z",
"postProcessHash": "46961cfd5ba04ef9e0e03b493e24e15e36ee21170307b30b216f33898194fca8"
}
}
@@ -10970,15 +10970,15 @@
"de043ae6ffc34e1a40c6b0df4209af7c8790c0c228cb4b59f4753d9840d639e1": {
"a3e49b51edbc8b4146f19c9aca9db518265cacf3c97e6f57ef006c766ae8c054": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.440Z",
+ "updatedAt": "2026-01-06T23:12:19.837Z",
"postProcessHash": "fbab56064253bcb4817b39091060349c90902b417a55ea0b2d361bb147674c4c"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.442Z",
+ "updatedAt": "2026-01-06T23:12:19.841Z",
"postProcessHash": "6e36e8b7265cec9d82ee9389c78da98db45dc253eb97efcbd656f5e6459663e5"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.445Z",
+ "updatedAt": "2026-01-06T23:12:19.844Z",
"postProcessHash": "a98a8d484ccd62f1f9fb0db5191d6acb3a6d33bd356a43932e928d714edcea8b"
}
}
@@ -10986,15 +10986,15 @@
"60e5c15d1c871e702b497d01464f021ac10a70a80ff6527b77c428c825fe2511": {
"f8414a6ca1b709a7c92e226a51646ed0aa81640cce9390320311ef33161aa00f": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.441Z",
+ "updatedAt": "2026-01-06T23:12:19.838Z",
"postProcessHash": "76495a32bb8bc91abafdcee5d9b70f69574be1cb626f0c879468ecd48ac731a6"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.447Z",
+ "updatedAt": "2026-01-06T23:12:19.847Z",
"postProcessHash": "a06fa88d3b3fd6ae2a4971c8e8684b563ba42aa38bfb5bed7b34afa4aa70780d"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.449Z",
+ "updatedAt": "2026-01-06T23:12:19.849Z",
"postProcessHash": "8652b0a50e0a241f3eb6cf4132ac3b56bce8821b33491c10a81ff32c44768753"
}
}
@@ -11002,15 +11002,15 @@
"0883f89772eee2faee682a84fa564a90e4c0fc1fa7b5f0bacc1ca5e337c5b465": {
"e4e0b074e7d08eb0827fa2f11fcf80fa5b26e77b96eb125ef8031c73a1b78fd4": {
"fr": {
- "updatedAt": "2026-01-05T22:19:40.441Z",
+ "updatedAt": "2026-01-06T23:12:19.839Z",
"postProcessHash": "8f09b437aa56d13cfa8a28e14e8afc38a3634ad101eda7fdbcf1fb4673d01c20"
},
"es": {
- "updatedAt": "2026-01-05T22:19:40.441Z",
+ "updatedAt": "2026-01-06T23:12:19.840Z",
"postProcessHash": "5406ed895debf3d4504bc80726fc22f9aa66d94ba50611f37367b591f2290c84"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.454Z",
+ "updatedAt": "2026-01-06T23:12:19.851Z",
"postProcessHash": "6ecf69fada9cd8eb411832c6f0665f5ebd6a3d00fca117ff8c99473f2899cd9a"
}
}
@@ -11018,15 +11018,15 @@
"b75794b68d4380d36a6236c2e47bfef7d04793b48e539fae0744b97a7f334396": {
"d7d4d1554d51501e5dcae0d6e2fe3a1328049e1e1793b5597eacdf2187f5980b": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.442Z",
+ "updatedAt": "2026-01-06T23:12:19.842Z",
"postProcessHash": "2097f5867333e1bb833d16794492158e703876c3de3a3b3d7e6bfff53895c0e3"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.446Z",
+ "updatedAt": "2026-01-06T23:12:19.846Z",
"postProcessHash": "d20d48deffbad8d6472973c99f229f143c71c3c17e3853e6178ee7de1c9bd318"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.448Z",
+ "updatedAt": "2026-01-06T23:12:19.848Z",
"postProcessHash": "8152ca3c1e0840ecee68269e502ba5e27fbb5fb2bd1931c63619191181195d05"
}
}
@@ -11034,18 +11034,114 @@
"b35d9f72983b55567b557677c2f5175ab790f66c289bab55571d1a996e18054c": {
"661697f7f76ab817fdf9c105db138545ee2c86eb4a6049672eea069e99408921": {
"es": {
- "updatedAt": "2026-01-05T22:19:40.446Z",
+ "updatedAt": "2026-01-06T23:12:19.845Z",
"postProcessHash": "a61cba08d1820f78a6320fc1efdc525fdb47f21380f543842e6949693e5fcdf0"
},
"fr": {
- "updatedAt": "2026-01-05T22:19:40.448Z",
+ "updatedAt": "2026-01-06T23:12:19.847Z",
"postProcessHash": "1e1950c9f7b2fddf25e304a5a2b61ec7beaabb0df9e2220e8feb0864493f03ad"
},
"zh": {
- "updatedAt": "2026-01-05T22:19:40.454Z",
+ "updatedAt": "2026-01-06T23:12:19.850Z",
"postProcessHash": "d70a5ecd5fd1bbe452112fe8f2dc29d03434fbfd4e6d611a870fcd5241d13a9e"
}
}
+ },
+ "59c1174929bbc9e460d5311b3bbef863f7c42b420fef8a8ad095e8346e705125": {
+ "94edd03465ec1aafe7e5aef96d9615fcbc2df5a86c1a3d781cca53de885a5850": {
+ "zh": {
+ "updatedAt": "2026-01-06T23:12:19.961Z",
+ "postProcessHash": "0d4eea7c6af3c1bfe7cbb6304ece9d4ba92db353a2a6c71558a71ea2734fb0a3"
+ },
+ "es": {
+ "updatedAt": "2026-01-06T23:12:19.962Z",
+ "postProcessHash": "4434d4ed95cef34c6f66ba15385ee7cadd3f8832a61457be8aa1f750887d9d66"
+ },
+ "fr": {
+ "updatedAt": "2026-01-06T23:12:19.962Z",
+ "postProcessHash": "ec97328dfe0885b62183a976519eecef9037baeb1d55f9decc08d4ec168a91d4"
+ }
+ }
+ },
+ "39b5101396045c5b73456812ce9a8b575e275c92fbd122d70a2340201793b848": {
+ "82b932c7bbf2320d56e877e0e903363da653d0299b9423864afa2433c3ec9018": {
+ "es": {
+ "updatedAt": "2026-01-06T23:12:20.022Z",
+ "postProcessHash": "6ddd3a20f48f2cfbc545777435c1847f594a2f3d8770ba0e45f6fd112b3b1eb9"
+ },
+ "fr": {
+ "updatedAt": "2026-01-06T23:12:20.022Z",
+ "postProcessHash": "309b058ec907c3ffc809056159c4bedfbd7c66f6b9b1f13b7a12e19060fc17d3"
+ },
+ "zh": {
+ "updatedAt": "2026-01-06T23:12:20.025Z",
+ "postProcessHash": "7f6bb5b040c7366a2d04b8fc06ebefc75ec674894ba058e4b817d690ae38e341"
+ }
+ }
+ },
+ "6a327e07d83104cfc6dc13390f43eda565b80d3175c51cefe275fa8d8069ca31": {
+ "b1e4d3e3a64c7a12748ba7e78c97304f846f1cf3a17a98dacd63abd4c48119c0": {
+ "zh": {
+ "updatedAt": "2026-01-06T23:12:20.023Z",
+ "postProcessHash": "d78c1a5442db3fa2e2cf1faeb7696c635bfb1d56ac4060170baa1652c8301923"
+ },
+ "es": {
+ "updatedAt": "2026-01-06T23:12:20.024Z",
+ "postProcessHash": "39d37217049f7d17bc5e40c780c7d1b46dd4794708cc32ed9b39dfb0b398c3d7"
+ },
+ "fr": {
+ "updatedAt": "2026-01-06T23:12:20.026Z",
+ "postProcessHash": "0e8d1b254fcb18a62932eedca515a753023ed6255fb44e96804a52d1f09be581"
+ }
+ }
+ },
+ "51ea497b06b55c85fcec69c87bf51893a9d698b70b374e6a7c524a4871b2b61b": {
+ "ee192e8cbc4ca09dc9933f8b83b2d8f4a63e16cd77a0962afe63ad9082d55c41": {
+ "fr": {
+ "updatedAt": "2026-01-06T23:12:20.025Z",
+ "postProcessHash": "e806fb36d38ed7c5f5248a3d8593f51621a094cc0da6518b13349f68b847f709"
+ },
+ "es": {
+ "updatedAt": "2026-01-06T23:12:20.049Z",
+ "postProcessHash": "633c4ba3cdde494d3dabe448dccf755e618ad87b38558edc90af55da2f958ae3"
+ },
+ "zh": {
+ "updatedAt": "2026-01-06T23:12:20.052Z",
+ "postProcessHash": "6689795204a01caadd7b0b24dfc26f12af07fa17e7d7303b9df0ee3fc8dc6f10"
+ }
+ }
+ },
+ "3f73de9674a75ac971ee562c1ef63ca1e5af36173f682e6076fc62e7d0dc6042": {
+ "ff63f3397fcfb0316f1a23b27835b0fb30ab8c89e6a46396bbe501e98ae3168a": {
+ "zh": {
+ "updatedAt": "2026-01-06T23:12:20.050Z",
+ "postProcessHash": "c43e6be7f3f083642172d072b6def10302397c9a80750be1a827f00d310f10c5"
+ },
+ "fr": {
+ "updatedAt": "2026-01-06T23:12:20.050Z",
+ "postProcessHash": "77d15e6833039a5a8263eca1d51fa4d3e372a99f1788aaf8b5fbb43e26e32a08"
+ },
+ "es": {
+ "updatedAt": "2026-01-06T23:12:20.051Z",
+ "postProcessHash": "ccb980f26ff6726ee770aae981835ccf306526ea57b057b4409ec057065e95af"
+ }
+ }
+ },
+ "4052465edf41c7e76b3db254928f8bcc4d02d540fd744c73964133d191424f81": {
+ "bf66e9f24e2eba992987cd68282aefd04f485fad3633105fa4bdc1a074badcc4": {
+ "es": {
+ "updatedAt": "2026-01-06T23:12:20.053Z",
+ "postProcessHash": "ec77e00a59df69a6efb703df12a2d35a3edcc6c196b4a2feccee4664e64ddbf1"
+ },
+ "zh": {
+ "updatedAt": "2026-01-06T23:12:20.053Z",
+ "postProcessHash": "c2f14788b374b9b2b1e83a626e4a1c7f794d0e264825bfb4d75792c1504aaeec"
+ },
+ "fr": {
+ "updatedAt": "2026-01-06T23:12:20.054Z",
+ "postProcessHash": "a053c9fc62006a3d3e315d6cc0a03953713f38411b45881ce7c8ec2108971b5c"
+ }
+ }
}
}
}
diff --git a/snippets/es/test-snippet-a.mdx b/snippets/es/test-snippet-a.mdx
new file mode 100644
index 000000000..3be1983e7
--- /dev/null
+++ b/snippets/es/test-snippet-a.mdx
@@ -0,0 +1,3 @@
+Este contenido proviene de **test-snippet-a.mdx**, ubicado en `/snippets/`.
+
+Se importó usando una ruta relativa.
\ No newline at end of file
diff --git a/snippets/es/test-snippet-b.mdx b/snippets/es/test-snippet-b.mdx
new file mode 100644
index 000000000..76fdf80c9
--- /dev/null
+++ b/snippets/es/test-snippet-b.mdx
@@ -0,0 +1,5 @@
+export const testVariable = "¡Hola desde test-snippet-b!";
+
+
+ Este es **test-snippet-b.mdx** con una exportación con nombre llamada `testVariable`.
+
diff --git a/snippets/fr/test-snippet-a.mdx b/snippets/fr/test-snippet-a.mdx
new file mode 100644
index 000000000..ad16468b6
--- /dev/null
+++ b/snippets/fr/test-snippet-a.mdx
@@ -0,0 +1,3 @@
+Ce contenu provient du fichier **test-snippet-a.mdx** situé dans `/snippets/`.
+
+Il a été importé à l'aide d'un chemin relatif.
\ No newline at end of file
diff --git a/snippets/fr/test-snippet-b.mdx b/snippets/fr/test-snippet-b.mdx
new file mode 100644
index 000000000..fa0352bc0
--- /dev/null
+++ b/snippets/fr/test-snippet-b.mdx
@@ -0,0 +1,5 @@
+export const testVariable = "Bonjour de test-snippet-b !";
+
+
+ Il s’agit de **test-snippet-b.mdx**, avec un export nommé `testVariable`.
+
diff --git a/snippets/zh/test-snippet-a.mdx b/snippets/zh/test-snippet-a.mdx
new file mode 100644
index 000000000..953f37738
--- /dev/null
+++ b/snippets/zh/test-snippet-a.mdx
@@ -0,0 +1,3 @@
+该内容来自位于 `/snippets/` 中的 **test-snippet-a.mdx**。
+
+它是使用相对路径导入的。
\ No newline at end of file
diff --git a/snippets/zh/test-snippet-b.mdx b/snippets/zh/test-snippet-b.mdx
new file mode 100644
index 000000000..0a31d73c4
--- /dev/null
+++ b/snippets/zh/test-snippet-b.mdx
@@ -0,0 +1,5 @@
+export const testVariable = "test-snippet-b 发来的问候!";
+
+
+ 这是一个 **test-snippet-b.mdx** 文件,包含名为 `testVariable` 的命名导出。
+
diff --git a/zh/folder/local-snippet.mdx b/zh/folder/local-snippet.mdx
new file mode 100644
index 000000000..05623675e
--- /dev/null
+++ b/zh/folder/local-snippet.mdx
@@ -0,0 +1,5 @@
+export const localMessage = "此代码片段与测试页面位于同一文件夹下!";
+
+
+ 这是 **local-snippet.mdx** —— 同一目录下的一个同级片段文件。
+
diff --git a/zh/folder/nested/deep-relative-test.mdx b/zh/folder/nested/deep-relative-test.mdx
new file mode 100644
index 000000000..180b381ff
--- /dev/null
+++ b/zh/folder/nested/deep-relative-test.mdx
@@ -0,0 +1,95 @@
+---
+title: "深层相对代码片段测试"
+description: "用于验证多层嵌套相对路径代码片段导入的隐藏测试页面"
+---
+
+
+ # 深层相对代码片段测试
+
+
+此页面位于 `/folder/nested/deep-relative-test.mdx`,用于测试多级相对导入。
+
+---
+
+
+ ## 测试 1:上移两级目录(`../../snippets/`)
+
+
+使用 `../../snippets/` 从 `/snippets/test-snippet-a.mdx` 中导入:
+
+import TestSnippetA from "../../snippets/test-snippet-a.mdx";
+
+
+
+***
+
+
+
+ ## 测试 2:上两级目录并使用命名导出
+
+
+从 `/snippets/test-snippet-b.mdx` 导入:
+
+import TestSnippetB, { testVariable } from "../../snippets/test-snippet-b.mdx";
+
+
+
+**导出变量的值:** {testVariable}
+
+***
+
+
+
+ ## 测试 3:上一层目录(`../`)
+
+
+从父目录中的 `/folder/local-snippet.mdx` 导入:
+
+import LocalSnippet, { localMessage } from "../local-snippet.mdx";
+
+
+
+**导出的变量值:** {localMessage}
+
+***
+
+
+
+ ## 测试 4:同一目录(`./`)
+
+
+从同一目录下的 `/folder/nested/deep-snippet.mdx` 导入:
+
+import DeepSnippet, { deepMessage } from "./deep-snippet.mdx";
+
+
+
+**导出的变量值:** {deepMessage}
+
+***
+
+
+
+ ## 测试 5:混合 - 绝对路径(用于对照)
+
+
+使用绝对路径导入:
+
+import IconsRequired from "/snippets/zh/icons-required.mdx";
+
+
+
+***
+
+
+
+ ## 路径解析总结
+
+
+在路径为 `/folder/nested/deep-relative-test.mdx` 的页面中:
+
+| 相对路径 | 解析为 |
+|---------------|-------------|
+| `../../snippets/test-snippet-a.mdx` | `/snippets/test-snippet-a.mdx` |
+| `../local-snippet.mdx` | `/folder/local-snippet.mdx` |
+| `./deep-snippet.mdx` | `/folder/nested/deep-snippet.mdx` |
\ No newline at end of file
diff --git a/zh/folder/nested/deep-snippet.mdx b/zh/folder/nested/deep-snippet.mdx
new file mode 100644
index 000000000..f6441070a
--- /dev/null
+++ b/zh/folder/nested/deep-snippet.mdx
@@ -0,0 +1,5 @@
+export const deepMessage = "来自深处的问候!";
+
+
+ 这是位于 `/folder/nested/` 中的 **deep-snippet.mdx** 文件。
+
diff --git a/zh/folder/relative-snippets-test.mdx b/zh/folder/relative-snippets-test.mdx
new file mode 100644
index 000000000..c239a5ba0
--- /dev/null
+++ b/zh/folder/relative-snippets-test.mdx
@@ -0,0 +1,95 @@
+---
+title: "相对代码片段测试"
+description: "用于验证相对代码片段导入的隐藏测试页面"
+---
+
+
+ # 相对路径代码片段测试页面
+
+
+这是一个用于验证相对路径代码片段导入功能的隐藏测试页面。
+
+---
+
+
+ ## 测试 1:父目录导入 (`../snippets/`)
+
+
+从 `/snippets/test-snippet-a.mdx` 导入时使用 `../snippets/test-snippet-a.mdx`:
+
+import TestSnippetA from "../snippets/test-snippet-a.mdx";
+
+
+
+***
+
+
+
+ ## 测试 2:父目录导入(具名导出)
+
+
+从 `/snippets/test-snippet-b.mdx` 中导入 `testVariable`:
+
+import TestSnippetB from "../snippets/test-snippet-b.mdx";
+
+
+
+**导出的变量值:** {testVariable}
+
+***
+
+
+
+ ## 测试 3:同级目录导入(`./`)
+
+
+从同一文件夹下的 `local-snippet.mdx` 导入:
+
+import LocalSnippet, { localMessage } from "./local-snippet.mdx";
+
+
+
+**导出变量的值:** {localMessage}
+
+***
+
+
+
+ ## 测试 4:子目录导入 (`./nested/`)
+
+
+从 `nested/deep-snippet.mdx` 文件导入:
+
+import DeepSnippet, { deepMessage } from "./nested/deep-snippet.mdx";
+
+
+
+**导出变量的值:** {deepMessage}
+
+***
+
+
+
+ ## 测试 5:绝对路径导入(用于比较)
+
+
+通过绝对路径 `/snippets/icons-optional.mdx` 进行导入:
+
+import IconsOptional from "/snippets/zh/icons-optional.mdx";
+
+
+
+***
+
+
+
+ ## 概览
+
+
+| 测试 | 导入路径 | 类型 | 状态 |
+|------|-------------|------|--------|
+| 1 | `../snippets/test-snippet-a.mdx` | 上级目录 | 见上文 |
+| 2 | `../snippets/test-snippet-b.mdx` | 上级目录 + 导出 | 见上文 |
+| 3 | `./local-snippet.mdx` | 同级目录 | 见上文 |
+| 4 | `./nested/deep-snippet.mdx` | 子目录 | 见上文 |
+| 5 | `/snippets/icons-optional.mdx` | 绝对路径 | 见上文 |
\ No newline at end of file