nnUNet API utilities¶
Utilities for nnU-Net model serving. The core functions handling the prediction workflows are:
- single_model_inference - runs the inference for a single model.
- multi_model_inference - runs the inference using multiple models (i.e. a model cascade).
- predict - wrapper around multi_model_inference which also handles file saving.
LabelManagerAdapter
¶
Adapter around nnU-Net LabelManager private state mutations.
Centralizes private attribute access (_all_labels, _regions) so calling
code does not directly mutate them.
Source code in src/nnunet_serve/nnunet_api_utils.py
__init__(label_manager)
¶
Initializes the adapter with a given LabelManager.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
label_manager
|
LabelManager
|
The nnU-Net LabelManager to adapt. |
required |
apply_subset_state(subset_state)
¶
Temporarily apply subset labels and always restore original state.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
subset_state
|
LabelSubsetState
|
The state to apply during the context. |
required |
Yields:
| Name | Type | Description |
|---|---|---|
None |
Allows execution within the modified label manager state. |
Source code in src/nnunet_serve/nnunet_api_utils.py
build_subset_state(class_idx)
¶
Build the temporary label mapping state for a class subset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
class_idx
|
int | list[int]
|
The index or indices of the classes to include. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
LabelSubsetState |
LabelSubsetState
|
The constructed subset state for inference. |
Source code in src/nnunet_serve/nnunet_api_utils.py
LabelSubsetState
dataclass
¶
Holds temporary label-manager state used for class-subset inference.
Attributes:
| Name | Type | Description |
|---|---|---|
prediction_indices |
list[int]
|
Indices of the classes to be kept in the prediction. |
used_labels |
list[int]
|
List of unique labels that are active in the current subset. |
correspondence_dict |
dict[int, int]
|
Mapping from subset label indices to original labels. |
Source code in src/nnunet_serve/nnunet_api_utils.py
SeriesLoader
¶
Load and cache medical image series as SimpleITK volumes.
This helper provides:
- Caching: each unique series path is read at most once.
- Optional DICOM loading via read_dicom_as_sitk.
- Optional on-access post-processing controlled by a suffix in the requested path.
The path string passed to __getitem__ (and used inside series_paths) can include
simple modifiers:
- "/path/to/seg.nii.gz=3": returns a binary mask (volume == 3) cast to sitkInt32.
- "/path/to/4d.nii.gz[0]": returns the slice/volume at the given index.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
series_paths
|
list[list[str]]
|
Nested list of series identifiers grouped by "stage". Each inner list is the set of series to be used at that stage. |
required |
is_dicom
|
bool
|
If |
False
|
bvalue_for_filtering
|
int | None
|
If provided when |
None
|
Source code in src/nnunet_serve/nnunet_api_utils.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 | |
__getitem__(path)
¶
Load a series (if needed) and return the (optionally processed) volume.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Series path, optionally suffixed with |
required |
Returns:
| Type | Description |
|---|---|
tuple[Image, list[str] | None]
|
A tuple |
Source code in src/nnunet_serve/nnunet_api_utils.py
__init__(series_paths, is_dicom=False, bvalue_for_filtering=None)
¶
Create a loader and pre-compute the unique series paths.
Note
Only the base path (without modifiers) is cached. For example,
requesting "image.nii.gz=1" and "image.nii.gz=2" will load
"image.nii.gz" once and apply post-processing per request.
Source code in src/nnunet_serve/nnunet_api_utils.py
__setitem__(key, value)
¶
Manually set/cache a volume for a given path.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str
|
The series identifier or path. |
required |
value
|
Image
|
The SimpleITK image to cache. |
required |
Source code in src/nnunet_serve/nnunet_api_utils.py
get_file_paths(stage)
¶
Return the DICOM file-path lists for a given stage.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stage
|
int
|
Index into |
required |
Returns:
| Type | Description |
|---|---|
list[list[str]]
|
List of file-path lists returned by |
list[list[str]]
|
For non-DICOM inputs, entries will be |
Source code in src/nnunet_serve/nnunet_api_utils.py
get_info(path)
¶
Parse a series path and extract any post-processing modifier.
Supported syntaxes:
- "<path>=<int>": equality comparison against the given integer label.
- "<path>[<int>]": SimpleITK index selection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Raw path string. |
required |
Returns:
| Type | Description |
|---|---|
str
|
A tuple |
int | None
|
|
int | None
|
|
tuple[str, int | None, int | None]
|
|
Source code in src/nnunet_serve/nnunet_api_utils.py
get_resampled(path, stage)
¶
Similar to getitem but resamples to first series in stage.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Series path, optionally suffixed with |
required |
stage
|
int
|
Index into |
required |
Returns:
| Type | Description |
|---|---|
Image
|
sitk.Image: The loaded image, resampled to match the first series in the stage. |
Source code in src/nnunet_serve/nnunet_api_utils.py
get_volumes(stage)
¶
might_be_mask(image)
¶
Makes an educated guess on whether image is a mask.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
image. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
Boolean which is True if image is an integer and has fewer than 50 unique values. |
Source code in src/nnunet_serve/nnunet_api_utils.py
post_process(volume, equal=None, index=None)
¶
Apply an optional post-processing operation to a loaded volume.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
volume
|
Image
|
Input SimpleITK image. |
required |
equal
|
int | None
|
If provided, returns |
None
|
index
|
int | None
|
If provided (and |
None
|
Returns:
| Type | Description |
|---|---|
Image
|
The processed (or original) image. |
Source code in src/nnunet_serve/nnunet_api_utils.py
register(image, stage, image_file_name='prediction.nii.gz')
¶
Registers an image for a specific stage.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The image to register. |
required |
stage
|
int
|
The stage index to associate the image with. |
required |
image_file_name
|
str
|
image file name presumed to be inside the stage directory. Defaults to "prediction.nii.gz". |
'prediction.nii.gz'
|
Source code in src/nnunet_serve/nnunet_api_utils.py
filter_labels(image, class_idx, binarize=False)
¶
Filters labels in an image.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
Image to filter. |
required |
class_idx
|
int | list[int] | None
|
List of class indices to keep. |
required |
binarize
|
bool
|
Whether to binarize the image. Defaults to False. |
False
|
Returns:
| Type | Description |
|---|---|
Image
|
sitk.Image: Filtered image. |
Source code in src/nnunet_serve/nnunet_api_utils.py
get_default_params(default_args)
¶
Returns a dict with default parameters. If default_args is a list of
dicts, the output will be a dictionary of lists whenever the key is in
CASCADE_ARGUMENTS and whose value will be that of the last dictionary
otherwise. If default_args is a dict the output will be
default_args.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
default_args
|
dict | list[dict]
|
default arguments. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict
|
correctly formatted default arguments. |
Raises:
| Type | Description |
|---|---|
ValueError
|
if |
Source code in src/nnunet_serve/nnunet_api_utils.py
get_info(dataset_json_path)
¶
get_series_paths(study_path, series_folders, n)
¶
Gets the complete paths for series given a study_path and the names of
series_folders. Given n, which is the number of nnUNet models which
will be running, this returns different values:
- When
n is None: returns a list of paths, a status message, and a possible error message. - When
n is not None and n > 0: returns a list of list of paths, a status message and a possible error message.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
study_path
|
str
|
path to study. |
required |
series_folders
|
list[str] | list[list[str]] | None
|
series folder names
relative to |
required |
n
|
int | None
|
number of nnUNet models to run. If None assumes a single model is run. |
required |
Returns:
| Type | Description |
|---|---|
tuple[list[str] | list[list[str]], str, str]
|
tuple[list[str] | list[list[str]], str, str]: A tuple containing: - series_paths (list[str] | list[list[str]]): The resolved complete paths. - status (str): SUCCESS_STATUS or FAILURE_STATUS. - error (str | None): Error message if status is FAILURE_STATUS. |
Source code in src/nnunet_serve/nnunet_api_utils.py
load_predictor(nnunet_path, checkpoint_name, mirroring, device_id, use_folds, min_mem=None)
¶
Loads a nnUNetPredictor instance from a trained model folder. Keeps everything in cache using a time-to-live cache, enabling batch-based operations.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
nnunet_path
|
str
|
Path to the nnUNet model folder. |
required |
checkpoint_name
|
str
|
Name of the checkpoint to use. |
required |
mirroring
|
bool
|
Whether to use mirroring during inference. |
required |
device_id
|
int
|
GPU identifier. |
required |
use_folds
|
bool
|
Whether to use folds during inference. |
required |
min_mem
|
int | None
|
Minimum amount of free memory required to use the GPU. Defaults to None. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
nnUNetPredictor |
nnUNetPredictor
|
A loaded nnUNetPredictor instance. |
Source code in src/nnunet_serve/nnunet_api_utils.py
multi_model_inference(nnunet_path, series_paths, class_idx=None, mirroring=False, device_id=None, checkpoint_name='checkpoint_best.pth', is_dicom=False, use_folds=(0,), proba_threshold=0.1, min_confidence=None, intersect_with=None, min_intersection=0.1, crop_from=None, crop_padding=None, cascade_mode='intersect', remove_objects_smaller_than=None, flip_xy=False, bvalue_for_filtering=None, min_mem=None)
¶
Prediction wraper for multiple models. Exports the outputs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
nnunet_path
|
str | list[str]
|
path or paths to nnUNet models. |
required |
series_paths
|
list[str] | list[list[str]]
|
list of paths or list of list of paths corresponding to series. |
required |
class_idx
|
int | list[int] | list[list[int]]
|
class index to export probability maps. Defaults to 1. |
None
|
checkpoint_name
|
str | list[str]
|
name of nnUNet checkpoint. Defaults to "checkpoint_best.pth". |
'checkpoint_best.pth'
|
mirroring
|
bool
|
whether to use mirroring during inference. Defaults to False. |
False
|
device_id
|
int | None
|
GPU identifier. Defaults to None (gets automatically assigned to the GPU with the most free memory). |
None
|
is_dicom
|
bool
|
whether the input/output is DICOM. Defaults to False. |
False
|
use_folds
|
tuple[int]
|
which folds should be used. Defaults to (0,). |
(0,)
|
proba_threshold
|
float | tuple[float] | list[float]
|
probability threshold to consider a pixel positive. Defaults to 0.1. |
0.1
|
min_confidence
|
float | tuple[float] | list[float] | None
|
minimum confidence to keep an object. Defaults to None. |
None
|
intersect_with
|
str | Image | None
|
whether the prediction should intersect with a given object. Defaults to None. |
None
|
min_intersection
|
float
|
fraction of prediction which should
intersect with |
0.1
|
crop_from
|
str | Image | None
|
whether the input should be cropped centered on a given mask object. Defaults to None. |
None
|
crop_padding
|
tuple[int, int, int] | None
|
padding to be added to the cropped region. Defaults to None. |
None
|
cascade_mode
|
str | list[str]
|
whether to crop inputs to consecutive bounding boxes or to intersect consecutive outputs. Defaults to "intersect". |
'intersect'
|
remove_objects_smaller_than
|
float | tuple[float] | list[float] | None
|
whether to remove objects smaller than this threshold. If a float is provided, it is considered as a percentage of the maximum object size. Defaults to None. |
None
|
flip_xy
|
bool
|
whether to flip the x and y axes of the input. TotalSegmentator does this for some reason. Defaults to False. |
False
|
bvalue_for_filtering
|
int | None
|
b-value to filter DICOM files by. Defaults to None. |
None
|
min_mem
|
int | None
|
minimum amount of free memory required to
use the GPU. Only used when |
None
|
Source code in src/nnunet_serve/nnunet_api_utils.py
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 | |
predict(series_paths, metadata, mirroring, device_id, params, nnunet_path, flip_xy=False, writing_process_pool=None)
¶
Runs the prediction for a set of models and returns exported output paths.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
series_paths
|
list
|
paths to series. |
required |
metadata
|
str
|
DICOM seg metadata. Has to be a dict with either "path"
(pointing towards a DCMQI metadata file) or a list of metadata
key-value pairs (please see |
required |
mirroring
|
bool
|
whether to use mirroring during inference. |
required |
device_id
|
int | None
|
GPU identifier. |
required |
params
|
dict
|
parameters which will be used in wraper. |
required |
nnunet_path
|
str | list[str]
|
path or paths to nnUNet model. |
required |
flip_xy
|
bool | list[bool]
|
whether to flip the x and y axes during inference. Defaults to False. |
False
|
writing_process_pool
|
ProcessPool | None
|
process pool to use for parallel file saving operations. Defaults to None. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict
|
mapping of output artifact keys to lists of paths. |
Source code in src/nnunet_serve/nnunet_api_utils.py
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 | |
predict_from_data_iterator_local(predictor, data_iterator, save_probabilities=False, class_idx=None)
¶
Adapts the original predict_from_data_iterator to use no multiprocessing.
Source code in src/nnunet_serve/nnunet_api_utils.py
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 | |
process_mask(mask_array, input_image, intersect_with=None, min_intersection=0.1, output_padding=None)
¶
Processes a mask array and returns a SITK mask image.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mask_array
|
ndarray
|
an array corresponding to a mask. |
required |
intersect_with
|
str | Image
|
calculates the intersection of each candidate with the image specified in intersect_with. If the intersection is larger than min_intersection, the candidate is kept; otherwise it is discarded. Defaults to None. |
None
|
min_intersection
|
float
|
minimum intersection over the union to keep candidate. Defaults to 0.1. |
0.1
|
output_padding
|
list[int] | None
|
padding to apply to the output mask. Defaults to None. |
None
|
Returns:
| Type | Description |
|---|---|
tuple[Image, bool]
|
sitk.Image: returns the probability mask after the candidate extraction protocol. |
Source code in src/nnunet_serve/nnunet_api_utils.py
process_proba_array(proba_array, input_image, proba_threshold=0.1, min_confidence=0.5, intersect_with=None, min_intersection=0.1, class_idx=None, output_padding=None)
¶
Exports a SITK probability mask and the corresponding probability map. Applies a candidate extraction protocol (threshold, CC analysis, min_confidence).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
proba_array
|
ndarray
|
an array corresponding to a probability map. |
required |
proba_threshold
|
float
|
sets values below this value to 0. |
0.1
|
min_confidence
|
float
|
removes objects whose maximum probability is lower than this value. |
0.5
|
intersect_with
|
str | Image
|
calculates the intersection of each candidate with the image specified in intersect_with. If the intersection is larger than min_intersection, the candidate is kept; otherwise it is discarded. Defaults to None. |
None
|
min_intersection
|
float
|
minimum intersection over the union to keep candidate. Defaults to 0.1. |
0.1
|
class_idx
|
int | list[int] | None
|
class index for output probability. Defaults to None (no selection). |
None
|
output_padding
|
list[int] | None
|
padding to apply to the output mask. Defaults to None. |
None
|
Returns:
| Type | Description |
|---|---|
tuple[Image, Image, bool]
|
tuple[sitk.Image, sitk.Image, bool]: (mask, proba_map, empty_flag) |
Source code in src/nnunet_serve/nnunet_api_utils.py
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 | |
single_model_inference(nnunet_path, volumes, class_idx=None, checkpoint_name='checkpoint_best.pth', mirroring=False, device_id=None, use_folds=[0], proba_threshold=None, min_confidence=None, intersect_with=None, intersect_with_class_idx=1, crop_from=None, crop_class_idx=1, crop_padding=None, min_intersection=0.1, remove_objects_smaller_than=None, flip_xy=False, min_mem=None)
¶
Runs the inference for a single model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
nnunet_path
|
str
|
path to nnUNet model. |
required |
volumes
|
list[Image]
|
series volumes. |
required |
class_idx
|
int | list[int]
|
class index for probability output. Defaults to 1. |
None
|
checkpoint_name
|
str
|
name of checkpoint in nnUNet model. Defaults to "checkpoint_best.pth". |
'checkpoint_best.pth'
|
mirroring
|
bool
|
whether to use mirroring during inference. Defaults to False. |
False
|
device_id
|
int | None
|
GPU identifier. Defaults to None (gets automatically assigned to the GPU with the most free memory). |
None
|
use_folds
|
list[int]
|
which folds from the nnUNet model will be used. Defaults to [0]. |
[0]
|
proba_threshold
|
float
|
probability threshold to consider a pixel positive positive. Defaults to 0.1. |
None
|
min_confidence
|
float | None
|
minimum confidence level for each detected object. Defaults to None. |
None
|
intersect_with
|
str | Image | None
|
whether the prediction should intersect with a given object. Defaults to None. |
None
|
intersect_with_class_idx
|
int | None
|
class index for intersection. Defaults to None. |
1
|
crop_from
|
str | Image | None
|
whether the input should be cropped centered on a given mask object. If specified as a string, it can be either the path or the path:class_idx. Defaults to None. |
None
|
crop_class_idx
|
int | None
|
class index for cropping. Defaults to None. |
1
|
crop_padding
|
tuple[int, int, int] | None
|
padding to be added to the cropped region. Defaults to None. |
None
|
min_intersection
|
float
|
fraction of prediction which should
intersect with |
0.1
|
remove_objects_smaller_than
|
float | None
|
whether to remove objects smaller than this threshold. If a float is provided, it is considered as a percentage of the maximum object size. Defaults to None. |
None
|
flip_xy
|
bool
|
whether to flip the x and y axes of the input. TotalSegmentator does this for some reason. Defaults to False. |
False
|
min_mem
|
int | None
|
minimum amount of free memory required to
use the GPU. Only used when |
None
|
Raises:
| Type | Description |
|---|---|
ValueError
|
if there is a mismatch between the number of series and the number of channels in the model. |
Returns:
| Type | Description |
|---|---|
tuple[list[str], str, list[list[str]], Image]
|
tuple[list[str], str, list[list[str]], sitk.Image]: prediction files, path to output mask, good DICOM file paths, probability map. |
Source code in src/nnunet_serve/nnunet_api_utils.py
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 | |