From 40e833169555a5197ba59892e1ef66082f78b17d Mon Sep 17 00:00:00 2001 From: Michael Stangl Date: Fri, 4 Sep 2026 14:28:19 +0200 Subject: [PATCH] [TEST] Referenz-Namenskonvention vereinheitlicht + Kreisel/Omniflo-Referenzen abgenommen Konvention: Eine Referenz traegt IMMER denselben Dateinamen wie das Ist- Ergebnis in output/ (nur anderes Verzeichnis). Referenz festlegen = Datei aus output/ unter gleichem Namen nach reference/ kopieren. - tests/README.md: neuer Abschnitt "Referenz-Namenskonvention (vereinheitlicht)" mit Regel/Tabelle/copy-Beispiel; Namenskonventions-Tabelle, Fixture-Vorlage (_tests.dxf statt _ref.dxf) und die Workflow-Referenzabschnitte angeglichen. - tests/conftest.py: kreisel_ref_dxf laedt reference/kreisel_tests.dxf (vorher kreisel_ref.dxf). - tests/test_omniflo.py: Referenz reference/omniflo_export.csv (vorher omniflo_export_reference.csv). - Referenzen abgenommen und in Git aufgenommen: reference/kreisel_tests.dxf (Umbenennung des Tippfehlers Kresel_ref.dxf), reference/omniflo_export.csv (aus geprueftem output/omniflo_export.csv). Der Batch-Vergleich --diff_references matchte schon immer ueber identische Basisnamen und bleibt unveraendert. Der Kreisel-Referenztest laeuft dadurch jetzt statt zu skippen. Co-Authored-By: Claude Opus 4.8 (1M context) --- tests/README.md | 61 +- tests/conftest.py | 12 +- tests/reference/kreisel_tests.dxf | 28116 +++++++++++++++++++++++++++ tests/reference/omniflo_export.csv | 109 + tests/test_omniflo.py | 8 +- 5 files changed, 28294 insertions(+), 12 deletions(-) create mode 100644 tests/reference/kreisel_tests.dxf create mode 100644 tests/reference/omniflo_export.csv diff --git a/tests/README.md b/tests/README.md index fc310e1..b74f7dc 100644 --- a/tests/README.md +++ b/tests/README.md @@ -138,8 +138,8 @@ etc.) ist davon unberuehrt (GUI standardmaessig an). 3. **Kommandozeile**: Ergebnisse validieren: - `bin\run_tests.bat --check` — pytest prueft die Ergebnisse aus `output/` gegen Testdefinitionen und Referenzdaten (optional: einzelnes Modul, z.B. `--check test_kreisel.py`) - - `bin\run_tests.bat --diff_references` — vergleicht die CSVs in `output/` gegen `reference/` und oeffnet bei Unterschieden das Diff-Tool (meld); optional eine einzelne Datei, z.B. `--diff_references kreisel_tests_export.csv` - - Referenz aktualisieren (nach geprueftem Lauf): die betreffende(n) Datei(en) aus `output/` manuell nach `reference/` kopieren (es gibt keinen eigenen Schalter dafuer) + - `bin\run_tests.bat --diff_references` — vergleicht die CSVs in `output/` gegen `reference/` (gleicher Dateiname, siehe Abschnitt "Referenz-Namenskonvention") und oeffnet bei Unterschieden das Diff-Tool (meld); optional eine einzelne Datei, z.B. `--diff_references kreisel_tests_export.csv` + - Referenz aktualisieren (nach geprueftem Lauf): die betreffende(n) Datei(en) aus `output/` unter DEMSELBEN Namen nach `reference/` kopieren (es gibt keinen eigenen Schalter dafuer) ## Verzeichnisstruktur @@ -202,9 +202,45 @@ tests/ _export.csv # EXPORTCSV je Quelldatei, nur nach TEST_EXPORT_ALL _sivas.csv # EXPORTSIVAS je Quelldatei, nur nach TEST_EXPORT_ALL reference/ # Abgenommene Referenzdaten (in Git): *_results.json, - ... # *_tests_export.csv / *_tests_sivas.csv, export_raw.json + ... # *_tests_export.csv / *_tests_sivas.csv, *_tests.dxf, + ... # omniflo_export.csv, export_raw.json ``` +## Referenz-Namenskonvention (vereinheitlicht) + +**Eine Referenz traegt IMMER denselben Dateinamen wie das zugehoerige Ist-Ergebnis +in `output/`.** Der einzige Unterschied ist das Verzeichnis: + +``` +output/ # Ist-Ergebnis (bei jedem Lauf neu, nicht in Git) +reference/ # abgenommener Soll-Stand (identischer Name, in Git) +``` + +Damit gilt durchgehend: **Referenz festlegen = Datei aus `output/` nach `reference/` +kopieren** - kein Umbenennen, kein Suffix. Beispiele: + +| Ist-Ergebnis in `output/` | Referenz in `reference/` | +| --- | --- | +| `kreisel_tests.dxf` | `kreisel_tests.dxf` | +| `kreisel_tests_export.csv` | `kreisel_tests_export.csv` | +| `foerderer_results.json` | `foerderer_results.json` | +| `omniflo_export.csv` | `omniflo_export.csv` | + +```cmd +copy tests\output\kreisel_tests.dxf tests\reference\kreisel_tests.dxf +``` + +Frueher gab es zwei Ausreisser, die bewusst auf dieses Schema gezogen wurden +(nicht mehr verwenden): + +- `reference/kreisel_ref.dxf` (bzw. der Tippfehler `Kresel_ref.dxf`) -> jetzt + `reference/kreisel_tests.dxf` +- `reference/omniflo_export_reference.csv` -> jetzt `reference/omniflo_export.csv` + +Die pytest-Fixtures und -Checks suchen ausschliesslich nach dem vereinheitlichten +Namen; fehlt die Referenz, wird der Vergleich mit einem Hinweis uebersprungen +(kein Fehler). + ## Workflow ### 1. LISP-Tests in BricsCAD ausfuehren @@ -274,13 +310,21 @@ Tests, deren Eingabedaten fehlen (z.B. kein BricsCAD-Lauf), werden automatisch u ### 3. Referenz erstellen/aktualisieren Nach einem erfolgreichen, geprueften Testlauf die betreffende(n) Ergebnisdatei(en) -manuell aus `output/` nach `reference/` kopieren (nur bei bestandenen Tests). Es gibt -keinen eigenen Batch-Schalter dafuer. +manuell aus `output/` unter DEMSELBEN Dateinamen nach `reference/` kopieren (nur bei +bestandenen Tests, siehe Abschnitt "Referenz-Namenskonvention"). Es gibt keinen +eigenen Batch-Schalter dafuer. ```cmd copy tests\output\ tests\reference\ ``` +Beispiel (Kreisel-DXF und Omniflo-CSV als Referenz festlegen): + +```cmd +copy tests\output\kreisel_tests.dxf tests\reference\kreisel_tests.dxf +copy tests\output\omniflo_export.csv tests\reference\omniflo_export.csv +``` + Zum Vergleich der aktuellen CSVs gegen die Referenz (mit Diff-Tool meld): ```cmd @@ -419,6 +463,7 @@ Aus dem Basisnamen `` in `alltests.json` entstehen durch Konvention: | Export-Funktion | `:export-results` | `kreisel:export-results` | | JSON-Ergebnis | `output/_results.json` | `output/kreisel_results.json` | | DXF/DWG-Datei | `output/_tests.dxf/.dwg` | `output/kreisel_tests.dxf` | +| Referenz (Soll) | `reference/` | `reference/kreisel_tests.dxf` | Die Export-Funktion **muss** exakt so heissen: `:export-results` (Namespace-Notation mit Doppelpunkt). Sie nimmt genau einen Parameter entgegen: den Pfad zum Output-Verzeichnis. @@ -487,9 +532,11 @@ def _dxf(): @pytest.fixture def _ref_dxf(): - path = os.path.join(_reference_dir(), "_ref.dxf") + # Konvention: Referenz = GLEICHER Dateiname wie das Ist-Ergebnis in output/. + path = os.path.join(_reference_dir(), "_tests.dxf") if not os.path.exists(path): - pytest.skip("Referenz nicht vorhanden") + pytest.skip("reference/_tests.dxf nicht vorhanden - Referenz noch " + "nicht festgelegt (output/_tests.dxf nach reference/ kopieren)") return ezdxf.readfile(path) ``` diff --git a/tests/conftest.py b/tests/conftest.py index 8f5f53a..023fe7f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -121,10 +121,16 @@ def kreisel_dxf(): @pytest.fixture def kreisel_ref_dxf(): - """Laedt die Referenz-DXF aus reference/kreisel_ref.dxf.""" - path = os.path.join(_reference_dir(), "kreisel_ref.dxf") + """Laedt die Referenz-DXF aus reference/kreisel_tests.dxf. + + Konvention (siehe tests/README.md): Die Referenz traegt DENSELBEN + Dateinamen wie das Ist-Ergebnis in output/. Eine Referenz festlegen heisst + also schlicht: output/kreisel_tests.dxf nach reference/ kopieren. + """ + path = os.path.join(_reference_dir(), "kreisel_tests.dxf") if not os.path.exists(path): - pytest.skip("kreisel_ref.dxf nicht vorhanden - Referenz noch nicht erstellt") + pytest.skip("reference/kreisel_tests.dxf nicht vorhanden - Referenz noch " + "nicht festgelegt (output/kreisel_tests.dxf nach reference/ kopieren)") return ezdxf.readfile(path) diff --git a/tests/reference/kreisel_tests.dxf b/tests/reference/kreisel_tests.dxf new file mode 100644 index 0000000..8887241 --- /dev/null +++ b/tests/reference/kreisel_tests.dxf @@ -0,0 +1,28116 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1032 + 9 +$ACADMAINTVER + 90 + 55 + 9 +$DWGCODEPAGE + 3 +ANSI_1252 + 9 +$LASTSAVEDBY + 1 +m.stangl + 9 +$REQUIREDVERSIONS +160 + 0 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +-5300.0 + 20 +-6300.0 + 30 +0.0 + 9 +$EXTMAX + 10 +6344.486373 + 20 +11300.0 + 30 +3000.0 + 9 +$LIMMIN + 10 +0.0 + 20 +0.0 + 9 +$LIMMAX + 10 +420.0 + 20 +297.0 + 9 +$ORTHOMODE + 70 + 0 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 1 + 9 +$LTSCALE + 40 +1.0 + 9 +$ATTMODE + 70 + 1 + 9 +$TEXTSIZE + 40 +2.5 + 9 +$TRACEWID + 40 +1.0 + 9 +$TEXTSTYLE + 7 +Kreisel_Arial + 9 +$CLAYER + 8 +0 + 9 +$CELTYPE + 6 +ByLayer + 9 +$CECOLOR + 62 + 256 + 9 +$CELTSCALE + 40 +1.0 + 9 +$DISPSILH + 70 + 0 + 9 +$DIMSCALE + 40 +1.0 + 9 +$DIMASZ + 40 +2.5 + 9 +$DIMEXO + 40 +0.625 + 9 +$DIMDLI + 40 +3.75 + 9 +$DIMRND + 40 +0.0 + 9 +$DIMDLE + 40 +0.0 + 9 +$DIMEXE + 40 +1.25 + 9 +$DIMTP + 40 +0.0 + 9 +$DIMTM + 40 +0.0 + 9 +$DIMTXT + 40 +2.5 + 9 +$DIMCEN + 40 +2.5 + 9 +$DIMTSZ + 40 +0.0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 0 + 9 +$DIMSE1 + 70 + 0 + 9 +$DIMSE2 + 70 + 0 + 9 +$DIMTAD + 70 + 1 + 9 +$DIMZIN + 70 + 8 + 9 +$DIMBLK + 1 + + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 1 + 9 +$DIMPOST + 1 + + 9 +$DIMAPOST + 1 + + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 3 + 9 +$DIMALTF + 40 +0.03937 + 9 +$DIMLFAC + 40 +1.0 + 9 +$DIMTOFL + 70 + 1 + 9 +$DIMTVP + 40 +0.0 + 9 +$DIMTIX + 70 + 0 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +ISO-25 + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1.0 + 9 +$DIMGAP + 40 +0.625 + 9 +$DIMJUST + 70 + 0 + 9 +$DIMSD1 + 70 + 0 + 9 +$DIMSD2 + 70 + 0 + 9 +$DIMTOLJ + 70 + 0 + 9 +$DIMTZIN + 70 + 8 + 9 +$DIMALTZ + 70 + 0 + 9 +$DIMALTTZ + 70 + 0 + 9 +$DIMUPT + 70 + 0 + 9 +$DIMDEC + 70 + 2 + 9 +$DIMTDEC + 70 + 2 + 9 +$DIMALTU + 70 + 2 + 9 +$DIMALTTD + 70 + 3 + 9 +$DIMTXSTY + 7 +Standard + 9 +$DIMAUNIT + 70 + 0 + 9 +$DIMADEC + 70 + 0 + 9 +$DIMALTRND + 40 +0.0 + 9 +$DIMAZIN + 70 + 0 + 9 +$DIMDSEP + 70 + 44 + 9 +$DIMATFIT + 70 + 3 + 9 +$DIMFRAC + 70 + 0 + 9 +$DIMLDRBLK + 1 + + 9 +$DIMLUNIT + 70 + 2 + 9 +$DIMLWD + 70 + -2 + 9 +$DIMLWE + 70 + -2 + 9 +$DIMTMOVE + 70 + 0 + 9 +$DIMFXL + 40 +1.0 + 9 +$DIMFXLON + 70 + 0 + 9 +$DIMJOGANG + 40 +0.785398 + 9 +$DIMTFILL + 70 + 0 + 9 +$DIMTFILLCLR + 70 + 0 + 9 +$DIMARCSYM + 70 + 0 + 9 +$DIMLTYPE + 6 + + 9 +$DIMLTEX1 + 6 + + 9 +$DIMLTEX2 + 6 + + 9 +$DIMTXTDIRECTION + 70 + 0 + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 2 + 9 +$SKETCHINC + 40 +1.0 + 9 +$FILLETRAD + 40 +10.0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 2 + 9 +$MENU + 1 +. + 9 +$ELEVATION + 40 +0.0 + 9 +$PELEVATION + 40 +0.0 + 9 +$THICKNESS + 40 +0.0 + 9 +$LIMCHECK + 70 + 0 + 9 +$CHAMFERA + 40 +0.0 + 9 +$CHAMFERB + 40 +0.0 + 9 +$CHAMFERC + 40 +0.0 + 9 +$CHAMFERD + 40 +0.0 + 9 +$SKPOLY + 70 + 0 + 9 +$TDCREATE + 40 +2461288.583704364 + 9 +$TDUCREATE + 40 +2461288.50037103 + 9 +$TDUPDATE + 40 +2461288.583713102 + 9 +$TDUUPDATE + 40 +2461288.500379769 + 9 +$TDINDWG + 40 +0.0000082176 + 9 +$TDUSRTIMER + 40 +0.0000082176 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 0 + 9 +$PDSIZE + 40 +0.0 + 9 +$PLINEWID + 40 +0.0 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 6 + 9 +$SPLINESEGS + 70 + 8 + 9 +$HANDSEED + 5 +370 + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSBASE + 2 + + 9 +$UCSNAME + 2 + + 9 +$UCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$UCSORTHOREF + 2 + + 9 +$UCSORTHOVIEW + 70 + 0 + 9 +$UCSORGTOP + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSORGBOTTOM + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSORGLEFT + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSORGRIGHT + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSORGFRONT + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$UCSORGBACK + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSBASE + 2 + + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSXDIR + 10 +1.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSYDIR + 10 +0.0 + 20 +1.0 + 30 +0.0 + 9 +$PUCSORTHOREF + 2 + + 9 +$PUCSORTHOVIEW + 70 + 0 + 9 +$PUCSORGTOP + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSORGBOTTOM + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSORGLEFT + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSORGRIGHT + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSORGFRONT + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PUCSORGBACK + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0.0 + 9 +$USERR2 + 40 +0.0 + 9 +$USERR3 + 40 +0.0 + 9 +$USERR4 + 40 +0.0 + 9 +$USERR5 + 40 +0.0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 64 + 9 +$PINSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +1.000000E+20 + 20 +1.000000E+20 + 30 +1.000000E+20 + 9 +$PEXTMAX + 10 +-1.000000E+20 + 20 +-1.000000E+20 + 30 +-1.000000E+20 + 9 +$PLIMMIN + 10 +0.0 + 20 +0.0 + 9 +$PLIMMAX + 10 +420.0 + 20 +297.0 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 1 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 1 + 9 +$TREEDEPTH + 70 + 3020 + 9 +$CMLSTYLE + 2 +Standard + 9 +$CMLJUST + 70 + 0 + 9 +$CMLSCALE + 40 +20.0 + 9 +$PROXYGRAPHICS + 70 + 1 + 9 +$MEASUREMENT + 70 + 1 + 9 +$CELWEIGHT +370 + -1 + 9 +$ENDCAPS +280 + 0 + 9 +$JOINSTYLE +280 + 0 + 9 +$LWDISPLAY +290 + 0 + 9 +$INSUNITS + 70 + 4 + 9 +$HYPERLINKBASE + 1 + + 9 +$STYLESHEET + 1 + + 9 +$XEDIT +290 + 1 + 9 +$CEPSNTYPE +380 + 0 + 9 +$PSTYLEMODE +290 + 1 + 9 +$FINGERPRINTGUID + 2 +{cb7c89fb-65ae-416b-a359-932660f8e3ed} + 9 +$VERSIONGUID + 2 +{FAEB1C32-E019-11D5-929B-00C0DF256EC4} + 9 +$EXTNAMES +290 + 1 + 9 +$PSVPSCALE + 40 +0.0 + 9 +$OLESTARTUP +290 + 0 + 9 +$SORTENTS +280 + 127 + 9 +$INDEXCTL +280 + 0 + 9 +$HIDETEXT +280 + 1 + 9 +$XCLIPFRAME +280 + 2 + 9 +$HALOGAP +280 + 0 + 9 +$OBSCOLOR + 70 + 257 + 9 +$OBSLTYPE +280 + 0 + 9 +$INTERSECTIONDISPLAY +280 + 0 + 9 +$INTERSECTIONCOLOR + 70 + 257 + 9 +$DIMASSOC +280 + 2 + 9 +$PROJECTNAME + 1 + + 9 +$CAMERADISPLAY +290 + 0 + 9 +$LENSLENGTH + 40 +50.0 + 9 +$CAMERAHEIGHT + 40 +0.0 + 9 +$STEPSPERSEC + 40 +24.0 + 9 +$STEPSIZE + 40 +100.0 + 9 +$3DDWFPREC + 40 +2.0 + 9 +$PSOLWIDTH + 40 +5.0 + 9 +$PSOLHEIGHT + 40 +80.0 + 9 +$LOFTANG1 + 40 +1.570796 + 9 +$LOFTANG2 + 40 +1.570796 + 9 +$LOFTMAG1 + 40 +0.0 + 9 +$LOFTMAG2 + 40 +0.0 + 9 +$LOFTPARAM + 70 + 7 + 9 +$LOFTNORMALS +280 + 1 + 9 +$LATITUDE + 40 +37.795 + 9 +$LONGITUDE + 40 +-122.394 + 9 +$NORTHDIRECTION + 40 +0.0 + 9 +$TIMEZONE + 70 + -8000 + 9 +$LIGHTGLYPHDISPLAY +280 + 1 + 9 +$TILEMODELIGHTSYNCH +280 + 1 + 9 +$CMATERIAL +347 +45 + 9 +$SOLIDHIST +280 + 0 + 9 +$SHOWHIST +280 + 1 + 9 +$DWFFRAME +280 + 2 + 9 +$DGNFRAME +280 + 2 + 9 +$REALWORLDSCALE +290 + 1 + 9 +$INTERFERECOLOR + 62 + 256 + 9 +$CSHADOW +280 + 0 + 9 +$SHADOWPLANELOCATION + 40 +0.0 + 0 +ENDSEC + 0 +SECTION + 2 +CLASSES + 0 +CLASS + 1 +ACDBDICTIONARYWDFLT + 2 +AcDbDictionaryWithDefault + 3 +ObjectDBX Classes + 90 + 0 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +SUN + 2 +AcDbSun + 3 +SCENEOE + 90 + 1153 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +VISUALSTYLE + 2 +AcDbVisualStyle + 3 +ObjectDBX Classes + 90 + 4095 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +MATERIAL + 2 +AcDbMaterial + 3 +ObjectDBX Classes + 90 + 1153 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +SCALE + 2 +AcDbScale + 3 +ObjectDBX Classes + 90 + 1153 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +TABLESTYLE + 2 +AcDbTableStyle + 3 +ObjectDBX Classes + 90 + 4095 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +MLEADERSTYLE + 2 +AcDbMLeaderStyle + 3 +ACDB_MLEADERSTYLE_CLASS + 90 + 4095 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +DICTIONARYVAR + 2 +AcDbDictionaryVar + 3 +ObjectDBX Classes + 90 + 0 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +CELLSTYLEMAP + 2 +AcDbCellStyleMap + 3 +ObjectDBX Classes + 90 + 1152 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +MENTALRAYRENDERSETTINGS + 2 +AcDbMentalRayRenderSettings + 3 +SCENEOE + 90 + 1024 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +ACDBDETAILVIEWSTYLE + 2 +AcDbDetailViewStyle + 3 +ObjectDBX Classes + 90 + 1025 + 91 + 3 +280 + 0 +281 + 0 + 0 +CLASS + 1 +ACDBSECTIONVIEWSTYLE + 2 +AcDbSectionViewStyle + 3 +ObjectDBX Classes + 90 + 1025 + 91 + 3 +280 + 0 +281 + 0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 5 +8 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +VPORT + 5 +22 +330 +8 +100 +AcDbSymbolTableRecord +100 +AcDbViewportTableRecord + 2 +*Active + 70 + 0 + 10 +0.0 + 20 +0.0 + 11 +1.0 + 21 +1.0 + 12 +344.186916 + 22 +148.5 + 13 +0.0 + 23 +0.0 + 14 +10.0 + 24 +10.0 + 15 +10.0 + 25 +10.0 + 16 +0.0 + 26 +0.0 + 36 +1.0 + 17 +0.0 + 27 +0.0 + 37 +0.0 + 40 +297.0 + 41 +1.972973 + 42 +50.0 + 43 +0.0 + 44 +0.0 + 50 +0.0 + 51 +0.0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 3 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 0 +281 + 0 + 65 + 1 +110 +0.0 +120 +0.0 +130 +0.0 +111 +1.0 +121 +0.0 +131 +0.0 +112 +0.0 +122 +1.0 +132 +0.0 + 79 + 0 +146 +0.0 +348 +29 + 60 + 3 + 61 + 5 +292 + 0 +282 + 1 +141 +0.0 +142 +0.0 + 63 + 250 +361 +23 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 5 +5 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +LTYPE + 5 +14 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ByBlock + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +LTYPE + 5 +15 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ByLayer + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +LTYPE + 5 +16 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +Continuous + 70 + 0 + 3 +Solid line + 72 + 65 + 73 + 0 + 40 +0.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 5 +2 +102 +{ACAD_XDICTIONARY +360 +C4 +102 +} +330 +0 +100 +AcDbSymbolTable + 70 + 7 + 0 +LAYER + 5 +10 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +0 + 70 + 0 + 62 + 7 + 6 +Continuous +370 + -3 +390 +F +347 +47 +348 +0 + 0 +LAYER + 5 +93 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +1ANTR-800 + 70 + 0 + 62 + 1 + 6 +Continuous +370 + -3 +390 +F +347 +47 +348 +0 + 0 +LAYER + 5 +CE +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +1SP-800 + 70 + 0 + 62 + 1 + 6 +Continuous +370 + -3 +390 +F +347 +47 +348 +0 + 0 +LAYER + 5 +105 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +S_LP + 70 + 0 + 62 + 7 + 6 +Continuous +370 + -3 +390 +F +347 +47 +348 +0 + 0 +LAYER + 5 +109 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +S_KRS_BESCHR + 70 + 0 + 62 + 7 + 6 +Continuous +370 + -3 +390 +F +347 +47 +348 +0 + 0 +LAYER + 5 +14B +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +_3D_ILS_Kreisel + 70 + 0 + 62 + 7 + 6 +Continuous +370 + -3 +390 +F +347 +47 +348 +0 + 0 +LAYER + 5 +288 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +pinbereich + 70 + 0 + 62 + 3 + 6 +Continuous +370 + -3 +390 +F +347 +47 +348 +0 + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 5 +3 +330 +0 +100 +AcDbSymbolTable + 70 + 4 + 0 +STYLE + 5 +11 +330 +3 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +Standard + 70 + 0 + 40 +0.0 + 41 +1.0 + 50 +0.0 + 71 + 0 + 42 +2.5 + 3 +arial.ttf + 4 + +1001 +ACAD +1000 +Arial +1071 + 0 + 0 +STYLE + 5 +98 +330 +3 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +Pos + 70 + 0 + 40 +75.0 + 41 +1.0 + 50 +0.0 + 71 + 0 + 42 +2.5 + 3 +arial.ttf + 4 + +1001 +ACAD +1000 +Arial +1071 + 0 + 0 +STYLE + 5 +99 +330 +3 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +ROMAND + 70 + 0 + 40 +0.0 + 41 +1.0 + 50 +0.0 + 71 + 0 + 42 +2.5 + 3 +ROMAND + 4 + + 0 +STYLE + 5 +108 +330 +3 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +Kreisel_Arial + 70 + 0 + 40 +0.0 + 41 +1.0 + 50 +0.0 + 71 + 0 + 42 +2.5 + 3 + + 4 + +1001 +ACAD +1000 +Arial +1071 + 34 + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 5 +6 +330 +0 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 5 +7 +330 +0 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 5 +9 +330 +0 +100 +AcDbSymbolTable + 70 + 3 + 0 +APPID + 5 +12 +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +ACAD + 70 + 0 + 0 +APPID + 5 +97 +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +BDM_DB_ORIGINAL + 70 + 0 + 0 +APPID + 5 +139 +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +AcadAnnotative + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 5 +A +330 +0 +100 +AcDbSymbolTable + 70 + 1 +100 +AcDbDimStyleTable + 0 +DIMSTYLE +105 +42 +330 +A +100 +AcDbSymbolTableRecord +100 +AcDbDimStyleTableRecord + 2 +ISO-25 + 70 + 0 + 41 +2.5 + 42 +0.625 + 43 +3.75 + 44 +1.25 + 50 +45.0 + 73 + 0 + 74 + 0 + 77 + 1 + 78 + 8 +140 +2.5 +141 +2.5 +143 +0.03937 +147 +0.625 +171 + 3 +172 + 1 +178 + 0 +271 + 2 +272 + 2 +274 + 3 +278 + 44 +283 + 0 +284 + 8 +340 +11 + 0 +ENDTAB + 0 +TABLE + 2 +BLOCK_RECORD + 5 +1 +330 +0 +100 +AcDbSymbolTable + 70 + 11 + 0 +BLOCK_RECORD + 5 +1F +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Model_Space +340 +3D + 70 + 0 +280 + 1 +281 + 0 + 0 +BLOCK_RECORD + 5 +1B +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Paper_Space +340 +1E + 70 + 0 +280 + 1 +281 + 0 + 0 +BLOCK_RECORD + 5 +3E +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Paper_Space0 +340 +41 + 70 + 0 +280 + 1 +281 + 0 + 0 +BLOCK_RECORD + 5 +92 +102 +{ACAD_XDICTIONARY +360 +B9 +102 +} +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +AN8_3D +340 +0 +102 +{BLKREFS +331 +0 +331 +11B +331 +0 +331 +169 +331 +0 +331 +1B5 +331 +0 +331 +201 +331 +0 +331 +24D +331 +0 +331 +29C +331 +0 +331 +2EC +331 +0 +331 +33C +102 +} + 70 + 4 +280 + 1 +281 + 0 + 0 +BLOCK_RECORD + 5 +CD +102 +{ACAD_XDICTIONARY +360 +F3 +102 +} +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +SP8_3D +340 +0 +102 +{BLKREFS +331 +0 +331 +120 +331 +0 +331 +16E +331 +0 +331 +1BA +331 +0 +331 +206 +331 +0 +331 +252 +331 +0 +331 +2A1 +331 +0 +331 +2F1 +331 +0 +331 +341 +102 +} + 70 + 4 +280 + 1 +281 + 0 + 0 +BLOCK_RECORD + 5 +11A +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +KREISEL_1_STANDARD_2000 +340 +0 +102 +{BLKREFS +331 +13A +102 +} + 70 + 4 +280 + 1 +281 + 0 +1001 +AcadAnnotative +1000 +AnnotativeData +1002 +{ +1070 + 1 +1070 + 0 +1002 +} + 0 +BLOCK_RECORD + 5 +168 +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +KREISEL_2_STANDARD_3000 +340 +0 +102 +{BLKREFS +331 +187 +102 +} + 70 + 4 +280 + 1 +281 + 0 +1001 +AcadAnnotative +1000 +AnnotativeData +1002 +{ +1070 + 1 +1070 + 0 +1002 +} + 0 +BLOCK_RECORD + 5 +1B4 +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +KREISEL_3_STANDARD_4000 +340 +0 +102 +{BLKREFS +331 +1D3 +102 +} + 70 + 4 +280 + 1 +281 + 0 +1001 +AcadAnnotative +1000 +AnnotativeData +1002 +{ +1070 + 1 +1070 + 0 +1002 +} + 0 +BLOCK_RECORD + 5 +200 +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +KREISEL_4_STANDARD_5000 +340 +0 +102 +{BLKREFS +331 +21F +102 +} + 70 + 4 +280 + 1 +281 + 0 +1001 +AcadAnnotative +1000 +AnnotativeData +1002 +{ +1070 + 1 +1070 + 0 +1002 +} + 0 +BLOCK_RECORD + 5 +24C +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +KREISEL_5_STANDARD_3000 +340 +0 +102 +{BLKREFS +331 +26B +102 +} + 70 + 4 +280 + 1 +281 + 0 +1001 +AcadAnnotative +1000 +AnnotativeData +1002 +{ +1070 + 1 +1070 + 0 +1002 +} + 0 +BLOCK_RECORD + 5 +29B +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +KREISEL_6_PIN_3000 +340 +0 +102 +{BLKREFS +331 +2BC +102 +} + 70 + 4 +280 + 1 +281 + 0 +1001 +AcadAnnotative +1000 +AnnotativeData +1002 +{ +1070 + 1 +1070 + 0 +1002 +} + 0 +BLOCK_RECORD + 5 +2EB +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +KREISEL_7_PIN_4000 +340 +0 +102 +{BLKREFS +331 +30C +102 +} + 70 + 4 +280 + 1 +281 + 0 +1001 +AcadAnnotative +1000 +AnnotativeData +1002 +{ +1070 + 1 +1070 + 0 +1002 +} + 0 +BLOCK_RECORD + 5 +33B +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +KREISEL_8_PIN_3000 +340 +0 +102 +{BLKREFS +331 +35C +102 +} + 70 + 4 +280 + 1 +281 + 0 +1001 +AcadAnnotative +1000 +AnnotativeData +1002 +{ +1070 + 1 +1070 + 0 +1002 +} + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 5 +20 +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Model_Space + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*Model_Space + 1 + + 0 +ENDBLK + 5 +21 +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +1C +330 +1B +100 +AcDbEntity + 67 + 1 + 8 +0 +100 +AcDbBlockBegin + 2 +*Paper_Space + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*Paper_Space + 1 + + 0 +ENDBLK + 5 +1D +330 +1B +100 +AcDbEntity + 67 + 1 + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +3F +330 +3E +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Paper_Space0 + 70 + 0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +*Paper_Space0 + 1 + + 0 +ENDBLK + 5 +40 +330 +3E +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +C6 +330 +92 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +AN8_3D + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +AN8_3D + 1 + + 0 +TEXT + 5 +BB +330 +92 +100 +AcDbEntity + 8 +1ANTR-800 +100 +AcDbText + 10 +-97.660943 + 20 +-121.628499 + 30 +0.0 + 40 +245.0 + 1 +M + 41 +0.7 + 7 +ROMAND +100 +AcDbText +1001 +BDM_DB_ORIGINAL +1000 +1F2 + 0 +LINE + 5 +BC +330 +92 +100 +AcDbEntity + 8 +1ANTR-800 +100 +AcDbLine + 10 +0.0 + 20 +300.0 + 30 +0.0 + 11 +0.0 + 21 +400.0 + 31 +0.0 +1001 +BDM_DB_ORIGINAL +1000 +1F1 + 0 +LINE + 5 +BD +330 +92 +100 +AcDbEntity + 8 +1ANTR-800 +100 +AcDbLine + 10 +300.0 + 20 +0.0 + 30 +0.0 + 11 +400.0 + 21 +0.0 + 31 +0.0 +1001 +BDM_DB_ORIGINAL +1000 +1F0 + 0 +LINE + 5 +BE +330 +92 +100 +AcDbEntity + 8 +1ANTR-800 +100 +AcDbLine + 10 +-400.0 + 20 +0.0 + 30 +0.0 + 11 +-300.0 + 21 +0.0 + 31 +0.0 +1001 +BDM_DB_ORIGINAL +1000 +1EE + 0 +LINE + 5 +BF +330 +92 +100 +AcDbEntity + 8 +1ANTR-800 +100 +AcDbLine + 10 +0.0 + 20 +-400.0 + 30 +0.0 + 11 +0.0 + 21 +-300.0 + 31 +0.0 +1001 +BDM_DB_ORIGINAL +1000 +1EF + 0 +CIRCLE + 5 +C0 +330 +92 +100 +AcDbEntity + 8 +1ANTR-800 +100 +AcDbCircle + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +400.0 +1001 +BDM_DB_ORIGINAL +1000 +1ED + 0 +ATTDEF + 5 +C1 +330 +92 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttributeDefinition + 3 +ARTINR + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +C2 +330 +92 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +0.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_ANTR + 7 +Pos +100 +AcDbAttributeDefinition + 3 +LAYER + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +C3 +330 +92 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +0.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttributeDefinition + 3 +ID + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ENDBLK + 5 +C7 +330 +92 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +FE +330 +CD +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +SP8_3D + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +SP8_3D + 1 + + 0 +LINE + 5 +F5 +330 +CD +100 +AcDbEntity + 8 +1SP-800 +100 +AcDbLine + 10 +300.0 + 20 +0.0 + 30 +0.0 + 11 +400.0 + 21 +0.0 + 31 +0.0 +1001 +BDM_DB_ORIGINAL +1000 +1F8 + 0 +TEXT + 5 +F6 +330 +CD +100 +AcDbEntity + 8 +1SP-800 +100 +AcDbText + 10 +-83.591173 + 20 +-121.628499 + 30 +0.0 + 40 +245.0 + 1 +S + 41 +0.7 + 7 +ROMAND +100 +AcDbText +1001 +BDM_DB_ORIGINAL +1000 +1F7 + 0 +LINE + 5 +F7 +330 +CD +100 +AcDbEntity + 8 +1SP-800 +100 +AcDbLine + 10 +0.0 + 20 +300.0 + 30 +0.0 + 11 +0.0 + 21 +400.0 + 31 +0.0 +1001 +BDM_DB_ORIGINAL +1000 +1F6 + 0 +LINE + 5 +F8 +330 +CD +100 +AcDbEntity + 8 +1SP-800 +100 +AcDbLine + 10 +0.0 + 20 +-400.0 + 30 +0.0 + 11 +0.0 + 21 +-300.0 + 31 +0.0 +1001 +BDM_DB_ORIGINAL +1000 +1F5 + 0 +LINE + 5 +F9 +330 +CD +100 +AcDbEntity + 8 +1SP-800 +100 +AcDbLine + 10 +-400.0 + 20 +0.0 + 30 +0.0 + 11 +-300.0 + 21 +0.0 + 31 +0.0 +1001 +BDM_DB_ORIGINAL +1000 +1F4 + 0 +CIRCLE + 5 +FA +330 +CD +100 +AcDbEntity + 8 +1SP-800 +100 +AcDbCircle + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +400.0 +1001 +BDM_DB_ORIGINAL +1000 +1F3 + 0 +ATTDEF + 5 +FB +330 +CD +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttributeDefinition + 3 +ARTINR + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +FC +330 +CD +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +0.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_UMLENK + 7 +Pos +100 +AcDbAttributeDefinition + 3 +LAYER + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +FD +330 +CD +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +0.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttributeDefinition + 3 +ID + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ENDBLK + 5 +FF +330 +CD +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +137 +330 +11A +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +KREISEL_1_STANDARD_2000 + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +KREISEL_1_STANDARD_2000 + 1 + + 0 +INSERT + 5 +11B +330 +11A +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +AN8_3D + 10 +400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +11C +330 +11B +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +11D +330 +11B +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_ANTR + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +11E +330 +11B +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +11F +330 +11B +100 +AcDbEntity + 8 +0 + 0 +INSERT + 5 +120 +330 +11A +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +SP8_3D + 10 +2400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +121 +330 +120 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +2400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +122 +330 +120 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +2400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_UMLENK + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +123 +330 +120 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +2400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +124 +330 +120 +100 +AcDbEntity + 8 +0 + 0 +LINE + 5 +125 +330 +11A +100 +AcDbEntity + 8 +S_LP + 62 + 1 +100 +AcDbLine + 10 +400.0 + 20 +400.0 + 30 +0.0 + 11 +2400.0 + 21 +400.0 + 31 +0.0 + 0 +LINE + 5 +126 +330 +11A +100 +AcDbEntity + 8 +S_LP + 62 + 1 +100 +AcDbLine + 10 +400.0 + 20 +-400.0 + 30 +0.0 + 11 +2400.0 + 21 +-400.0 + 31 +0.0 + 0 +TEXT + 5 +127 +330 +11A +100 +AcDbEntity + 8 +S_KRS_BESCHR + 62 + 7 +100 +AcDbText + 10 +429.433834 + 20 +-50.0 + 30 +0.0 + 40 +100.0 + 1 +KREISEL 1: STANDARD_2000 + 7 +Kreisel_Arial + 72 + 1 + 11 +1400.0 + 21 +0.0 + 31 +0.0 +100 +AcDbText + 73 + 2 + 0 +ATTDEF + 5 +128 +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ID + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +129 +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-100.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +Bezeichnung + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +12A +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 +6200 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ARTINR + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +12B +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-300.0 + 30 +0.0 + 40 +50.0 + 1 +0.000 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +MONTAGEHOEHE_m + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +12C +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +HOEHE + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +12D +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-500.0 + 30 +0.0 + 40 +50.0 + 1 +STANDARD + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +KREISELART + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +12E +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-600.0 + 30 +0.0 + 40 +50.0 + 1 +2300 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ABSTAND + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +12F +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-700.0 + 30 +0.0 + 40 +50.0 + 1 +2 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SEPARATOR + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +130 +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-800.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SCANNER + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +131 +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-900.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_RAMPEN + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +132 +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1000.0 + 30 +0.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_EINZELMODUL + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +133 +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1100.0 + 30 +0.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_TYP + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +134 +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1200.0 + 30 +0.0 + 40 +50.0 + 1 +UZS + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHRICHTUNG + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +135 +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1300.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHUNG + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +136 +330 +11A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +NUMMER + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ENDBLK + 5 +138 +330 +11A +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +185 +330 +168 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +KREISEL_2_STANDARD_3000 + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +KREISEL_2_STANDARD_3000 + 1 + + 0 +INSERT + 5 +169 +330 +168 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +AN8_3D + 10 +400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +16A +330 +169 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +16B +330 +169 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_ANTR + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +16C +330 +169 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +16D +330 +169 +100 +AcDbEntity + 8 +0 + 0 +INSERT + 5 +16E +330 +168 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +SP8_3D + 10 +3400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +16F +330 +16E +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +170 +330 +16E +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_UMLENK + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +171 +330 +16E +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +172 +330 +16E +100 +AcDbEntity + 8 +0 + 0 +LINE + 5 +173 +330 +168 +100 +AcDbEntity + 8 +S_LP + 62 + 1 +100 +AcDbLine + 10 +400.0 + 20 +400.0 + 30 +0.0 + 11 +3400.0 + 21 +400.0 + 31 +0.0 + 0 +LINE + 5 +174 +330 +168 +100 +AcDbEntity + 8 +S_LP + 62 + 1 +100 +AcDbLine + 10 +400.0 + 20 +-400.0 + 30 +0.0 + 11 +3400.0 + 21 +-400.0 + 31 +0.0 + 0 +TEXT + 5 +175 +330 +168 +100 +AcDbEntity + 8 +S_KRS_BESCHR + 62 + 7 +100 +AcDbText + 10 +929.433834 + 20 +-50.0 + 30 +0.0 + 40 +100.0 + 1 +KREISEL 2: STANDARD_3000 + 7 +Kreisel_Arial + 72 + 1 + 11 +1900.0 + 21 +0.0 + 31 +0.0 +100 +AcDbText + 73 + 2 + 0 +ATTDEF + 5 +176 +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ID + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +177 +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-100.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +Bezeichnung + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +178 +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 +6200 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ARTINR + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +179 +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-300.0 + 30 +0.0 + 40 +50.0 + 1 +0.000 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +MONTAGEHOEHE_m + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +17A +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +HOEHE + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +17B +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-500.0 + 30 +0.0 + 40 +50.0 + 1 +STANDARD + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +KREISELART + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +17C +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-600.0 + 30 +0.0 + 40 +50.0 + 1 +2300 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ABSTAND + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +17D +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-700.0 + 30 +0.0 + 40 +50.0 + 1 +2 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SEPARATOR + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +17E +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-800.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SCANNER + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +17F +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-900.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_RAMPEN + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +180 +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1000.0 + 30 +0.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_EINZELMODUL + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +181 +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1100.0 + 30 +0.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_TYP + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +182 +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1200.0 + 30 +0.0 + 40 +50.0 + 1 +UZS + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHRICHTUNG + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +183 +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1300.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHUNG + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +184 +330 +168 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +NUMMER + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ENDBLK + 5 +186 +330 +168 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +1D1 +330 +1B4 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +KREISEL_3_STANDARD_4000 + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +KREISEL_3_STANDARD_4000 + 1 + + 0 +INSERT + 5 +1B5 +330 +1B4 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +AN8_3D + 10 +400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +1B6 +330 +1B5 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +1B7 +330 +1B5 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_ANTR + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +1B8 +330 +1B5 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +1B9 +330 +1B5 +100 +AcDbEntity + 8 +0 + 0 +INSERT + 5 +1BA +330 +1B4 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +SP8_3D + 10 +4400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +1BB +330 +1BA +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +4400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +1BC +330 +1BA +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +4400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_UMLENK + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +1BD +330 +1BA +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +4400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +1BE +330 +1BA +100 +AcDbEntity + 8 +0 + 0 +LINE + 5 +1BF +330 +1B4 +100 +AcDbEntity + 8 +S_LP + 62 + 1 +100 +AcDbLine + 10 +400.0 + 20 +400.0 + 30 +0.0 + 11 +4400.0 + 21 +400.0 + 31 +0.0 + 0 +LINE + 5 +1C0 +330 +1B4 +100 +AcDbEntity + 8 +S_LP + 62 + 1 +100 +AcDbLine + 10 +400.0 + 20 +-400.0 + 30 +0.0 + 11 +4400.0 + 21 +-400.0 + 31 +0.0 + 0 +TEXT + 5 +1C1 +330 +1B4 +100 +AcDbEntity + 8 +S_KRS_BESCHR + 62 + 7 +100 +AcDbText + 10 +1429.433834 + 20 +-50.0 + 30 +0.0 + 40 +100.0 + 1 +KREISEL 3: STANDARD_4000 + 7 +Kreisel_Arial + 72 + 1 + 11 +2400.0 + 21 +0.0 + 31 +0.0 +100 +AcDbText + 73 + 2 + 0 +ATTDEF + 5 +1C2 +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ID + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1C3 +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-100.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +Bezeichnung + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1C4 +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 +6200 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ARTINR + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1C5 +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-300.0 + 30 +0.0 + 40 +50.0 + 1 +0.000 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +MONTAGEHOEHE_m + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1C6 +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +HOEHE + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1C7 +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-500.0 + 30 +0.0 + 40 +50.0 + 1 +STANDARD + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +KREISELART + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1C8 +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-600.0 + 30 +0.0 + 40 +50.0 + 1 +2300 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ABSTAND + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1C9 +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-700.0 + 30 +0.0 + 40 +50.0 + 1 +2 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SEPARATOR + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1CA +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-800.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SCANNER + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1CB +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-900.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_RAMPEN + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1CC +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1000.0 + 30 +0.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_EINZELMODUL + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1CD +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1100.0 + 30 +0.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_TYP + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1CE +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1200.0 + 30 +0.0 + 40 +50.0 + 1 +UZS + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHRICHTUNG + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1CF +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1300.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHUNG + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +1D0 +330 +1B4 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +NUMMER + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ENDBLK + 5 +1D2 +330 +1B4 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +21D +330 +200 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +KREISEL_4_STANDARD_5000 + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +KREISEL_4_STANDARD_5000 + 1 + + 0 +INSERT + 5 +201 +330 +200 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +AN8_3D + 10 +400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +202 +330 +201 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +203 +330 +201 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_ANTR + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +204 +330 +201 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +205 +330 +201 +100 +AcDbEntity + 8 +0 + 0 +INSERT + 5 +206 +330 +200 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +SP8_3D + 10 +5400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +207 +330 +206 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +5400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +208 +330 +206 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +5400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_UMLENK + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +209 +330 +206 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +5400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +20A +330 +206 +100 +AcDbEntity + 8 +0 + 0 +LINE + 5 +20B +330 +200 +100 +AcDbEntity + 8 +S_LP + 62 + 1 +100 +AcDbLine + 10 +400.0 + 20 +400.0 + 30 +0.0 + 11 +5400.0 + 21 +400.0 + 31 +0.0 + 0 +LINE + 5 +20C +330 +200 +100 +AcDbEntity + 8 +S_LP + 62 + 1 +100 +AcDbLine + 10 +400.0 + 20 +-400.0 + 30 +0.0 + 11 +5400.0 + 21 +-400.0 + 31 +0.0 + 0 +TEXT + 5 +20D +330 +200 +100 +AcDbEntity + 8 +S_KRS_BESCHR + 62 + 7 +100 +AcDbText + 10 +1929.433834 + 20 +-50.0 + 30 +0.0 + 40 +100.0 + 1 +KREISEL 4: STANDARD_5000 + 7 +Kreisel_Arial + 72 + 1 + 11 +2900.0 + 21 +0.0 + 31 +0.0 +100 +AcDbText + 73 + 2 + 0 +ATTDEF + 5 +20E +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ID + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +20F +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-100.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +Bezeichnung + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +210 +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 +6200 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ARTINR + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +211 +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-300.0 + 30 +0.0 + 40 +50.0 + 1 +0.000 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +MONTAGEHOEHE_m + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +212 +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +HOEHE + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +213 +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-500.0 + 30 +0.0 + 40 +50.0 + 1 +STANDARD + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +KREISELART + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +214 +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-600.0 + 30 +0.0 + 40 +50.0 + 1 +2300 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ABSTAND + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +215 +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-700.0 + 30 +0.0 + 40 +50.0 + 1 +2 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SEPARATOR + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +216 +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-800.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SCANNER + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +217 +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-900.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_RAMPEN + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +218 +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1000.0 + 30 +0.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_EINZELMODUL + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +219 +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1100.0 + 30 +0.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_TYP + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +21A +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1200.0 + 30 +0.0 + 40 +50.0 + 1 +UZS + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHRICHTUNG + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +21B +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1300.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHUNG + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +21C +330 +200 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +NUMMER + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ENDBLK + 5 +21E +330 +200 +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +269 +330 +24C +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +KREISEL_5_STANDARD_3000 + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +KREISEL_5_STANDARD_3000 + 1 + + 0 +INSERT + 5 +24D +330 +24C +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +AN8_3D + 10 +400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +24E +330 +24D +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +24F +330 +24D +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_ANTR + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +250 +330 +24D +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +251 +330 +24D +100 +AcDbEntity + 8 +0 + 0 +INSERT + 5 +252 +330 +24C +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +SP8_3D + 10 +3400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +253 +330 +252 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +254 +330 +252 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_UMLENK + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +255 +330 +252 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +256 +330 +252 +100 +AcDbEntity + 8 +0 + 0 +LINE + 5 +257 +330 +24C +100 +AcDbEntity + 8 +S_LP + 62 + 1 +100 +AcDbLine + 10 +400.0 + 20 +400.0 + 30 +0.0 + 11 +3400.0 + 21 +400.0 + 31 +0.0 + 0 +LINE + 5 +258 +330 +24C +100 +AcDbEntity + 8 +S_LP + 62 + 1 +100 +AcDbLine + 10 +400.0 + 20 +-400.0 + 30 +0.0 + 11 +3400.0 + 21 +-400.0 + 31 +0.0 + 0 +TEXT + 5 +259 +330 +24C +100 +AcDbEntity + 8 +S_KRS_BESCHR + 62 + 7 +100 +AcDbText + 10 +929.433834 + 20 +-50.0 + 30 +0.0 + 40 +100.0 + 1 +KREISEL 5: STANDARD_3000 + 7 +Kreisel_Arial + 72 + 1 + 11 +1900.0 + 21 +0.0 + 31 +0.0 +100 +AcDbText + 73 + 2 + 0 +ATTDEF + 5 +25A +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ID + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +25B +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-100.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +Bezeichnung + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +25C +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 +6200 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ARTINR + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +25D +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-300.0 + 30 +0.0 + 40 +50.0 + 1 +0.000 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +MONTAGEHOEHE_m + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +25E +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +HOEHE + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +25F +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-500.0 + 30 +0.0 + 40 +50.0 + 1 +STANDARD + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +KREISELART + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +260 +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-600.0 + 30 +0.0 + 40 +50.0 + 1 +2300 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ABSTAND + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +261 +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-700.0 + 30 +0.0 + 40 +50.0 + 1 +2 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SEPARATOR + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +262 +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-800.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SCANNER + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +263 +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-900.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_RAMPEN + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +264 +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1000.0 + 30 +0.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_EINZELMODUL + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +265 +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1100.0 + 30 +0.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_TYP + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +266 +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1200.0 + 30 +0.0 + 40 +50.0 + 1 +UZS + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHRICHTUNG + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +267 +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1300.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHUNG + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +268 +330 +24C +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-1400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +NUMMER + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ENDBLK + 5 +26A +330 +24C +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +2BA +330 +29B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +KREISEL_6_PIN_3000 + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +KREISEL_6_PIN_3000 + 1 + + 0 +INSERT + 5 +29C +330 +29B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +AN8_3D + 10 +400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +29D +330 +29C +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +29E +330 +29C +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_ANTR + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +29F +330 +29C +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +2A0 +330 +29C +100 +AcDbEntity + 8 +0 + 0 +INSERT + 5 +2A1 +330 +29B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +SP8_3D + 10 +3400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +2A2 +330 +2A1 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +2A3 +330 +2A1 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_UMLENK + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +2A4 +330 +2A1 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +2A5 +330 +2A1 +100 +AcDbEntity + 8 +0 + 0 +LINE + 5 +2A6 +330 +29B +100 +AcDbEntity + 8 +S_LP + 62 + 5 +100 +AcDbLine + 10 +400.0 + 20 +400.0 + 30 +0.0 + 11 +3400.0 + 21 +400.0 + 31 +0.0 + 0 +LINE + 5 +2A7 +330 +29B +100 +AcDbEntity + 8 +S_LP + 62 + 5 +100 +AcDbLine + 10 +400.0 + 20 +-400.0 + 30 +0.0 + 11 +3400.0 + 21 +-400.0 + 31 +0.0 + 0 +LINE + 5 +2A8 +330 +29B +100 +AcDbEntity + 8 +pinbereich + 62 + 3 +100 +AcDbLine + 10 +800.0 + 20 +300.0 + 30 +0.0 + 11 +3000.0 + 21 +300.0 + 31 +0.0 + 0 +LINE + 5 +2A9 +330 +29B +100 +AcDbEntity + 8 +pinbereich + 62 + 3 +100 +AcDbLine + 10 +800.0 + 20 +-300.0 + 30 +0.0 + 11 +3000.0 + 21 +-300.0 + 31 +0.0 + 0 +TEXT + 5 +2AA +330 +29B +100 +AcDbEntity + 8 +S_KRS_BESCHR + 62 + 7 +100 +AcDbText + 10 +1197.203274 + 20 +-50.0 + 30 +0.0 + 40 +100.0 + 1 +KREISEL 6: PIN_3000 + 7 +Kreisel_Arial + 72 + 1 + 11 +1900.0 + 21 +0.0 + 31 +0.0 +100 +AcDbText + 73 + 2 + 0 +ATTDEF + 5 +2AB +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ID + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2AC +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-100.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +Bezeichnung + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2AD +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 +6200 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ARTINR + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2AE +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-300.0 + 30 +0.0 + 40 +50.0 + 1 +0.000 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +MONTAGEHOEHE_m + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2AF +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +HOEHE + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2B0 +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-500.0 + 30 +0.0 + 40 +50.0 + 1 +STANDARD + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +KREISELART + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2B1 +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-600.0 + 30 +0.0 + 40 +50.0 + 1 +2300 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ABSTAND + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2B2 +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-700.0 + 30 +0.0 + 40 +50.0 + 1 +2 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SEPARATOR + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2B3 +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-800.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SCANNER + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2B4 +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-900.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_RAMPEN + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2B5 +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1000.0 + 30 +0.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_EINZELMODUL + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2B6 +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1100.0 + 30 +0.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_TYP + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2B7 +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1200.0 + 30 +0.0 + 40 +50.0 + 1 +UZS + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHRICHTUNG + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2B8 +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1300.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHUNG + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2B9 +330 +29B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +NUMMER + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ENDBLK + 5 +2BB +330 +29B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +30A +330 +2EB +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +KREISEL_7_PIN_4000 + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +KREISEL_7_PIN_4000 + 1 + + 0 +INSERT + 5 +2EC +330 +2EB +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +AN8_3D + 10 +400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +2ED +330 +2EC +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +2EE +330 +2EC +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_ANTR + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +2EF +330 +2EC +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +2F0 +330 +2EC +100 +AcDbEntity + 8 +0 + 0 +INSERT + 5 +2F1 +330 +2EB +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +SP8_3D + 10 +4400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +2F2 +330 +2F1 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +4400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +2F3 +330 +2F1 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +4400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_UMLENK + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +2F4 +330 +2F1 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +4400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +2F5 +330 +2F1 +100 +AcDbEntity + 8 +0 + 0 +LINE + 5 +2F6 +330 +2EB +100 +AcDbEntity + 8 +S_LP + 62 + 5 +100 +AcDbLine + 10 +400.0 + 20 +400.0 + 30 +0.0 + 11 +4400.0 + 21 +400.0 + 31 +0.0 + 0 +LINE + 5 +2F7 +330 +2EB +100 +AcDbEntity + 8 +S_LP + 62 + 5 +100 +AcDbLine + 10 +400.0 + 20 +-400.0 + 30 +0.0 + 11 +4400.0 + 21 +-400.0 + 31 +0.0 + 0 +LINE + 5 +2F8 +330 +2EB +100 +AcDbEntity + 8 +pinbereich + 62 + 3 +100 +AcDbLine + 10 +800.0 + 20 +300.0 + 30 +0.0 + 11 +4000.0 + 21 +300.0 + 31 +0.0 + 0 +LINE + 5 +2F9 +330 +2EB +100 +AcDbEntity + 8 +pinbereich + 62 + 3 +100 +AcDbLine + 10 +800.0 + 20 +-300.0 + 30 +0.0 + 11 +4000.0 + 21 +-300.0 + 31 +0.0 + 0 +TEXT + 5 +2FA +330 +2EB +100 +AcDbEntity + 8 +S_KRS_BESCHR + 62 + 7 +100 +AcDbText + 10 +1697.203274 + 20 +-50.0 + 30 +0.0 + 40 +100.0 + 1 +KREISEL 7: PIN_4000 + 7 +Kreisel_Arial + 72 + 1 + 11 +2400.0 + 21 +0.0 + 31 +0.0 +100 +AcDbText + 73 + 2 + 0 +ATTDEF + 5 +2FB +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ID + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2FC +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-100.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +Bezeichnung + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2FD +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 +6200 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ARTINR + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2FE +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-300.0 + 30 +0.0 + 40 +50.0 + 1 +0.000 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +MONTAGEHOEHE_m + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +2FF +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +HOEHE + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +300 +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-500.0 + 30 +0.0 + 40 +50.0 + 1 +STANDARD + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +KREISELART + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +301 +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-600.0 + 30 +0.0 + 40 +50.0 + 1 +2300 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ABSTAND + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +302 +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-700.0 + 30 +0.0 + 40 +50.0 + 1 +2 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SEPARATOR + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +303 +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-800.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SCANNER + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +304 +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-900.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_RAMPEN + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +305 +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1000.0 + 30 +0.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_EINZELMODUL + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +306 +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1100.0 + 30 +0.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_TYP + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +307 +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1200.0 + 30 +0.0 + 40 +50.0 + 1 +UZS + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHRICHTUNG + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +308 +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1300.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHUNG + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +309 +330 +2EB +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +NUMMER + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ENDBLK + 5 +30B +330 +2EB +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +35A +330 +33B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +KREISEL_8_PIN_3000 + 70 + 2 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 3 +KREISEL_8_PIN_3000 + 1 + + 0 +INSERT + 5 +33C +330 +33B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +AN8_3D + 10 +400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +33D +330 +33C +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +33E +330 +33C +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_ANTR + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +33F +330 +33C +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +340 +330 +33C +100 +AcDbEntity + 8 +0 + 0 +INSERT + 5 +341 +330 +33B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockReference + 66 + 1 + 2 +SP8_3D + 10 +3400.0 + 20 +0.0 + 30 +0.0 + 0 +ATTRIB + 5 +342 +330 +341 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +343 +330 +341 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +-50.0 + 30 +0.0 + 40 +50.0 + 1 +_3D_ILS_UMLENK + 7 +Pos +100 +AcDbAttribute + 2 +LAYER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTRIB + 5 +344 +330 +341 +100 +AcDbEntity + 8 +0 +100 +AcDbText + 10 +3400.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Pos +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +SEQEND + 5 +345 +330 +341 +100 +AcDbEntity + 8 +0 + 0 +LINE + 5 +346 +330 +33B +100 +AcDbEntity + 8 +S_LP + 62 + 5 +100 +AcDbLine + 10 +400.0 + 20 +400.0 + 30 +0.0 + 11 +3400.0 + 21 +400.0 + 31 +0.0 + 0 +LINE + 5 +347 +330 +33B +100 +AcDbEntity + 8 +S_LP + 62 + 5 +100 +AcDbLine + 10 +400.0 + 20 +-400.0 + 30 +0.0 + 11 +3400.0 + 21 +-400.0 + 31 +0.0 + 0 +LINE + 5 +348 +330 +33B +100 +AcDbEntity + 8 +pinbereich + 62 + 3 +100 +AcDbLine + 10 +800.0 + 20 +300.0 + 30 +0.0 + 11 +3000.0 + 21 +300.0 + 31 +0.0 + 0 +LINE + 5 +349 +330 +33B +100 +AcDbEntity + 8 +pinbereich + 62 + 3 +100 +AcDbLine + 10 +800.0 + 20 +-300.0 + 30 +0.0 + 11 +3000.0 + 21 +-300.0 + 31 +0.0 + 0 +TEXT + 5 +34A +330 +33B +100 +AcDbEntity + 8 +S_KRS_BESCHR + 62 + 7 +100 +AcDbText + 10 +1197.203274 + 20 +-50.0 + 30 +0.0 + 40 +100.0 + 1 +KREISEL 8: PIN_3000 + 7 +Kreisel_Arial + 72 + 1 + 11 +1900.0 + 21 +0.0 + 31 +0.0 +100 +AcDbText + 73 + 2 + 0 +ATTDEF + 5 +34B +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ID + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +34C +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-100.0 + 30 +0.0 + 40 +50.0 + 1 + + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +Bezeichnung + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +34D +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-200.0 + 30 +0.0 + 40 +50.0 + 1 +6200 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ARTINR + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +34E +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-300.0 + 30 +0.0 + 40 +50.0 + 1 +0.000 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +MONTAGEHOEHE_m + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +34F +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +HOEHE + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +350 +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-500.0 + 30 +0.0 + 40 +50.0 + 1 +STANDARD + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +KREISELART + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +351 +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-600.0 + 30 +0.0 + 40 +50.0 + 1 +2300 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ABSTAND + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +352 +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-700.0 + 30 +0.0 + 40 +50.0 + 1 +2 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SEPARATOR + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +353 +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-800.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_SCANNER + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +354 +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-900.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +ANZAHL_RAMPEN + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +355 +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1000.0 + 30 +0.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_EINZELMODUL + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +356 +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1100.0 + 30 +0.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +GERUEST_TYP + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +357 +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1200.0 + 30 +0.0 + 40 +50.0 + 1 +UZS + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHRICHTUNG + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +358 +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1300.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +DREHUNG + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ATTDEF + 5 +359 +330 +33B +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +-1400.0 + 30 +0.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttributeDefinition + 3 +NUMMER + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +ENDBLK + 5 +35B +330 +33B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +INSERT + 5 +13A +330 +1F +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 1 +100 +AcDbBlockReference + 66 + 1 + 2 +KREISEL_1_STANDARD_2000 + 10 +500.0 + 20 +500.0 + 30 +2500.0 + 0 +ATTRIB + 5 +13B +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +0001 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +13C +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +400.0 + 30 +2500.0 + 40 +50.0 + 1 +Kreisel1 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +13D +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +300.0 + 30 +2500.0 + 40 +50.0 + 1 +6200 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +13E +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +200.0 + 30 +2500.0 + 40 +50.0 + 1 +2.5 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +13F +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +100.0 + 30 +2500.0 + 40 +50.0 + 1 +2500 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +140 +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +0.0 + 30 +2500.0 + 40 +50.0 + 1 +STANDARD + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +141 +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +-100.0 + 30 +2500.0 + 40 +50.0 + 1 +2000 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +142 +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +-200.0 + 30 +2500.0 + 40 +50.0 + 1 +2 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +143 +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +-300.0 + 30 +2500.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +144 +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +-400.0 + 30 +2500.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +145 +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +146 +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +-600.0 + 30 +2500.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +147 +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +-700.0 + 30 +2500.0 + 40 +50.0 + 1 +UZS + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +148 +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +-800.0 + 30 +2500.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +149 +330 +13A +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +-900.0 + 30 +2500.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +SEQEND + 5 +14A +330 +13A +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 1 + 0 +INSERT + 5 +187 +330 +1F +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 1 +100 +AcDbBlockReference + 66 + 1 + 2 +KREISEL_2_STANDARD_3000 + 10 +-500.0 + 20 +500.0 + 30 +2500.0 + 50 +90.0 + 0 +ATTRIB + 5 +188 +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +0002 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +189 +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-400.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +Kreisel2 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +18A +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-300.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +6200 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +18B +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-200.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +2.5 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +18C +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-100.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +2500 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +18D +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +STANDARD + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +18E +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +100.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +3000 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +18F +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +200.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +2 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +190 +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +300.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +0 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +191 +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +400.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +0 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +192 +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +1 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +193 +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +600.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +194 +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +700.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +UZS + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +195 +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +800.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +90 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +196 +330 +187 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +900.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +2 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +SEQEND + 5 +197 +330 +187 +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 1 + 0 +INSERT + 5 +1D3 +330 +1F +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 1 +100 +AcDbBlockReference + 66 + 1 + 2 +KREISEL_3_STANDARD_4000 + 10 +-500.0 + 20 +-500.0 + 30 +2500.0 + 50 +180.0 + 0 +ATTRIB + 5 +1D4 +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +0003 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1D5 +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +-400.0 + 30 +2500.0 + 40 +50.0 + 1 +Kreisel3 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1D6 +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +-300.0 + 30 +2500.0 + 40 +50.0 + 1 +6200 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1D7 +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +-200.0 + 30 +2500.0 + 40 +50.0 + 1 +2.5 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1D8 +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +-100.0 + 30 +2500.0 + 40 +50.0 + 1 +2500 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1D9 +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +0.0 + 30 +2500.0 + 40 +50.0 + 1 +STANDARD + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1DA +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +100.0 + 30 +2500.0 + 40 +50.0 + 1 +4000 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1DB +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +200.0 + 30 +2500.0 + 40 +50.0 + 1 +2 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1DC +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +300.0 + 30 +2500.0 + 40 +50.0 + 1 +0 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1DD +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +400.0 + 30 +2500.0 + 40 +50.0 + 1 +0 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1DE +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +500.0 + 30 +2500.0 + 40 +50.0 + 1 +1 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1DF +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +600.0 + 30 +2500.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1E0 +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +700.0 + 30 +2500.0 + 40 +50.0 + 1 +UZS + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1E1 +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +800.0 + 30 +2500.0 + 40 +50.0 + 1 +180 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +1E2 +330 +1D3 +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +900.0 + 30 +2500.0 + 40 +50.0 + 1 +3 + 50 +180.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +SEQEND + 5 +1E3 +330 +1D3 +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 1 + 0 +INSERT + 5 +21F +330 +1F +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 1 +100 +AcDbBlockReference + 66 + 1 + 2 +KREISEL_4_STANDARD_5000 + 10 +500.0 + 20 +-500.0 + 30 +2500.0 + 50 +270.0 + 0 +ATTRIB + 5 +220 +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +500.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +0004 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +221 +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +400.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +Kreisel4 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +222 +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +300.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +6200 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +223 +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +200.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +2.5 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +224 +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +100.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +2500 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +225 +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +0.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +STANDARD + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +226 +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-100.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +5000 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +227 +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-200.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +2 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +228 +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-300.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +0 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +229 +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-400.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +0 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +22A +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-500.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +1 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +22B +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-600.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +22C +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-700.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +UZS + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +22D +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-800.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +270 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +ATTRIB + 5 +22E +330 +21F +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +-900.0 + 20 +-500.0 + 30 +2500.0 + 40 +50.0 + 1 +4 + 50 +270.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +2500.0 + 0 +SEQEND + 5 +22F +330 +21F +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 1 + 0 +INSERT + 5 +26B +330 +1F +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 1 +100 +AcDbBlockReference + 66 + 1 + 2 +KREISEL_5_STANDARD_3000 + 10 +3000.0 + 20 +3000.0 + 30 +3000.0 + 50 +30.0 + 0 +ATTRIB + 5 +26C +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3000.0 + 20 +3000.0 + 30 +3000.0 + 40 +50.0 + 1 +0005 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +26D +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3050.0 + 20 +2913.39746 + 30 +3000.0 + 40 +50.0 + 1 +Kreisel5 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +26E +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3100.0 + 20 +2826.794919 + 30 +3000.0 + 40 +50.0 + 1 +6200 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +26F +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3150.0 + 20 +2740.192379 + 30 +3000.0 + 40 +50.0 + 1 +3 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +270 +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3200.0 + 20 +2653.589838 + 30 +3000.0 + 40 +50.0 + 1 +3000 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +271 +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3250.0 + 20 +2566.987298 + 30 +3000.0 + 40 +50.0 + 1 +STANDARD + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +272 +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3300.0 + 20 +2480.384758 + 30 +3000.0 + 40 +50.0 + 1 +3000 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +273 +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3350.0 + 20 +2393.782217 + 30 +3000.0 + 40 +50.0 + 1 +2 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +274 +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3400.0 + 20 +2307.179677 + 30 +3000.0 + 40 +50.0 + 1 +0 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +275 +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3450.0 + 20 +2220.577137 + 30 +3000.0 + 40 +50.0 + 1 +0 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +276 +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3500.0 + 20 +2133.974596 + 30 +3000.0 + 40 +50.0 + 1 +1 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +277 +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3550.0 + 20 +2047.372056 + 30 +3000.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +278 +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3600.0 + 20 +1960.769515 + 30 +3000.0 + 40 +50.0 + 1 +UZS + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +279 +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3650.0 + 20 +1874.166975 + 30 +3000.0 + 40 +50.0 + 1 +30 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +ATTRIB + 5 +27A +330 +26B +100 +AcDbEntity + 8 +0 + 62 + 1 +100 +AcDbText + 10 +3700.0 + 20 +1787.564435 + 30 +3000.0 + 40 +50.0 + 1 +5 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +3000.0 + 0 +SEQEND + 5 +27B +330 +26B +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 1 + 0 +INSERT + 5 +2BC +330 +1F +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 3 +100 +AcDbBlockReference + 66 + 1 + 2 +KREISEL_6_PIN_3000 + 10 +500.0 + 20 +6000.0 + 30 +1500.0 + 0 +ATTRIB + 5 +2BD +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +6000.0 + 30 +1500.0 + 40 +50.0 + 1 +0006 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2BE +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +5900.0 + 30 +1500.0 + 40 +50.0 + 1 +Kreisel6 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2BF +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +5800.0 + 30 +1500.0 + 40 +50.0 + 1 +6200 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2C0 +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +5700.0 + 30 +1500.0 + 40 +50.0 + 1 +1.5 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2C1 +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +5600.0 + 30 +1500.0 + 40 +50.0 + 1 +1500 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2C2 +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +5500.0 + 30 +1500.0 + 40 +50.0 + 1 +PIN + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2C3 +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +5400.0 + 30 +1500.0 + 40 +50.0 + 1 +3000 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2C4 +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +5300.0 + 30 +1500.0 + 40 +50.0 + 1 +2 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2C5 +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +5200.0 + 30 +1500.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2C6 +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +5100.0 + 30 +1500.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2C7 +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +5000.0 + 30 +1500.0 + 40 +50.0 + 1 +1 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2C8 +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +4900.0 + 30 +1500.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2C9 +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +4800.0 + 30 +1500.0 + 40 +50.0 + 1 +UZS + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2CA +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +4700.0 + 30 +1500.0 + 40 +50.0 + 1 +0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +2CB +330 +2BC +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +4600.0 + 30 +1500.0 + 40 +50.0 + 1 +6 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +SEQEND + 5 +2CC +330 +2BC +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 3 + 0 +INSERT + 5 +30C +330 +1F +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 3 +100 +AcDbBlockReference + 66 + 1 + 2 +KREISEL_7_PIN_4000 + 10 +-500.0 + 20 +6500.0 + 30 +1500.0 + 50 +90.0 + 0 +ATTRIB + 5 +30D +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +-500.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +0007 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +30E +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +-400.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +Kreisel7 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +30F +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +-300.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +6200 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +310 +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +-200.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +1.5 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +311 +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +-100.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +1500 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +312 +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +0.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +PIN + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +313 +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +100.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +4000 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +314 +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +200.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +2 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +315 +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +300.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +0 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +316 +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +400.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +0 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +317 +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +500.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +1 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +318 +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +600.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +319 +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +700.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +UZS + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +31A +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +800.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +90 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +31B +330 +30C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +900.0 + 20 +6500.0 + 30 +1500.0 + 40 +50.0 + 1 +7 + 50 +90.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +SEQEND + 5 +31C +330 +30C +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 3 + 0 +INSERT + 5 +35C +330 +1F +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 3 +100 +AcDbBlockReference + 66 + 1 + 2 +KREISEL_8_PIN_3000 + 10 +3000.0 + 20 +8000.0 + 30 +1500.0 + 50 +30.0 + 0 +ATTRIB + 5 +35D +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3000.0 + 20 +8000.0 + 30 +1500.0 + 40 +50.0 + 1 +0008 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ID + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +35E +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3050.0 + 20 +7913.39746 + 30 +1500.0 + 40 +50.0 + 1 +Kreisel8 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +Bezeichnung + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +35F +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3100.0 + 20 +7826.794919 + 30 +1500.0 + 40 +50.0 + 1 +6200 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ARTINR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +360 +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3150.0 + 20 +7740.192379 + 30 +1500.0 + 40 +50.0 + 1 +1.5 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +MONTAGEHOEHE_m + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +361 +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3200.0 + 20 +7653.589838 + 30 +1500.0 + 40 +50.0 + 1 +1500 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +HOEHE + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +362 +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3250.0 + 20 +7566.987298 + 30 +1500.0 + 40 +50.0 + 1 +PIN + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +KREISELART + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +363 +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3300.0 + 20 +7480.384758 + 30 +1500.0 + 40 +50.0 + 1 +3000 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ABSTAND + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +364 +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3350.0 + 20 +7393.782217 + 30 +1500.0 + 40 +50.0 + 1 +2 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SEPARATOR + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +365 +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3400.0 + 20 +7307.179677 + 30 +1500.0 + 40 +50.0 + 1 +0 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_SCANNER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +366 +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3450.0 + 20 +7220.577137 + 30 +1500.0 + 40 +50.0 + 1 +0 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +ANZAHL_RAMPEN + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +367 +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3500.0 + 20 +7133.974596 + 30 +1500.0 + 40 +50.0 + 1 +1 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_EINZELMODUL + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +368 +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3550.0 + 20 +7047.372056 + 30 +1500.0 + 40 +50.0 + 1 +Schoenenberger Geruest + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +GERUEST_TYP + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +369 +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3600.0 + 20 +6960.769515 + 30 +1500.0 + 40 +50.0 + 1 +UZS + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHRICHTUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +36A +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3650.0 + 20 +6874.166975 + 30 +1500.0 + 40 +50.0 + 1 +30 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +DREHUNG + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +ATTRIB + 5 +36B +330 +35C +100 +AcDbEntity + 8 +0 + 62 + 3 +100 +AcDbText + 10 +3700.0 + 20 +6787.564435 + 30 +1500.0 + 40 +50.0 + 1 +8 + 50 +30.0 + 7 +Kreisel_Arial +100 +AcDbAttribute + 2 +NUMMER + 70 + 1 +280 + 0 + 71 + 1 + 72 + 0 + 11 +0.0 + 21 +0.0 + 31 +1500.0 + 0 +SEQEND + 5 +36C +330 +35C +100 +AcDbEntity + 8 +_3D_ILS_Kreisel + 62 + 3 + 0 +ENDSEC + 0 +SECTION + 2 +OBJECTS + 0 +DICTIONARY + 5 +C +330 +0 +100 +AcDbDictionary +281 + 1 + 3 +ACAD_COLOR +350 +9B + 3 +ACAD_DETAILVIEWSTYLE +350 +77 + 3 +ACAD_GROUP +350 +D + 3 +ACAD_IMAGE_DICT +350 +7C + 3 +ACAD_LAYOUT +350 +1A + 3 +ACAD_MATERIAL +350 +44 + 3 +ACAD_MLEADERSTYLE +350 +6C + 3 +ACAD_MLINESTYLE +350 +17 + 3 +ACAD_PLOTSETTINGS +350 +19 + 3 +ACAD_PLOTSTYLENAME +350 +E + 3 +ACAD_RENDER_ACTIVE_SETTINGS +350 +7B + 3 +ACAD_SCALELIST +350 +48 + 3 +ACAD_SECTIONVIEWSTYLE +350 +78 + 3 +ACAD_TABLESTYLE +350 +6A + 3 +ACAD_VISUALSTYLE +350 +24 + 3 +ACDB_RECOMPOSE_DATA +350 +36F + 3 +AcDbVariableDictionary +350 +6F + 0 +SUN + 5 +23 +330 +22 +100 +AcDbSun + 90 + 1 +290 + 0 + 63 + 7 +421 + 16777215 + 40 +1.0 +291 + 1 + 91 + 2455826 + 92 + 54000000 +292 + 0 + 70 + 2 + 71 + 256 +280 + 1 + 0 +DICTIONARY + 5 +C4 +330 +2 +100 +AcDbDictionary +280 + 1 +281 + 1 + 3 +ACAD_LAYERSTATES +360 +C5 + 0 +DICTIONARY + 5 +B9 +330 +92 +100 +AcDbDictionary +280 + 1 +281 + 1 + 3 +BDM_DATABASE +360 +BA + 0 +DICTIONARY + 5 +F3 +330 +CD +100 +AcDbDictionary +280 + 1 +281 + 1 + 3 +BDM_DATABASE +360 +F4 + 0 +DICTIONARY + 5 +9B +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 0 +DICTIONARY + 5 +77 +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +Metric50 +350 +7D + 0 +DICTIONARY + 5 +D +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 0 +DICTIONARY + 5 +7C +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 0 +DICTIONARY + 5 +1A +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +Layout1 +350 +1E + 3 +Layout2 +350 +41 + 3 +Model +350 +3D + 0 +DICTIONARY + 5 +44 +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +ByBlock +350 +46 + 3 +ByLayer +350 +45 + 3 +Global +350 +47 + 0 +DICTIONARY + 5 +6C +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +Standard +350 +6D + 0 +DICTIONARY + 5 +17 +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +Standard +350 +18 + 0 +DICTIONARY + 5 +19 +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 0 +ACDBDICTIONARYWDFLT + 5 +E +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +Normal +350 +F +100 +AcDbDictionaryWithDefault +340 +F + 0 +MENTALRAYRENDERSETTINGS + 5 +7B +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbRenderSettings + 90 + 2 + 1 +Medium +290 + 1 +290 + 1 +290 + 1 +290 + 1 + 1 + + 1 + + 90 + 3 +100 +AcDbMentalRayRenderSettings + 90 + 2 + 90 + 0 + 90 + 1 + 70 + 2 + 40 +3.0 + 40 +3.0 + 40 +0.05 + 40 +0.05 + 40 +0.05 + 40 +0.05 + 70 + 0 +290 + 0 +290 + 1 + 90 + 5 + 90 + 5 + 90 + 5 +290 + 0 + 90 + 500 +290 + 0 + 40 +1.0 + 90 + 10000 + 90 + 5 + 90 + 5 + 90 + 5 +290 + 0 + 90 + 200 +290 + 0 +290 + 0 +290 + 0 + 40 +0.1 + 40 +1.0 + 40 +1500.0 + 70 + 0 + 70 + 0 + 40 +10.0 + 70 + 0 + 70 + 0 +290 + 0 + 1 + + 90 + 128 + 70 + 0 + 90 + 1048 +290 + 0 + 40 +1.0 + 0 +DICTIONARY + 5 +48 +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +A0 +350 +49 + 3 +A1 +350 +4A + 3 +A2 +350 +4B + 3 +A3 +350 +4C + 3 +A4 +350 +4D + 3 +A5 +350 +4E + 3 +A6 +350 +4F + 3 +A7 +350 +50 + 3 +A8 +350 +85 + 3 +A9 +350 +51 + 3 +B0 +350 +52 + 3 +B1 +350 +53 + 3 +B2 +350 +54 + 3 +B3 +350 +86 + 3 +B4 +350 +89 + 3 +B5 +350 +55 + 3 +B6 +350 +56 + 3 +B7 +350 +57 + 3 +B8 +350 +58 + 3 +B9 +350 +59 + 0 +DICTIONARY + 5 +78 +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +Metric50 +350 +7E + 0 +DICTIONARY + 5 +6A +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +Standard +350 +6B + 0 +DICTIONARY + 5 +24 +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +2dWireframe +350 +29 + 3 +Basic +350 +2C + 3 +Brighten +350 +30 + 3 +ColorChange +350 +34 + 3 +Conceptual +350 +2E + 3 +Dim +350 +2F + 3 +EdgeColorOff +350 +37 + 3 +Facepattern +350 +33 + 3 +Flat +350 +25 + 3 +FlatWithEdges +350 +26 + 3 +Gouraud +350 +27 + 3 +GouraudWithEdges +350 +28 + 3 +Hidden +350 +2B + 3 +JitterOff +350 +35 + 3 +Linepattern +350 +32 + 3 +Modeling +350 +6E + 3 +OverhangOff +350 +36 + 3 +Realistic +350 +2D + 3 +Shaded +350 +3C + 3 +Shaded with edges +350 +3B + 3 +Shades of Gray +350 +38 + 3 +Sketchy +350 +39 + 3 +Thicken +350 +31 + 3 +Wireframe +350 +2A + 3 +X-Ray +350 +3A + 0 +XRECORD + 5 +36F +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbXrecord +280 + 1 + 90 + 1 +330 +6B + 0 +DICTIONARY + 5 +6F +102 +{ACAD_REACTORS +330 +C +102 +} +330 +C +100 +AcDbDictionary +281 + 1 + 3 +CANNOSCALE +350 +70 + 3 +CENTEREXE +350 +79 + 3 +CENTERLTYPEFILE +350 +7A + 3 +CMLEADERSTYLE +350 +75 + 3 +CTABLESTYLE +350 +74 + 3 +CVIEWDETAILSTYLE +350 +83 + 3 +CVIEWSECTIONSTYLE +350 +84 + 3 +LIGHTINGUNITS +350 +76 + 0 +DICTIONARY + 5 +C5 +102 +{ACAD_REACTORS +330 +C4 +102 +} +330 +C4 +100 +AcDbDictionary +281 + 1 + 0 +DICTIONARY + 5 +BA +102 +{ACAD_REACTORS +330 +B9 +330 +B9 +102 +} +330 +B9 +100 +AcDbDictionary +281 + 1 + 0 +DICTIONARY + 5 +F4 +102 +{ACAD_REACTORS +330 +F3 +330 +F3 +102 +} +330 +F3 +100 +AcDbDictionary +281 + 1 + 0 +ACDBDETAILVIEWSTYLE + 5 +7D +102 +{ACAD_REACTORS +330 +77 +102 +} +102 +{ACAD_XDICTIONARY +360 +7F +102 +} +330 +77 +100 +AcDbModelDocViewStyle + 70 + 0 + 3 +Imperial24 +290 + 0 +300 +Imperial24 + 90 + 0 +100 +AcDbDetailViewStyle + 70 + 0 + 71 + 0 + 90 + 3 + 71 + 1 +340 +11 + 62 + 256 + 40 +5.0 +340 +0 + 62 + 256 + 40 +5.0 +300 + + 40 +0.36 +280 + 1 + 71 + 2 +340 +16 + 90 + 25 + 62 + 256 + 71 + 3 +340 +11 + 62 + 256 + 40 +5.0 + 90 + 0 + 40 +15.0 + 90 + 1 +300 +%<\AcVar ViewDetailId>% (%<\AcVar ViewScale \f "%sn">%) + 71 + 4 +340 +16 + 90 + 25 + 62 + 256 +340 +16 + 90 + 25 + 62 + 256 +280 + 0 + 0 +LAYOUT + 5 +1E +102 +{ACAD_REACTORS +330 +1A +102 +} +330 +1A +100 +AcDbPlotSettings + 1 + + 2 +none_device + 4 + + 6 + + 40 +0.0 + 41 +0.0 + 42 +0.0 + 43 +0.0 + 44 +0.0 + 45 +0.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 + 49 +0.0 +140 +0.0 +141 +0.0 +142 +1.0 +143 +1.0 + 70 + 688 + 72 + 1 + 73 + 0 + 74 + 5 + 7 + + 75 + 16 + 76 + 0 + 77 + 2 + 78 + 300 +147 +1.0 +148 +0.0 +149 +0.0 +100 +AcDbLayout + 1 +Layout1 + 70 + 1 + 71 + 1 + 10 +0.0 + 20 +0.0 + 11 +420.0 + 21 +297.0 + 12 +0.0 + 22 +0.0 + 32 +0.0 + 14 +1.000000E+20 + 24 +1.000000E+20 + 34 +1.000000E+20 + 15 +-1.000000E+20 + 25 +-1.000000E+20 + 35 +-1.000000E+20 +146 +0.0 + 13 +0.0 + 23 +0.0 + 33 +0.0 + 16 +1.0 + 26 +0.0 + 36 +0.0 + 17 +0.0 + 27 +1.0 + 37 +0.0 + 76 + 0 +330 +1B + 0 +LAYOUT + 5 +41 +102 +{ACAD_REACTORS +330 +1A +102 +} +330 +1A +100 +AcDbPlotSettings + 1 + + 2 +none_device + 4 + + 6 + + 40 +0.0 + 41 +0.0 + 42 +0.0 + 43 +0.0 + 44 +0.0 + 45 +0.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 + 49 +0.0 +140 +0.0 +141 +0.0 +142 +1.0 +143 +1.0 + 70 + 688 + 72 + 1 + 73 + 0 + 74 + 5 + 7 + + 75 + 16 + 76 + 0 + 77 + 2 + 78 + 300 +147 +1.0 +148 +0.0 +149 +0.0 +100 +AcDbLayout + 1 +Layout2 + 70 + 1 + 71 + 2 + 10 +0.0 + 20 +0.0 + 11 +0.0 + 21 +0.0 + 12 +0.0 + 22 +0.0 + 32 +0.0 + 14 +0.0 + 24 +0.0 + 34 +0.0 + 15 +0.0 + 25 +0.0 + 35 +0.0 +146 +0.0 + 13 +0.0 + 23 +0.0 + 33 +0.0 + 16 +1.0 + 26 +0.0 + 36 +0.0 + 17 +0.0 + 27 +1.0 + 37 +0.0 + 76 + 0 +330 +3E + 0 +LAYOUT + 5 +3D +102 +{ACAD_REACTORS +330 +1A +102 +} +330 +1A +100 +AcDbPlotSettings + 1 + + 2 +none_device + 4 +ISO_A4_(210.00_x_297.00_MM) + 6 + + 40 +7.5 + 41 +20.0 + 42 +7.5 + 43 +20.0 + 44 +210.0 + 45 +297.0 + 46 +0.0 + 47 +0.0 + 48 +0.0 + 49 +0.0 +140 +0.0 +141 +0.0 +142 +1.0 +143 +3.00499 + 70 + 1712 + 72 + 1 + 73 + 0 + 74 + 0 + 7 + + 75 + 0 + 76 + 0 + 77 + 2 + 78 + 300 +147 +0.33278 +148 +-51.200429 +149 +0.0 +100 +AcDbLayout + 1 +Model + 70 + 1 + 71 + 0 + 10 +0.0 + 20 +0.0 + 11 +420.0 + 21 +297.0 + 12 +0.0 + 22 +0.0 + 32 +0.0 + 14 +-5300.0 + 24 +-6300.0 + 34 +0.0 + 15 +6344.486373 + 25 +11300.0 + 35 +3000.0 +146 +0.0 + 13 +0.0 + 23 +0.0 + 33 +0.0 + 16 +1.0 + 26 +0.0 + 36 +0.0 + 17 +0.0 + 27 +1.0 + 37 +0.0 + 76 + 0 +330 +1F +331 +22 + 0 +MATERIAL + 5 +46 +102 +{ACAD_REACTORS +330 +44 +102 +} +330 +44 +100 +AcDbMaterial + 1 +ByBlock + 71 + 1 + 91 +-1023410177 + 72 + 1 + 94 + 127 + 0 +MATERIAL + 5 +45 +102 +{ACAD_REACTORS +330 +44 +102 +} +330 +44 +100 +AcDbMaterial + 1 +ByLayer + 71 + 1 + 91 +-1023410177 + 72 + 1 + 94 + 127 + 0 +MATERIAL + 5 +47 +102 +{ACAD_REACTORS +330 +44 +102 +} +330 +44 +100 +AcDbMaterial + 1 +Global + 72 + 1 + 94 + 127 + 0 +MLEADERSTYLE + 5 +6D +102 +{ACAD_REACTORS +330 +6C +102 +} +330 +6C +100 +AcDbMLeaderStyle +179 + 2 +170 + 2 +171 + 1 +172 + 0 + 90 + 2 + 40 +0.0 + 41 +0.0 +173 + 1 + 91 +-1056964608 +340 +14 + 92 + -2 +290 + 1 + 42 +2.0 +291 + 1 + 43 +8.0 + 3 +Standard +341 +0 + 44 +4.0 +300 + +342 +11 +174 + 1 +178 + 1 +175 + 1 +176 + 0 + 93 +-1056964608 + 45 +4.0 +292 + 0 +297 + 0 + 46 +4.0 +343 +0 + 94 +-1056964608 + 47 +1.0 + 49 +1.0 +140 +1.0 +293 + 1 +141 +0.0 +294 + 1 +177 + 0 +142 +1.0 +295 + 0 +296 + 0 +143 +3.75 +271 + 0 +272 + 9 +273 + 9 +298 + 0 + 0 +MLINESTYLE + 5 +18 +102 +{ACAD_REACTORS +330 +17 +102 +} +330 +17 +100 +AcDbMlineStyle + 2 +Standard + 70 + 0 + 3 + + 62 + 256 + 51 +90.0 + 52 +90.0 + 71 + 2 + 49 +0.5 + 62 + 256 + 6 +BYLAYER + 49 +-0.5 + 62 + 256 + 6 +BYLAYER + 0 +ACDBPLACEHOLDER + 5 +F +102 +{ACAD_REACTORS +330 +E +102 +} +330 +E + 0 +SCALE + 5 +49 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:1 +140 +1.0 +141 +1.0 +290 + 1 + 0 +SCALE + 5 +4A +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:2 +140 +1.0 +141 +2.0 +290 + 0 + 0 +SCALE + 5 +4B +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:4 +140 +1.0 +141 +4.0 +290 + 0 + 0 +SCALE + 5 +4C +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:5 +140 +1.0 +141 +5.0 +290 + 0 + 0 +SCALE + 5 +4D +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:8 +140 +1.0 +141 +8.0 +290 + 0 + 0 +SCALE + 5 +4E +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:10 +140 +1.0 +141 +10.0 +290 + 0 + 0 +SCALE + 5 +4F +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:16 +140 +1.0 +141 +16.0 +290 + 0 + 0 +SCALE + 5 +50 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:20 +140 +1.0 +141 +20.0 +290 + 0 + 0 +SCALE + 5 +85 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:25 +140 +1.0 +141 +25.0 +290 + 0 + 0 +SCALE + 5 +51 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:30 +140 +1.0 +141 +30.0 +290 + 0 + 0 +SCALE + 5 +52 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:40 +140 +1.0 +141 +40.0 +290 + 0 + 0 +SCALE + 5 +53 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:50 +140 +1.0 +141 +50.0 +290 + 0 + 0 +SCALE + 5 +54 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:100 +140 +1.0 +141 +100.0 +290 + 0 + 0 +SCALE + 5 +86 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:500 +140 +1.0 +141 +500.0 +290 + 0 + 0 +SCALE + 5 +89 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +1:1000 +140 +1.0 +141 +1000.0 +290 + 0 + 0 +SCALE + 5 +55 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +2:1 +140 +2.0 +141 +1.0 +290 + 0 + 0 +SCALE + 5 +56 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +4:1 +140 +4.0 +141 +1.0 +290 + 0 + 0 +SCALE + 5 +57 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +8:1 +140 +8.0 +141 +1.0 +290 + 0 + 0 +SCALE + 5 +58 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +10:1 +140 +10.0 +141 +1.0 +290 + 0 + 0 +SCALE + 5 +59 +102 +{ACAD_REACTORS +330 +48 +102 +} +330 +48 +100 +AcDbScale + 70 + 0 +300 +100:1 +140 +100.0 +141 +1.0 +290 + 0 + 0 +ACDBSECTIONVIEWSTYLE + 5 +7E +102 +{ACAD_REACTORS +330 +78 +102 +} +102 +{ACAD_XDICTIONARY +360 +81 +102 +} +330 +78 +100 +AcDbModelDocViewStyle + 70 + 0 + 3 +Imperial24 +290 + 0 +300 +Imperial24 + 90 + 0 +100 +AcDbSectionViewStyle + 70 + 0 + 71 + 0 + 90 + 110 + 71 + 1 +340 +11 + 62 + 256 + 40 +5.0 +340 +0 +340 +0 + 62 + 256 + 40 +5.0 +300 +I, O, Q, S, X, Z + 40 +10.0 + 90 + 0 + 40 +2.5 + 90 + 0 + 71 + 2 +340 +16 + 90 + 25 + 62 + 256 +340 +16 + 90 + 50 + 62 + 256 + 40 +5.0 + 40 +2.5 + 40 +5.0 + 71 + 3 +340 +11 + 62 + 256 + 40 +5.0 + 90 + 0 + 40 +15.0 + 90 + 1 +300 +%<\AcVar ViewSectionStartId>%-%<\AcVar ViewSectionEndId>% (%<\AcVar ViewScale \f "%sn">%) + 71 + 4 + 62 + 256 + 62 + 257 +300 +ANSI31 + 40 +1.0 + 90 + 0 +290 + 0 +290 + 0 + 90 + 6 + 40 +0.0 + 40 +1.570796 + 40 +0.261799 + 40 +1.308997 + 40 +-0.261799 + 40 +1.832596 + 0 +TABLESTYLE + 5 +6B +102 +{ACAD_REACTORS +330 +6A +102 +} +102 +{ACAD_XDICTIONARY +360 +36D +102 +} +330 +6A +100 +AcDbTableStyle + 3 +Standard + 70 + 0 + 71 + 0 + 40 +1.5 + 41 +1.5 +280 + 0 +281 + 0 + 7 +Standard +140 +4.5 +170 + 2 + 62 + 0 + 63 + 257 +283 + 0 + 90 + 4 + 91 + 0 + 1 + +274 + -2 +284 + 1 + 64 + 0 +275 + -2 +285 + 1 + 65 + 0 +276 + -2 +286 + 1 + 66 + 0 +277 + -2 +287 + 1 + 67 + 0 +278 + -2 +288 + 1 + 68 + 0 +279 + -2 +289 + 1 + 69 + 0 + 7 +Standard +140 +6.0 +170 + 5 + 62 + 0 + 63 + 257 +283 + 0 + 90 + 4 + 91 + 0 + 1 + +274 + -2 +284 + 1 + 64 + 0 +275 + -2 +285 + 1 + 65 + 0 +276 + -2 +286 + 1 + 66 + 0 +277 + -2 +287 + 1 + 67 + 0 +278 + -2 +288 + 1 + 68 + 0 +279 + -2 +289 + 1 + 69 + 0 + 7 +Standard +140 +4.5 +170 + 5 + 62 + 0 + 63 + 257 +283 + 0 + 90 + 4 + 91 + 0 + 1 + +274 + -2 +284 + 1 + 64 + 0 +275 + -2 +285 + 1 + 65 + 0 +276 + -2 +286 + 1 + 66 + 0 +277 + -2 +287 + 1 + 67 + 0 +278 + -2 +288 + 1 + 68 + 0 +279 + -2 +289 + 1 + 69 + 0 + 0 +VISUALSTYLE + 5 +29 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +2dWireframe + 70 + 4 +177 + 3 +291 + 0 + 70 + 58 + 90 + 0 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 4 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 257 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +2C +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Basic + 70 + 7 +177 + 3 +291 + 1 + 70 + 58 + 90 + 1 +176 + 1 + 90 + 0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 0 +176 + 1 + 90 + 4 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +30 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Brighten + 70 + 12 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 4 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +50.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +34 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +ColorChange + 70 + 16 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 8 +420 + 8421504 +176 + 1 + 90 + 1 +176 + 1 + 90 + 4 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 8 +420 + 8421504 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +2E +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Conceptual + 70 + 9 +177 + 3 +291 + 0 + 70 + 58 + 90 + 3 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +179.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +2F +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Dim + 70 + 11 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 4 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +-50.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +37 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +EdgeColorOff + 70 + 22 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 0 + 90 + 2 +176 + 0 + 90 + 0 +176 + 0 + 90 + 0 +176 + 0 + 40 +0.6 +176 + 0 + 40 +30.0 +176 + 0 + 62 + 7 +420 + 16777215 +176 + 0 + 90 + 1 +176 + 0 + 90 + 4 +176 + 0 + 62 + 7 +176 + 0 + 62 + 257 +176 + 0 + 90 + 1 +176 + 0 + 90 + 1 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 8 +176 + 2 + 62 + 7 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 1 +176 + 0 + 90 + 6 +176 + 0 + 90 + 2 +176 + 0 + 62 + 7 +176 + 0 + 90 + 5 +176 + 0 + 90 + 0 +176 + 0 + 90 + 0 +176 + 0 +290 + 0 +176 + 0 + 90 + 1 +176 + 0 + 40 +0.0 +176 + 0 + 90 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 1 +176 + 0 +290 + 1 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 + 90 + 50 +176 + 0 + 40 +0.0 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 0 +176 + 0 + 62 + 18 +420 + 0 +176 + 0 + 90 + 50 +176 + 0 + 90 + 3 +176 + 0 + 62 + 5 +420 + 255 +176 + 0 +290 + 0 +176 + 0 + 90 + 50 +176 + 0 + 90 + 50 +176 + 0 + 90 + 50 +176 + 0 +290 + 0 +176 + 0 + 90 + 50 +176 + 0 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 0 + 1 +strokes_ogs.tif +176 + 0 +290 + 0 +176 + 0 + 40 +1.0 +176 + 0 + 40 +1.0 +176 + 0 + 0 +VISUALSTYLE + 5 +33 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Facepattern + 70 + 15 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 4 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +25 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Flat + 70 + 0 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 90 + 2 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 13 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +26 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +FlatWithEdges + 70 + 1 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 90 + 2 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 0 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 257 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 13 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +27 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Gouraud + 70 + 2 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 1 +176 + 1 + 90 + 2 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 13 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +28 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +GouraudWithEdges + 70 + 3 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 1 +176 + 1 + 90 + 2 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 0 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 257 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 13 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +2B +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Hidden + 70 + 6 +177 + 3 +291 + 0 + 70 + 58 + 90 + 1 +176 + 1 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 2 +176 + 1 + 90 + 1 +176 + 1 + 40 +40.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 257 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +35 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +JitterOff + 70 + 20 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 0 + 90 + 2 +176 + 0 + 90 + 0 +176 + 0 + 90 + 0 +176 + 0 + 40 +0.6 +176 + 0 + 40 +30.0 +176 + 0 + 62 + 7 +420 + 16777215 +176 + 0 + 90 + 1 +176 + 0 + 90 + 4 +176 + 0 + 62 + 7 +176 + 0 + 62 + 257 +176 + 0 + 90 + 1 +176 + 0 + 90 + 1 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 10 +176 + 2 + 62 + 7 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 1 +176 + 0 + 90 + 6 +176 + 0 + 90 + 2 +176 + 0 + 62 + 7 +176 + 0 + 90 + 5 +176 + 0 + 90 + 0 +176 + 0 + 90 + 0 +176 + 0 +290 + 0 +176 + 0 + 90 + 1 +176 + 0 + 40 +0.0 +176 + 0 + 90 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 1 +176 + 0 +290 + 1 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 + 90 + 50 +176 + 0 + 40 +0.0 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 0 +176 + 0 + 62 + 18 +420 + 0 +176 + 0 + 90 + 50 +176 + 0 + 90 + 3 +176 + 0 + 62 + 5 +420 + 255 +176 + 0 +290 + 0 +176 + 0 + 90 + 50 +176 + 0 + 90 + 50 +176 + 0 + 90 + 50 +176 + 0 +290 + 0 +176 + 0 + 90 + 50 +176 + 0 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 0 + 1 +strokes_ogs.tif +176 + 0 +290 + 0 +176 + 0 + 40 +1.0 +176 + 0 + 40 +1.0 +176 + 0 + 0 +VISUALSTYLE + 5 +32 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Linepattern + 70 + 14 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 4 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 7 +176 + 1 + 90 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +6E +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Modeling + 70 + 10 +177 + 3 +291 + 0 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 90 + 2 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +180.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 8 +420 + 7895160 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 13 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +36 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +OverhangOff + 70 + 21 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 0 + 90 + 2 +176 + 0 + 90 + 0 +176 + 0 + 90 + 0 +176 + 0 + 40 +0.6 +176 + 0 + 40 +30.0 +176 + 0 + 62 + 7 +420 + 16777215 +176 + 0 + 90 + 1 +176 + 0 + 90 + 4 +176 + 0 + 62 + 7 +176 + 0 + 62 + 257 +176 + 0 + 90 + 1 +176 + 0 + 90 + 1 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 9 +176 + 2 + 62 + 7 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 1 +176 + 0 + 90 + 6 +176 + 0 + 90 + 2 +176 + 0 + 62 + 7 +176 + 0 + 90 + 5 +176 + 0 + 90 + 0 +176 + 0 + 90 + 0 +176 + 0 +290 + 0 +176 + 0 + 90 + 1 +176 + 0 + 40 +0.0 +176 + 0 + 90 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 1 +176 + 0 +290 + 1 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 +290 + 0 +176 + 0 + 90 + 50 +176 + 0 + 40 +0.0 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 0 +176 + 0 + 62 + 18 +420 + 0 +176 + 0 + 90 + 50 +176 + 0 + 90 + 3 +176 + 0 + 62 + 5 +420 + 255 +176 + 0 +290 + 0 +176 + 0 + 90 + 50 +176 + 0 + 90 + 50 +176 + 0 + 90 + 50 +176 + 0 +290 + 0 +176 + 0 + 90 + 50 +176 + 0 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 0 + 1 +strokes_ogs.tif +176 + 0 +290 + 0 +176 + 0 + 40 +1.0 +176 + 0 + 40 +1.0 +176 + 0 + 0 +VISUALSTYLE + 5 +2D +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Realistic + 70 + 8 +177 + 3 +291 + 0 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 90 + 2 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 257 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 13 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +3C +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Shaded + 70 + 27 +177 + 3 +291 + 0 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 1 +176 + 1 + 90 + 2 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 0 +176 + 1 + 90 + 4 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 257 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 8 +420 + 7895160 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 5 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +3B +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Shaded with edges + 70 + 26 +177 + 3 +291 + 0 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 1 +176 + 1 + 90 + 2 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 10 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 2 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 257 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 5 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +38 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Shades of Gray + 70 + 23 +177 + 3 +291 + 0 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 62 + 7 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +40.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +39 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Sketchy + 70 + 24 +177 + 3 +291 + 0 + 70 + 58 + 90 + 1 +176 + 1 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 62 + 7 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +40.0 +176 + 1 + 90 + 11 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 6 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +31 +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Thicken + 70 + 13 +177 + 3 +291 + 1 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 4 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 12 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 5 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +2A +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +Wireframe + 70 + 5 +177 + 3 +291 + 0 + 70 + 58 + 90 + 0 +176 + 1 + 90 + 2 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 + 40 +0.6 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 4 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 257 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +VISUALSTYLE + 5 +3A +102 +{ACAD_REACTORS +330 +24 +102 +} +330 +24 +100 +AcDbVisualStyle + 2 +X-Ray + 70 + 25 +177 + 3 +291 + 0 + 70 + 58 + 90 + 2 +176 + 1 + 90 + 2 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +0.5 +176 + 1 + 40 +30.0 +176 + 1 + 62 + 7 +420 + 16777215 +176 + 1 + 90 + 1 +176 + 1 + 90 + 0 +176 + 1 + 62 + 7 +176 + 1 + 62 + 257 +176 + 1 + 90 + 1 +176 + 1 + 90 + 1 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 8 +176 + 1 + 62 + 7 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 1 +176 + 1 + 90 + 6 +176 + 1 + 90 + 2 +176 + 1 + 62 + 7 +176 + 1 + 90 + 3 +176 + 1 + 90 + 0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 13 +176 + 1 + 40 +0.0 +176 + 1 + 90 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 1 +176 + 1 +290 + 1 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 40 +0.0 +176 + 1 + 40 +1.0 +176 + 1 + 90 + 0 +176 + 1 + 62 + 18 +420 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 3 +176 + 1 + 62 + 5 +420 + 255 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 + 90 + 50 +176 + 1 +290 + 0 +176 + 1 + 90 + 50 +176 + 1 + 62 + 256 +176 + 0 + 40 +1.0 +176 + 0 + 90 + 2 +176 + 1 + 1 +strokes_ogs.tif +176 + 1 +290 + 0 +176 + 1 + 40 +1.0 +176 + 1 + 40 +1.0 +176 + 1 + 0 +DICTIONARYVAR + 5 +70 +102 +{ACAD_REACTORS +330 +6F +102 +} +330 +6F +100 +DictionaryVariables +280 + 0 + 1 +1:1 + 0 +DICTIONARYVAR + 5 +79 +102 +{ACAD_REACTORS +330 +6F +102 +} +330 +6F +100 +DictionaryVariables +280 + 0 + 1 +3.500000 + 0 +DICTIONARYVAR + 5 +7A +102 +{ACAD_REACTORS +330 +6F +102 +} +330 +6F +100 +DictionaryVariables +280 + 0 + 1 +iso.lin + 0 +DICTIONARYVAR + 5 +75 +102 +{ACAD_REACTORS +330 +6F +102 +} +330 +6F +100 +DictionaryVariables +280 + 0 + 1 +Standard + 0 +DICTIONARYVAR + 5 +74 +102 +{ACAD_REACTORS +330 +6F +102 +} +330 +6F +100 +DictionaryVariables +280 + 0 + 1 +Standard + 0 +DICTIONARYVAR + 5 +83 +102 +{ACAD_REACTORS +330 +6F +102 +} +330 +6F +100 +DictionaryVariables +280 + 0 + 1 +Metric50 + 0 +DICTIONARYVAR + 5 +84 +102 +{ACAD_REACTORS +330 +6F +102 +} +330 +6F +100 +DictionaryVariables +280 + 0 + 1 +Metric50 + 0 +DICTIONARYVAR + 5 +76 +102 +{ACAD_REACTORS +330 +6F +102 +} +330 +6F +100 +DictionaryVariables +280 + 0 + 1 +2 + 0 +DICTIONARY + 5 +7F +330 +7D +100 +AcDbDictionary +280 + 1 +281 + 1 + 0 +DICTIONARY + 5 +81 +330 +7E +100 +AcDbDictionary +280 + 1 +281 + 1 + 0 +DICTIONARY + 5 +36D +330 +6B +100 +AcDbDictionary +280 + 1 +281 + 1 + 3 +ACAD_ROUNDTRIP_2008_TABLESTYLE_CELLSTYLEMAP +360 +36E + 0 +CELLSTYLEMAP + 5 +36E +102 +{ACAD_REACTORS +330 +36D +102 +} +330 +36D +100 +AcDbCellStyleMap + 90 + 3 +300 +CELLSTYLE + 1 +TABLEFORMAT_BEGIN + 90 + 5 +170 + 1 + 91 + 0 + 92 + 32768 + 62 + 257 + 93 + 1 +300 +CONTENTFORMAT + 1 +CONTENTFORMAT_BEGIN + 90 + 0 + 91 + 0 + 92 + 4 + 93 + 0 +300 + + 40 +0.0 +140 +1.0 + 94 + 5 + 62 + 0 +340 +11 +144 +6.0 +309 +CONTENTFORMAT_END +171 + 1 +301 +MARGIN + 1 +CELLMARGIN_BEGIN + 40 +1.5 + 40 +1.5 + 40 +1.5 + 40 +1.5 + 40 +1.5 + 40 +1.5 +309 +CELLMARGIN_END + 94 + 6 + 95 + 1 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 2 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 4 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 8 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 16 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 32 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END +309 +TABLEFORMAT_END + 1 +CELLSTYLE_BEGIN + 90 + 1 + 91 + 1 +300 +_TITLE +309 +CELLSTYLE_END +300 +CELLSTYLE + 1 +TABLEFORMAT_BEGIN + 90 + 5 +170 + 1 + 91 + 0 + 92 + 0 + 62 + 257 + 93 + 1 +300 +CONTENTFORMAT + 1 +CONTENTFORMAT_BEGIN + 90 + 0 + 91 + 0 + 92 + 4 + 93 + 0 +300 + + 40 +0.0 +140 +1.0 + 94 + 5 + 62 + 0 +340 +11 +144 +4.5 +309 +CONTENTFORMAT_END +171 + 1 +301 +MARGIN + 1 +CELLMARGIN_BEGIN + 40 +1.5 + 40 +1.5 + 40 +1.5 + 40 +1.5 + 40 +1.5 + 40 +1.5 +309 +CELLMARGIN_END + 94 + 6 + 95 + 1 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 2 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 4 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 8 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 16 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 32 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END +309 +TABLEFORMAT_END + 1 +CELLSTYLE_BEGIN + 90 + 2 + 91 + 1 +300 +_HEADER +309 +CELLSTYLE_END +300 +CELLSTYLE + 1 +TABLEFORMAT_BEGIN + 90 + 5 +170 + 1 + 91 + 0 + 92 + 0 + 62 + 257 + 93 + 1 +300 +CONTENTFORMAT + 1 +CONTENTFORMAT_BEGIN + 90 + 0 + 91 + 0 + 92 + 4 + 93 + 0 +300 + + 40 +0.0 +140 +1.0 + 94 + 2 + 62 + 0 +340 +11 +144 +4.5 +309 +CONTENTFORMAT_END +171 + 1 +301 +MARGIN + 1 +CELLMARGIN_BEGIN + 40 +1.5 + 40 +1.5 + 40 +1.5 + 40 +1.5 + 40 +1.5 + 40 +1.5 +309 +CELLMARGIN_END + 94 + 6 + 95 + 1 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 2 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 4 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 8 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 16 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END + 95 + 32 +302 +GRIDFORMAT + 1 +GRIDFORMAT_BEGIN + 90 + 0 + 91 + 1 + 62 + 0 + 92 + -2 +340 +14 + 93 + 0 + 40 +0.045 +309 +GRIDFORMAT_END +309 +TABLEFORMAT_END + 1 +CELLSTYLE_BEGIN + 90 + 3 + 91 + 2 +300 +_DATA +309 +CELLSTYLE_END + 0 +ENDSEC + 0 +EOF diff --git a/tests/reference/omniflo_export.csv b/tests/reference/omniflo_export.csv new file mode 100644 index 0000000..77c1078 --- /dev/null +++ b/tests/reference/omniflo_export.csv @@ -0,0 +1,109 @@ +Elementnummer;TeileArt;TeileId;Bezeichnung;Planquadrat;Anzahl;Position;Boundingbox;Nachbarn;Fehler;Merkmale +1;"Omniflo Kurve";"0000";"OFBogen :1";"A/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 22.5, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104025"} +2;"Omniflo Kurve";"0000";"OFBogen :2";"A/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 22.5, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104025, 0_B10090"} +3;"Omniflo Kurve";"0000";"OFBogen :3";"A/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 22.5, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104025, 0_B10091"} +4;"Omniflo Kurve";"0000";"OFBogen :4";"A/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 45.0, "Radius": 400.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104021"} +5;"Omniflo Kurve";"0000";"OFBogen :5";"A/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 45.0, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104026"} +6;"Omniflo Kurve";"0000";"OFBogen :6";"A/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 45.0, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104026, 0_B10071"} +7;"Omniflo Kurve";"0000";"OFBogen :7";"A/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 45.0, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104037"} +8;"Omniflo Kurve";"0000";"OFBogen :8";"A/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 45.0, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104029"} +9;"Omniflo Kurve";"0000";"OFBogen :9";"A/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 45.0, "Radius": 630.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104031"} +10;"Omniflo Kurve";"0000";"OFBogen :10";"A/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 45.0, "Radius": 630.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104031, 0_B10060"} +11;"Omniflo Kurve";"0000";"OFBogen :11";"B/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 45.0, "Radius": 630.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104031, 0_B10070"} +12;"Omniflo Kurve";"0000";"OFBogen :12";"B/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 67.5, "Radius": 400.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104024"} +13;"Omniflo Kurve";"0000";"OFBogen :13";"B/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 67.5, "Radius": 400.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104024, 0_B10081"} +14;"Omniflo Kurve";"0000";"OFBogen :14";"B/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 67.5, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104027"} +15;"Omniflo Kurve";"0000";"OFBogen :15";"B/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 67.5, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104027, 0_B10080"} +16;"Omniflo Kurve";"0000";"OFBogen :16";"B/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 67.5, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104028"} +17;"Omniflo Kurve";"0000";"OFBogen :17";"B/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 67.5, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104065"} +18;"Omniflo Kurve";"0000";"OFBogen :18";"B/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 90.0, "Radius": 400.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104022"} +19;"Omniflo Kurve";"0000";"OFBogen :19";"B/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 90.0, "Radius": 500.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104030"} +20;"Omniflo Kurve";"0000";"OFBogen :20";"B/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 90.0, "Radius": 630.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104033"} +21;"Omniflo Kurve";"0000";"OFBogen :21";"C/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 90.0, "Radius": 630.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104033, 0_B10040"} +22;"Omniflo Kurve";"0000";"OFBogen :22";"C/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 90.0, "Radius": 630.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104033, 0_B10050"} +23;"Omniflo Kurve";"0000";"OFBogen :23";"C/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 90.0, "Radius": 630.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104035"} +24;"Omniflo Kurve";"0000";"OFBogen :24";"C/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 90.0, "Radius": 630.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104041"} +25;"Omniflo Kurve";"0000";"OFBogen :25";"C/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 90.0, "Radius": 630.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104034"} +26;"Omniflo Kurve";"0000";"OFBogen :26";"C/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 90.0, "Radius": 550.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104066"} +27;"Omniflo Kurve";"0000";"OFBogen :27";"C/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Kurvenwinkel": 180.0, "Radius": 650.0, "Höhe": "2000", "Drehung": 0.0, "SivasNummer": "821104043"} +28;"Omniflo Weiche";"0000";"OFWeiche :1";"C/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 22.5, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834342011"} +29;"Omniflo Weiche";"0000";"OFWeiche :2";"C/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 22.5, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834342001"} +30;"Omniflo Weiche";"0000";"OFWeiche :3";"C/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 22.5, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834342012"} +31;"Omniflo Weiche";"0000";"OFWeiche :4";"D/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 22.5, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834342002"} +32;"Omniflo Weiche";"0000";"OFWeiche :1";"D/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 22.5, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834342100"} +33;"Omniflo Weiche";"0000";"OFWeiche :2";"D/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 22.5, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834342101"} +34;"Omniflo Weiche";"0000";"OFWeiche :1";"D/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 22.5, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834342200"} +35;"Omniflo Weiche";"0000";"OFWeiche :2";"D/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 22.5, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834342201"} +36;"Omniflo Weiche";"0000";"OFWeiche :5";"D/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372001"} +37;"Omniflo Weiche";"0000";"OFWeiche :6";"D/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372002"} +38;"Omniflo Weiche";"0000";"OFWeiche :7";"D/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372002, 0_BG090090"} +39;"Omniflo Weiche";"0000";"OFWeiche :8";"D/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372004"} +40;"Omniflo Weiche";"0000";"OFWeiche :9";"D/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372005"} +41;"Omniflo Weiche";"0000";"OFWeiche :10";"E/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372005, 0_BG090090"} +42;"Omniflo Weiche";"0000";"OFWeiche :11";"E/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372007"} +43;"Omniflo Weiche";"0000";"OFWeiche :12";"E/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372008"} +44;"Omniflo Weiche";"0000";"OFWeiche :13";"E/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372008, 0_BG190090"} +45;"Omniflo Weiche";"0000";"OFWeiche :14";"E/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372010"} +46;"Omniflo Weiche";"0000";"OFWeiche :15";"E/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372011"} +47;"Omniflo Weiche";"0000";"OFWeiche :16";"E/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372011, 0_BG190090"} +48;"Omniflo Weiche";"0000";"OFWeiche :17";"E/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372021"} +49;"Omniflo Weiche";"0000";"OFWeiche :18";"E/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372022"} +50;"Omniflo Weiche";"0000";"OFWeiche :19";"E/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372024"} +51;"Omniflo Weiche";"0000";"OFWeiche :20";"F/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372025"} +52;"Omniflo Weiche";"0000";"OFWeiche :21";"F/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372027"} +53;"Omniflo Weiche";"0000";"OFWeiche :22";"F/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372028"} +54;"Omniflo Weiche";"0000";"OFWeiche :23";"F/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372028, 0_BG080090"} +55;"Omniflo Weiche";"0000";"OFWeiche :24";"F/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372030"} +56;"Omniflo Weiche";"0000";"OFWeiche :25";"F/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372031"} +57;"Omniflo Weiche";"0000";"OFWeiche :26";"F/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372031, 0_BG080090"} +58;"Omniflo Weiche";"0000";"OFWeiche :27";"F/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 0.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372047"} +59;"Omniflo Weiche";"0000";"OFWeiche :28";"F/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "1", "Weichenwinkel": 0.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372048"} +60;"Omniflo Weiche";"0000";"OFWeiche :29";"F/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 0.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372050"} +61;"Omniflo Weiche";"0000";"OFWeiche :30";"G/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Einzelweiche", "Richtung": "2", "Weichenwinkel": 0.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372051"} +62;"Omniflo Weiche";"0000";"OFWeiche :3";"G/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372100"} +63;"Omniflo Weiche";"0000";"OFWeiche :4";"G/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372101"} +64;"Omniflo Weiche";"0000";"OFWeiche :5";"G/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG090090, 834372101"} +65;"Omniflo Weiche";"0000";"OFWeiche :6";"G/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372101, 0_BG090090"} +66;"Omniflo Weiche";"0000";"OFWeiche :7";"G/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG090090, 834372101, 0_BG090090"} +67;"Omniflo Weiche";"0000";"OFWeiche :8";"G/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372103"} +68;"Omniflo Weiche";"0000";"OFWeiche :9";"G/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372104"} +69;"Omniflo Weiche";"0000";"OFWeiche :10";"G/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG190090, 834372104"} +70;"Omniflo Weiche";"0000";"OFWeiche :11";"G/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372104, 0_BG190090"} +71;"Omniflo Weiche";"0000";"OFWeiche :12";"H/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG190090, 834372104, 0_BG190090"} +72;"Omniflo Weiche";"0000";"OFWeiche :13";"H/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372106"} +73;"Omniflo Weiche";"0000";"OFWeiche :14";"H/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372107"} +74;"Omniflo Weiche";"0000";"OFWeiche :15";"H/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372109"} +75;"Omniflo Weiche";"0000";"OFWeiche :16";"H/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372110"} +76;"Omniflo Weiche";"0000";"OFWeiche :17";"H/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG080090, 834372110"} +77;"Omniflo Weiche";"0000";"OFWeiche :18";"H/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372110, 0_BG080090"} +78;"Omniflo Weiche";"0000";"OFWeiche :19";"H/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG080090, 834372110, 0_BG080090"} +79;"Omniflo Weiche";"0000";"OFWeiche :20";"H/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 0.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372115"} +80;"Omniflo Weiche";"0000";"OFWeiche :21";"H/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Doppelweiche", "Richtung": "3", "Weichenwinkel": 0.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372116"} +81;"Omniflo Weiche";"0000";"OFWeiche :3";"I/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372200"} +82;"Omniflo Weiche";"0000";"OFWeiche :4";"I/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372201"} +83;"Omniflo Weiche";"0000";"OFWeiche :5";"I/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG090090, 834372201"} +84;"Omniflo Weiche";"0000";"OFWeiche :6";"I/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372201, 0_BG090090"} +85;"Omniflo Weiche";"0000";"OFWeiche :7";"I/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG090090, 834372201, 0_BG090090"} +86;"Omniflo Weiche";"0000";"OFWeiche :8";"I/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372203"} +87;"Omniflo Weiche";"0000";"OFWeiche :9";"I/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372204"} +88;"Omniflo Weiche";"0000";"OFWeiche :10";"I/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG190090, 834372204"} +89;"Omniflo Weiche";"0000";"OFWeiche :11";"I/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372204, 0_BG190090"} +90;"Omniflo Weiche";"0000";"OFWeiche :12";"I/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 45.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG190090, 834372204, 0_BG190090"} +91;"Omniflo Weiche";"0000";"OFWeiche :13";"J/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372206"} +92;"Omniflo Weiche";"0000";"OFWeiche :14";"J/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372207"} +93;"Omniflo Weiche";"0000";"OFWeiche :15";"J/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372209"} +94;"Omniflo Weiche";"0000";"OFWeiche :16";"J/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372210"} +95;"Omniflo Weiche";"0000";"OFWeiche :17";"J/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG080090, 834372210"} +96;"Omniflo Weiche";"0000";"OFWeiche :18";"J/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372210, 0_BG080090"} +97;"Omniflo Weiche";"0000";"OFWeiche :19";"J/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG080090, 834372210, 0_BG080090"} +98;"Omniflo Weiche";"0000";"OFWeiche :20";"J/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 0.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372215"} +99;"Omniflo Weiche";"0000";"OFWeiche :21";"J/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Dreiwegeweiche", "Richtung": "7", "Weichenwinkel": 0.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372216"} +100;"Omniflo Weiche";"0000";"OFWeiche :1";"J/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Deltaweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372400"} +101;"Omniflo Weiche";"0000";"OFWeiche :2";"K/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Deltaweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372403"} +102;"Omniflo Weiche";"0000";"OFWeiche :3";"K/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Deltaweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372404"} +103;"Omniflo Weiche";"0000";"OFWeiche :4";"K/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Deltaweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG071090, 834372404, 0_BG071090"} +104;"Omniflo Weiche";"0000";"OFWeiche :5";"K/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Deltaweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "0_BG071090, 834372404"} +105;"Omniflo Weiche";"0000";"OFWeiche :6";"K/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Deltaweiche", "Richtung": "3", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": true, "SivasNummer": "834372404, 0_BG071090"} +106;"Omniflo Weiche";"0000";"OFWeiche :7";"K/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Deltaweiche", "Richtung": "7", "Weichenwinkel": 90.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372401"} +107;"Omniflo Weiche";"0000";"OFWeiche :1";"K/1";1;"";"";"";"";"";"";"";"";"unverbunden";"";{"Weichentyp": "Sternweiche", "Richtung": "3", "Weichenwinkel": 0.0, "Höhe": "2000", "Drehung": 0.0, "Antrieb Kurve": false, "SivasNummer": "834372420"} +108;"Omniflo Sum";"autogenerated_of_json";"Omniflo sum";"";1;"";"";"";"";"";"";"";"";"";"";{"Anzahl Bögen": 27, "Anzahl Weichengrundkörper": 0, "Anzahl Einwegweichen": 30, "Anzahl Deltaweichen": 7, "Anzahl Doppelweichen und Dreiwegeweichen": 42, "Anzahl Sternweichen": 1, "Gesamtlänge AP110": 0.0, "Gesamtlänge AP60": 0.0} diff --git a/tests/test_omniflo.py b/tests/test_omniflo.py index ee3fee4..a8b7738 100644 --- a/tests/test_omniflo.py +++ b/tests/test_omniflo.py @@ -344,15 +344,19 @@ class TestOmnifloReferenceCSV: @pytest.fixture(autouse=True) def setup(self): + # Konvention (siehe tests/README.md): Referenz = gleicher Dateiname wie + # das Ist-Ergebnis in output/. Referenz festlegen = output/omniflo_export.csv + # nach reference/ kopieren. self.out_csv = os.path.join(_output_dir(), "omniflo_export.csv") - self.ref_csv = os.path.join(_reference_dir(), "omniflo_export_reference.csv") + self.ref_csv = os.path.join(_reference_dir(), "omniflo_export.csv") if not os.path.exists(self.out_csv): pytest.skip( "omniflo_export.csv nicht vorhanden - " "zuerst TestOmnifloExportUnit ausfuehren" ) if not os.path.exists(self.ref_csv): - pytest.skip("Referenzdatei nicht vorhanden: " + self.ref_csv) + pytest.skip("reference/omniflo_export.csv nicht vorhanden - Referenz " + "noch nicht festgelegt (output/omniflo_export.csv nach reference/ kopieren)") with open(self.out_csv, "r", encoding="utf-8") as f: self.out_lines = f.readlines() with open(self.ref_csv, "r", encoding="utf-8") as f: