@lobehub/chat 1.11.2 → 1.11.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/Dockerfile +2 -0
  3. package/Dockerfile.database +2 -0
  4. package/docs/self-hosting/server-database/vercel.mdx +78 -75
  5. package/docs/self-hosting/start.zh-CN.mdx +2 -2
  6. package/docs/usage/providers/siliconcloud.mdx +4 -3
  7. package/docs/usage/providers/siliconcloud.zh-CN.mdx +0 -1
  8. package/locales/ar/components.json +60 -0
  9. package/locales/bg-BG/components.json +60 -0
  10. package/locales/de-DE/components.json +60 -0
  11. package/locales/en-US/components.json +60 -0
  12. package/locales/es-ES/components.json +60 -0
  13. package/locales/fr-FR/components.json +60 -0
  14. package/locales/it-IT/components.json +60 -0
  15. package/locales/ja-JP/components.json +60 -0
  16. package/locales/ko-KR/components.json +60 -0
  17. package/locales/nl-NL/components.json +60 -0
  18. package/locales/pl-PL/components.json +60 -0
  19. package/locales/pt-BR/components.json +60 -0
  20. package/locales/ru-RU/components.json +60 -0
  21. package/locales/tr-TR/components.json +60 -0
  22. package/locales/vi-VN/components.json +60 -0
  23. package/locales/zh-CN/components.json +60 -0
  24. package/locales/zh-TW/components.json +60 -0
  25. package/package.json +1 -1
  26. package/src/app/(main)/settings/_layout/Desktop/SideBar.tsx +3 -22
  27. package/src/app/api/chat/agentRuntime.ts +3 -2
  28. package/src/components/FileIcon/config.ts +12 -0
  29. package/src/components/FileIcon/index.tsx +30 -0
  30. package/src/components/FunctionModal/createModalHooks.ts +46 -0
  31. package/src/components/FunctionModal/index.ts +1 -0
  32. package/src/components/FunctionModal/style.tsx +39 -0
  33. package/src/components/GoBack/index.tsx +46 -0
  34. package/src/components/PanelTitle/index.tsx +41 -0
  35. package/src/components/RepoIcon/index.tsx +22 -0
  36. package/src/components/SidebarHeader/index.tsx +4 -2
  37. package/src/components/TipGuide/index.tsx +150 -0
  38. package/src/config/llm.ts +4 -0
  39. package/src/config/modelProviders/siliconcloud.ts +3 -0
  40. package/src/database/client/models/message.ts +5 -0
  41. package/src/features/Conversation/Messages/Default.tsx +1 -2
  42. package/src/libs/agent-runtime/AgentRuntime.ts +9 -2
  43. package/src/libs/agent-runtime/BaseAI.ts +14 -1
  44. package/src/libs/agent-runtime/qwen/index.ts +3 -4
  45. package/src/libs/agent-runtime/types/embeddings.ts +43 -0
  46. package/src/libs/agent-runtime/types/index.ts +1 -0
  47. package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.ts +25 -2
  48. package/src/libs/langchain/file.ts +29 -0
  49. package/src/libs/langchain/index.ts +1 -0
  50. package/src/libs/langchain/loaders/code/__tests__/index.test.ts +34 -0
  51. package/src/libs/langchain/loaders/code/__tests__/long.json +250 -0
  52. package/src/libs/langchain/loaders/code/__tests__/long.txt +885 -0
  53. package/src/libs/langchain/loaders/code/index.ts +15 -0
  54. package/src/libs/langchain/loaders/config.ts +6 -0
  55. package/src/libs/langchain/loaders/docx/index.ts +13 -0
  56. package/src/libs/langchain/loaders/index.ts +98 -0
  57. package/src/libs/langchain/loaders/markdown/__tests__/demo.mdx +325 -0
  58. package/src/libs/langchain/loaders/markdown/__tests__/index.test.ts +13 -0
  59. package/src/libs/langchain/loaders/markdown/index.ts +9 -0
  60. package/src/libs/langchain/loaders/pdf/index.ts +7 -0
  61. package/src/libs/langchain/loaders/pptx/index.ts +7 -0
  62. package/src/libs/langchain/loaders/txt/__tests__/index.test.ts +54 -0
  63. package/src/libs/langchain/loaders/txt/__tests__/long.json +38 -0
  64. package/src/libs/langchain/loaders/txt/__tests__/pg24022.txt +83 -0
  65. package/src/libs/langchain/loaders/txt/index.ts +9 -0
  66. package/src/libs/langchain/types.ts +1 -0
  67. package/src/libs/unstructured/__tests__/fixtures/image-parse/fast-partition-none-output.json +3258 -0
  68. package/src/libs/unstructured/__tests__/fixtures/image-parse/fast-partition-none-raw.json +3255 -0
  69. package/src/libs/unstructured/__tests__/fixtures/table-parse/auto-partition-basic-output.json +347 -0
  70. package/src/libs/unstructured/__tests__/fixtures/table-parse/auto-partition-basic-raw.json +131 -0
  71. package/src/libs/unstructured/__tests__/fixtures/table-parse/auto-partition-raw.json +276 -0
  72. package/src/libs/unstructured/__tests__/fixtures/table-parse/fast-partition-basic-output.json +1865 -0
  73. package/src/libs/unstructured/__tests__/fixtures/table-parse/fast-partition-basic-raw.json +111 -0
  74. package/src/libs/unstructured/__tests__/fixtures/table-parse/fast-partition-raw.json +1892 -0
  75. package/src/libs/unstructured/__tests__/index.test.ts +165 -0
  76. package/src/libs/unstructured/index.ts +166 -0
  77. package/src/locales/default/components.ts +62 -0
  78. package/src/server/globalConfig/index.ts +11 -1
  79. package/src/utils/colorUtils.ts +19 -0
  80. package/src/utils/sleep.ts +4 -0
