RF-DETR Seg 2XLarge
Bases: RFDETRSeg
Train an RF-DETR Segmentation 2XLarge model.
Training accepts custom square integer resolution values. The value must be divisible by patch_size *
num_windows; this variant uses multiples of 24.
Source code in src/rfdetr/variants.py
Attributes¶
class_names
property
¶
Retrieve the class names supported by the loaded model.
Returns:
| Type | Description |
|---|---|
list[str]
|
A list of class name strings, 0-indexed. When no custom class names are embedded in the checkpoint, returns |
list[str]
|
the standard 80 COCO class names. |
is_optimized_inplace
property
¶
Whether the model was optimized with inplace=True.
Returns True after a successful :meth:optimize_for_inference call with inplace=True,
meaning the base model has been cleared and :meth:remove_optimized_model is a no-op.
Examples:
>>> from types import SimpleNamespace
>>> import torch
>>> class _TinyModel(torch.nn.Module):
... def __init__(self):
... super().__init__()
... self.linear = torch.nn.Linear(1, 1)
... def forward(self, x):
... return {"pred_boxes": self.linear(x[:, :1, :1, :1].squeeze(-1).squeeze(-1))}
... def export(self):
... return None
>>> class _TinyContext:
... def __init__(self):
... self.device = torch.device("cpu")
... self.resolution = 28
... self.model = _TinyModel()
... self.inference_model = None
>>> model = object.__new__(RFDETR)
>>> model.model_config = SimpleNamespace(num_channels=3)
>>> model.model = _TinyContext()
>>> model._is_optimized_for_inference = False
>>> model._has_warned_about_not_being_optimized_for_inference = False
>>> model._optimized_has_been_compiled = False
>>> model._optimized_batch_size = None
>>> model._optimized_resolution = None
>>> model._optimized_dtype = None
>>> model._optimized_inplace = False
>>> model.is_optimized_inplace
False
>>> model.optimize_for_inference(compile=False, inplace=True)
>>> model.is_optimized_inplace
True
Functions¶
deploy_to_roboflow(workspace, project_id, version, api_key=None, size=None)
¶
Deploy the trained RF-DETR model to Roboflow.
Deploying with Roboflow will create a Serverless API to which you can make requests.
You can also download weights into a Roboflow Inference deployment for use in Roboflow Workflows and on-device deployment.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The name of the Roboflow workspace to deploy to. |
required |
|
str
|
The project ID to which the model will be deployed. |
required |
|
int | str
|
The project version to which the model will be deployed. |
required |
|
str | None
|
Your Roboflow API key. If not provided,
it will be read from the environment variable |
None
|
|
str | None
|
The size of the model to deploy. If not provided, it will default to the size of the model being trained (e.g., "rfdetr-base", "rfdetr-large", etc.). |
None
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If the |
Note
Bundle creation is delegated to :meth:export_for_roboflow, which can be called independently
to write weights.pt and class_names.txt without a network round-trip.
Source code in src/rfdetr/detr.py
export(output_dir='output', infer_dir=None, backbone_only=False, opset_version=17, verbose=True, shape=None, batch_size=1, dynamic_batch=False, patch_size=None, format='onnx', quantization=None, calibration_data=None, max_images=100, *, notes=None)
¶
Export the trained model to ONNX or TFLite format.
See the export documentation <https://rfdetr.roboflow.com/learn/export/>_ for more information.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Directory to write the exported model to. |
'output'
|
|
str | None
|
Optional directory of sample images for dynamic-axes inference. |
None
|
|
bool
|
Export only the backbone (feature extractor). |
False
|
|
int
|
ONNX opset version to target. |
17
|
|
bool
|
Print export progress information. |
True
|
|
tuple[int, int] | None
|
|
None
|
|
int
|
Static batch size to bake into the ONNX graph. |
1
|
|
bool
|
If True, export with a dynamic batch dimension so the ONNX model accepts variable batch sizes at runtime. |
False
|
|
int | None
|
Backbone patch size. Defaults to the value stored in
|
None
|
|
str
|
Export format — .. warning::
TFLite export is experimental and subject to change; upstream dependency instabilities ( |
'onnx'
|
|
str | None
|
TFLite quantization mode (ignored when
|
None
|
|
str | ndarray | None
|
Representative images for INT8 calibration and
For INT8 quantization, provide 20–100 representative images from your training/validation set for best accuracy. |
None
|
|
int
|
Maximum number of images to load from a calibration directory. Defaults to |
100
|
|
object
|
Optional user-defined metadata (string, dict, list, or
any JSON-serialisable value) to embed in the exported ONNX model under the |
None
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the exported model file ( |
Source code in src/rfdetr/detr.py
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 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 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 | |
export_for_roboflow(output_dir)
¶
Write a Roboflow upload bundle (weights.pt + class_names.txt) into output_dir.
This is the network-free core of :meth:deploy_to_roboflow: it serialises the model state and
training args into weights.pt, always embedding class_names into a copy of the args so
the bundle is self-contained, and writes the class labels to class_names.txt. The Roboflow
SDK uses this format to adapt raw PyTorch-Lightning checkpoints into a deploy-ready bundle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str | PathLike[str]
|
Directory into which |
required |
Raises:
| Type | Description |
|---|---|
PermissionError
|
If the process lacks write access to output_dir or its parent directory. |
OSError
|
On disk-full, invalid path, or other filesystem failure during directory creation,
file write, or |
Source code in src/rfdetr/detr.py
from_checkpoint(path, **kwargs)
classmethod
¶
Load an RF-DETR model from a training checkpoint, automatically inferring the model class.
The correct subclass is resolved in order of preference:
model_namekey in the checkpoint (written by the PTL training stack since v1.7.0).pretrain_weightsfield in the checkpoint'sargsentry (legacy fallback for older checkpoints).- The filename of path itself, used as a last resort when
pretrain_weightsis absent or an unset-like sentinel value (empty string,"none", or"null"). Starter weights published by Roboflow storepretrain_weights="none"in theirargs; passing the canonical filename (e.g.rf-detr-small.pth) letsfrom_checkpointinfer the class automatically.
Both legacy argparse.Namespace checkpoints (produced by engine.py) and dict-style checkpoints (produced
by the PTL training stack) are supported.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str | PathLike[str]
|
Path to a checkpoint file (e.g. |
required |
|
Any
|
Additional keyword arguments forwarded to the model
constructor (e.g.
In cases 2–5 the field is not recorded as a user-set override, so
:meth: |
{}
|
Returns:
| Type | Description |
|---|---|
RFDETR
|
An instance of the appropriate :class: |
Warning
This method calls torch.load with weights_only=False, which
unpickles arbitrary Python objects. Only load checkpoints from trusted sources.
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If path does not exist. |
OSError
|
If path exists but cannot be read. |
KeyError
|
If the checkpoint does not contain an |
ValueError
|
If the model class cannot be inferred from |
Examples:
>>> model = RFDETR.from_checkpoint("checkpoint_best_total.pth")
>>> model = RFDETRSmall.from_checkpoint("checkpoint_best_total.pth")
Source code in src/rfdetr/detr.py
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 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 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 577 578 579 580 581 582 583 584 585 586 587 588 589 590 | |
get_model(config)
¶
Retrieve a model context from the provided architecture configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
ModelConfig
|
Architecture configuration. |
required |
Returns:
| Type | Description |
|---|---|
ModelContext
|
ModelContext with model, postprocess, device, resolution, args, and class_names attributes. |
Source code in src/rfdetr/detr.py
get_model_config(**kwargs)
¶
get_train_config(**kwargs)
¶
maybe_download_pretrain_weights()
¶
Download pre-trained weights if they are not already downloaded.
Bare filenames (no directory component, e.g. rf-detr-base.pth) are resolved to the model cache directory —
set the RF_HOME environment variable to override the location (default: ~/.roboflow/models). Resolution
happens in ModelConfig.expand_path for explicitly-provided values, and here as a fallback for field defaults
(which Pydantic does not validate by default).
Paths that already contain a directory component are used as-is; the parent directory is created if it does not yet exist.
Source code in src/rfdetr/detr.py
optimize_for_inference(compile=True, batch_size=1, dtype=torch.float32, *, inplace=False)
¶
Optimize the model for inference with optional JIT compilation and dtype casting.
Operations are wrapped in the correct CUDA device context to prevent context leaks on multi-GPU setups. When
compile=True the model is traced with torch.jit.trace using a dummy input of batch_size images at
the model's current resolution. By default, optimization deep-copies the loaded model before exporting it so the
original module remains available. Set inplace=True for memory-constrained inference-only deployments; this
exports the loaded module itself, may cast it to dtype, and clears model.model after optimization
succeeds. In-place optimization is destructive: :meth:remove_optimized_model becomes a no-op (issues
:class:UserWarning), and :meth:export raises :class:RuntimeError. Create or reload a new RFDETR
instance to recover the original model.
If inplace=True and the underlying export() call mutates the module before raising (e.g. setting
internal flags and swapping forward), the exception handler resets RFDETR wrapper flags to the unoptimized
state but cannot undo changes made inside export(). Create a new RFDETR instance for reliable inference
after such a failure.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
bool
|
If |
True
|
|
int
|
Number of images the traced model will be optimized for. Ignored when |
1
|
|
dtype | str
|
Target floating-point dtype for the inference model. Accepts a
|
float32
|
|
bool
|
If |
False
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
ValueError
|
If |
RuntimeError
|
If the base model has already been cleared by a previous inplace optimization. |
Examples:
>>> from types import SimpleNamespace
>>> import torch
>>> class _TinyModel(torch.nn.Module):
... def __init__(self):
... super().__init__()
... self.linear = torch.nn.Linear(1, 1)
... def forward(self, x):
... return {"pred_boxes": self.linear(x[:, :1, :1, :1].squeeze(-1).squeeze(-1))}
... def export(self):
... return None
>>> class _TinyContext:
... def __init__(self):
... self.device = torch.device("cpu")
... self.resolution = 28
... self.model = _TinyModel()
... self.inference_model = None
>>> model = object.__new__(RFDETR)
>>> model.model_config = SimpleNamespace(num_channels=3)
>>> model.model = _TinyContext()
>>> model._is_optimized_for_inference = False
>>> model._has_warned_about_not_being_optimized_for_inference = False
>>> model._optimized_has_been_compiled = False
>>> model._optimized_batch_size = None
>>> model._optimized_resolution = None
>>> model._optimized_dtype = None
>>> model._optimized_inplace = False
>>> # Standard (non-inplace) optimization — reversible:
>>> model.optimize_for_inference(compile=False)
>>> model._is_optimized_for_inference
True
>>> model._optimized_inplace
False
>>> model.remove_optimized_model()
>>> model._is_optimized_for_inference
False
>>> # Inplace optimization — destructive, cannot be reversed:
>>> model.optimize_for_inference(compile=False, dtype="float16", inplace=True)
>>> model._is_optimized_for_inference
True
>>> model._optimized_dtype
torch.float16
>>> model._optimized_inplace
True
Source code in src/rfdetr/detr.py
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 940 941 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 | |
predict(images, threshold=0.5, shape=None, patch_size=None, include_source_image=True, **kwargs)
¶
Performs model inference on the input images.
This method accepts a single image or a list of images in various formats (file path, image url, PIL Image, NumPy array, or torch.Tensor). The images should be in RGB channel order. If a torch.Tensor is provided, it must already be normalized to values in the [0, 1] range and have the shape (C, H, W).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str | Image | ndarray | Tensor | list[str | ndarray | Image | Tensor]
|
A single image or a list of images to process. Images can be provided as file paths, PIL Images, NumPy arrays, or torch.Tensors. |
required |
|
float
|
The minimum confidence score needed to consider a detected bounding box valid. |
0.5
|
|
tuple[int, int] | None
|
Optional |
None
|
|
int | None
|
Backbone patch size used for shape divisibility validation. Defaults to |
None
|
|
bool
|
Whether to attach the original image to the returned prediction. Detection and segmentation outputs use
|
True
|
|
Any
|
Additional keyword arguments. |
{}
|
Returns:
| Type | Description |
|---|---|
Detections | KeyPoints | list[Detections | KeyPoints]
|
A single or multiple Supervision prediction objects. Detection and segmentation models return |
Detections | KeyPoints | list[Detections | KeyPoints]
|
class: |
Detections | KeyPoints | list[Detections | KeyPoints]
|
coordinates in |
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
is the postprocessed detection score and, by default, includes keypoint uncertainty fusion controlled by |
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
not a repeated copy of the detection score. When RF-DETR emits keypoint precision parameters, |
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
boxes as a |
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Detections | KeyPoints | list[Detections | KeyPoints]
|
|
Note
For Detections outputs, source_image moved from detections.data to detections.metadata.
Update detection callers reading detections.data["source_image"] to use
detections.metadata["source_image"].
Note
class_name mapping uses one of three modes depending on the checkpoint. For pretrained COCO checkpoints
(detected when model.args.num_classes > len(class_names) and class_names matches
COCO_CLASS_NAMES), raw COCO category IDs (1–90, sparse) are looked up by category ID rather than by
position — so class_id=18 yields "dog", not class_names[18]. For fine-tuned detection and
segmentation models and active-first keypoint models, class_id is a 0-based index into class_names.
Legacy keypoint checkpoints with args.num_keypoints_per_class[0] == 0 use a background-first layout:
slot 0 maps to "__background__" and foreground slots map to class_names in order.
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Source code in src/rfdetr/detr.py
1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 | |
remove_optimized_model()
¶
Remove the optimized inference model and reset all optimization flags.
Clears model.inference_model and resets all internal state set by :meth:optimize_for_inference. Safe to
call even if the model has not been optimized. When the model was optimized with inplace=True, this method
issues a :class:UserWarning and returns without modifying state — the original module cannot be restored
because export() and dtype casting mutate it; create or reload a new RFDETR instance instead.
Examples:
>>> from types import SimpleNamespace
>>> import torch
>>> class _TinyModel(torch.nn.Module):
... def __init__(self):
... super().__init__()
... self.linear = torch.nn.Linear(1, 1)
... def forward(self, x):
... return {"pred_boxes": self.linear(x[:, :1, :1, :1].squeeze(-1).squeeze(-1))}
... def export(self):
... return None
>>> class _TinyContext:
... def __init__(self):
... self.device = torch.device("cpu")
... self.resolution = 28
... self.model = _TinyModel()
... self.inference_model = None
>>> model = object.__new__(RFDETR)
>>> model.model_config = SimpleNamespace(num_channels=3)
>>> model.model = _TinyContext()
>>> model._is_optimized_for_inference = False
>>> model._has_warned_about_not_being_optimized_for_inference = False
>>> model._optimized_has_been_compiled = False
>>> model._optimized_batch_size = None
>>> model._optimized_resolution = None
>>> model._optimized_dtype = None
>>> model._optimized_inplace = False
>>> model.optimize_for_inference(compile=False)
>>> model.remove_optimized_model()
>>> model._is_optimized_for_inference
False
Source code in src/rfdetr/detr.py
train(**kwargs)
¶
Train an RF-DETR model via the PyTorch Lightning stack.
All keyword arguments are forwarded to :meth:get_train_config to build a :class:~rfdetr.config.TrainConfig.
Several kwargs are absorbed and handled specially so that existing call-sites do not break:
resolution— updates the model's input resolution by mutating :attr:model_config.resolutionin place before the train config is built. This change persists on :attr:model_configafter :meth:trainreturns. The value must be a positive integer divisible bypatch_size * num_windowsfor the model variant; a :class:ValueErroris raised otherwise. :attr:model_config.positional_encoding_sizeis also updated when the config derives it formulaically (PE == resolution // patch_size); configs with a pretrained-specific PE value (e.g.RFDETRBaseuses DINOv2's PE=37 at 560 px) are left unchanged to preserve checkpoint compatibility.device— normalized via :class:torch.deviceand mapped to PyTorch Lightning trainer arguments."cpu"becomesaccelerator="cpu";"cuda"and"cuda:N"becomeaccelerator="gpu"and optionallydevices=[N];"mps"becomesaccelerator="mps". Other valid torch device types fall back to PTL auto-detection and emit a :class:UserWarning.callbacks— if the dict contains any non-empty lists a :class:DeprecationWarningis emitted; the dict is then discarded. Use PTL :class:~pytorch_lightning.Callbackobjects passed via :func:~rfdetr.training.build_trainerinstead.start_epoch— emits :class:DeprecationWarningand is dropped.do_benchmark— emits :class:DeprecationWarningand is dropped.notes— optional user-defined metadata (string, dict, list, or any JSON-serialisable value) stored under the"notes"key in every.pthcheckpoint produced during training. The value is also available insideargs["notes"]for full provenance. Pass the same value to :meth:exportto embed it in the ONNX file as well.
After training completes the underlying nn.Module is synced back onto self.model.model so that
:meth:predict and :meth:export continue to work without reloading the checkpoint.
Raises:
| Type | Description |
|---|---|
ImportError
|
If training dependencies are not installed. Install with
|
ValueError
|
If |
Source code in src/rfdetr/detr.py
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 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 | |