@@ -0,0 +1,1892 @@
1
+ [
2
+ {
3
+ "type": "Header",
4
+ "element_id": "2d874eae-2423-412a-88ab-72a5544d3304",
5
+ "text": "Multiple Sclerosis Journal 29(6)",
6
+ "metadata": {
7
+ "coordinates": {
8
+ "points": [
9
+ [25.5118, 34.488000000000056],
10
+ [25.5118, 44.988000000000056],
11
+ [162.2953, 44.988000000000056],
12
+ [162.2953, 34.488000000000056]
13
+ ],
14
+ "system": "PixelSpace",
15
+ "layout_width": 595.276,
16
+ "layout_height": 793.701
17
+ },
18
+ "languages": ["eng"],
19
+ "page_number": 1,
20
+ "filename": "table-parse-case.pdf",
21
+ "filetype": "application/pdf"
22
+ }
23
+ },
24
+ {
25
+ "type": "Title",
26
+ "element_id": "ada3c137-e27e-4974-b9fe-155e2f62823d",
27
+ "text": "Table 1. Characteristics of the study population.",
28
+ "metadata": {
29
+ "coordinates": {
30
+ "points": [
31
+ [22.6772, 71.47569999999996],
32
+ [22.6772, 80.47569999999996],
33
+ [198.59120000000004, 80.47569999999996],
34
+ [198.59120000000004, 71.47569999999996]
35
+ ],
36
+ "system": "PixelSpace",
37
+ "layout_width": 595.276,
38
+ "layout_height": 793.701
39
+ },
40
+ "languages": ["eng"],
41
+ "page_number": 1,
42
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
43
+ "filename": "table-parse-case.pdf",
44
+ "filetype": "application/pdf"
45
+ }
46
+ },
47
+ {
48
+ "type": "Title",
49
+ "element_id": "376463d3-b7bc-4a78-9b29-c4ac1b65e483",
50
+ "text": "Male",
51
+ "metadata": {
52
+ "coordinates": {
53
+ "points": [
54
+ [108.8819, 90.47569999999996],
55
+ [108.8819, 99.47569999999996],
56
+ [127.37689999999999, 99.47569999999996],
57
+ [127.37689999999999, 90.47569999999996]
58
+ ],
59
+ "system": "PixelSpace",
60
+ "layout_width": 595.276,
61
+ "layout_height": 793.701
62
+ },
63
+ "languages": ["eng"],
64
+ "page_number": 1,
65
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
66
+ "filename": "table-parse-case.pdf",
67
+ "filetype": "application/pdf"
68
+ }
69
+ },
70
+ {
71
+ "type": "Title",
72
+ "element_id": "326bf146-eb49-4d90-bdbc-96a2f89e50ad",
73
+ "text": "Female",
74
+ "metadata": {
75
+ "coordinates": {
76
+ "points": [
77
+ [260.2756, 90.47569999999996],
78
+ [260.2756, 99.47569999999996],
79
+ [286.7716, 99.47569999999996],
80
+ [286.7716, 90.47569999999996]
81
+ ],
82
+ "system": "PixelSpace",
83
+ "layout_width": 595.276,
84
+ "layout_height": 793.701
85
+ },
86
+ "languages": ["eng"],
87
+ "page_number": 1,
88
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
89
+ "filename": "table-parse-case.pdf",
90
+ "filetype": "application/pdf"
91
+ }
92
+ },
93
+ {
94
+ "type": "Title",
95
+ "element_id": "3cecfb66-9ec9-45ae-9630-1ad0d09c6378",
96
+ "text": "Overall",
97
+ "metadata": {
98
+ "coordinates": {
99
+ "points": [
100
+ [414.2913, 90.47569999999996],
101
+ [414.2913, 99.47569999999996],
102
+ [441.28229999999996, 99.47569999999996],
103
+ [441.28229999999996, 90.47569999999996]
104
+ ],
105
+ "system": "PixelSpace",
106
+ "layout_width": 595.276,
107
+ "layout_height": 793.701
108
+ },
109
+ "languages": ["eng"],
110
+ "page_number": 1,
111
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
112
+ "filename": "table-parse-case.pdf",
113
+ "filetype": "application/pdf"
114
+ }
115
+ },
116
+ {
117
+ "type": "Title",
118
+ "element_id": "e7858f8f-78a7-4d2d-8683-b849897c8bc3",
119
+ "text": "MS subjects",
120
+ "metadata": {
121
+ "coordinates": {
122
+ "points": [
123
+ [108.8853, 108.97969999999998],
124
+ [108.8853, 117.97969999999998],
125
+ [153.13830000000002, 117.97969999999998],
126
+ [153.13830000000002, 108.97969999999998]
127
+ ],
128
+ "system": "PixelSpace",
129
+ "layout_width": 595.276,
130
+ "layout_height": 793.701
131
+ },
132
+ "languages": ["eng"],
133
+ "page_number": 1,
134
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
135
+ "filename": "table-parse-case.pdf",
136
+ "filetype": "application/pdf"
137
+ }
138
+ },
139
+ {
140
+ "type": "Title",
141
+ "element_id": "977a3730-9bad-469a-95bd-7de19b0d46af",
142
+ "text": "Control subjects",
143
+ "metadata": {
144
+ "coordinates": {
145
+ "points": [
146
+ [166.7823, 108.97969999999998],
147
+ [166.7823, 128.48270000000002],
148
+ [196.53629999999998, 128.48270000000002],
149
+ [196.53629999999998, 108.97969999999998]
150
+ ],
151
+ "system": "PixelSpace",
152
+ "layout_width": 595.276,
153
+ "layout_height": 793.701
154
+ },
155
+ "languages": ["eng"],
156
+ "page_number": 1,
157
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
158
+ "filename": "table-parse-case.pdf",
159
+ "filetype": "application/pdf"
160
+ }
161
+ },
162
+ {
163
+ "type": "Title",
164
+ "element_id": "fe7986a3-1cbb-4be1-81a4-114a95ebc0ac",
165
+ "text": "p-value MS subjects Control subjects",
166
+ "metadata": {
167
+ "coordinates": {
168
+ "points": [
169
+ [219.2253, 108.97969999999998],
170
+ [219.2253, 128.48270000000002],
171
+ [344.37030000000004, 128.48270000000002],
172
+ [344.37030000000004, 108.97969999999998]
173
+ ],
174
+ "system": "PixelSpace",
175
+ "layout_width": 595.276,
176
+ "layout_height": 793.701
177
+ },
178
+ "languages": ["eng"],
179
+ "page_number": 1,
180
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
181
+ "filename": "table-parse-case.pdf",
182
+ "filetype": "application/pdf"
183
+ }
184
+ },
185
+ {
186
+ "type": "Title",
187
+ "element_id": "1e732b2d-a1b4-4eff-9136-1a4636eccbe7",
188
+ "text": "p-value",
189
+ "metadata": {
190
+ "coordinates": {
191
+ "points": [
192
+ [370.3623, 108.97969999999998],
193
+ [370.3623, 117.97969999999998],
194
+ [397.3533, 117.97969999999998],
195
+ [397.3533, 108.97969999999998]
196
+ ],
197
+ "system": "PixelSpace",
198
+ "layout_width": 595.276,
199
+ "layout_height": 793.701
200
+ },
201
+ "languages": ["eng"],
202
+ "page_number": 1,
203
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
204
+ "filename": "table-parse-case.pdf",
205
+ "filetype": "application/pdf"
206
+ }
207
+ },
208
+ {
209
+ "type": "Title",
210
+ "element_id": "57f36da1-ff7f-4991-8db5-2b5447115c20",
211
+ "text": "MS subjects",
212
+ "metadata": {
213
+ "coordinates": {
214
+ "points": [
215
+ [414.3003, 108.97969999999998],
216
+ [414.3003, 128.48270000000002],
217
+ [443.2983, 128.48270000000002],
218
+ [443.2983, 108.97969999999998]
219
+ ],
220
+ "system": "PixelSpace",
221
+ "layout_width": 595.276,
222
+ "layout_height": 793.701
223
+ },
224
+ "languages": ["eng"],
225
+ "page_number": 1,
226
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
227
+ "filename": "table-parse-case.pdf",
228
+ "filetype": "application/pdf"
229
+ }
230
+ },
231
+ {
232
+ "type": "Title",
233
+ "element_id": "801d5125-20b3-4d3a-a749-ba32878de901",
234
+ "text": "Control subjects",
235
+ "metadata": {
236
+ "coordinates": {
237
+ "points": [
238
+ [467.2113, 108.97969999999998],
239
+ [467.2113, 128.48270000000002],
240
+ [496.9653, 128.48270000000002],
241
+ [496.9653, 108.97969999999998]
242
+ ],
243
+ "system": "PixelSpace",
244
+ "layout_width": 595.276,
245
+ "layout_height": 793.701
246
+ },
247
+ "languages": ["eng"],
248
+ "page_number": 1,
249
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
250
+ "filename": "table-parse-case.pdf",
251
+ "filetype": "application/pdf"
252
+ }
253
+ },
254
+ {
255
+ "type": "Title",
256
+ "element_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
257
+ "text": "p-value",
258
+ "metadata": {
259
+ "coordinates": {
260
+ "points": [
261
+ [519.4203, 108.97969999999998],
262
+ [519.4203, 117.97969999999998],
263
+ [546.4113, 117.97969999999998],
264
+ [546.4113, 108.97969999999998]
265
+ ],
266
+ "system": "PixelSpace",
267
+ "layout_width": 595.276,
268
+ "layout_height": 793.701
269
+ },
270
+ "languages": ["eng"],
271
+ "page_number": 1,
272
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
273
+ "filename": "table-parse-case.pdf",
274
+ "filetype": "application/pdf"
275
+ }
276
+ },
277
+ {
278
+ "type": "UncategorizedText",
279
+ "element_id": "ad1c8d60-5b40-4e0a-bf73-0bd67f36f3f3",
280
+ "text": "N Follow-up time (years) Female (%) Age (years) Ethnicity – white (%) Smoking status (%) Non-smoker Ex-smoker Current smoker eFI ratio Fit Mid frailty Moderate frailty Severe frailty Number of primary care visits in previous year Index of multiple deprivation (IMD; %)",
281
+ "metadata": {
282
+ "coordinates": {
283
+ "points": [
284
+ [28.6863, 137.23069999999996],
285
+ [28.6863, 375.75770000000006],
286
+ [172.53330000000005, 375.75770000000006],
287
+ [172.53330000000005, 137.23069999999996]
288
+ ],
289
+ "system": "PixelSpace",
290
+ "layout_width": 595.276,
291
+ "layout_height": 793.701
292
+ },
293
+ "languages": ["eng"],
294
+ "page_number": 1,
295
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
296
+ "filename": "table-parse-case.pdf",
297
+ "filetype": "application/pdf"
298
+ }
299
+ },
300
+ {
301
+ "type": "UncategorizedText",
302
+ "element_id": "aa4a3831-5e8d-4c02-871e-f4ecee0f7492",
303
+ "text": "3685 9.9 (6.1)",
304
+ "metadata": {
305
+ "coordinates": {
306
+ "points": [
307
+ [108.8943, 137.23069999999996],
308
+ [108.8943, 158.73169999999993],
309
+ [139.64730000000003, 158.73169999999993],
310
+ [139.64730000000003, 137.23069999999996]
311
+ ],
312
+ "system": "PixelSpace",
313
+ "layout_width": 595.276,
314
+ "layout_height": 793.701
315
+ },
316
+ "languages": ["eng"],
317
+ "page_number": 1,
318
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
319
+ "filename": "table-parse-case.pdf",
320
+ "filetype": "application/pdf"
321
+ }
322
+ },
323
+ {
324
+ "type": "UncategorizedText",
325
+ "element_id": "b7ac7d7b-23b0-4458-8910-265ab41f8fe9",
326
+ "text": "46.3 (13.3) 92.3",
327
+ "metadata": {
328
+ "coordinates": {
329
+ "points": [
330
+ [108.9123, 185.23669999999993],
331
+ [108.9123, 206.73770000000002],
332
+ [148.65630000000002, 206.73770000000002],
333
+ [148.65630000000002, 185.23669999999993]
334
+ ],
335
+ "system": "PixelSpace",
336
+ "layout_width": 595.276,
337
+ "layout_height": 793.701
338
+ },
339
+ "languages": ["eng"],
340
+ "page_number": 1,
341
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
342
+ "filename": "table-parse-case.pdf",
343
+ "filetype": "application/pdf"
344
+ }
345
+ },
346
+ {
347
+ "type": "UncategorizedText",
348
+ "element_id": "ac5b578b-dbf1-4259-ba99-b2380ac2beba",
349
+ "text": "41.5 17.5 41.1",
350
+ "metadata": {
351
+ "coordinates": {
352
+ "points": [
353
+ [108.9303, 233.2427],
354
+ [108.9303, 267.24469999999997],
355
+ [124.6983, 267.24469999999997],
356
+ [124.6983, 233.2427]
357
+ ],
358
+ "system": "PixelSpace",
359
+ "layout_width": 595.276,
360
+ "layout_height": 793.701
361
+ },
362
+ "languages": ["eng"],
363
+ "page_number": 1,
364
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
365
+ "filename": "table-parse-case.pdf",
366
+ "filetype": "application/pdf"
367
+ }
368
+ },
369
+ {
370
+ "type": "UncategorizedText",
371
+ "element_id": "4f2f5484-562a-4ff1-8089-358506ee1204",
372
+ "text": "0.02 (0.04) 97.2 2.8 0.0 0.0 6.9 (10.3)",
373
+ "metadata": {
374
+ "coordinates": {
375
+ "points": [
376
+ [108.9663, 270.74569999999994],
377
+ [108.9663, 342.25970000000007],
378
+ [153.2013, 342.25970000000007],
379
+ [153.2013, 270.74569999999994]
380
+ ],
381
+ "system": "PixelSpace",
382
+ "layout_width": 595.276,
383
+ "layout_height": 793.701
384
+ },
385
+ "languages": ["eng"],
386
+ "page_number": 1,
387
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
388
+ "filename": "table-parse-case.pdf",
389
+ "filetype": "application/pdf"
390
+ }
391
+ },
392
+ {
393
+ "type": "UncategorizedText",
394
+ "element_id": "a0479cab-8d5c-4618-8f25-395a69b3e392",
395
+ "text": "21,931 11.4 (6.5)",
396
+ "metadata": {
397
+ "coordinates": {
398
+ "points": [
399
+ [166.7913, 137.23069999999996],
400
+ [166.7913, 158.73169999999993],
401
+ [203.0433, 158.73169999999993],
402
+ [203.0433, 137.23069999999996]
403
+ ],
404
+ "system": "PixelSpace",
405
+ "layout_width": 595.276,
406
+ "layout_height": 793.701
407
+ },
408
+ "languages": ["eng"],
409
+ "page_number": 1,
410
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
411
+ "filename": "table-parse-case.pdf",
412
+ "filetype": "application/pdf"
413
+ }
414
+ },
415
+ {
416
+ "type": "UncategorizedText",
417
+ "element_id": "a07f5e31-6269-433a-b98b-68809c339b02",
418
+ "text": "<0.001",
419
+ "metadata": {
420
+ "coordinates": {
421
+ "points": [
422
+ [219.2433, 149.73169999999993],
423
+ [219.2433, 159.41570000000002],
424
+ [246.9903, 159.41570000000002],
425
+ [246.9903, 149.73169999999993]
426
+ ],
427
+ "system": "PixelSpace",
428
+ "layout_width": 595.276,
429
+ "layout_height": 793.701
430
+ },
431
+ "languages": ["eng"],
432
+ "page_number": 1,
433
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
434
+ "filename": "table-parse-case.pdf",
435
+ "filetype": "application/pdf"
436
+ }
437
+ },
438
+ {
439
+ "type": "UncategorizedText",
440
+ "element_id": "d894fc6b-4861-43e3-a62a-dc90951d7e0f",
441
+ "text": "46.3 (13.3) 93.5",
442
+ "metadata": {
443
+ "coordinates": {
444
+ "points": [
445
+ [167.8083, 185.23669999999993],
446
+ [167.8083, 206.73770000000002],
447
+ [207.5523, 206.73770000000002],
448
+ [207.5523, 185.23669999999993]
449
+ ],
450
+ "system": "PixelSpace",
451
+ "layout_width": 595.276,
452
+ "layout_height": 793.701
453
+ },
454
+ "languages": ["eng"],
455
+ "page_number": 1,
456
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
457
+ "filename": "table-parse-case.pdf",
458
+ "filetype": "application/pdf"
459
+ }
460
+ },
461
+ {
462
+ "type": "UncategorizedText",
463
+ "element_id": "09e63b60-841f-4b19-9cbd-4aa72be19358",
464
+ "text": "0.852 0.013",
465
+ "metadata": {
466
+ "coordinates": {
467
+ "points": [
468
+ [226.7493, 185.23669999999993],
469
+ [226.7493, 206.73770000000002],
470
+ [247.0083, 206.73770000000002],
471
+ [247.0083, 185.23669999999993]
472
+ ],
473
+ "system": "PixelSpace",
474
+ "layout_width": 595.276,
475
+ "layout_height": 793.701
476
+ },
477
+ "languages": ["eng"],
478
+ "page_number": 1,
479
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
480
+ "filename": "table-parse-case.pdf",
481
+ "filetype": "application/pdf"
482
+ }
483
+ },
484
+ {
485
+ "type": "UncategorizedText",
486
+ "element_id": "4db6858c-8aea-4754-abca-c2023a62048d",
487
+ "text": "53.8 14.7 31.6 0.01 (0.03) <0.001 98.3 1.6 0.0 0.0 2.2 (5.0)",
488
+ "metadata": {
489
+ "coordinates": {
490
+ "points": [
491
+ [167.8263, 233.2427],
492
+ [167.8263, 342.25970000000007],
493
+ [247.0443, 342.25970000000007],
494
+ [247.0443, 233.2427]
495
+ ],
496
+ "system": "PixelSpace",
497
+ "layout_width": 595.276,
498
+ "layout_height": 793.701
499
+ },
500
+ "languages": ["eng"],
501
+ "page_number": 1,
502
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
503
+ "filename": "table-parse-case.pdf",
504
+ "filetype": "application/pdf"
505
+ }
506
+ },
507
+ {
508
+ "type": "UncategorizedText",
509
+ "element_id": "1533d723-7726-47db-9901-ccfb8f476733",
510
+ "text": "<0.001",
511
+ "metadata": {
512
+ "coordinates": {
513
+ "points": [
514
+ [219.2793, 245.7437],
515
+ [219.2793, 255.42770000000007],
516
+ [247.0263, 255.42770000000007],
517
+ [247.0263, 245.7437]
518
+ ],
519
+ "system": "PixelSpace",
520
+ "layout_width": 595.276,
521
+ "layout_height": 793.701
522
+ },
523
+ "languages": ["eng"],
524
+ "page_number": 1,
525
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
526
+ "filename": "table-parse-case.pdf",
527
+ "filetype": "application/pdf"
528
+ }
529
+ },
530
+ {
531
+ "type": "UncategorizedText",
532
+ "element_id": "f88d8286-9003-44d8-a554-4b287c360c28",
533
+ "text": "<0.001",
534
+ "metadata": {
535
+ "coordinates": {
536
+ "points": [
537
+ [219.3063, 304.24370000000005],
538
+ [219.3063, 313.9277],
539
+ [247.0533, 313.9277],
540
+ [247.0533, 304.24370000000005]
541
+ ],
542
+ "system": "PixelSpace",
543
+ "layout_width": 595.276,
544
+ "layout_height": 793.701
545
+ },
546
+ "languages": ["eng"],
547
+ "page_number": 1,
548
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
549
+ "filename": "table-parse-case.pdf",
550
+ "filetype": "application/pdf"
551
+ }
552
+ },
553
+ {
554
+ "type": "UncategorizedText",
555
+ "element_id": "0e63346c-0c14-4213-975a-da51df26ee13",
556
+ "text": "<0.001",
557
+ "metadata": {
558
+ "coordinates": {
559
+ "points": [
560
+ [219.3423, 333.25970000000007],
561
+ [219.3423, 342.94370000000004],
562
+ [247.0893, 342.94370000000004],
563
+ [247.0893, 333.25970000000007]
564
+ ],
565
+ "system": "PixelSpace",
566
+ "layout_width": 595.276,
567
+ "layout_height": 793.701
568
+ },
569
+ "languages": ["eng"],
570
+ "page_number": 1,
571
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
572
+ "filename": "table-parse-case.pdf",
573
+ "filetype": "application/pdf"
574
+ }
575
+ },
576
+ {
577
+ "type": "UncategorizedText",
578
+ "element_id": "28e1eb5e-7f9b-4fbd-bd19-cd9485bc20bd",
579
+ "text": "8566 10.4 (6.3)",
580
+ "metadata": {
581
+ "coordinates": {
582
+ "points": [
583
+ [260.2923, 137.23069999999996],
584
+ [260.2923, 158.73169999999993],
585
+ [296.5443, 158.73169999999993],
586
+ [296.5443, 137.23069999999996]
587
+ ],
588
+ "system": "PixelSpace",
589
+ "layout_width": 595.276,
590
+ "layout_height": 793.701
591
+ },
592
+ "languages": ["eng"],
593
+ "page_number": 1,
594
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
595
+ "filename": "table-parse-case.pdf",
596
+ "filetype": "application/pdf"
597
+ }
598
+ },
599
+ {
600
+ "type": "UncategorizedText",
601
+ "element_id": "d27763ab-1c45-4e90-850b-f351244d8011",
602
+ "text": "44.3 (13.3) 91.5",
603
+ "metadata": {
604
+ "coordinates": {
605
+ "points": [
606
+ [261.3093, 185.23669999999993],
607
+ [261.3093, 206.73770000000002],
608
+ [301.05330000000004, 206.73770000000002],
609
+ [301.05330000000004, 185.23669999999993]
610
+ ],
611
+ "system": "PixelSpace",
612
+ "layout_width": 595.276,
613
+ "layout_height": 793.701
614
+ },
615
+ "languages": ["eng"],
616
+ "page_number": 1,
617
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
618
+ "filename": "table-parse-case.pdf",
619
+ "filetype": "application/pdf"
620
+ }
621
+ },
622
+ {
623
+ "type": "UncategorizedText",
624
+ "element_id": "5fecd464-3721-4c04-b2f3-7a6cc670ed83",
625
+ "text": "49.5 13.9 36.6",
626
+ "metadata": {
627
+ "coordinates": {
628
+ "points": [
629
+ [261.3273, 233.2427],
630
+ [261.3273, 267.24469999999997],
631
+ [277.0953, 267.24469999999997],
632
+ [277.0953, 233.2427]
633
+ ],
634
+ "system": "PixelSpace",
635
+ "layout_width": 595.276,
636
+ "layout_height": 793.701
637
+ },
638
+ "languages": ["eng"],
639
+ "page_number": 1,
640
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
641
+ "filename": "table-parse-case.pdf",
642
+ "filetype": "application/pdf"
643
+ }
644
+ },
645
+ {
646
+ "type": "UncategorizedText",
647
+ "element_id": "7d041668-ec2d-4501-a4b4-d4fac2806188",
648
+ "text": "0.03 (0.04) 95.8 4.0 0.2 0.0 8.2 (11.5)",
649
+ "metadata": {
650
+ "coordinates": {
651
+ "points": [
652
+ [261.3633, 270.74569999999994],
653
+ [261.3633, 342.25970000000007],
654
+ [305.59830000000005, 342.25970000000007],
655
+ [305.59830000000005, 270.74569999999994]
656
+ ],
657
+ "system": "PixelSpace",
658
+ "layout_width": 595.276,
659
+ "layout_height": 793.701
660
+ },
661
+ "languages": ["eng"],
662
+ "page_number": 1,
663
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
664
+ "filename": "table-parse-case.pdf",
665
+ "filetype": "application/pdf"
666
+ }
667
+ },
668
+ {
669
+ "type": "UncategorizedText",
670
+ "element_id": "b52e22d2-e475-497f-941c-dd82e949080f",
671
+ "text": "50,640 11.5 (6.5)",
672
+ "metadata": {
673
+ "coordinates": {
674
+ "points": [
675
+ [314.6253, 137.23069999999996],
676
+ [314.6253, 158.73169999999993],
677
+ [350.87730000000005, 158.73169999999993],
678
+ [350.87730000000005, 137.23069999999996]
679
+ ],
680
+ "system": "PixelSpace",
681
+ "layout_width": 595.276,
682
+ "layout_height": 793.701
683
+ },
684
+ "languages": ["eng"],
685
+ "page_number": 1,
686
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
687
+ "filename": "table-parse-case.pdf",
688
+ "filetype": "application/pdf"
689
+ }
690
+ },
691
+ {
692
+ "type": "UncategorizedText",
693
+ "element_id": "12fb37ba-e1a6-4029-991e-ec6a7794e14c",
694
+ "text": "<0.001",
695
+ "metadata": {
696
+ "coordinates": {
697
+ "points": [
698
+ [371.3883, 149.73169999999993],
699
+ [371.3883, 159.41570000000002],
700
+ [399.1353, 159.41570000000002],
701
+ [399.1353, 149.73169999999993]
702
+ ],
703
+ "system": "PixelSpace",
704
+ "layout_width": 595.276,
705
+ "layout_height": 793.701
706
+ },
707
+ "languages": ["eng"],
708
+ "page_number": 1,
709
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
710
+ "filename": "table-parse-case.pdf",
711
+ "filetype": "application/pdf"
712
+ }
713
+ },
714
+ {
715
+ "type": "UncategorizedText",
716
+ "element_id": "e0e6411d-a4c7-4a5c-b626-0daf41d5bbad",
717
+ "text": "44.3 (13.3) 94.1",
718
+ "metadata": {
719
+ "coordinates": {
720
+ "points": [
721
+ [315.6423, 185.23669999999993],
722
+ [315.6423, 206.73770000000002],
723
+ [355.3863, 206.73770000000002],
724
+ [355.3863, 185.23669999999993]
725
+ ],
726
+ "system": "PixelSpace",
727
+ "layout_width": 595.276,
728
+ "layout_height": 793.701
729
+ },
730
+ "languages": ["eng"],
731
+ "page_number": 1,
732
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
733
+ "filename": "table-parse-case.pdf",
734
+ "filetype": "application/pdf"
735
+ }
736
+ },
737
+ {
738
+ "type": "UncategorizedText",
739
+ "element_id": "55553e90-8833-4b15-b782-2904af11696a",
740
+ "text": "0.907 <0.001",
741
+ "metadata": {
742
+ "coordinates": {
743
+ "points": [
744
+ [371.4063, 185.23669999999993],
745
+ [371.4063, 207.4217000000001],
746
+ [399.1533, 207.4217000000001],
747
+ [399.1533, 185.23669999999993]
748
+ ],
749
+ "system": "PixelSpace",
750
+ "layout_width": 595.276,
751
+ "layout_height": 793.701
752
+ },
753
+ "languages": ["eng"],
754
+ "page_number": 1,
755
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
756
+ "filename": "table-parse-case.pdf",
757
+ "filetype": "application/pdf"
758
+ }
759
+ },
760
+ {
761
+ "type": "UncategorizedText",
762
+ "element_id": "710c0bb4-fa78-4f1d-8389-4d3b1f6fecf7",
763
+ "text": "60.0 11.6 28.5 0.02 (0.04) <0.001 97.1 2.8 0.1 0.0 3.2 (6.1)",
764
+ "metadata": {
765
+ "coordinates": {
766
+ "points": [
767
+ [315.6603, 233.2427],
768
+ [315.6603, 342.25970000000007],
769
+ [399.1893, 342.25970000000007],
770
+ [399.1893, 233.2427]
771
+ ],
772
+ "system": "PixelSpace",
773
+ "layout_width": 595.276,
774
+ "layout_height": 793.701
775
+ },
776
+ "languages": ["eng"],
777
+ "page_number": 1,
778
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
779
+ "filename": "table-parse-case.pdf",
780
+ "filetype": "application/pdf"
781
+ }
782
+ },
783
+ {
784
+ "type": "UncategorizedText",
785
+ "element_id": "8793c92f-9b01-4a70-992e-e85cb6c51704",
786
+ "text": "<0.001",
787
+ "metadata": {
788
+ "coordinates": {
789
+ "points": [
790
+ [371.4243, 245.7437],
791
+ [371.4243, 255.42770000000007],
792
+ [399.1713, 255.42770000000007],
793
+ [399.1713, 245.7437]
794
+ ],
795
+ "system": "PixelSpace",
796
+ "layout_width": 595.276,
797
+ "layout_height": 793.701
798
+ },
799
+ "languages": ["eng"],
800
+ "page_number": 1,
801
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
802
+ "filename": "table-parse-case.pdf",
803
+ "filetype": "application/pdf"
804
+ }
805
+ },
806
+ {
807
+ "type": "UncategorizedText",
808
+ "element_id": "d3575b41-7d7d-451f-834a-33b72a5c82d3",
809
+ "text": "<0.001",
810
+ "metadata": {
811
+ "coordinates": {
812
+ "points": [
813
+ [371.4513, 304.24370000000005],
814
+ [371.4513, 313.9277],
815
+ [399.1983, 313.9277],
816
+ [399.1983, 304.24370000000005]
817
+ ],
818
+ "system": "PixelSpace",
819
+ "layout_width": 595.276,
820
+ "layout_height": 793.701
821
+ },
822
+ "languages": ["eng"],
823
+ "page_number": 1,
824
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
825
+ "filename": "table-parse-case.pdf",
826
+ "filetype": "application/pdf"
827
+ }
828
+ },
829
+ {
830
+ "type": "UncategorizedText",
831
+ "element_id": "d3ff8255-2455-4001-8bba-3b03dae872ae",
832
+ "text": "<0.001",
833
+ "metadata": {
834
+ "coordinates": {
835
+ "points": [
836
+ [371.4873, 333.25970000000007],
837
+ [371.4873, 342.94370000000004],
838
+ [399.2343, 342.94370000000004],
839
+ [399.2343, 333.25970000000007]
840
+ ],
841
+ "system": "PixelSpace",
842
+ "layout_width": 595.276,
843
+ "layout_height": 793.701
844
+ },
845
+ "languages": ["eng"],
846
+ "page_number": 1,
847
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
848
+ "filename": "table-parse-case.pdf",
849
+ "filetype": "application/pdf"
850
+ }
851
+ },
852
+ {
853
+ "type": "UncategorizedText",
854
+ "element_id": "39bccec6-2e6c-42a8-a6b1-a1bea2e95274",
855
+ "text": "12,251 10.3 (6.3)",
856
+ "metadata": {
857
+ "coordinates": {
858
+ "points": [
859
+ [414.3093, 137.23069999999996],
860
+ [414.3093, 158.73169999999993],
861
+ [449.56230000000005, 158.73169999999993],
862
+ [449.56230000000005, 137.23069999999996]
863
+ ],
864
+ "system": "PixelSpace",
865
+ "layout_width": 595.276,
866
+ "layout_height": 793.701
867
+ },
868
+ "languages": ["eng"],
869
+ "page_number": 1,
870
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
871
+ "filename": "table-parse-case.pdf",
872
+ "filetype": "application/pdf"
873
+ }
874
+ },
875
+ {
876
+ "type": "UncategorizedText",
877
+ "element_id": "70733c13-2e3c-4630-b7dc-345f5722b726",
878
+ "text": "69.9 44.9 (13.3) 93.9",
879
+ "metadata": {
880
+ "coordinates": {
881
+ "points": [
882
+ [414.3183, 172.73569999999995],
883
+ [414.3183, 206.73770000000002],
884
+ [454.0713, 206.73770000000002],
885
+ [454.0713, 172.73569999999995]
886
+ ],
887
+ "system": "PixelSpace",
888
+ "layout_width": 595.276,
889
+ "layout_height": 793.701
890
+ },
891
+ "languages": ["eng"],
892
+ "page_number": 1,
893
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
894
+ "filename": "table-parse-case.pdf",
895
+ "filetype": "application/pdf"
896
+ }
897
+ },
898
+ {
899
+ "type": "UncategorizedText",
900
+ "element_id": "a384fde2-72b8-42b1-836e-b963b5cf6de6",
901
+ "text": "47.1 15 37.9",
902
+ "metadata": {
903
+ "coordinates": {
904
+ "points": [
905
+ [414.3453, 233.2427],
906
+ [414.3453, 267.24469999999997],
907
+ [430.1133, 267.24469999999997],
908
+ [430.1133, 233.2427]
909
+ ],
910
+ "system": "PixelSpace",
911
+ "layout_width": 595.276,
912
+ "layout_height": 793.701
913
+ },
914
+ "languages": ["eng"],
915
+ "page_number": 1,
916
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
917
+ "filename": "table-parse-case.pdf",
918
+ "filetype": "application/pdf"
919
+ }
920
+ },
921
+ {
922
+ "type": "UncategorizedText",
923
+ "element_id": "80b63ac8-c2cd-4ba1-b09d-98f7d9f9fb2f",
924
+ "text": "0.03 (0.04) 96.2 3.7 0.1 0.0 7.8 (11.2)",
925
+ "metadata": {
926
+ "coordinates": {
927
+ "points": [
928
+ [414.3813, 270.74569999999994],
929
+ [414.3813, 342.25970000000007],
930
+ [458.6163, 342.25970000000007],
931
+ [458.6163, 270.74569999999994]
932
+ ],
933
+ "system": "PixelSpace",
934
+ "layout_width": 595.276,
935
+ "layout_height": 793.701
936
+ },
937
+ "languages": ["eng"],
938
+ "page_number": 1,
939
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
940
+ "filename": "table-parse-case.pdf",
941
+ "filetype": "application/pdf"
942
+ }
943
+ },
944
+ {
945
+ "type": "UncategorizedText",
946
+ "element_id": "0191c30a-b884-4839-b69e-2d9aeb54b7eb",
947
+ "text": "72,572 11.5 (6.5)",
948
+ "metadata": {
949
+ "coordinates": {
950
+ "points": [
951
+ [467.2203, 137.23069999999996],
952
+ [467.2203, 158.73169999999993],
953
+ [502.47330000000005, 158.73169999999993],
954
+ [502.47330000000005, 137.23069999999996]
955
+ ],
956
+ "system": "PixelSpace",
957
+ "layout_width": 595.276,
958
+ "layout_height": 793.701
959
+ },
960
+ "languages": ["eng"],
961
+ "page_number": 1,
962
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
963
+ "filename": "table-parse-case.pdf",
964
+ "filetype": "application/pdf"
965
+ }
966
+ },
967
+ {
968
+ "type": "UncategorizedText",
969
+ "element_id": "be0a44aa-65ec-4bb3-ad07-1b10fb690fe6",
970
+ "text": "<0.001",
971
+ "metadata": {
972
+ "coordinates": {
973
+ "points": [
974
+ [519.4383, 149.73169999999993],
975
+ [519.4383, 159.41570000000002],
976
+ [547.1853, 159.41570000000002],
977
+ [547.1853, 149.73169999999993]
978
+ ],
979
+ "system": "PixelSpace",
980
+ "layout_width": 595.276,
981
+ "layout_height": 793.701
982
+ },
983
+ "languages": ["eng"],
984
+ "page_number": 1,
985
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
986
+ "filename": "table-parse-case.pdf",
987
+ "filetype": "application/pdf"
988
+ }
989
+ },
990
+ {
991
+ "type": "UncategorizedText",
992
+ "element_id": "619896bd-c536-4e9d-bfd6-3e3e5a923b7f",
993
+ "text": "69.8 44.9 (13.3) 91.2",
994
+ "metadata": {
995
+ "coordinates": {
996
+ "points": [
997
+ [467.2293, 172.73569999999995],
998
+ [467.2293, 206.73770000000002],
999
+ [506.9823, 206.73770000000002],
1000
+ [506.9823, 172.73569999999995]
1001
+ ],
1002
+ "system": "PixelSpace",
1003
+ "layout_width": 595.276,
1004
+ "layout_height": 793.701
1005
+ },
1006
+ "languages": ["eng"],
1007
+ "page_number": 1,
1008
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
1009
+ "filename": "table-parse-case.pdf",
1010
+ "filetype": "application/pdf"
1011
+ }
1012
+ },
1013
+ {
1014
+ "type": "UncategorizedText",
1015
+ "element_id": "13f6e1cb-4ffc-4f54-89c5-faedd2986d60",
1016
+ "text": "0.752 0.727 <0.001",
1017
+ "metadata": {
1018
+ "coordinates": {
1019
+ "points": [
1020
+ [519.4563, 172.73569999999995],
1021
+ [519.4563, 207.4217000000001],
1022
+ [547.2033, 207.4217000000001],
1023
+ [547.2033, 172.73569999999995]
1024
+ ],
1025
+ "system": "PixelSpace",
1026
+ "layout_width": 595.276,
1027
+ "layout_height": 793.701
1028
+ },
1029
+ "languages": ["eng"],
1030
+ "page_number": 1,
1031
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
1032
+ "filename": "table-parse-case.pdf",
1033
+ "filetype": "application/pdf"
1034
+ }
1035
+ },
1036
+ {
1037
+ "type": "UncategorizedText",
1038
+ "element_id": "3c735567-d63e-4cbb-842e-42e9a7112395",
1039
+ "text": "58.1 12.5 29.4 0.02 (0.04) <0.001 97.4 2.5 0.1 0.0 2.9 (5.9)",
1040
+ "metadata": {
1041
+ "coordinates": {
1042
+ "points": [
1043
+ [467.2563, 233.2427],
1044
+ [467.2563, 342.25970000000007],
1045
+ [547.2393, 342.25970000000007],
1046
+ [547.2393, 233.2427]
1047
+ ],
1048
+ "system": "PixelSpace",
1049
+ "layout_width": 595.276,
1050
+ "layout_height": 793.701
1051
+ },
1052
+ "languages": ["eng"],
1053
+ "page_number": 1,
1054
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
1055
+ "filename": "table-parse-case.pdf",
1056
+ "filetype": "application/pdf"
1057
+ }
1058
+ },
1059
+ {
1060
+ "type": "UncategorizedText",
1061
+ "element_id": "d2cb4d22-71b8-493f-8c87-0c87492ed046",
1062
+ "text": "<0.001",
1063
+ "metadata": {
1064
+ "coordinates": {
1065
+ "points": [
1066
+ [519.4743, 245.7437],
1067
+ [519.4743, 255.42770000000007],
1068
+ [547.2213, 255.42770000000007],
1069
+ [547.2213, 245.7437]
1070
+ ],
1071
+ "system": "PixelSpace",
1072
+ "layout_width": 595.276,
1073
+ "layout_height": 793.701
1074
+ },
1075
+ "languages": ["eng"],
1076
+ "page_number": 1,
1077
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
1078
+ "filename": "table-parse-case.pdf",
1079
+ "filetype": "application/pdf"
1080
+ }
1081
+ },
1082
+ {
1083
+ "type": "UncategorizedText",
1084
+ "element_id": "b6f11c89-d5c6-44dd-9451-6d3817137ed7",
1085
+ "text": "<0.001",
1086
+ "metadata": {
1087
+ "coordinates": {
1088
+ "points": [
1089
+ [519.5013, 304.24370000000005],
1090
+ [519.5013, 313.9277],
1091
+ [547.2483, 313.9277],
1092
+ [547.2483, 304.24370000000005]
1093
+ ],
1094
+ "system": "PixelSpace",
1095
+ "layout_width": 595.276,
1096
+ "layout_height": 793.701
1097
+ },
1098
+ "languages": ["eng"],
1099
+ "page_number": 1,
1100
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
1101
+ "filename": "table-parse-case.pdf",
1102
+ "filetype": "application/pdf"
1103
+ }
1104
+ },
1105
+ {
1106
+ "type": "UncategorizedText",
1107
+ "element_id": "203c7ed7-ddd5-49d2-92f2-2556a272075c",
1108
+ "text": "<0.001",
1109
+ "metadata": {
1110
+ "coordinates": {
1111
+ "points": [
1112
+ [519.5373, 333.25970000000007],
1113
+ [519.5373, 342.94370000000004],
1114
+ [547.2843, 342.94370000000004],
1115
+ [547.2843, 333.25970000000007]
1116
+ ],
1117
+ "system": "PixelSpace",
1118
+ "layout_width": 595.276,
1119
+ "layout_height": 793.701
1120
+ },
1121
+ "languages": ["eng"],
1122
+ "page_number": 1,
1123
+ "parent_id": "33a03c91-988d-441d-a1bb-5591f0a983a2",
1124
+ "filename": "table-parse-case.pdf",
1125
+ "filetype": "application/pdf"
1126
+ }
1127
+ },
1128
+ {
1129
+ "type": "Title",
1130
+ "element_id": "cb0ff27d-3d69-46c6-a62c-3130fddb185d",
1131
+ "text": "1Q – least deprived",
1132
+ "metadata": {
1133
+ "coordinates": {
1134
+ "points": [
1135
+ [37.8033, 379.25870000000003],
1136
+ [37.8033, 398.7617],
1137
+ [76.5483, 398.7617],
1138
+ [76.5483, 379.25870000000003]
1139
+ ],
1140
+ "system": "PixelSpace",
1141
+ "layout_width": 595.276,
1142
+ "layout_height": 793.701
1143
+ },
1144
+ "languages": ["eng"],
1145
+ "page_number": 1,
1146
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
1147
+ "filename": "table-parse-case.pdf",
1148
+ "filetype": "application/pdf"
1149
+ }
1150
+ },
1151
+ {
1152
+ "type": "Title",
1153
+ "element_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1154
+ "text": "2Q 3Q 4Q",
1155
+ "metadata": {
1156
+ "coordinates": {
1157
+ "points": [
1158
+ [28.8123, 402.26270000000005],
1159
+ [28.8123, 436.26470000000006],
1160
+ [48.8283, 436.26470000000006],
1161
+ [48.8283, 402.26270000000005]
1162
+ ],
1163
+ "system": "PixelSpace",
1164
+ "layout_width": 595.276,
1165
+ "layout_height": 793.701
1166
+ },
1167
+ "languages": ["eng"],
1168
+ "page_number": 1,
1169
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
1170
+ "filename": "table-parse-case.pdf",
1171
+ "filetype": "application/pdf"
1172
+ }
1173
+ },
1174
+ {
1175
+ "type": "NarrativeText",
1176
+ "element_id": "9b3e4985-6fe6-406a-bc46-e98866f9b5b9",
1177
+ "text": "5Q – most deprived Missing data",
1178
+ "metadata": {
1179
+ "coordinates": {
1180
+ "points": [
1181
+ [28.8483, 439.76570000000004],
1182
+ [28.8483, 470.50070000000005],
1183
+ [84.0993, 470.50070000000005],
1184
+ [84.0993, 439.76570000000004]
1185
+ ],
1186
+ "system": "PixelSpace",
1187
+ "layout_width": 595.276,
1188
+ "layout_height": 793.701
1189
+ },
1190
+ "languages": ["eng"],
1191
+ "page_number": 1,
1192
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1193
+ "filename": "table-parse-case.pdf",
1194
+ "filetype": "application/pdf"
1195
+ }
1196
+ },
1197
+ {
1198
+ "type": "UncategorizedText",
1199
+ "element_id": "cfad74db-a49f-4607-9129-18487f10d76b",
1200
+ "text": "13.7",
1201
+ "metadata": {
1202
+ "coordinates": {
1203
+ "points": [
1204
+ [109.0113, 379.25870000000003],
1205
+ [109.0113, 388.25870000000003],
1206
+ [124.7613, 388.25870000000003],
1207
+ [124.7613, 379.25870000000003]
1208
+ ],
1209
+ "system": "PixelSpace",
1210
+ "layout_width": 595.276,
1211
+ "layout_height": 793.701
1212
+ },
1213
+ "languages": ["eng"],
1214
+ "page_number": 1,
1215
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1216
+ "filename": "table-parse-case.pdf",
1217
+ "filetype": "application/pdf"
1218
+ }
1219
+ },
1220
+ {
1221
+ "type": "UncategorizedText",
1222
+ "element_id": "35d85ecd-e5d1-46dd-803c-495eb63a2bda",
1223
+ "text": "18.5 17.6 20.2 20.6",
1224
+ "metadata": {
1225
+ "coordinates": {
1226
+ "points": [
1227
+ [109.0203, 402.26270000000005],
1228
+ [109.0203, 448.76570000000004],
1229
+ [124.7973, 448.76570000000004],
1230
+ [124.7973, 402.26270000000005]
1231
+ ],
1232
+ "system": "PixelSpace",
1233
+ "layout_width": 595.276,
1234
+ "layout_height": 793.701
1235
+ },
1236
+ "languages": ["eng"],
1237
+ "page_number": 1,
1238
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1239
+ "filename": "table-parse-case.pdf",
1240
+ "filetype": "application/pdf"
1241
+ }
1242
+ },
1243
+ {
1244
+ "type": "UncategorizedText",
1245
+ "element_id": "37890bda-4a83-405c-b6c2-dfaed8f9b446",
1246
+ "text": "9.3",
1247
+ "metadata": {
1248
+ "coordinates": {
1249
+ "points": [
1250
+ [113.5563, 461.50070000000005],
1251
+ [113.5563, 470.50070000000005],
1252
+ [124.8063, 470.50070000000005],
1253
+ [124.8063, 461.50070000000005]
1254
+ ],
1255
+ "system": "PixelSpace",
1256
+ "layout_width": 595.276,
1257
+ "layout_height": 793.701
1258
+ },
1259
+ "languages": ["eng"],
1260
+ "page_number": 1,
1261
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1262
+ "filename": "table-parse-case.pdf",
1263
+ "filetype": "application/pdf"
1264
+ }
1265
+ },
1266
+ {
1267
+ "type": "UncategorizedText",
1268
+ "element_id": "1be26cce-86b8-42b4-94a2-1a3f94fbabae",
1269
+ "text": "13.7",
1270
+ "metadata": {
1271
+ "coordinates": {
1272
+ "points": [
1273
+ [167.9073, 379.25870000000003],
1274
+ [167.9073, 388.25870000000003],
1275
+ [183.6573, 388.25870000000003],
1276
+ [183.6573, 379.25870000000003]
1277
+ ],
1278
+ "system": "PixelSpace",
1279
+ "layout_width": 595.276,
1280
+ "layout_height": 793.701
1281
+ },
1282
+ "languages": ["eng"],
1283
+ "page_number": 1,
1284
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1285
+ "filename": "table-parse-case.pdf",
1286
+ "filetype": "application/pdf"
1287
+ }
1288
+ },
1289
+ {
1290
+ "type": "UncategorizedText",
1291
+ "element_id": "f2ab9b47-2137-406a-9515-9918200573c2",
1292
+ "text": "18.4 17.6 20.3 20.6",
1293
+ "metadata": {
1294
+ "coordinates": {
1295
+ "points": [
1296
+ [167.9163, 402.26270000000005],
1297
+ [167.9163, 448.76570000000004],
1298
+ [183.6933, 448.76570000000004],
1299
+ [183.6933, 402.26270000000005]
1300
+ ],
1301
+ "system": "PixelSpace",
1302
+ "layout_width": 595.276,
1303
+ "layout_height": 793.701
1304
+ },
1305
+ "languages": ["eng"],
1306
+ "page_number": 1,
1307
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1308
+ "filename": "table-parse-case.pdf",
1309
+ "filetype": "application/pdf"
1310
+ }
1311
+ },
1312
+ {
1313
+ "type": "UncategorizedText",
1314
+ "element_id": "abaa7b7e-d197-42b1-9605-5a116dbfff50",
1315
+ "text": "9.4",
1316
+ "metadata": {
1317
+ "coordinates": {
1318
+ "points": [
1319
+ [172.4523, 461.50070000000005],
1320
+ [172.4523, 470.50070000000005],
1321
+ [183.7023, 470.50070000000005],
1322
+ [183.7023, 461.50070000000005]
1323
+ ],
1324
+ "system": "PixelSpace",
1325
+ "layout_width": 595.276,
1326
+ "layout_height": 793.701
1327
+ },
1328
+ "languages": ["eng"],
1329
+ "page_number": 1,
1330
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1331
+ "filename": "table-parse-case.pdf",
1332
+ "filetype": "application/pdf"
1333
+ }
1334
+ },
1335
+ {
1336
+ "type": "UncategorizedText",
1337
+ "element_id": "94371778-af97-4ad5-8446-941b23733aa9",
1338
+ "text": "1.000",
1339
+ "metadata": {
1340
+ "coordinates": {
1341
+ "points": [
1342
+ [226.8573, 421.9997],
1343
+ [226.8573, 430.9997],
1344
+ [247.1073, 430.9997],
1345
+ [247.1073, 421.9997]
1346
+ ],
1347
+ "system": "PixelSpace",
1348
+ "layout_width": 595.276,
1349
+ "layout_height": 793.701
1350
+ },
1351
+ "languages": ["eng"],
1352
+ "page_number": 1,
1353
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1354
+ "filename": "table-parse-case.pdf",
1355
+ "filetype": "application/pdf"
1356
+ }
1357
+ },
1358
+ {
1359
+ "type": "UncategorizedText",
1360
+ "element_id": "c5d81c01-d005-4114-8cc2-fed32d5b75c5",
1361
+ "text": "14.6",
1362
+ "metadata": {
1363
+ "coordinates": {
1364
+ "points": [
1365
+ [261.4083, 379.25870000000003],
1366
+ [261.4083, 388.25870000000003],
1367
+ [277.1583, 388.25870000000003],
1368
+ [277.1583, 379.25870000000003]
1369
+ ],
1370
+ "system": "PixelSpace",
1371
+ "layout_width": 595.276,
1372
+ "layout_height": 793.701
1373
+ },
1374
+ "languages": ["eng"],
1375
+ "page_number": 1,
1376
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1377
+ "filename": "table-parse-case.pdf",
1378
+ "filetype": "application/pdf"
1379
+ }
1380
+ },
1381
+ {
1382
+ "type": "UncategorizedText",
1383
+ "element_id": "dfbc1c1d-ab14-4be8-9522-339a0a1eb26f",
1384
+ "text": "18.5 17.9 18.8 20.3",
1385
+ "metadata": {
1386
+ "coordinates": {
1387
+ "points": [
1388
+ [261.4173, 402.26270000000005],
1389
+ [261.4173, 448.76570000000004],
1390
+ [277.1943, 448.76570000000004],
1391
+ [277.1943, 402.26270000000005]
1392
+ ],
1393
+ "system": "PixelSpace",
1394
+ "layout_width": 595.276,
1395
+ "layout_height": 793.701
1396
+ },
1397
+ "languages": ["eng"],
1398
+ "page_number": 1,
1399
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1400
+ "filename": "table-parse-case.pdf",
1401
+ "filetype": "application/pdf"
1402
+ }
1403
+ },
1404
+ {
1405
+ "type": "UncategorizedText",
1406
+ "element_id": "8abc037f-aa72-4dac-9378-56f8627dfd0b",
1407
+ "text": "9.8",
1408
+ "metadata": {
1409
+ "coordinates": {
1410
+ "points": [
1411
+ [265.9533, 461.50070000000005],
1412
+ [265.9533, 470.50070000000005],
1413
+ [277.2033, 470.50070000000005],
1414
+ [277.2033, 461.50070000000005]
1415
+ ],
1416
+ "system": "PixelSpace",
1417
+ "layout_width": 595.276,
1418
+ "layout_height": 793.701
1419
+ },
1420
+ "languages": ["eng"],
1421
+ "page_number": 1,
1422
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1423
+ "filename": "table-parse-case.pdf",
1424
+ "filetype": "application/pdf"
1425
+ }
1426
+ },
1427
+ {
1428
+ "type": "UncategorizedText",
1429
+ "element_id": "3298d7d8-bf53-4f98-a2f2-245a9bab6fc4",
1430
+ "text": "14.6",
1431
+ "metadata": {
1432
+ "coordinates": {
1433
+ "points": [
1434
+ [315.7413, 379.25870000000003],
1435
+ [315.7413, 388.25870000000003],
1436
+ [331.4913, 388.25870000000003],
1437
+ [331.4913, 379.25870000000003]
1438
+ ],
1439
+ "system": "PixelSpace",
1440
+ "layout_width": 595.276,
1441
+ "layout_height": 793.701
1442
+ },
1443
+ "languages": ["eng"],
1444
+ "page_number": 1,
1445
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1446
+ "filename": "table-parse-case.pdf",
1447
+ "filetype": "application/pdf"
1448
+ }
1449
+ },
1450
+ {
1451
+ "type": "UncategorizedText",
1452
+ "element_id": "e9659e9e-26f7-4366-b2fe-033198311e16",
1453
+ "text": "18.5 17.9 18.8 20.3",
1454
+ "metadata": {
1455
+ "coordinates": {
1456
+ "points": [
1457
+ [315.7503, 402.26270000000005],
1458
+ [315.7503, 448.76570000000004],
1459
+ [331.5273, 448.76570000000004],
1460
+ [331.5273, 402.26270000000005]
1461
+ ],
1462
+ "system": "PixelSpace",
1463
+ "layout_width": 595.276,
1464
+ "layout_height": 793.701
1465
+ },
1466
+ "languages": ["eng"],
1467
+ "page_number": 1,
1468
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1469
+ "filename": "table-parse-case.pdf",
1470
+ "filetype": "application/pdf"
1471
+ }
1472
+ },
1473
+ {
1474
+ "type": "UncategorizedText",
1475
+ "element_id": "9655a0e8-bdbe-4f7a-b756-529a211ef928",
1476
+ "text": "9.9",
1477
+ "metadata": {
1478
+ "coordinates": {
1479
+ "points": [
1480
+ [320.2863, 461.50070000000005],
1481
+ [320.2863, 470.50070000000005],
1482
+ [331.5363, 470.50070000000005],
1483
+ [331.5363, 461.50070000000005]
1484
+ ],
1485
+ "system": "PixelSpace",
1486
+ "layout_width": 595.276,
1487
+ "layout_height": 793.701
1488
+ },
1489
+ "languages": ["eng"],
1490
+ "page_number": 1,
1491
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1492
+ "filename": "table-parse-case.pdf",
1493
+ "filetype": "application/pdf"
1494
+ }
1495
+ },
1496
+ {
1497
+ "type": "UncategorizedText",
1498
+ "element_id": "3cfee1ca-8636-4e75-a7e2-3bf6be4bf919",
1499
+ "text": "1.000",
1500
+ "metadata": {
1501
+ "coordinates": {
1502
+ "points": [
1503
+ [379.0023, 421.9997],
1504
+ [379.0023, 430.9997],
1505
+ [399.2523, 430.9997],
1506
+ [399.2523, 421.9997]
1507
+ ],
1508
+ "system": "PixelSpace",
1509
+ "layout_width": 595.276,
1510
+ "layout_height": 793.701
1511
+ },
1512
+ "languages": ["eng"],
1513
+ "page_number": 1,
1514
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1515
+ "filename": "table-parse-case.pdf",
1516
+ "filetype": "application/pdf"
1517
+ }
1518
+ },
1519
+ {
1520
+ "type": "UncategorizedText",
1521
+ "element_id": "72f937ef-e4c9-42b3-9105-fdab69f41bae",
1522
+ "text": "14.4",
1523
+ "metadata": {
1524
+ "coordinates": {
1525
+ "points": [
1526
+ [414.4263, 379.25870000000003],
1527
+ [414.4263, 388.25870000000003],
1528
+ [430.1763, 388.25870000000003],
1529
+ [430.1763, 379.25870000000003]
1530
+ ],
1531
+ "system": "PixelSpace",
1532
+ "layout_width": 595.276,
1533
+ "layout_height": 793.701
1534
+ },
1535
+ "languages": ["eng"],
1536
+ "page_number": 1,
1537
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1538
+ "filename": "table-parse-case.pdf",
1539
+ "filetype": "application/pdf"
1540
+ }
1541
+ },
1542
+ {
1543
+ "type": "UncategorizedText",
1544
+ "element_id": "57f8468f-4498-43e7-8748-037eb6e96fa0",
1545
+ "text": "18.5 17.8 19.2 20.4",
1546
+ "metadata": {
1547
+ "coordinates": {
1548
+ "points": [
1549
+ [414.4353, 402.26270000000005],
1550
+ [414.4353, 448.76570000000004],
1551
+ [430.2123, 448.76570000000004],
1552
+ [430.2123, 402.26270000000005]
1553
+ ],
1554
+ "system": "PixelSpace",
1555
+ "layout_width": 595.276,
1556
+ "layout_height": 793.701
1557
+ },
1558
+ "languages": ["eng"],
1559
+ "page_number": 1,
1560
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1561
+ "filename": "table-parse-case.pdf",
1562
+ "filetype": "application/pdf"
1563
+ }
1564
+ },
1565
+ {
1566
+ "type": "UncategorizedText",
1567
+ "element_id": "3ca015fb-3968-4d51-bf47-2ece96b3bdf0",
1568
+ "text": "9.7",
1569
+ "metadata": {
1570
+ "coordinates": {
1571
+ "points": [
1572
+ [418.9713, 461.50070000000005],
1573
+ [418.9713, 470.50070000000005],
1574
+ [430.2213, 470.50070000000005],
1575
+ [430.2213, 461.50070000000005]
1576
+ ],
1577
+ "system": "PixelSpace",
1578
+ "layout_width": 595.276,
1579
+ "layout_height": 793.701
1580
+ },
1581
+ "languages": ["eng"],
1582
+ "page_number": 1,
1583
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1584
+ "filename": "table-parse-case.pdf",
1585
+ "filetype": "application/pdf"
1586
+ }
1587
+ },
1588
+ {
1589
+ "type": "UncategorizedText",
1590
+ "element_id": "dae32302-8f7b-4d71-b44e-2f0a434cd5f0",
1591
+ "text": "14.4",
1592
+ "metadata": {
1593
+ "coordinates": {
1594
+ "points": [
1595
+ [467.3373, 379.25870000000003],
1596
+ [467.3373, 388.25870000000003],
1597
+ [483.0873, 388.25870000000003],
1598
+ [483.0873, 379.25870000000003]
1599
+ ],
1600
+ "system": "PixelSpace",
1601
+ "layout_width": 595.276,
1602
+ "layout_height": 793.701
1603
+ },
1604
+ "languages": ["eng"],
1605
+ "page_number": 1,
1606
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1607
+ "filename": "table-parse-case.pdf",
1608
+ "filetype": "application/pdf"
1609
+ }
1610
+ },
1611
+ {
1612
+ "type": "UncategorizedText",
1613
+ "element_id": "696ad9fd-4eae-4786-904d-4a162288410a",
1614
+ "text": "18.5 17.8 19.2 20.4",
1615
+ "metadata": {
1616
+ "coordinates": {
1617
+ "points": [
1618
+ [467.3463, 402.26270000000005],
1619
+ [467.3463, 448.76570000000004],
1620
+ [483.1233, 448.76570000000004],
1621
+ [483.1233, 402.26270000000005]
1622
+ ],
1623
+ "system": "PixelSpace",
1624
+ "layout_width": 595.276,
1625
+ "layout_height": 793.701
1626
+ },
1627
+ "languages": ["eng"],
1628
+ "page_number": 1,
1629
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1630
+ "filename": "table-parse-case.pdf",
1631
+ "filetype": "application/pdf"
1632
+ }
1633
+ },
1634
+ {
1635
+ "type": "UncategorizedText",
1636
+ "element_id": "a3cac556-cb3c-4367-a308-b778ef97862a",
1637
+ "text": "9.7",
1638
+ "metadata": {
1639
+ "coordinates": {
1640
+ "points": [
1641
+ [471.8823, 461.50070000000005],
1642
+ [471.8823, 470.50070000000005],
1643
+ [483.1323, 470.50070000000005],
1644
+ [483.1323, 461.50070000000005]
1645
+ ],
1646
+ "system": "PixelSpace",
1647
+ "layout_width": 595.276,
1648
+ "layout_height": 793.701
1649
+ },
1650
+ "languages": ["eng"],
1651
+ "page_number": 1,
1652
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1653
+ "filename": "table-parse-case.pdf",
1654
+ "filetype": "application/pdf"
1655
+ }
1656
+ },
1657
+ {
1658
+ "type": "UncategorizedText",
1659
+ "element_id": "91930aa0-98f6-4ec8-8529-1c70870e6b88",
1660
+ "text": "1.000",
1661
+ "metadata": {
1662
+ "coordinates": {
1663
+ "points": [
1664
+ [527.0523, 421.9997],
1665
+ [527.0523, 430.9997],
1666
+ [547.3023, 430.9997],
1667
+ [547.3023, 421.9997]
1668
+ ],
1669
+ "system": "PixelSpace",
1670
+ "layout_width": 595.276,
1671
+ "layout_height": 793.701
1672
+ },
1673
+ "languages": ["eng"],
1674
+ "page_number": 1,
1675
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1676
+ "filename": "table-parse-case.pdf",
1677
+ "filetype": "application/pdf"
1678
+ }
1679
+ },
1680
+ {
1681
+ "type": "NarrativeText",
1682
+ "element_id": "39a35475-e735-4d79-aef9-b3fef8a8e4c5",
1683
+ "text": "Individuals were classified as fit, if the eFI score was below 0.12; mildly frail, if the score was between 0.12 and 0.24; moderately frail, if the score was between 0.24 and 0.36; severely frail, if the score was 0.36 and above. Differences between groups were assessed employing Chi-square test, Student’s t-test and the Kruskal–Wallis test, as appropriate.",
1684
+ "metadata": {
1685
+ "coordinates": {
1686
+ "points": [
1687
+ [28.6771, 481.99660000000006],
1688
+ [28.6771, 508.9886],
1689
+ [545.2371000000002, 508.9886],
1690
+ [545.2371000000002, 481.99660000000006]
1691
+ ],
1692
+ "system": "PixelSpace",
1693
+ "layout_width": 595.276,
1694
+ "layout_height": 793.701
1695
+ },
1696
+ "languages": ["eng"],
1697
+ "page_number": 1,
1698
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1699
+ "filename": "table-parse-case.pdf",
1700
+ "filetype": "application/pdf"
1701
+ }
1702
+ },
1703
+ {
1704
+ "type": "NarrativeText",
1705
+ "element_id": "081dc727-e8ed-470a-a5ce-fc80852facaf",
1706
+ "text": "was even lower in men (PR = 0.27, 95% CI = 0.18, 0.39) than in women (PR = 0.38, 95% CI = 0.30, 0.49; Figure 1), but the difference was not statistically sig- nificant (p = 0.097).",
1707
+ "metadata": {
1708
+ "coordinates": {
1709
+ "points": [
1710
+ [113.3858, 536.0932],
1711
+ [113.3858, 582.0932],
1712
+ [329.5758, 582.0932],
1713
+ [329.5758, 536.0932]
1714
+ ],
1715
+ "system": "PixelSpace",
1716
+ "layout_width": 595.276,
1717
+ "layout_height": 793.701
1718
+ },
1719
+ "languages": ["eng"],
1720
+ "page_number": 1,
1721
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1722
+ "filename": "table-parse-case.pdf",
1723
+ "filetype": "application/pdf"
1724
+ }
1725
+ },
1726
+ {
1727
+ "type": "NarrativeText",
1728
+ "element_id": "977cd147-5eb8-45e1-a5db-1ea003e733c9",
1729
+ "text": "Hyperlipidaemia. Treatment with lipid-lowering medications was lower in PwMS, as compared with matched controls (PR = 0.63, 95% CI = 0.54, 0.74). This was particularly pronounced for men (women: PR = 0.71, 95% CI = 0.59, 0.87; men: PR = 0.41, 95% CI = 0.37, 0.62).",
1730
+ "metadata": {
1731
+ "coordinates": {
1732
+ "points": [
1733
+ [113.3758, 598.0932],
1734
+ [113.3758, 668.0932],
1735
+ [329.59579999999994, 668.0932],
1736
+ [329.59579999999994, 598.0932]
1737
+ ],
1738
+ "system": "PixelSpace",
1739
+ "layout_width": 595.276,
1740
+ "layout_height": 793.701
1741
+ },
1742
+ "languages": ["eng"],
1743
+ "page_number": 1,
1744
+ "parent_id": "ace2f728-e6ea-4bac-9f2d-e773781698cf",
1745
+ "filename": "table-parse-case.pdf",
1746
+ "filetype": "application/pdf"
1747
+ }
1748
+ },
1749
+ {
1750
+ "type": "Title",
1751
+ "element_id": "d60a7775-c7fd-4f3a-96d6-9a5a6015b9fb",
1752
+ "text": "Differences in risk factor severity",
1753
+ "metadata": {
1754
+ "coordinates": {
1755
+ "points": [
1756
+ [113.3758, 696.0932],
1757
+ [113.3758, 706.0932],
1758
+ [246.87580000000003, 706.0932],
1759
+ [246.87580000000003, 696.0932]
1760
+ ],
1761
+ "system": "PixelSpace",
1762
+ "layout_width": 595.276,
1763
+ "layout_height": 793.701
1764
+ },
1765
+ "languages": ["eng"],
1766
+ "page_number": 1,
1767
+ "parent_id": "2d874eae-2423-412a-88ab-72a5544d3304",
1768
+ "filename": "table-parse-case.pdf",
1769
+ "filetype": "application/pdf"
1770
+ }
1771
+ },
1772
+ {
1773
+ "type": "NarrativeText",
1774
+ "element_id": "526253e5-0f1a-4ce8-b071-2393291fc1f4",
1775
+ "text": "As compared with matched controls, after adjustment, PwMS had a 0.4-mm Hg lower systolic blood",
1776
+ "metadata": {
1777
+ "coordinates": {
1778
+ "points": [
1779
+ [113.3758, 711.0932],
1780
+ [113.3758, 733.0932],
1781
+ [329.56579999999997, 733.0932],
1782
+ [329.56579999999997, 711.0932]
1783
+ ],
1784
+ "system": "PixelSpace",
1785
+ "layout_width": 595.276,
1786
+ "layout_height": 793.701
1787
+ },
1788
+ "languages": ["eng"],
1789
+ "page_number": 1,
1790
+ "parent_id": "d60a7775-c7fd-4f3a-96d6-9a5a6015b9fb",
1791
+ "filename": "table-parse-case.pdf",
1792
+ "filetype": "application/pdf"
1793
+ }
1794
+ },
1795
+ {
1796
+ "type": "NarrativeText",
1797
+ "element_id": "b7b63269-4a65-456b-bf50-e819c9bfcc05",
1798
+ "text": "pressure at the index year. The magnitude was greater for men than women, considering that men had almost a 3-mm Hg lower blood pressure than matched con- trols (overall: coeff. = −0.37, 95% CI = −0.60, −0.13; women: −0.54, 95% CI = −0.96, −0.12; men: −2.81, 95% CI = −3.84, −1.77). The differences were greater when restricting analyses to only those with a diagno- sis of hypertension at baseline, as PwMS had a 3.3- mm Hg lower systolic blood pressure then matched controls (coeff. = −3.27, 95% CI = −5.04, −1.50); dif- ferences were confirmed in women but not in men (women: coeff. = −2.56, 95% CI = −3.84, −1.27; men: −0.27, 95% CI = 0.01, −2.56).",
1799
+ "metadata": {
1800
+ "coordinates": {
1801
+ "points": [
1802
+ [339.0709, 534.1058],
1803
+ [339.0709, 688.1058],
1804
+ [555.2809, 688.1058],
1805
+ [555.2809, 534.1058]
1806
+ ],
1807
+ "system": "PixelSpace",
1808
+ "layout_width": 595.276,
1809
+ "layout_height": 793.701
1810
+ },
1811
+ "languages": ["eng"],
1812
+ "page_number": 1,
1813
+ "parent_id": "d60a7775-c7fd-4f3a-96d6-9a5a6015b9fb",
1814
+ "filename": "table-parse-case.pdf",
1815
+ "filetype": "application/pdf"
1816
+ }
1817
+ },
1818
+ {
1819
+ "type": "NarrativeText",
1820
+ "element_id": "461b001c-8b4e-4e60-8cb3-7ebde3399728",
1821
+ "text": "In contrast, PwMS had higher levels of diastolic blood pressure at baseline, as compared with matched controls (coeff. = 0.29, 95% CI = 0.14, 0.43). However,",
1822
+ "metadata": {
1823
+ "coordinates": {
1824
+ "points": [
1825
+ [339.0709, 699.1058],
1826
+ [339.0709, 733.1058],
1827
+ [555.2609, 733.1058],
1828
+ [555.2609, 699.1058]
1829
+ ],
1830
+ "system": "PixelSpace",
1831
+ "layout_width": 595.276,
1832
+ "layout_height": 793.701
1833
+ },
1834
+ "languages": ["eng"],
1835
+ "page_number": 1,
1836
+ "parent_id": "d60a7775-c7fd-4f3a-96d6-9a5a6015b9fb",
1837
+ "filename": "table-parse-case.pdf",
1838
+ "filetype": "application/pdf"
1839
+ }
1840
+ },
1841
+ {
1842
+ "type": "Footer",
1843
+ "element_id": "6d667678-bea2-4126-a4c3-34fa02e4b28d",
1844
+ "text": "674",
1845
+ "metadata": {
1846
+ "coordinates": {
1847
+ "points": [
1848
+ [25.5118, 755.2131],
1849
+ [25.5118, 761.7131],
1850
+ [36.8868, 761.7131],
1851
+ [36.8868, 755.2131]
1852
+ ],
1853
+ "system": "PixelSpace",
1854
+ "layout_width": 595.276,
1855
+ "layout_height": 793.701
1856
+ },
1857
+ "languages": ["eng"],
1858
+ "page_number": 1,
1859
+ "filename": "table-parse-case.pdf",
1860
+ "filetype": "application/pdf"
1861
+ }
1862
+ },
1863
+ {
1864
+ "type": "Footer",
1865
+ "element_id": "c9f07590-0155-4e99-bd77-e4292e329cab",
1866
+ "text": "journals.sagepub.com/home/msj",
1867
+ "metadata": {
1868
+ "coordinates": {
1869
+ "points": [
1870
+ [468.6233, 755.2131],
1871
+ [468.6233, 761.7131],
1872
+ [552.7592999999999, 761.7131],
1873
+ [552.7592999999999, 755.2131]
1874
+ ],
1875
+ "system": "PixelSpace",
1876
+ "layout_width": 595.276,
1877
+ "layout_height": 793.701
1878
+ },
1879
+ "languages": ["eng"],
1880
+ "links": [
1881
+ {
1882
+ "text": "journals . sagepub . com / home /",
1883
+ "url": "https://journals.sagepub.com/home/msj",
1884
+ "start_index": 0
1885
+ }
1886
+ ],
1887
+ "page_number": 1,
1888
+ "filename": "table-parse-case.pdf",
1889
+ "filetype": "application/pdf"
1890
+ }
1891
+ }
1892
+ ]