aboutsummaryrefslogtreecommitdiff
path: root/cad
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2019-10-04 04:59:54 +0000
committerThierry Thomas <thierry@FreeBSD.org>2019-10-04 04:59:54 +0000
commit5a2052f24639a3f4d2ff2cccfdd5a92a02b776ed (patch)
tree2f9baaaaa0d380495b12bf2f88aa6009a5449b79 /cad
parent8b969881a194fcfa387a59d364fcea0da2f80f63 (diff)
downloadports-5a2052f24639a3f4d2ff2cccfdd5a92a02b776ed.tar.gz
ports-5a2052f24639a3f4d2ff2cccfdd5a92a02b776ed.zip
Notes
Diffstat (limited to 'cad')
-rw-r--r--cad/opencascade/Makefile22
-rw-r--r--cad/opencascade/distinfo6
-rw-r--r--cad/opencascade/files/patch-src_Image_Image__VideoRecorder.cxx34
-rw-r--r--cad/opencascade/pkg-plist1582
4 files changed, 1217 insertions, 427 deletions
diff --git a/cad/opencascade/Makefile b/cad/opencascade/Makefile
index 523cd378c7a2..ed0d7e1a4c89 100644
--- a/cad/opencascade/Makefile
+++ b/cad/opencascade/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= opencascade
-PORTVERSION= 7.3.0
-PORTREVISION= 7
+PORTVERSION= 7.4.0
CATEGORIES= cad science
MASTER_SITES= LOCAL/thierry
@@ -15,15 +14,16 @@ LICENSE_NAME= LGPL21 with exception
LICENSE_FILE= ${WRKSRC}/OCCT_LGPL_EXCEPTION.txt
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
-LIB_DEPENDS= libfreetype.so:print/freetype2 \
- libtbb.so:devel/tbb \
- libvtksys-${VTKVER}.so:math/vtk6
+LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
+ libvtksys-${VTKVER}.so:math/vtk6 \
+ libfreetype.so:print/freetype2 \
+ libtbb.so:devel/tbb
RUN_DEPENDS= bash:shells/bash
# Check ${WRKSRC}/dox/overview/overview.md
# and ${WRKSRC}/dox/dev_guides/building
USES= alias:10 cmake compiler:c++14-lang dos2unix \
- gl shebangfix tk tar:tgz
+ gl python shebangfix tk tar:tgz xorg
USE_XORG= ice sm x11 xext xi xmu xt
USE_GL= gl glu
@@ -31,8 +31,11 @@ DOS2UNIX_FILES= adm/templates/*
SHEBANG_FILES= adm/templates/*.sh \
adm/templates/*.sh.in \
adm/templates/*.sh.main \
+ adm/genconf.tcl \
+ adm/start.tcl \
gendoc
-ENVSH= env.sh adm/templates/env.sh.in adm/templates/env.sh
+ENVSH= adm/templates/env.sh
+
VTKVER= 6.2
OPTIONS_DEFINE= DOCS DOXYGEN FFMPEG VIS
@@ -98,8 +101,11 @@ pre-everything::
pre-configure:
${REINPLACE_CMD} -e 's|tclsh|${TCLSH}|' ${WRKSRC}/gendoc
+ ${REINPLACE_CMD} -e 's|/usr/bin/|${LOCALBASE}/bin/|' ${WRKSRC}/adm/genconfdeps.tcl
+ ${GREP} -rl x86_64 ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \
+ -e 's|x86_64|amd64|'
.for es in ${ENVSH}
- ${REINPLACE_CMD} -e 's|lin|bsd|;s|x86_64|amd64|' ${WRKSRC}/${es}
+ ${REINPLACE_CMD} -e 's|lin|bsd|' ${WRKSRC}/${es}
.endfor
pre-patch:
diff --git a/cad/opencascade/distinfo b/cad/opencascade/distinfo
index 649074d38389..7a074cbab512 100644
--- a/cad/opencascade/distinfo
+++ b/cad/opencascade/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1540838134
-SHA256 (opencascade-7.3.0.tgz) = 1e056fbeaafc8b5a29dd1086de83ae32f65a3c588e8b63fdd126b999e84011cd
-SIZE (opencascade-7.3.0.tgz) = 208866901
+TIMESTAMP = 1569992557
+SHA256 (opencascade-7.4.0.tgz) = 1eace85115ea178f268e9d803ced994b66b72455b5484074b6ad7f643261f0a0
+SIZE (opencascade-7.4.0.tgz) = 216650633
diff --git a/cad/opencascade/files/patch-src_Image_Image__VideoRecorder.cxx b/cad/opencascade/files/patch-src_Image_Image__VideoRecorder.cxx
deleted file mode 100644
index 09035c3fa1b7..000000000000
--- a/cad/opencascade/files/patch-src_Image_Image__VideoRecorder.cxx
+++ /dev/null
@@ -1,34 +0,0 @@
-src/Image/Image_VideoRecorder.cxx:279:25: error: use of undeclared identifier 'CODEC_FLAG_GLOBAL_HEADER'
- aCodecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
- ^
-src/Image/Image_VideoRecorder.cxx:452:38: error: use of undeclared identifier 'AVFMT_RAWPICTURE'
- if ((myAVContext->oformat->flags & AVFMT_RAWPICTURE) != 0
- ^
-
---- src/Image/Image_VideoRecorder.cxx.orig 2018-05-25 19:13:49 UTC
-+++ src/Image/Image_VideoRecorder.cxx
-@@ -283,7 +283,7 @@ Standard_Boolean Image_VideoRecorder::ad
- // some formats want stream headers to be separate
- if (myAVContext->oformat->flags & AVFMT_GLOBALHEADER)
- {
-- aCodecCtx->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+ aCodecCtx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
- }
- return Standard_True;
- #else
-@@ -456,6 +456,7 @@ Standard_Boolean Image_VideoRecorder::wr
- AVPacket aPacket;
- memset (&aPacket, 0, sizeof(aPacket));
- av_init_packet (&aPacket);
-+#ifdef AVFMT_RAWPICTURE
- if ((myAVContext->oformat->flags & AVFMT_RAWPICTURE) != 0
- && !theToFlush)
- {
-@@ -468,6 +469,7 @@ Standard_Boolean Image_VideoRecorder::wr
- aResAv = av_interleaved_write_frame (myAVContext, &aPacket);
- }
- else
-+#endif
- {
- // encode the image
- myFrame->pts = myFrameCount;
diff --git a/cad/opencascade/pkg-plist b/cad/opencascade/pkg-plist
index 420d476b2b2e..8fce2776e6af 100644
--- a/cad/opencascade/pkg-plist
+++ b/cad/opencascade/pkg-plist
@@ -201,6 +201,7 @@
%%OCCROOT%%/samples/tcl/cutter.tcl
%%OCCROOT%%/samples/tcl/dimensions.tcl
%%OCCROOT%%/samples/tcl/drill.tcl
+%%OCCROOT%%/samples/tcl/logo2019.tcl
%%OCCROOT%%/samples/tcl/markers.tcl
%%OCCROOT%%/samples/tcl/materials.tcl
%%OCCROOT%%/samples/tcl/pathtrace_ball.tcl
@@ -215,15 +216,6 @@
%%PORTDOCS%%%%OCCROOT%%/%%DOCSDIR%%/OCCT_LGPL_EXCEPTION.txt
%%OCCROOT%%/tests/3rdparty/begin
%%OCCROOT%%/tests/3rdparty/end
-%%OCCROOT%%/tests/3rdparty/export/A1
-%%OCCROOT%%/tests/3rdparty/export/A2
-%%OCCROOT%%/tests/3rdparty/export/A3
-%%OCCROOT%%/tests/3rdparty/export/A4
-%%OCCROOT%%/tests/3rdparty/export/A5
-%%OCCROOT%%/tests/3rdparty/export/A6
-%%OCCROOT%%/tests/3rdparty/export/A7
-%%OCCROOT%%/tests/3rdparty/export/begin
-%%OCCROOT%%/tests/3rdparty/export/end
%%OCCROOT%%/tests/3rdparty/fonts/A1
%%OCCROOT%%/tests/3rdparty/fonts/A2
%%OCCROOT%%/tests/3rdparty/fonts/A3
@@ -238,7 +230,9 @@
%%OCCROOT%%/tests/3rdparty/fonts/B4
%%OCCROOT%%/tests/3rdparty/fonts/B5
%%OCCROOT%%/tests/3rdparty/fonts/B6
+%%OCCROOT%%/tests/3rdparty/fonts/B7
%%OCCROOT%%/tests/3rdparty/fonts/C1
+%%OCCROOT%%/tests/3rdparty/fonts/C2
%%OCCROOT%%/tests/3rdparty/grids.list
%%OCCROOT%%/tests/3rdparty/parse.rules
%%OCCROOT%%/tests/3rdparty/text3d/A1
@@ -4659,7 +4653,28 @@
%%OCCROOT%%/tests/boolean/history/A6
%%OCCROOT%%/tests/boolean/history/A7
%%OCCROOT%%/tests/boolean/history/A8
+%%OCCROOT%%/tests/boolean/history/A9
+%%OCCROOT%%/tests/boolean/mkconnected/A1
+%%OCCROOT%%/tests/boolean/mkconnected/A2
+%%OCCROOT%%/tests/boolean/mkconnected/A3
+%%OCCROOT%%/tests/boolean/mkconnected/A4
+%%OCCROOT%%/tests/boolean/mkconnected/A5
+%%OCCROOT%%/tests/boolean/opensolid/A1
+%%OCCROOT%%/tests/boolean/opensolid/A2
+%%OCCROOT%%/tests/boolean/opensolid/A3
+%%OCCROOT%%/tests/boolean/opensolid/A4
+%%OCCROOT%%/tests/boolean/opensolid/A5
+%%OCCROOT%%/tests/boolean/opensolid/A6
+%%OCCROOT%%/tests/boolean/opensolid/A7
+%%OCCROOT%%/tests/boolean/opensolid/A8
+%%OCCROOT%%/tests/boolean/opensolid/A9
%%OCCROOT%%/tests/boolean/parse.rules
+%%OCCROOT%%/tests/boolean/periodicity/A1
+%%OCCROOT%%/tests/boolean/periodicity/A2
+%%OCCROOT%%/tests/boolean/periodicity/A3
+%%OCCROOT%%/tests/boolean/periodicity/A4
+%%OCCROOT%%/tests/boolean/periodicity/A5
+%%OCCROOT%%/tests/boolean/periodicity/A6
%%OCCROOT%%/tests/boolean/removefeatures/A1
%%OCCROOT%%/tests/boolean/removefeatures/A2
%%OCCROOT%%/tests/boolean/removefeatures/A3
@@ -4716,7 +4731,14 @@
%%OCCROOT%%/tests/boolean/removefeatures/F9
%%OCCROOT%%/tests/boolean/removefeatures/G1
%%OCCROOT%%/tests/boolean/removefeatures/G2
+%%OCCROOT%%/tests/boolean/removefeatures/G3
+%%OCCROOT%%/tests/boolean/removefeatures/G4
%%OCCROOT%%/tests/boolean/removefeatures/begin
+%%OCCROOT%%/tests/boolean/simplify/A1
+%%OCCROOT%%/tests/boolean/simplify/A2
+%%OCCROOT%%/tests/boolean/simplify/A3
+%%OCCROOT%%/tests/boolean/simplify/A4
+%%OCCROOT%%/tests/boolean/simplify/A5
%%OCCROOT%%/tests/boolean/splitter/A1
%%OCCROOT%%/tests/boolean/splitter/A2
%%OCCROOT%%/tests/boolean/splitter/A3
@@ -4933,6 +4955,8 @@
%%OCCROOT%%/tests/bugs/caf/bug29452
%%OCCROOT%%/tests/bugs/caf/bug29531
%%OCCROOT%%/tests/bugs/caf/bug29669
+%%OCCROOT%%/tests/bugs/caf/bug30215
+%%OCCROOT%%/tests/bugs/caf/bug30510
%%OCCROOT%%/tests/bugs/caf/bug361
%%OCCROOT%%/tests/bugs/caf/bug381_1
%%OCCROOT%%/tests/bugs/caf/bug381_2
@@ -5013,7 +5037,6 @@
%%OCCROOT%%/tests/bugs/fclasses/bug23569_2
%%OCCROOT%%/tests/bugs/fclasses/bug23774
%%OCCROOT%%/tests/bugs/fclasses/bug23852
-%%OCCROOT%%/tests/bugs/fclasses/bug23972
%%OCCROOT%%/tests/bugs/fclasses/bug24137
%%OCCROOT%%/tests/bugs/fclasses/bug24271
%%OCCROOT%%/tests/bugs/fclasses/bug24533
@@ -5048,7 +5071,12 @@
%%OCCROOT%%/tests/bugs/fclasses/bug28829
%%OCCROOT%%/tests/bugs/fclasses/bug29064
%%OCCROOT%%/tests/bugs/fclasses/bug29355
+%%OCCROOT%%/tests/bugs/fclasses/bug29925
+%%OCCROOT%%/tests/bugs/fclasses/bug30536
+%%OCCROOT%%/tests/bugs/fclasses/bug30775
+%%OCCROOT%%/tests/bugs/fclasses/bug30804
%%OCCROOT%%/tests/bugs/fclasses/bug309
+%%OCCROOT%%/tests/bugs/fclasses/bug30990
%%OCCROOT%%/tests/bugs/fclasses/bug310
%%OCCROOT%%/tests/bugs/fclasses/bug6143
%%OCCROOT%%/tests/bugs/fclasses/bug63
@@ -5164,6 +5192,7 @@
%%OCCROOT%%/tests/bugs/heal/bug28595
%%OCCROOT%%/tests/bugs/heal/bug28768
%%OCCROOT%%/tests/bugs/heal/bug29695
+%%OCCROOT%%/tests/bugs/heal/bug30831
%%OCCROOT%%/tests/bugs/heal/bug329
%%OCCROOT%%/tests/bugs/heal/bug482
%%OCCROOT%%/tests/bugs/heal/bug518
@@ -5266,6 +5295,8 @@
%%OCCROOT%%/tests/bugs/iges/bug28694_9
%%OCCROOT%%/tests/bugs/iges/bug29391
%%OCCROOT%%/tests/bugs/iges/bug29526
+%%OCCROOT%%/tests/bugs/iges/bug30356
+%%OCCROOT%%/tests/bugs/iges/bug30544
%%OCCROOT%%/tests/bugs/iges/bug306
%%OCCROOT%%/tests/bugs/iges/bug365_1
%%OCCROOT%%/tests/bugs/iges/bug365_3
@@ -5297,6 +5328,7 @@
%%OCCROOT%%/tests/bugs/mesh/bug23202
%%OCCROOT%%/tests/bugs/mesh/bug23512_1
%%OCCROOT%%/tests/bugs/mesh/bug23512_2
+%%OCCROOT%%/tests/bugs/mesh/bug23513
%%OCCROOT%%/tests/bugs/mesh/bug23580
%%OCCROOT%%/tests/bugs/mesh/bug23614_1
%%OCCROOT%%/tests/bugs/mesh/bug23614_2
@@ -5310,6 +5342,67 @@
%%OCCROOT%%/tests/bugs/mesh/bug24775
%%OCCROOT%%/tests/bugs/mesh/bug24923
%%OCCROOT%%/tests/bugs/mesh/bug24938
+%%OCCROOT%%/tests/bugs/mesh/bug25042
+%%OCCROOT%%/tests/bugs/mesh/bug25044_1
+%%OCCROOT%%/tests/bugs/mesh/bug25044_10
+%%OCCROOT%%/tests/bugs/mesh/bug25044_11
+%%OCCROOT%%/tests/bugs/mesh/bug25044_12
+%%OCCROOT%%/tests/bugs/mesh/bug25044_13
+%%OCCROOT%%/tests/bugs/mesh/bug25044_14
+%%OCCROOT%%/tests/bugs/mesh/bug25044_15
+%%OCCROOT%%/tests/bugs/mesh/bug25044_16
+%%OCCROOT%%/tests/bugs/mesh/bug25044_17
+%%OCCROOT%%/tests/bugs/mesh/bug25044_18
+%%OCCROOT%%/tests/bugs/mesh/bug25044_19
+%%OCCROOT%%/tests/bugs/mesh/bug25044_2
+%%OCCROOT%%/tests/bugs/mesh/bug25044_20
+%%OCCROOT%%/tests/bugs/mesh/bug25044_21
+%%OCCROOT%%/tests/bugs/mesh/bug25044_22
+%%OCCROOT%%/tests/bugs/mesh/bug25044_23
+%%OCCROOT%%/tests/bugs/mesh/bug25044_24
+%%OCCROOT%%/tests/bugs/mesh/bug25044_25
+%%OCCROOT%%/tests/bugs/mesh/bug25044_26
+%%OCCROOT%%/tests/bugs/mesh/bug25044_27
+%%OCCROOT%%/tests/bugs/mesh/bug25044_28
+%%OCCROOT%%/tests/bugs/mesh/bug25044_29
+%%OCCROOT%%/tests/bugs/mesh/bug25044_3
+%%OCCROOT%%/tests/bugs/mesh/bug25044_30
+%%OCCROOT%%/tests/bugs/mesh/bug25044_31
+%%OCCROOT%%/tests/bugs/mesh/bug25044_32
+%%OCCROOT%%/tests/bugs/mesh/bug25044_33
+%%OCCROOT%%/tests/bugs/mesh/bug25044_34
+%%OCCROOT%%/tests/bugs/mesh/bug25044_35
+%%OCCROOT%%/tests/bugs/mesh/bug25044_36
+%%OCCROOT%%/tests/bugs/mesh/bug25044_37
+%%OCCROOT%%/tests/bugs/mesh/bug25044_38
+%%OCCROOT%%/tests/bugs/mesh/bug25044_39
+%%OCCROOT%%/tests/bugs/mesh/bug25044_4
+%%OCCROOT%%/tests/bugs/mesh/bug25044_40
+%%OCCROOT%%/tests/bugs/mesh/bug25044_41
+%%OCCROOT%%/tests/bugs/mesh/bug25044_42
+%%OCCROOT%%/tests/bugs/mesh/bug25044_43
+%%OCCROOT%%/tests/bugs/mesh/bug25044_44
+%%OCCROOT%%/tests/bugs/mesh/bug25044_45
+%%OCCROOT%%/tests/bugs/mesh/bug25044_46
+%%OCCROOT%%/tests/bugs/mesh/bug25044_47
+%%OCCROOT%%/tests/bugs/mesh/bug25044_48
+%%OCCROOT%%/tests/bugs/mesh/bug25044_49
+%%OCCROOT%%/tests/bugs/mesh/bug25044_5
+%%OCCROOT%%/tests/bugs/mesh/bug25044_50
+%%OCCROOT%%/tests/bugs/mesh/bug25044_51
+%%OCCROOT%%/tests/bugs/mesh/bug25044_52
+%%OCCROOT%%/tests/bugs/mesh/bug25044_53
+%%OCCROOT%%/tests/bugs/mesh/bug25044_54
+%%OCCROOT%%/tests/bugs/mesh/bug25044_55
+%%OCCROOT%%/tests/bugs/mesh/bug25044_56
+%%OCCROOT%%/tests/bugs/mesh/bug25044_57
+%%OCCROOT%%/tests/bugs/mesh/bug25044_58
+%%OCCROOT%%/tests/bugs/mesh/bug25044_59
+%%OCCROOT%%/tests/bugs/mesh/bug25044_6
+%%OCCROOT%%/tests/bugs/mesh/bug25044_60
+%%OCCROOT%%/tests/bugs/mesh/bug25044_7
+%%OCCROOT%%/tests/bugs/mesh/bug25044_8
+%%OCCROOT%%/tests/bugs/mesh/bug25044_9
%%OCCROOT%%/tests/bugs/mesh/bug25045
%%OCCROOT%%/tests/bugs/mesh/bug25061
%%OCCROOT%%/tests/bugs/mesh/bug25080
@@ -5342,6 +5435,40 @@
%%OCCROOT%%/tests/bugs/mesh/bug25586_1
%%OCCROOT%%/tests/bugs/mesh/bug25586_2
%%OCCROOT%%/tests/bugs/mesh/bug25586_3
+%%OCCROOT%%/tests/bugs/mesh/bug25588
+%%OCCROOT%%/tests/bugs/mesh/bug25588_1
+%%OCCROOT%%/tests/bugs/mesh/bug25588_10
+%%OCCROOT%%/tests/bugs/mesh/bug25588_11
+%%OCCROOT%%/tests/bugs/mesh/bug25588_12
+%%OCCROOT%%/tests/bugs/mesh/bug25588_13
+%%OCCROOT%%/tests/bugs/mesh/bug25588_14
+%%OCCROOT%%/tests/bugs/mesh/bug25588_15
+%%OCCROOT%%/tests/bugs/mesh/bug25588_16
+%%OCCROOT%%/tests/bugs/mesh/bug25588_17
+%%OCCROOT%%/tests/bugs/mesh/bug25588_18
+%%OCCROOT%%/tests/bugs/mesh/bug25588_19
+%%OCCROOT%%/tests/bugs/mesh/bug25588_2
+%%OCCROOT%%/tests/bugs/mesh/bug25588_20
+%%OCCROOT%%/tests/bugs/mesh/bug25588_21
+%%OCCROOT%%/tests/bugs/mesh/bug25588_22
+%%OCCROOT%%/tests/bugs/mesh/bug25588_23
+%%OCCROOT%%/tests/bugs/mesh/bug25588_24
+%%OCCROOT%%/tests/bugs/mesh/bug25588_25
+%%OCCROOT%%/tests/bugs/mesh/bug25588_26
+%%OCCROOT%%/tests/bugs/mesh/bug25588_27
+%%OCCROOT%%/tests/bugs/mesh/bug25588_28
+%%OCCROOT%%/tests/bugs/mesh/bug25588_29
+%%OCCROOT%%/tests/bugs/mesh/bug25588_3
+%%OCCROOT%%/tests/bugs/mesh/bug25588_30
+%%OCCROOT%%/tests/bugs/mesh/bug25588_31
+%%OCCROOT%%/tests/bugs/mesh/bug25588_32
+%%OCCROOT%%/tests/bugs/mesh/bug25588_4
+%%OCCROOT%%/tests/bugs/mesh/bug25588_5
+%%OCCROOT%%/tests/bugs/mesh/bug25588_6
+%%OCCROOT%%/tests/bugs/mesh/bug25588_7
+%%OCCROOT%%/tests/bugs/mesh/bug25588_8
+%%OCCROOT%%/tests/bugs/mesh/bug25588_9
+%%OCCROOT%%/tests/bugs/mesh/bug25594
%%OCCROOT%%/tests/bugs/mesh/bug25612
%%OCCROOT%%/tests/bugs/mesh/bug25628
%%OCCROOT%%/tests/bugs/mesh/bug25738
@@ -5358,13 +5485,16 @@
%%OCCROOT%%/tests/bugs/mesh/bug26664
%%OCCROOT%%/tests/bugs/mesh/bug26692_1
%%OCCROOT%%/tests/bugs/mesh/bug26692_2
-%%OCCROOT%%/tests/bugs/mesh/bug26889
%%OCCROOT%%/tests/bugs/mesh/bug26928
+%%OCCROOT%%/tests/bugs/mesh/bug27158
%%OCCROOT%%/tests/bugs/mesh/bug27239
%%OCCROOT%%/tests/bugs/mesh/bug27384_1
%%OCCROOT%%/tests/bugs/mesh/bug27384_2
%%OCCROOT%%/tests/bugs/mesh/bug27442
%%OCCROOT%%/tests/bugs/mesh/bug27453
+%%OCCROOT%%/tests/bugs/mesh/bug27685
+%%OCCROOT%%/tests/bugs/mesh/bug27693
+%%OCCROOT%%/tests/bugs/mesh/bug27845
%%OCCROOT%%/tests/bugs/mesh/bug27959
%%OCCROOT%%/tests/bugs/mesh/bug28118
%%OCCROOT%%/tests/bugs/mesh/bug28194
@@ -5372,7 +5502,20 @@
%%OCCROOT%%/tests/bugs/mesh/bug28379
%%OCCROOT%%/tests/bugs/mesh/bug28500
%%OCCROOT%%/tests/bugs/mesh/bug28719
+%%OCCROOT%%/tests/bugs/mesh/bug29149
+%%OCCROOT%%/tests/bugs/mesh/bug29205
+%%OCCROOT%%/tests/bugs/mesh/bug29685
%%OCCROOT%%/tests/bugs/mesh/bug29715
+%%OCCROOT%%/tests/bugs/mesh/bug29751
+%%OCCROOT%%/tests/bugs/mesh/bug29962
+%%OCCROOT%%/tests/bugs/mesh/bug29964
+%%OCCROOT%%/tests/bugs/mesh/bug30008_1
+%%OCCROOT%%/tests/bugs/mesh/bug30008_2
+%%OCCROOT%%/tests/bugs/mesh/bug30149
+%%OCCROOT%%/tests/bugs/mesh/bug30167
+%%OCCROOT%%/tests/bugs/mesh/bug30234
+%%OCCROOT%%/tests/bugs/mesh/bug30780
+%%OCCROOT%%/tests/bugs/mesh/bug30785
%%OCCROOT%%/tests/bugs/mesh/parse.rules
%%OCCROOT%%/tests/bugs/modalg_1/begin
%%OCCROOT%%/tests/bugs/modalg_1/buc60409_1
@@ -5787,7 +5930,10 @@
%%OCCROOT%%/tests/bugs/modalg_2/bug22828
%%OCCROOT%%/tests/bugs/modalg_2/bug22830
%%OCCROOT%%/tests/bugs/modalg_2/bug22833
-%%OCCROOT%%/tests/bugs/modalg_2/bug22864
+%%OCCROOT%%/tests/bugs/modalg_2/bug22864_1
+%%OCCROOT%%/tests/bugs/modalg_2/bug22864_2
+%%OCCROOT%%/tests/bugs/modalg_2/bug22864_3
+%%OCCROOT%%/tests/bugs/modalg_2/bug22864_4
%%OCCROOT%%/tests/bugs/modalg_2/bug22881
%%OCCROOT%%/tests/bugs/modalg_2/bug22884
%%OCCROOT%%/tests/bugs/modalg_2/bug22893
@@ -5821,8 +5967,6 @@
%%OCCROOT%%/tests/bugs/modalg_2/bug23170
%%OCCROOT%%/tests/bugs/modalg_2/bug23174
%%OCCROOT%%/tests/bugs/modalg_2/bug23214
-%%OCCROOT%%/tests/bugs/modalg_2/bug23218
-%%OCCROOT%%/tests/bugs/modalg_2/bug23341
%%OCCROOT%%/tests/bugs/modalg_2/bug23367_1
%%OCCROOT%%/tests/bugs/modalg_2/bug23367_10
%%OCCROOT%%/tests/bugs/modalg_2/bug23367_11
@@ -5849,10 +5993,8 @@
%%OCCROOT%%/tests/bugs/modalg_2/bug23651_1
%%OCCROOT%%/tests/bugs/modalg_2/bug23651_2
%%OCCROOT%%/tests/bugs/modalg_2/bug23676
-%%OCCROOT%%/tests/bugs/modalg_2/bug23699
%%OCCROOT%%/tests/bugs/modalg_2/bug23711
%%OCCROOT%%/tests/bugs/modalg_2/bug23716
-%%OCCROOT%%/tests/bugs/modalg_2/bug23732
%%OCCROOT%%/tests/bugs/modalg_2/bug238_1
%%OCCROOT%%/tests/bugs/modalg_2/bug238_2
%%OCCROOT%%/tests/bugs/modalg_2/bug239_1
@@ -6319,7 +6461,6 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug22614_2
%%OCCROOT%%/tests/bugs/modalg_5/bug22614_3
%%OCCROOT%%/tests/bugs/modalg_5/bug22747
-%%OCCROOT%%/tests/bugs/modalg_5/bug22766
%%OCCROOT%%/tests/bugs/modalg_5/bug22829
%%OCCROOT%%/tests/bugs/modalg_5/bug22831
%%OCCROOT%%/tests/bugs/modalg_5/bug22872
@@ -6366,7 +6507,6 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_37
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_38
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_39
-%%OCCROOT%%/tests/bugs/modalg_5/bug23706_4
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_40
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_41
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_42
@@ -6377,7 +6517,6 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_47
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_48
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_49
-%%OCCROOT%%/tests/bugs/modalg_5/bug23706_5
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_50
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_51
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_52
@@ -6395,7 +6534,6 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_8
%%OCCROOT%%/tests/bugs/modalg_5/bug23706_9
%%OCCROOT%%/tests/bugs/modalg_5/bug23708
-%%OCCROOT%%/tests/bugs/modalg_5/bug23777
%%OCCROOT%%/tests/bugs/modalg_5/bug23782
%%OCCROOT%%/tests/bugs/modalg_5/bug23785
%%OCCROOT%%/tests/bugs/modalg_5/bug23823
@@ -6413,7 +6551,6 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug23839_7
%%OCCROOT%%/tests/bugs/modalg_5/bug23845
%%OCCROOT%%/tests/bugs/modalg_5/bug23849_1
-%%OCCROOT%%/tests/bugs/modalg_5/bug23849_2
%%OCCROOT%%/tests/bugs/modalg_5/bug23849_3
%%OCCROOT%%/tests/bugs/modalg_5/bug23853_1
%%OCCROOT%%/tests/bugs/modalg_5/bug23853_2
@@ -6437,8 +6574,6 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug23932_1
%%OCCROOT%%/tests/bugs/modalg_5/bug23932_2
%%OCCROOT%%/tests/bugs/modalg_5/bug23933
-%%OCCROOT%%/tests/bugs/modalg_5/bug23948_1
-%%OCCROOT%%/tests/bugs/modalg_5/bug23948_2
%%OCCROOT%%/tests/bugs/modalg_5/bug23952_1
%%OCCROOT%%/tests/bugs/modalg_5/bug23952_2
%%OCCROOT%%/tests/bugs/modalg_5/bug23954
@@ -6510,11 +6645,9 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug24286
%%OCCROOT%%/tests/bugs/modalg_5/bug24290_1
%%OCCROOT%%/tests/bugs/modalg_5/bug24290_2
-%%OCCROOT%%/tests/bugs/modalg_5/bug24299
%%OCCROOT%%/tests/bugs/modalg_5/bug24302
%%OCCROOT%%/tests/bugs/modalg_5/bug24303
%%OCCROOT%%/tests/bugs/modalg_5/bug24305
-%%OCCROOT%%/tests/bugs/modalg_5/bug24313
%%OCCROOT%%/tests/bugs/modalg_5/bug24327
%%OCCROOT%%/tests/bugs/modalg_5/bug24328
%%OCCROOT%%/tests/bugs/modalg_5/bug24347
@@ -6527,10 +6660,8 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug24397_3
%%OCCROOT%%/tests/bugs/modalg_5/bug24400
%%OCCROOT%%/tests/bugs/modalg_5/bug24404
-%%OCCROOT%%/tests/bugs/modalg_5/bug24422
%%OCCROOT%%/tests/bugs/modalg_5/bug24463
%%OCCROOT%%/tests/bugs/modalg_5/bug24470
-%%OCCROOT%%/tests/bugs/modalg_5/bug24472
%%OCCROOT%%/tests/bugs/modalg_5/bug24481_1
%%OCCROOT%%/tests/bugs/modalg_5/bug24481_2
%%OCCROOT%%/tests/bugs/modalg_5/bug24484
@@ -6539,18 +6670,15 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug24496
%%OCCROOT%%/tests/bugs/modalg_5/bug24499
%%OCCROOT%%/tests/bugs/modalg_5/bug24504
-%%OCCROOT%%/tests/bugs/modalg_5/bug24505
%%OCCROOT%%/tests/bugs/modalg_5/bug24519
%%OCCROOT%%/tests/bugs/modalg_5/bug24532
%%OCCROOT%%/tests/bugs/modalg_5/bug24558
%%OCCROOT%%/tests/bugs/modalg_5/bug24573
%%OCCROOT%%/tests/bugs/modalg_5/bug24575
%%OCCROOT%%/tests/bugs/modalg_5/bug24581
-%%OCCROOT%%/tests/bugs/modalg_5/bug24585_1
%%OCCROOT%%/tests/bugs/modalg_5/bug24585_2
%%OCCROOT%%/tests/bugs/modalg_5/bug24586
%%OCCROOT%%/tests/bugs/modalg_5/bug24597
-%%OCCROOT%%/tests/bugs/modalg_5/bug24612
%%OCCROOT%%/tests/bugs/modalg_5/bug24618_1
%%OCCROOT%%/tests/bugs/modalg_5/bug24618_2
%%OCCROOT%%/tests/bugs/modalg_5/bug24618_3
@@ -6558,13 +6686,10 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug24620
%%OCCROOT%%/tests/bugs/modalg_5/bug24628
%%OCCROOT%%/tests/bugs/modalg_5/bug24639
-%%OCCROOT%%/tests/bugs/modalg_5/bug24643
%%OCCROOT%%/tests/bugs/modalg_5/bug24646_1
%%OCCROOT%%/tests/bugs/modalg_5/bug24646_2
%%OCCROOT%%/tests/bugs/modalg_5/bug24646_3
%%OCCROOT%%/tests/bugs/modalg_5/bug24646_4
-%%OCCROOT%%/tests/bugs/modalg_5/bug24648
-%%OCCROOT%%/tests/bugs/modalg_5/bug24650
%%OCCROOT%%/tests/bugs/modalg_5/bug24654
%%OCCROOT%%/tests/bugs/modalg_5/bug24655
%%OCCROOT%%/tests/bugs/modalg_5/bug24656
@@ -6607,7 +6732,6 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug24889
%%OCCROOT%%/tests/bugs/modalg_5/bug24910
%%OCCROOT%%/tests/bugs/modalg_5/bug24914
-%%OCCROOT%%/tests/bugs/modalg_5/bug24915
%%OCCROOT%%/tests/bugs/modalg_5/bug24920
%%OCCROOT%%/tests/bugs/modalg_5/bug24939
%%OCCROOT%%/tests/bugs/modalg_5/bug24946
@@ -6637,10 +6761,8 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug25175
%%OCCROOT%%/tests/bugs/modalg_5/bug25184
%%OCCROOT%%/tests/bugs/modalg_5/bug25191
-%%OCCROOT%%/tests/bugs/modalg_5/bug25193
%%OCCROOT%%/tests/bugs/modalg_5/bug25199
%%OCCROOT%%/tests/bugs/modalg_5/bug25210
-%%OCCROOT%%/tests/bugs/modalg_5/bug25224
%%OCCROOT%%/tests/bugs/modalg_5/bug25225_1
%%OCCROOT%%/tests/bugs/modalg_5/bug25225_2
%%OCCROOT%%/tests/bugs/modalg_5/bug25225_3
@@ -6662,25 +6784,18 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug25243
%%OCCROOT%%/tests/bugs/modalg_5/bug25245_1
%%OCCROOT%%/tests/bugs/modalg_5/bug25245_2
-%%OCCROOT%%/tests/bugs/modalg_5/bug25248
%%OCCROOT%%/tests/bugs/modalg_5/bug25263
%%OCCROOT%%/tests/bugs/modalg_5/bug25270
%%OCCROOT%%/tests/bugs/modalg_5/bug25272
%%OCCROOT%%/tests/bugs/modalg_5/bug25285
-%%OCCROOT%%/tests/bugs/modalg_5/bug25292_11
-%%OCCROOT%%/tests/bugs/modalg_5/bug25292_12
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_13
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_14
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_15
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_16
-%%OCCROOT%%/tests/bugs/modalg_5/bug25292_21
-%%OCCROOT%%/tests/bugs/modalg_5/bug25292_22
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_23
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_24
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_25
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_26
-%%OCCROOT%%/tests/bugs/modalg_5/bug25292_31
-%%OCCROOT%%/tests/bugs/modalg_5/bug25292_32
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_33
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_34
%%OCCROOT%%/tests/bugs/modalg_5/bug25292_35
@@ -6780,15 +6895,11 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug25354_50
%%OCCROOT%%/tests/bugs/modalg_5/bug25368_1
%%OCCROOT%%/tests/bugs/modalg_5/bug25368_2
-%%OCCROOT%%/tests/bugs/modalg_5/bug25380
%%OCCROOT%%/tests/bugs/modalg_5/bug25398
%%OCCROOT%%/tests/bugs/modalg_5/bug25406_1
%%OCCROOT%%/tests/bugs/modalg_5/bug25406_2
%%OCCROOT%%/tests/bugs/modalg_5/bug25408
%%OCCROOT%%/tests/bugs/modalg_5/bug25410
-%%OCCROOT%%/tests/bugs/modalg_5/bug25416_1
-%%OCCROOT%%/tests/bugs/modalg_5/bug25416_2
-%%OCCROOT%%/tests/bugs/modalg_5/bug25416_3
%%OCCROOT%%/tests/bugs/modalg_5/bug25420
%%OCCROOT%%/tests/bugs/modalg_5/bug25427
%%OCCROOT%%/tests/bugs/modalg_5/bug25432
@@ -6799,13 +6910,10 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug25453
%%OCCROOT%%/tests/bugs/modalg_5/bug25456
%%OCCROOT%%/tests/bugs/modalg_5/bug25460
-%%OCCROOT%%/tests/bugs/modalg_5/bug25465_1
-%%OCCROOT%%/tests/bugs/modalg_5/bug25465_2
%%OCCROOT%%/tests/bugs/modalg_5/bug25470
%%OCCROOT%%/tests/bugs/modalg_5/bug25477_1
%%OCCROOT%%/tests/bugs/modalg_5/bug25477_2
%%OCCROOT%%/tests/bugs/modalg_5/bug25480
-%%OCCROOT%%/tests/bugs/modalg_5/bug25488
%%OCCROOT%%/tests/bugs/modalg_5/bug25491
%%OCCROOT%%/tests/bugs/modalg_5/bug25505
%%OCCROOT%%/tests/bugs/modalg_5/bug25509_1
@@ -6838,7 +6946,6 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug25657
%%OCCROOT%%/tests/bugs/modalg_5/bug25657_1
%%OCCROOT%%/tests/bugs/modalg_5/bug25697_1
-%%OCCROOT%%/tests/bugs/modalg_5/bug25697_2
%%OCCROOT%%/tests/bugs/modalg_5/bug25701
%%OCCROOT%%/tests/bugs/modalg_5/bug25704_1
%%OCCROOT%%/tests/bugs/modalg_5/bug25704_2
@@ -6858,29 +6965,22 @@
%%OCCROOT%%/tests/bugs/modalg_5/bug25772
%%OCCROOT%%/tests/bugs/modalg_5/bug25780
%%OCCROOT%%/tests/bugs/modalg_5/bug25801
-%%OCCROOT%%/tests/bugs/modalg_5/bug25818
%%OCCROOT%%/tests/bugs/modalg_5/bug25819_1
%%OCCROOT%%/tests/bugs/modalg_5/bug25819_2
%%OCCROOT%%/tests/bugs/modalg_5/bug25819_3
%%OCCROOT%%/tests/bugs/modalg_5/bug25828_1
%%OCCROOT%%/tests/bugs/modalg_5/bug25828_2
-%%OCCROOT%%/tests/bugs/modalg_5/bug25828_3
-%%OCCROOT%%/tests/bugs/modalg_5/bug25828_4
%%OCCROOT%%/tests/bugs/modalg_5/bug25828_5
%%OCCROOT%%/tests/bugs/modalg_5/bug25828_6
%%OCCROOT%%/tests/bugs/modalg_5/bug25838
%%OCCROOT%%/tests/bugs/modalg_5/bug25841
-%%OCCROOT%%/tests/bugs/modalg_5/bug25842
%%OCCROOT%%/tests/bugs/modalg_5/bug25847
%%OCCROOT%%/tests/bugs/modalg_5/bug25858_1
%%OCCROOT%%/tests/bugs/modalg_5/bug25858_2
%%OCCROOT%%/tests/bugs/modalg_5/bug25883
%%OCCROOT%%/tests/bugs/modalg_5/bug25886
%%OCCROOT%%/tests/bugs/modalg_5/bug25887
-%%OCCROOT%%/tests/bugs/modalg_5/bug25898
%%OCCROOT%%/tests/bugs/modalg_5/bug25951
-%%OCCROOT%%/tests/bugs/modalg_5/bug25969
-%%OCCROOT%%/tests/bugs/modalg_5/bug25969_std
%%OCCROOT%%/tests/bugs/modalg_5/bug25976
%%OCCROOT%%/tests/bugs/modalg_5/bug25980
%%OCCROOT%%/tests/bugs/modalg_5/bug25982
@@ -6896,7 +6996,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug21624
%%OCCROOT%%/tests/bugs/modalg_6/bug21670
%%OCCROOT%%/tests/bugs/modalg_6/bug21727
-%%OCCROOT%%/tests/bugs/modalg_6/bug21750
%%OCCROOT%%/tests/bugs/modalg_6/bug21821
%%OCCROOT%%/tests/bugs/modalg_6/bug21875
%%OCCROOT%%/tests/bugs/modalg_6/bug22037
@@ -6909,9 +7008,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug22793
%%OCCROOT%%/tests/bugs/modalg_6/bug22794
%%OCCROOT%%/tests/bugs/modalg_6/bug23138
-%%OCCROOT%%/tests/bugs/modalg_6/bug23177_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug23177_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug23178
%%OCCROOT%%/tests/bugs/modalg_6/bug23585
%%OCCROOT%%/tests/bugs/modalg_6/bug23666
%%OCCROOT%%/tests/bugs/modalg_6/bug24011
@@ -6933,28 +7029,17 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug25342
%%OCCROOT%%/tests/bugs/modalg_6/bug25423_1
%%OCCROOT%%/tests/bugs/modalg_6/bug25423_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug25593
%%OCCROOT%%/tests/bugs/modalg_6/bug25613_1
%%OCCROOT%%/tests/bugs/modalg_6/bug25613_2
%%OCCROOT%%/tests/bugs/modalg_6/bug25792
-%%OCCROOT%%/tests/bugs/modalg_6/bug25813_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug25813_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug25813_3
-%%OCCROOT%%/tests/bugs/modalg_6/bug25813_4
-%%OCCROOT%%/tests/bugs/modalg_6/bug25813_5
-%%OCCROOT%%/tests/bugs/modalg_6/bug25820_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug25820_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug25820_3
%%OCCROOT%%/tests/bugs/modalg_6/bug25844
%%OCCROOT%%/tests/bugs/modalg_6/bug25880
-%%OCCROOT%%/tests/bugs/modalg_6/bug25890
%%OCCROOT%%/tests/bugs/modalg_6/bug25908
%%OCCROOT%%/tests/bugs/modalg_6/bug25937_1
%%OCCROOT%%/tests/bugs/modalg_6/bug25937_2
%%OCCROOT%%/tests/bugs/modalg_6/bug25937_3
%%OCCROOT%%/tests/bugs/modalg_6/bug25957_1
%%OCCROOT%%/tests/bugs/modalg_6/bug25957_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug26008
%%OCCROOT%%/tests/bugs/modalg_6/bug26010
%%OCCROOT%%/tests/bugs/modalg_6/bug26016
%%OCCROOT%%/tests/bugs/modalg_6/bug26041
@@ -6963,7 +7048,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26075
%%OCCROOT%%/tests/bugs/modalg_6/bug26080
%%OCCROOT%%/tests/bugs/modalg_6/bug26098
-%%OCCROOT%%/tests/bugs/modalg_6/bug26099
%%OCCROOT%%/tests/bugs/modalg_6/bug26112
%%OCCROOT%%/tests/bugs/modalg_6/bug26130
%%OCCROOT%%/tests/bugs/modalg_6/bug26132
@@ -6985,8 +7069,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26150_7
%%OCCROOT%%/tests/bugs/modalg_6/bug26150_8
%%OCCROOT%%/tests/bugs/modalg_6/bug26150_9
-%%OCCROOT%%/tests/bugs/modalg_6/bug26151_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug26151_2
%%OCCROOT%%/tests/bugs/modalg_6/bug26152_1
%%OCCROOT%%/tests/bugs/modalg_6/bug26152_2
%%OCCROOT%%/tests/bugs/modalg_6/bug26173
@@ -7004,7 +7086,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26197
%%OCCROOT%%/tests/bugs/modalg_6/bug26201
%%OCCROOT%%/tests/bugs/modalg_6/bug26202
-%%OCCROOT%%/tests/bugs/modalg_6/bug26206
%%OCCROOT%%/tests/bugs/modalg_6/bug26208
%%OCCROOT%%/tests/bugs/modalg_6/bug26218
%%OCCROOT%%/tests/bugs/modalg_6/bug26224
@@ -7013,7 +7094,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26243_1
%%OCCROOT%%/tests/bugs/modalg_6/bug26243_2
%%OCCROOT%%/tests/bugs/modalg_6/bug26243_3
-%%OCCROOT%%/tests/bugs/modalg_6/bug26251
%%OCCROOT%%/tests/bugs/modalg_6/bug26253
%%OCCROOT%%/tests/bugs/modalg_6/bug26270
%%OCCROOT%%/tests/bugs/modalg_6/bug26281_1
@@ -7038,7 +7118,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26332
%%OCCROOT%%/tests/bugs/modalg_6/bug26333
%%OCCROOT%%/tests/bugs/modalg_6/bug26334
-%%OCCROOT%%/tests/bugs/modalg_6/bug26352
%%OCCROOT%%/tests/bugs/modalg_6/bug26354
%%OCCROOT%%/tests/bugs/modalg_6/bug26356
%%OCCROOT%%/tests/bugs/modalg_6/bug26379_1
@@ -7056,7 +7135,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26420_3
%%OCCROOT%%/tests/bugs/modalg_6/bug26426
%%OCCROOT%%/tests/bugs/modalg_6/bug26427
-%%OCCROOT%%/tests/bugs/modalg_6/bug26431_1
%%OCCROOT%%/tests/bugs/modalg_6/bug26431_2
%%OCCROOT%%/tests/bugs/modalg_6/bug26431_3
%%OCCROOT%%/tests/bugs/modalg_6/bug26440_1
@@ -7101,10 +7179,7 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26565_8
%%OCCROOT%%/tests/bugs/modalg_6/bug26567
%%OCCROOT%%/tests/bugs/modalg_6/bug26575
-%%OCCROOT%%/tests/bugs/modalg_6/bug26576_1
%%OCCROOT%%/tests/bugs/modalg_6/bug26576_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug26576_3
-%%OCCROOT%%/tests/bugs/modalg_6/bug26576_4
%%OCCROOT%%/tests/bugs/modalg_6/bug26580_1
%%OCCROOT%%/tests/bugs/modalg_6/bug26580_2
%%OCCROOT%%/tests/bugs/modalg_6/bug26582
@@ -7120,12 +7195,8 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26640
%%OCCROOT%%/tests/bugs/modalg_6/bug26647
%%OCCROOT%%/tests/bugs/modalg_6/bug26673
-%%OCCROOT%%/tests/bugs/modalg_6/bug26675
%%OCCROOT%%/tests/bugs/modalg_6/bug26681
-%%OCCROOT%%/tests/bugs/modalg_6/bug26684_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug26684_2
%%OCCROOT%%/tests/bugs/modalg_6/bug26687
-%%OCCROOT%%/tests/bugs/modalg_6/bug26699
%%OCCROOT%%/tests/bugs/modalg_6/bug26701
%%OCCROOT%%/tests/bugs/modalg_6/bug26717
%%OCCROOT%%/tests/bugs/modalg_6/bug26718
@@ -7138,7 +7209,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26747_1
%%OCCROOT%%/tests/bugs/modalg_6/bug26747_2
%%OCCROOT%%/tests/bugs/modalg_6/bug26747_3
-%%OCCROOT%%/tests/bugs/modalg_6/bug26748
%%OCCROOT%%/tests/bugs/modalg_6/bug26750
%%OCCROOT%%/tests/bugs/modalg_6/bug26757_1
%%OCCROOT%%/tests/bugs/modalg_6/bug26757_2
@@ -7150,7 +7220,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26841_1
%%OCCROOT%%/tests/bugs/modalg_6/bug26841_2
%%OCCROOT%%/tests/bugs/modalg_6/bug26848
-%%OCCROOT%%/tests/bugs/modalg_6/bug26894
%%OCCROOT%%/tests/bugs/modalg_6/bug26896_1
%%OCCROOT%%/tests/bugs/modalg_6/bug26896_2
%%OCCROOT%%/tests/bugs/modalg_6/bug26896_3
@@ -7179,7 +7248,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug27002_2
%%OCCROOT%%/tests/bugs/modalg_6/bug27010
%%OCCROOT%%/tests/bugs/modalg_6/bug27015
-%%OCCROOT%%/tests/bugs/modalg_6/bug27021
%%OCCROOT%%/tests/bugs/modalg_6/bug27032
%%OCCROOT%%/tests/bugs/modalg_6/bug27033
%%OCCROOT%%/tests/bugs/modalg_6/bug27035
@@ -7188,8 +7256,8 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug27051
%%OCCROOT%%/tests/bugs/modalg_6/bug27065_1
%%OCCROOT%%/tests/bugs/modalg_6/bug27065_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug27079_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug27079_2
+%%OCCROOT%%/tests/bugs/modalg_6/bug27079_3
+%%OCCROOT%%/tests/bugs/modalg_6/bug27079_4
%%OCCROOT%%/tests/bugs/modalg_6/bug27082_1
%%OCCROOT%%/tests/bugs/modalg_6/bug27082_1i
%%OCCROOT%%/tests/bugs/modalg_6/bug27082_2
@@ -7205,22 +7273,18 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug27151
%%OCCROOT%%/tests/bugs/modalg_6/bug27159
%%OCCROOT%%/tests/bugs/modalg_6/bug27167
-%%OCCROOT%%/tests/bugs/modalg_6/bug27175
%%OCCROOT%%/tests/bugs/modalg_6/bug27179
%%OCCROOT%%/tests/bugs/modalg_6/bug27182
-%%OCCROOT%%/tests/bugs/modalg_6/bug27190
%%OCCROOT%%/tests/bugs/modalg_6/bug27199
%%OCCROOT%%/tests/bugs/modalg_6/bug27221
%%OCCROOT%%/tests/bugs/modalg_6/bug27222
%%OCCROOT%%/tests/bugs/modalg_6/bug27240_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug27252_1
%%OCCROOT%%/tests/bugs/modalg_6/bug27252_2
%%OCCROOT%%/tests/bugs/modalg_6/bug27252_3
%%OCCROOT%%/tests/bugs/modalg_6/bug27252_4
%%OCCROOT%%/tests/bugs/modalg_6/bug27253
%%OCCROOT%%/tests/bugs/modalg_6/bug27260
%%OCCROOT%%/tests/bugs/modalg_6/bug27262
-%%OCCROOT%%/tests/bugs/modalg_6/bug27263
%%OCCROOT%%/tests/bugs/modalg_6/bug27264_1
%%OCCROOT%%/tests/bugs/modalg_6/bug27264_2
%%OCCROOT%%/tests/bugs/modalg_6/bug27264_3
@@ -7228,7 +7292,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug27264_5
%%OCCROOT%%/tests/bugs/modalg_6/bug27264_6
%%OCCROOT%%/tests/bugs/modalg_6/bug27267
-%%OCCROOT%%/tests/bugs/modalg_6/bug27269
%%OCCROOT%%/tests/bugs/modalg_6/bug27270
%%OCCROOT%%/tests/bugs/modalg_6/bug27271
%%OCCROOT%%/tests/bugs/modalg_6/bug27272
@@ -7236,59 +7299,11 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug27274
%%OCCROOT%%/tests/bugs/modalg_6/bug27280
%%OCCROOT%%/tests/bugs/modalg_6/bug27282_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug27282_2
%%OCCROOT%%/tests/bugs/modalg_6/bug27283
-%%OCCROOT%%/tests/bugs/modalg_6/bug27302
%%OCCROOT%%/tests/bugs/modalg_6/bug27309
-%%OCCROOT%%/tests/bugs/modalg_6/bug27310_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug27310_2
%%OCCROOT%%/tests/bugs/modalg_6/bug27315
%%OCCROOT%%/tests/bugs/modalg_6/bug27322
%%OCCROOT%%/tests/bugs/modalg_6/bug27325
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_101
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_102
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_103
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_104
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_105
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_106
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_107
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_201
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_202
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_203
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_204
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_205
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_206
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_207
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_301
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_302
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_303
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_304
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_305
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_306
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_307
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_308
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_309
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_310
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_311
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_312
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_313
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_314
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_315
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_316
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_317
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_318
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_319
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_320
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_321
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_322
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_323
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_324
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_325
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_326
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_327
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_328
-%%OCCROOT%%/tests/bugs/modalg_6/bug27341_329
%%OCCROOT%%/tests/bugs/modalg_6/bug27357
%%OCCROOT%%/tests/bugs/modalg_6/bug27383_1
%%OCCROOT%%/tests/bugs/modalg_6/bug27383_2
@@ -7306,8 +7321,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug27386_7
%%OCCROOT%%/tests/bugs/modalg_6/bug27386_8
%%OCCROOT%%/tests/bugs/modalg_6/bug27391
-%%OCCROOT%%/tests/bugs/modalg_6/bug27431
-%%OCCROOT%%/tests/bugs/modalg_6/bug27434
%%OCCROOT%%/tests/bugs/modalg_6/bug27441
%%OCCROOT%%/tests/bugs/modalg_6/bug27448_1
%%OCCROOT%%/tests/bugs/modalg_6/bug27448_2
@@ -7327,28 +7340,12 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug27552_3
%%OCCROOT%%/tests/bugs/modalg_6/bug27568
%%OCCROOT%%/tests/bugs/modalg_6/bug27615
-%%OCCROOT%%/tests/bugs/modalg_6/bug27664_1
%%OCCROOT%%/tests/bugs/modalg_6/bug27664_2
%%OCCROOT%%/tests/bugs/modalg_6/bug27665
%%OCCROOT%%/tests/bugs/modalg_6/bug27674
%%OCCROOT%%/tests/bugs/modalg_6/bug27677
%%OCCROOT%%/tests/bugs/modalg_6/bug27679
%%OCCROOT%%/tests/bugs/modalg_6/bug27704
-%%OCCROOT%%/tests/bugs/modalg_6/bug27719_101
-%%OCCROOT%%/tests/bugs/modalg_6/bug27719_102
-%%OCCROOT%%/tests/bugs/modalg_6/bug27719_103
-%%OCCROOT%%/tests/bugs/modalg_6/bug27719_104
-%%OCCROOT%%/tests/bugs/modalg_6/bug27719_105
-%%OCCROOT%%/tests/bugs/modalg_6/bug27719_201
-%%OCCROOT%%/tests/bugs/modalg_6/bug27719_202
-%%OCCROOT%%/tests/bugs/modalg_6/bug27719_203
-%%OCCROOT%%/tests/bugs/modalg_6/bug27719_204
-%%OCCROOT%%/tests/bugs/modalg_6/bug27719_205
-%%OCCROOT%%/tests/bugs/modalg_6/bug27720_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug27720_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug27720_3
-%%OCCROOT%%/tests/bugs/modalg_6/bug27720_4
-%%OCCROOT%%/tests/bugs/modalg_6/bug27720_5
%%OCCROOT%%/tests/bugs/modalg_6/bug27746_1
%%OCCROOT%%/tests/bugs/modalg_6/bug27746_2
%%OCCROOT%%/tests/bugs/modalg_6/bug27746_3
@@ -7356,18 +7353,14 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug27761
%%OCCROOT%%/tests/bugs/modalg_6/bug27762_1
%%OCCROOT%%/tests/bugs/modalg_6/bug27762_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug27766
%%OCCROOT%%/tests/bugs/modalg_6/bug27773
%%OCCROOT%%/tests/bugs/modalg_6/bug27775
-%%OCCROOT%%/tests/bugs/modalg_6/bug27780
%%OCCROOT%%/tests/bugs/modalg_6/bug27782
%%OCCROOT%%/tests/bugs/modalg_6/bug27802
%%OCCROOT%%/tests/bugs/modalg_6/bug27822
%%OCCROOT%%/tests/bugs/modalg_6/bug27830
-%%OCCROOT%%/tests/bugs/modalg_6/bug27842
%%OCCROOT%%/tests/bugs/modalg_6/bug27851
%%OCCROOT%%/tests/bugs/modalg_6/bug27856_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug27856_2
%%OCCROOT%%/tests/bugs/modalg_6/bug27862
%%OCCROOT%%/tests/bugs/modalg_6/bug27873
%%OCCROOT%%/tests/bugs/modalg_6/bug27875
@@ -7378,12 +7371,9 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug27878_5
%%OCCROOT%%/tests/bugs/modalg_6/bug27878_6
%%OCCROOT%%/tests/bugs/modalg_6/bug27888
-%%OCCROOT%%/tests/bugs/modalg_6/bug27896
%%OCCROOT%%/tests/bugs/modalg_6/bug27907
%%OCCROOT%%/tests/bugs/modalg_6/bug27907_1
%%OCCROOT%%/tests/bugs/modalg_6/bug27929
-%%OCCROOT%%/tests/bugs/modalg_6/bug27937_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug27937_2
%%OCCROOT%%/tests/bugs/modalg_6/bug27981
%%OCCROOT%%/tests/bugs/modalg_6/bug27984
%%OCCROOT%%/tests/bugs/modalg_6/bug27987
@@ -7395,8 +7385,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug28002_2
%%OCCROOT%%/tests/bugs/modalg_6/bug28003
%%OCCROOT%%/tests/bugs/modalg_6/bug28009_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug28009_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug28012
%%OCCROOT%%/tests/bugs/modalg_6/bug28017
%%OCCROOT%%/tests/bugs/modalg_6/bug28028
%%OCCROOT%%/tests/bugs/modalg_6/bug28054_1
@@ -7419,9 +7407,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug28207
%%OCCROOT%%/tests/bugs/modalg_6/bug28210
%%OCCROOT%%/tests/bugs/modalg_6/bug28221
-%%OCCROOT%%/tests/bugs/modalg_6/bug28222_1
-%%OCCROOT%%/tests/bugs/modalg_6/bug28222_2
-%%OCCROOT%%/tests/bugs/modalg_6/bug28222_3
%%OCCROOT%%/tests/bugs/modalg_6/bug28223
%%OCCROOT%%/tests/bugs/modalg_6/bug28261
%%OCCROOT%%/tests/bugs/modalg_6/bug28266
@@ -7478,7 +7463,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug28690_3
%%OCCROOT%%/tests/bugs/modalg_6/bug28692
%%OCCROOT%%/tests/bugs/modalg_6/bug28706
-%%OCCROOT%%/tests/bugs/modalg_6/bug28718
%%OCCROOT%%/tests/bugs/modalg_6/bug28724
%%OCCROOT%%/tests/bugs/modalg_6/bug28745_1
%%OCCROOT%%/tests/bugs/modalg_6/bug28745_2
@@ -7505,22 +7489,17 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug21134
%%OCCROOT%%/tests/bugs/modalg_7/bug21413
%%OCCROOT%%/tests/bugs/modalg_7/bug21414
-%%OCCROOT%%/tests/bugs/modalg_7/bug21494
%%OCCROOT%%/tests/bugs/modalg_7/bug22288
%%OCCROOT%%/tests/bugs/modalg_7/bug22750
%%OCCROOT%%/tests/bugs/modalg_7/bug22821
%%OCCROOT%%/tests/bugs/modalg_7/bug22886
-%%OCCROOT%%/tests/bugs/modalg_7/bug23163_1
-%%OCCROOT%%/tests/bugs/modalg_7/bug23163_2
-%%OCCROOT%%/tests/bugs/modalg_7/bug23163_3
-%%OCCROOT%%/tests/bugs/modalg_7/bug23166
%%OCCROOT%%/tests/bugs/modalg_7/bug23171_1
%%OCCROOT%%/tests/bugs/modalg_7/bug23171_2
-%%OCCROOT%%/tests/bugs/modalg_7/bug23176
%%OCCROOT%%/tests/bugs/modalg_7/bug23187
%%OCCROOT%%/tests/bugs/modalg_7/bug23343
%%OCCROOT%%/tests/bugs/modalg_7/bug23378_1
%%OCCROOT%%/tests/bugs/modalg_7/bug23378_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug23380
%%OCCROOT%%/tests/bugs/modalg_7/bug23386
%%OCCROOT%%/tests/bugs/modalg_7/bug23610
%%OCCROOT%%/tests/bugs/modalg_7/bug23612
@@ -7539,18 +7518,15 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug24251
%%OCCROOT%%/tests/bugs/modalg_7/bug24319
%%OCCROOT%%/tests/bugs/modalg_7/bug24365
-%%OCCROOT%%/tests/bugs/modalg_7/bug24418_1
-%%OCCROOT%%/tests/bugs/modalg_7/bug24418_2
%%OCCROOT%%/tests/bugs/modalg_7/bug24421
%%OCCROOT%%/tests/bugs/modalg_7/bug24424
-%%OCCROOT%%/tests/bugs/modalg_7/bug24429
%%OCCROOT%%/tests/bugs/modalg_7/bug24490
%%OCCROOT%%/tests/bugs/modalg_7/bug24568
%%OCCROOT%%/tests/bugs/modalg_7/bug24632_1
%%OCCROOT%%/tests/bugs/modalg_7/bug24632_2
%%OCCROOT%%/tests/bugs/modalg_7/bug24632_3
%%OCCROOT%%/tests/bugs/modalg_7/bug24692
-%%OCCROOT%%/tests/bugs/modalg_7/bug24772
+%%OCCROOT%%/tests/bugs/modalg_7/bug24905
%%OCCROOT%%/tests/bugs/modalg_7/bug24954_1
%%OCCROOT%%/tests/bugs/modalg_7/bug24954_2
%%OCCROOT%%/tests/bugs/modalg_7/bug24954_3
@@ -7561,6 +7537,8 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug24954_8
%%OCCROOT%%/tests/bugs/modalg_7/bug24954_9
%%OCCROOT%%/tests/bugs/modalg_7/bug25023
+%%OCCROOT%%/tests/bugs/modalg_7/bug25082_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug25082_2
%%OCCROOT%%/tests/bugs/modalg_7/bug25104
%%OCCROOT%%/tests/bugs/modalg_7/bug25206
%%OCCROOT%%/tests/bugs/modalg_7/bug25385
@@ -7570,6 +7548,7 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug25478_1
%%OCCROOT%%/tests/bugs/modalg_7/bug25478_2
%%OCCROOT%%/tests/bugs/modalg_7/bug25521
+%%OCCROOT%%/tests/bugs/modalg_7/bug25542
%%OCCROOT%%/tests/bugs/modalg_7/bug25626
%%OCCROOT%%/tests/bugs/modalg_7/bug25730
%%OCCROOT%%/tests/bugs/modalg_7/bug25776
@@ -7604,6 +7583,7 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug26793_1
%%OCCROOT%%/tests/bugs/modalg_7/bug26793_2
%%OCCROOT%%/tests/bugs/modalg_7/bug26795
+%%OCCROOT%%/tests/bugs/modalg_7/bug26820
%%OCCROOT%%/tests/bugs/modalg_7/bug26842_1
%%OCCROOT%%/tests/bugs/modalg_7/bug26842_2
%%OCCROOT%%/tests/bugs/modalg_7/bug26882
@@ -7616,7 +7596,7 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug27049
%%OCCROOT%%/tests/bugs/modalg_7/bug27090
%%OCCROOT%%/tests/bugs/modalg_7/bug27224
-%%OCCROOT%%/tests/bugs/modalg_7/bug27227
+%%OCCROOT%%/tests/bugs/modalg_7/bug27230
%%OCCROOT%%/tests/bugs/modalg_7/bug27378
%%OCCROOT%%/tests/bugs/modalg_7/bug27390_1
%%OCCROOT%%/tests/bugs/modalg_7/bug27390_2
@@ -7626,11 +7606,12 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug27471
%%OCCROOT%%/tests/bugs/modalg_7/bug27472
%%OCCROOT%%/tests/bugs/modalg_7/bug27614
-%%OCCROOT%%/tests/bugs/modalg_7/bug27623
+%%OCCROOT%%/tests/bugs/modalg_7/bug27648
%%OCCROOT%%/tests/bugs/modalg_7/bug27683
%%OCCROOT%%/tests/bugs/modalg_7/bug27687
-%%OCCROOT%%/tests/bugs/modalg_7/bug27711
-%%OCCROOT%%/tests/bugs/modalg_7/bug27747
+%%OCCROOT%%/tests/bugs/modalg_7/bug27711_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug27711_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug27711_3
%%OCCROOT%%/tests/bugs/modalg_7/bug27760
%%OCCROOT%%/tests/bugs/modalg_7/bug27784
%%OCCROOT%%/tests/bugs/modalg_7/bug27908
@@ -7641,16 +7622,20 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug27928
%%OCCROOT%%/tests/bugs/modalg_7/bug27936
%%OCCROOT%%/tests/bugs/modalg_7/bug27948
-%%OCCROOT%%/tests/bugs/modalg_7/bug27950
+%%OCCROOT%%/tests/bugs/modalg_7/bug28085_1
%%OCCROOT%%/tests/bugs/modalg_7/bug28102_1
%%OCCROOT%%/tests/bugs/modalg_7/bug28102_2
%%OCCROOT%%/tests/bugs/modalg_7/bug28108
%%OCCROOT%%/tests/bugs/modalg_7/bug28112_1
%%OCCROOT%%/tests/bugs/modalg_7/bug28112_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug28113_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug28113_2
%%OCCROOT%%/tests/bugs/modalg_7/bug28119_1
%%OCCROOT%%/tests/bugs/modalg_7/bug28119_2
%%OCCROOT%%/tests/bugs/modalg_7/bug28119_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug28123
%%OCCROOT%%/tests/bugs/modalg_7/bug28131
+%%OCCROOT%%/tests/bugs/modalg_7/bug28144
%%OCCROOT%%/tests/bugs/modalg_7/bug28150_1
%%OCCROOT%%/tests/bugs/modalg_7/bug28150_2
%%OCCROOT%%/tests/bugs/modalg_7/bug28151
@@ -7685,14 +7670,11 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug28393_1
%%OCCROOT%%/tests/bugs/modalg_7/bug28393_2
%%OCCROOT%%/tests/bugs/modalg_7/bug28402
-%%OCCROOT%%/tests/bugs/modalg_7/bug28406
%%OCCROOT%%/tests/bugs/modalg_7/bug28485
%%OCCROOT%%/tests/bugs/modalg_7/bug28485_1
%%OCCROOT%%/tests/bugs/modalg_7/bug28499
%%OCCROOT%%/tests/bugs/modalg_7/bug28544_1
-%%OCCROOT%%/tests/bugs/modalg_7/bug28544_2
%%OCCROOT%%/tests/bugs/modalg_7/bug28551
-%%OCCROOT%%/tests/bugs/modalg_7/bug28557
%%OCCROOT%%/tests/bugs/modalg_7/bug28571_1
%%OCCROOT%%/tests/bugs/modalg_7/bug28571_2
%%OCCROOT%%/tests/bugs/modalg_7/bug28572_1
@@ -7711,7 +7693,6 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug28722
%%OCCROOT%%/tests/bugs/modalg_7/bug28739
%%OCCROOT%%/tests/bugs/modalg_7/bug28763
-%%OCCROOT%%/tests/bugs/modalg_7/bug28764
%%OCCROOT%%/tests/bugs/modalg_7/bug28780
%%OCCROOT%%/tests/bugs/modalg_7/bug28784
%%OCCROOT%%/tests/bugs/modalg_7/bug28786_1
@@ -7719,6 +7700,26 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug28786_3
%%OCCROOT%%/tests/bugs/modalg_7/bug28786_4
%%OCCROOT%%/tests/bugs/modalg_7/bug28786_5
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_10
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_11
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_12
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_13
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_14
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_15
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_16
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_17
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_18
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_19
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_20
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_21
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_4
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_6
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_7
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_8
+%%OCCROOT%%/tests/bugs/modalg_7/bug28828_9
%%OCCROOT%%/tests/bugs/modalg_7/bug28830
%%OCCROOT%%/tests/bugs/modalg_7/bug28844_1
%%OCCROOT%%/tests/bugs/modalg_7/bug28844_2
@@ -7737,17 +7738,21 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug28903
%%OCCROOT%%/tests/bugs/modalg_7/bug28909
%%OCCROOT%%/tests/bugs/modalg_7/bug28944
+%%OCCROOT%%/tests/bugs/modalg_7/bug28949_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug28949_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug28949_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug28949_4
+%%OCCROOT%%/tests/bugs/modalg_7/bug28949_5
+%%OCCROOT%%/tests/bugs/modalg_7/bug28949_6
+%%OCCROOT%%/tests/bugs/modalg_7/bug28949_7
%%OCCROOT%%/tests/bugs/modalg_7/bug28967
%%OCCROOT%%/tests/bugs/modalg_7/bug28968
%%OCCROOT%%/tests/bugs/modalg_7/bug28982
-%%OCCROOT%%/tests/bugs/modalg_7/bug28984
%%OCCROOT%%/tests/bugs/modalg_7/bug28995
%%OCCROOT%%/tests/bugs/modalg_7/bug29038
%%OCCROOT%%/tests/bugs/modalg_7/bug29073
%%OCCROOT%%/tests/bugs/modalg_7/bug29099
-%%OCCROOT%%/tests/bugs/modalg_7/bug29103
%%OCCROOT%%/tests/bugs/modalg_7/bug29159
-%%OCCROOT%%/tests/bugs/modalg_7/bug29162
%%OCCROOT%%/tests/bugs/modalg_7/bug29175
%%OCCROOT%%/tests/bugs/modalg_7/bug29179
%%OCCROOT%%/tests/bugs/modalg_7/bug29182
@@ -7781,24 +7786,30 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug29322_3
%%OCCROOT%%/tests/bugs/modalg_7/bug29322_4
%%OCCROOT%%/tests/bugs/modalg_7/bug29322_5
-%%OCCROOT%%/tests/bugs/modalg_7/bug29323
%%OCCROOT%%/tests/bugs/modalg_7/bug29333_1
%%OCCROOT%%/tests/bugs/modalg_7/bug29333_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug29334
+%%OCCROOT%%/tests/bugs/modalg_7/bug29382
%%OCCROOT%%/tests/bugs/modalg_7/bug29387
%%OCCROOT%%/tests/bugs/modalg_7/bug29400
%%OCCROOT%%/tests/bugs/modalg_7/bug29430
%%OCCROOT%%/tests/bugs/modalg_7/bug29484
%%OCCROOT%%/tests/bugs/modalg_7/bug29488_1
%%OCCROOT%%/tests/bugs/modalg_7/bug29488_2
-%%OCCROOT%%/tests/bugs/modalg_7/bug29494
%%OCCROOT%%/tests/bugs/modalg_7/bug29496
%%OCCROOT%%/tests/bugs/modalg_7/bug29502
+%%OCCROOT%%/tests/bugs/modalg_7/bug29504_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug29504_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug29511
%%OCCROOT%%/tests/bugs/modalg_7/bug29524
+%%OCCROOT%%/tests/bugs/modalg_7/bug29530
%%OCCROOT%%/tests/bugs/modalg_7/bug29535
%%OCCROOT%%/tests/bugs/modalg_7/bug29544_1
%%OCCROOT%%/tests/bugs/modalg_7/bug29544_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug29573
%%OCCROOT%%/tests/bugs/modalg_7/bug29580_1
%%OCCROOT%%/tests/bugs/modalg_7/bug29580_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug29586
%%OCCROOT%%/tests/bugs/modalg_7/bug29606
%%OCCROOT%%/tests/bugs/modalg_7/bug29627
%%OCCROOT%%/tests/bugs/modalg_7/bug29655
@@ -7808,21 +7819,122 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug29701_1
%%OCCROOT%%/tests/bugs/modalg_7/bug29701_2
%%OCCROOT%%/tests/bugs/modalg_7/bug29701_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug29711
+%%OCCROOT%%/tests/bugs/modalg_7/bug29712_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug29731
+%%OCCROOT%%/tests/bugs/modalg_7/bug29734
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_b1
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_b2
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_b3a
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_b3b
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_b4a
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_b4b
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_b5a
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_b5b
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_sc01
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_svm01
+%%OCCROOT%%/tests/bugs/modalg_7/bug29807_svm02
+%%OCCROOT%%/tests/bugs/modalg_7/bug29813_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug29813_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug29813_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug29824
+%%OCCROOT%%/tests/bugs/modalg_7/bug29845
+%%OCCROOT%%/tests/bugs/modalg_7/bug29857
+%%OCCROOT%%/tests/bugs/modalg_7/bug29857_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug29861
+%%OCCROOT%%/tests/bugs/modalg_7/bug29887_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug29887_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug29900
+%%OCCROOT%%/tests/bugs/modalg_7/bug29910_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug29939
+%%OCCROOT%%/tests/bugs/modalg_7/bug29955
+%%OCCROOT%%/tests/bugs/modalg_7/bug29968
+%%OCCROOT%%/tests/bugs/modalg_7/bug29973_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug29973_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30090
+%%OCCROOT%%/tests/bugs/modalg_7/bug30092
+%%OCCROOT%%/tests/bugs/modalg_7/bug30099
+%%OCCROOT%%/tests/bugs/modalg_7/bug30100_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30140
+%%OCCROOT%%/tests/bugs/modalg_7/bug30150
+%%OCCROOT%%/tests/bugs/modalg_7/bug30154_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30154_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30158_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30158_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30174
+%%OCCROOT%%/tests/bugs/modalg_7/bug30186_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30186_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30186_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug30186_4
+%%OCCROOT%%/tests/bugs/modalg_7/bug30186_5
+%%OCCROOT%%/tests/bugs/modalg_7/bug30194
+%%OCCROOT%%/tests/bugs/modalg_7/bug30196
+%%OCCROOT%%/tests/bugs/modalg_7/bug30198
+%%OCCROOT%%/tests/bugs/modalg_7/bug30199
+%%OCCROOT%%/tests/bugs/modalg_7/bug30202_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30203
+%%OCCROOT%%/tests/bugs/modalg_7/bug30204_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30204_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30230
+%%OCCROOT%%/tests/bugs/modalg_7/bug30269
+%%OCCROOT%%/tests/bugs/modalg_7/bug30270
+%%OCCROOT%%/tests/bugs/modalg_7/bug30273
+%%OCCROOT%%/tests/bugs/modalg_7/bug30281
+%%OCCROOT%%/tests/bugs/modalg_7/bug30346_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30346_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30354
+%%OCCROOT%%/tests/bugs/modalg_7/bug30363
+%%OCCROOT%%/tests/bugs/modalg_7/bug30391_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30391_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30391_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug30395
+%%OCCROOT%%/tests/bugs/modalg_7/bug30396_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30396_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30433
+%%OCCROOT%%/tests/bugs/modalg_7/bug30490
+%%OCCROOT%%/tests/bugs/modalg_7/bug30522
+%%OCCROOT%%/tests/bugs/modalg_7/bug30534
+%%OCCROOT%%/tests/bugs/modalg_7/bug30560_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30560_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30590_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30590_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30590_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug30595_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30595_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30595_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug30597
+%%OCCROOT%%/tests/bugs/modalg_7/bug30621
+%%OCCROOT%%/tests/bugs/modalg_7/bug30629
+%%OCCROOT%%/tests/bugs/modalg_7/bug30645_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30645_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30645_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug30647
+%%OCCROOT%%/tests/bugs/modalg_7/bug30679
+%%OCCROOT%%/tests/bugs/modalg_7/bug30714
+%%OCCROOT%%/tests/bugs/modalg_7/bug30760
+%%OCCROOT%%/tests/bugs/modalg_7/bug30778
+%%OCCROOT%%/tests/bugs/modalg_7/bug30787
+%%OCCROOT%%/tests/bugs/modalg_7/bug30794_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30794_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30794_3
+%%OCCROOT%%/tests/bugs/modalg_7/bug30794_4
+%%OCCROOT%%/tests/bugs/modalg_7/bug30817
+%%OCCROOT%%/tests/bugs/modalg_7/bug30829
+%%OCCROOT%%/tests/bugs/modalg_7/bug30869
+%%OCCROOT%%/tests/bugs/modalg_7/bug30880_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30880_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30897
+%%OCCROOT%%/tests/bugs/modalg_7/bug30903
+%%OCCROOT%%/tests/bugs/modalg_7/bug30905
+%%OCCROOT%%/tests/bugs/modalg_7/bug30913_1
+%%OCCROOT%%/tests/bugs/modalg_7/bug30913_2
+%%OCCROOT%%/tests/bugs/modalg_7/bug30927
+%%OCCROOT%%/tests/bugs/modalg_7/bug30949
%%OCCROOT%%/tests/bugs/modalg_7/bug5081_1
%%OCCROOT%%/tests/bugs/modalg_7/bug5081_2
%%OCCROOT%%/tests/bugs/modalg_7/bug5582
%%OCCROOT%%/tests/bugs/modalg_7/bug83
%%OCCROOT%%/tests/bugs/moddata_1/begin
-%%OCCROOT%%/tests/bugs/moddata_1/buc60607_1
-%%OCCROOT%%/tests/bugs/moddata_1/buc60607_2
-%%OCCROOT%%/tests/bugs/moddata_1/buc60607_3
-%%OCCROOT%%/tests/bugs/moddata_1/buc60607_4
-%%OCCROOT%%/tests/bugs/moddata_1/buc60609
-%%OCCROOT%%/tests/bugs/moddata_1/buc60618
-%%OCCROOT%%/tests/bugs/moddata_1/buc60622_1
-%%OCCROOT%%/tests/bugs/moddata_1/buc60622_2
-%%OCCROOT%%/tests/bugs/moddata_1/buc60622_3
-%%OCCROOT%%/tests/bugs/moddata_1/buc60623_3
%%OCCROOT%%/tests/bugs/moddata_1/buc60637
%%OCCROOT%%/tests/bugs/moddata_1/buc60652_1
%%OCCROOT%%/tests/bugs/moddata_1/buc60652_2
@@ -7834,7 +7946,6 @@
%%OCCROOT%%/tests/bugs/moddata_1/buc60755
%%OCCROOT%%/tests/bugs/moddata_1/buc60769
%%OCCROOT%%/tests/bugs/moddata_1/buc60792
-%%OCCROOT%%/tests/bugs/moddata_1/buc60815
%%OCCROOT%%/tests/bugs/moddata_1/buc60825
%%OCCROOT%%/tests/bugs/moddata_1/buc60828
%%OCCROOT%%/tests/bugs/moddata_1/buc60842
@@ -7852,7 +7963,6 @@
%%OCCROOT%%/tests/bugs/moddata_1/buc60902
%%OCCROOT%%/tests/bugs/moddata_1/buc60911
%%OCCROOT%%/tests/bugs/moddata_1/buc60924
-%%OCCROOT%%/tests/bugs/moddata_1/buc60941
%%OCCROOT%%/tests/bugs/moddata_1/buc60955
%%OCCROOT%%/tests/bugs/moddata_1/buc60960
%%OCCROOT%%/tests/bugs/moddata_1/buc60965
@@ -7861,7 +7971,6 @@
%%OCCROOT%%/tests/bugs/moddata_1/buc61006
%%OCCROOT%%/tests/bugs/moddata_1/bug103
%%OCCROOT%%/tests/bugs/moddata_1/bug105
-%%OCCROOT%%/tests/bugs/moddata_1/bug106
%%OCCROOT%%/tests/bugs/moddata_1/bug10604_1
%%OCCROOT%%/tests/bugs/moddata_1/bug10604_2
%%OCCROOT%%/tests/bugs/moddata_1/bug10604_3
@@ -7883,7 +7992,6 @@
%%OCCROOT%%/tests/bugs/moddata_1/bug134_1
%%OCCROOT%%/tests/bugs/moddata_1/bug134_2
%%OCCROOT%%/tests/bugs/moddata_1/bug135
-%%OCCROOT%%/tests/bugs/moddata_1/bug139
%%OCCROOT%%/tests/bugs/moddata_1/bug13904
%%OCCROOT%%/tests/bugs/moddata_1/bug141
%%OCCROOT%%/tests/bugs/moddata_1/bug1416
@@ -7937,11 +8045,9 @@
%%OCCROOT%%/tests/bugs/moddata_1/bug203
%%OCCROOT%%/tests/bugs/moddata_1/bug20391
%%OCCROOT%%/tests/bugs/moddata_1/bug20404
-%%OCCROOT%%/tests/bugs/moddata_1/bug20524
%%OCCROOT%%/tests/bugs/moddata_1/bug20616
%%OCCROOT%%/tests/bugs/moddata_1/bug20627
%%OCCROOT%%/tests/bugs/moddata_1/bug20683
-%%OCCROOT%%/tests/bugs/moddata_1/bug20766
%%OCCROOT%%/tests/bugs/moddata_1/bug20823
%%OCCROOT%%/tests/bugs/moddata_1/bug20904_1
%%OCCROOT%%/tests/bugs/moddata_1/bug20904_2
@@ -7962,7 +8068,6 @@
%%OCCROOT%%/tests/bugs/moddata_1/bug22459
%%OCCROOT%%/tests/bugs/moddata_1/bug22489_1
%%OCCROOT%%/tests/bugs/moddata_1/bug22489_2
-%%OCCROOT%%/tests/bugs/moddata_1/bug22494
%%OCCROOT%%/tests/bugs/moddata_1/bug22529
%%OCCROOT%%/tests/bugs/moddata_1/bug22554_1
%%OCCROOT%%/tests/bugs/moddata_1/bug22554_2
@@ -7971,8 +8076,6 @@
%%OCCROOT%%/tests/bugs/moddata_1/bug22623
%%OCCROOT%%/tests/bugs/moddata_1/bug22694
%%OCCROOT%%/tests/bugs/moddata_1/bug22703
-%%OCCROOT%%/tests/bugs/moddata_1/bug22720
-%%OCCROOT%%/tests/bugs/moddata_1/bug22723
%%OCCROOT%%/tests/bugs/moddata_1/bug22726
%%OCCROOT%%/tests/bugs/moddata_1/bug22733
%%OCCROOT%%/tests/bugs/moddata_1/bug22736
@@ -7994,11 +8097,9 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug22809_2
%%OCCROOT%%/tests/bugs/moddata_2/bug22809_3
%%OCCROOT%%/tests/bugs/moddata_2/bug22809_4
-%%OCCROOT%%/tests/bugs/moddata_2/bug22851
%%OCCROOT%%/tests/bugs/moddata_2/bug22907
%%OCCROOT%%/tests/bugs/moddata_2/bug22910_1
%%OCCROOT%%/tests/bugs/moddata_2/bug22910_2
-%%OCCROOT%%/tests/bugs/moddata_2/bug22923
%%OCCROOT%%/tests/bugs/moddata_2/bug22989
%%OCCROOT%%/tests/bugs/moddata_2/bug22993
%%OCCROOT%%/tests/bugs/moddata_2/bug23051
@@ -8007,11 +8108,9 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug23139
%%OCCROOT%%/tests/bugs/moddata_2/bug23152
%%OCCROOT%%/tests/bugs/moddata_2/bug23165
-%%OCCROOT%%/tests/bugs/moddata_2/bug23172
%%OCCROOT%%/tests/bugs/moddata_2/bug23175
%%OCCROOT%%/tests/bugs/moddata_2/bug23201
%%OCCROOT%%/tests/bugs/moddata_2/bug23224
-%%OCCROOT%%/tests/bugs/moddata_2/bug23244
%%OCCROOT%%/tests/bugs/moddata_2/bug23248
%%OCCROOT%%/tests/bugs/moddata_2/bug23464_1
%%OCCROOT%%/tests/bugs/moddata_2/bug23464_2
@@ -8021,13 +8120,7 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug23464_6
%%OCCROOT%%/tests/bugs/moddata_2/bug23475
%%OCCROOT%%/tests/bugs/moddata_2/bug235
-%%OCCROOT%%/tests/bugs/moddata_2/bug23576
-%%OCCROOT%%/tests/bugs/moddata_2/bug23587
-%%OCCROOT%%/tests/bugs/moddata_2/bug236
%%OCCROOT%%/tests/bugs/moddata_2/bug23603
-%%OCCROOT%%/tests/bugs/moddata_2/bug23643
-%%OCCROOT%%/tests/bugs/moddata_2/bug23644
-%%OCCROOT%%/tests/bugs/moddata_2/bug237
%%OCCROOT%%/tests/bugs/moddata_2/bug2442
%%OCCROOT%%/tests/bugs/moddata_2/bug247
%%OCCROOT%%/tests/bugs/moddata_2/bug25
@@ -8046,7 +8139,6 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug268
%%OCCROOT%%/tests/bugs/moddata_2/bug26_1
%%OCCROOT%%/tests/bugs/moddata_2/bug26_2
-%%OCCROOT%%/tests/bugs/moddata_2/bug271
%%OCCROOT%%/tests/bugs/moddata_2/bug2755
%%OCCROOT%%/tests/bugs/moddata_2/bug277
%%OCCROOT%%/tests/bugs/moddata_2/bug2784_1
@@ -8057,7 +8149,6 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug27_1
%%OCCROOT%%/tests/bugs/moddata_2/bug27_2
%%OCCROOT%%/tests/bugs/moddata_2/bug284
-%%OCCROOT%%/tests/bugs/moddata_2/bug286
%%OCCROOT%%/tests/bugs/moddata_2/bug28_1
%%OCCROOT%%/tests/bugs/moddata_2/bug28_2
%%OCCROOT%%/tests/bugs/moddata_2/bug299
@@ -8068,12 +8159,10 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug311_1
%%OCCROOT%%/tests/bugs/moddata_2/bug311_2
%%OCCROOT%%/tests/bugs/moddata_2/bug313
-%%OCCROOT%%/tests/bugs/moddata_2/bug324
%%OCCROOT%%/tests/bugs/moddata_2/bug324_1
%%OCCROOT%%/tests/bugs/moddata_2/bug325
%%OCCROOT%%/tests/bugs/moddata_2/bug326
%%OCCROOT%%/tests/bugs/moddata_2/bug332
-%%OCCROOT%%/tests/bugs/moddata_2/bug333
%%OCCROOT%%/tests/bugs/moddata_2/bug343
%%OCCROOT%%/tests/bugs/moddata_2/bug35
%%OCCROOT%%/tests/bugs/moddata_2/bug353
@@ -8082,8 +8171,6 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug360
%%OCCROOT%%/tests/bugs/moddata_2/bug366
%%OCCROOT%%/tests/bugs/moddata_2/bug367
-%%OCCROOT%%/tests/bugs/moddata_2/bug370
-%%OCCROOT%%/tests/bugs/moddata_2/bug371
%%OCCROOT%%/tests/bugs/moddata_2/bug372
%%OCCROOT%%/tests/bugs/moddata_2/bug3721_1
%%OCCROOT%%/tests/bugs/moddata_2/bug3721_2
@@ -8095,7 +8182,6 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug374_1
%%OCCROOT%%/tests/bugs/moddata_2/bug374_2
%%OCCROOT%%/tests/bugs/moddata_2/bug376
-%%OCCROOT%%/tests/bugs/moddata_2/bug377
%%OCCROOT%%/tests/bugs/moddata_2/bug37_1
%%OCCROOT%%/tests/bugs/moddata_2/bug37_2
%%OCCROOT%%/tests/bugs/moddata_2/bug380_1
@@ -8108,17 +8194,13 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug41
%%OCCROOT%%/tests/bugs/moddata_2/bug42
%%OCCROOT%%/tests/bugs/moddata_2/bug428
-%%OCCROOT%%/tests/bugs/moddata_2/bug429
%%OCCROOT%%/tests/bugs/moddata_2/bug430
-%%OCCROOT%%/tests/bugs/moddata_2/bug431
%%OCCROOT%%/tests/bugs/moddata_2/bug432
%%OCCROOT%%/tests/bugs/moddata_2/bug433
%%OCCROOT%%/tests/bugs/moddata_2/bug438_1
%%OCCROOT%%/tests/bugs/moddata_2/bug441_1
%%OCCROOT%%/tests/bugs/moddata_2/bug441_2
%%OCCROOT%%/tests/bugs/moddata_2/bug441_3
-%%OCCROOT%%/tests/bugs/moddata_2/bug4426_1
-%%OCCROOT%%/tests/bugs/moddata_2/bug4426_2
%%OCCROOT%%/tests/bugs/moddata_2/bug444
%%OCCROOT%%/tests/bugs/moddata_2/bug454
%%OCCROOT%%/tests/bugs/moddata_2/bug466
@@ -8130,13 +8212,10 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug49_2
%%OCCROOT%%/tests/bugs/moddata_2/bug50
%%OCCROOT%%/tests/bugs/moddata_2/bug503
-%%OCCROOT%%/tests/bugs/moddata_2/bug504
%%OCCROOT%%/tests/bugs/moddata_2/bug505
-%%OCCROOT%%/tests/bugs/moddata_2/bug513
%%OCCROOT%%/tests/bugs/moddata_2/bug515
%%OCCROOT%%/tests/bugs/moddata_2/bug524
%%OCCROOT%%/tests/bugs/moddata_2/bug525
-%%OCCROOT%%/tests/bugs/moddata_2/bug531
%%OCCROOT%%/tests/bugs/moddata_2/bug536_11
%%OCCROOT%%/tests/bugs/moddata_2/bug536_12
%%OCCROOT%%/tests/bugs/moddata_2/bug536_13
@@ -8145,20 +8224,15 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug536_22
%%OCCROOT%%/tests/bugs/moddata_2/bug536_23
%%OCCROOT%%/tests/bugs/moddata_2/bug536_24
-%%OCCROOT%%/tests/bugs/moddata_2/bug537
-%%OCCROOT%%/tests/bugs/moddata_2/bug538
%%OCCROOT%%/tests/bugs/moddata_2/bug541
%%OCCROOT%%/tests/bugs/moddata_2/bug542
-%%OCCROOT%%/tests/bugs/moddata_2/bug565
%%OCCROOT%%/tests/bugs/moddata_2/bug566
-%%OCCROOT%%/tests/bugs/moddata_2/bug567
%%OCCROOT%%/tests/bugs/moddata_2/bug569
%%OCCROOT%%/tests/bugs/moddata_2/bug5696
%%OCCROOT%%/tests/bugs/moddata_2/bug5698
%%OCCROOT%%/tests/bugs/moddata_2/bug592
%%OCCROOT%%/tests/bugs/moddata_2/bug593
%%OCCROOT%%/tests/bugs/moddata_2/bug601
-%%OCCROOT%%/tests/bugs/moddata_2/bug604
%%OCCROOT%%/tests/bugs/moddata_2/bug611_1
%%OCCROOT%%/tests/bugs/moddata_2/bug611_2
%%OCCROOT%%/tests/bugs/moddata_2/bug611_3
@@ -8170,7 +8244,6 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug6412_1
%%OCCROOT%%/tests/bugs/moddata_2/bug6450_1
%%OCCROOT%%/tests/bugs/moddata_2/bug6450_2
-%%OCCROOT%%/tests/bugs/moddata_2/bug6474
%%OCCROOT%%/tests/bugs/moddata_2/bug65
%%OCCROOT%%/tests/bugs/moddata_2/bug6503
%%OCCROOT%%/tests/bugs/moddata_2/bug6862_1
@@ -8214,7 +8287,6 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug9_2
%%OCCROOT%%/tests/bugs/moddata_2/fra62476_1
%%OCCROOT%%/tests/bugs/moddata_2/fra62476_2
-%%OCCROOT%%/tests/bugs/moddata_2/ger61235
%%OCCROOT%%/tests/bugs/moddata_2/pro19422_1
%%OCCROOT%%/tests/bugs/moddata_2/pro19422_2
%%OCCROOT%%/tests/bugs/moddata_2/pro20333
@@ -8225,7 +8297,6 @@
%%OCCROOT%%/tests/bugs/moddata_3/bug162
%%OCCROOT%%/tests/bugs/moddata_3/bug20866
%%OCCROOT%%/tests/bugs/moddata_3/bug23025
-%%OCCROOT%%/tests/bugs/moddata_3/bug23471
%%OCCROOT%%/tests/bugs/moddata_3/bug23511
%%OCCROOT%%/tests/bugs/moddata_3/bug23575
%%OCCROOT%%/tests/bugs/moddata_3/bug23683
@@ -8237,14 +8308,12 @@
%%OCCROOT%%/tests/bugs/moddata_3/bug23830
%%OCCROOT%%/tests/bugs/moddata_3/bug23830_2
%%OCCROOT%%/tests/bugs/moddata_3/bug23863
-%%OCCROOT%%/tests/bugs/moddata_3/bug23866
%%OCCROOT%%/tests/bugs/moddata_3/bug23939
%%OCCROOT%%/tests/bugs/moddata_3/bug23943_1
%%OCCROOT%%/tests/bugs/moddata_3/bug23943_2
%%OCCROOT%%/tests/bugs/moddata_3/bug23943_3
%%OCCROOT%%/tests/bugs/moddata_3/bug23943_4
%%OCCROOT%%/tests/bugs/moddata_3/bug23945
-%%OCCROOT%%/tests/bugs/moddata_3/bug23981
%%OCCROOT%%/tests/bugs/moddata_3/bug23982
%%OCCROOT%%/tests/bugs/moddata_3/bug23994
%%OCCROOT%%/tests/bugs/moddata_3/bug23995
@@ -8258,11 +8327,9 @@
%%OCCROOT%%/tests/bugs/moddata_3/bug24108_2
%%OCCROOT%%/tests/bugs/moddata_3/bug24134
%%OCCROOT%%/tests/bugs/moddata_3/bug24138
-%%OCCROOT%%/tests/bugs/moddata_3/bug24142
%%OCCROOT%%/tests/bugs/moddata_3/bug24375
%%OCCROOT%%/tests/bugs/moddata_3/bug24411
%%OCCROOT%%/tests/bugs/moddata_3/bug24427_1
-%%OCCROOT%%/tests/bugs/moddata_3/bug24427_2
%%OCCROOT%%/tests/bugs/moddata_3/bug24474
%%OCCROOT%%/tests/bugs/moddata_3/bug24474_2
%%OCCROOT%%/tests/bugs/moddata_3/bug24621
@@ -8270,7 +8337,6 @@
%%OCCROOT%%/tests/bugs/moddata_3/bug24633_1
%%OCCROOT%%/tests/bugs/moddata_3/bug24633_2
%%OCCROOT%%/tests/bugs/moddata_3/bug24697
-%%OCCROOT%%/tests/bugs/moddata_3/bug24800
%%OCCROOT%%/tests/bugs/moddata_3/bug24886
%%OCCROOT%%/tests/bugs/moddata_3/bug24896
%%OCCROOT%%/tests/bugs/moddata_3/bug24945
@@ -8278,7 +8344,6 @@
%%OCCROOT%%/tests/bugs/moddata_3/bug24959_2
%%OCCROOT%%/tests/bugs/moddata_3/bug24988
%%OCCROOT%%/tests/bugs/moddata_3/bug25084
-%%OCCROOT%%/tests/bugs/moddata_3/bug25095
%%OCCROOT%%/tests/bugs/moddata_3/bug25109
%%OCCROOT%%/tests/bugs/moddata_3/bug25179
%%OCCROOT%%/tests/bugs/moddata_3/bug25202_1
@@ -8303,11 +8368,8 @@
%%OCCROOT%%/tests/bugs/moddata_3/bug25706_3
%%OCCROOT%%/tests/bugs/moddata_3/bug25737_1
%%OCCROOT%%/tests/bugs/moddata_3/bug25737_2
-%%OCCROOT%%/tests/bugs/moddata_3/bug25782_1
-%%OCCROOT%%/tests/bugs/moddata_3/bug25782_2
%%OCCROOT%%/tests/bugs/moddata_3/bug25810
%%OCCROOT%%/tests/bugs/moddata_3/bug25861
-%%OCCROOT%%/tests/bugs/moddata_3/bug25876
%%OCCROOT%%/tests/bugs/moddata_3/bug25892_01
%%OCCROOT%%/tests/bugs/moddata_3/bug25892_02
%%OCCROOT%%/tests/bugs/moddata_3/bug25892_03
@@ -8348,6 +8410,7 @@
%%OCCROOT%%/tests/bugs/moddata_3/bug27466
%%OCCROOT%%/tests/bugs/moddata_3/bug27467
%%OCCROOT%%/tests/bugs/moddata_3/bug27493
+%%OCCROOT%%/tests/bugs/moddata_3/bug27534
%%OCCROOT%%/tests/bugs/moddata_3/bug27565
%%OCCROOT%%/tests/bugs/moddata_3/bug27804_1
%%OCCROOT%%/tests/bugs/moddata_3/bug27804_2
@@ -8360,7 +8423,13 @@
%%OCCROOT%%/tests/bugs/moddata_3/bug28204
%%OCCROOT%%/tests/bugs/moddata_3/bug28230
%%OCCROOT%%/tests/bugs/moddata_3/bug29102
+%%OCCROOT%%/tests/bugs/moddata_3/bug29662
%%OCCROOT%%/tests/bugs/moddata_3/bug30
+%%OCCROOT%%/tests/bugs/moddata_3/bug30133
+%%OCCROOT%%/tests/bugs/moddata_3/bug30497
+%%OCCROOT%%/tests/bugs/moddata_3/bug30704
+%%OCCROOT%%/tests/bugs/moddata_3/bug30708_1
+%%OCCROOT%%/tests/bugs/moddata_3/bug30708_2
%%OCCROOT%%/tests/bugs/moddata_3/bug32
%%OCCROOT%%/tests/bugs/moddata_3/bug5145
%%OCCROOT%%/tests/bugs/moddata_3/bug599
@@ -8407,7 +8476,6 @@
%%OCCROOT%%/tests/bugs/step/bug23567
%%OCCROOT%%/tests/bugs/step/bug2368
%%OCCROOT%%/tests/bugs/step/bug24055
-%%OCCROOT%%/tests/bugs/step/bug24100
%%OCCROOT%%/tests/bugs/step/bug24135
%%OCCROOT%%/tests/bugs/step/bug24283_1
%%OCCROOT%%/tests/bugs/step/bug24283_2
@@ -8440,12 +8508,10 @@
%%OCCROOT%%/tests/bugs/step/bug272_6
%%OCCROOT%%/tests/bugs/step/bug272_7
%%OCCROOT%%/tests/bugs/step/bug27313
-%%OCCROOT%%/tests/bugs/step/bug27316
%%OCCROOT%%/tests/bugs/step/bug27329
%%OCCROOT%%/tests/bugs/step/bug27404
%%OCCROOT%%/tests/bugs/step/bug27575
%%OCCROOT%%/tests/bugs/step/bug27721
-%%OCCROOT%%/tests/bugs/step/bug28144
%%OCCROOT%%/tests/bugs/step/bug28147
%%OCCROOT%%/tests/bugs/step/bug28256
%%OCCROOT%%/tests/bugs/step/bug28449
@@ -8457,6 +8523,22 @@
%%OCCROOT%%/tests/bugs/step/bug29
%%OCCROOT%%/tests/bugs/step/bug29029
%%OCCROOT%%/tests/bugs/step/bug29403
+%%OCCROOT%%/tests/bugs/step/bug29780
+%%OCCROOT%%/tests/bugs/step/bug29945
+%%OCCROOT%%/tests/bugs/step/bug29979
+%%OCCROOT%%/tests/bugs/step/bug30087
+%%OCCROOT%%/tests/bugs/step/bug30189_1
+%%OCCROOT%%/tests/bugs/step/bug30189_2
+%%OCCROOT%%/tests/bugs/step/bug30189_3
+%%OCCROOT%%/tests/bugs/step/bug30362
+%%OCCROOT%%/tests/bugs/step/bug30380
+%%OCCROOT%%/tests/bugs/step/bug30533
+%%OCCROOT%%/tests/bugs/step/bug30616
+%%OCCROOT%%/tests/bugs/step/bug30628
+%%OCCROOT%%/tests/bugs/step/bug30694
+%%OCCROOT%%/tests/bugs/step/bug30789
+%%OCCROOT%%/tests/bugs/step/bug30790
+%%OCCROOT%%/tests/bugs/step/bug30856
%%OCCROOT%%/tests/bugs/step/bug3397
%%OCCROOT%%/tests/bugs/step/bug348_1
%%OCCROOT%%/tests/bugs/step/bug348_2
@@ -8498,11 +8580,10 @@
%%OCCROOT%%/tests/bugs/stlvrml/bug26338
%%OCCROOT%%/tests/bugs/stlvrml/bug27622
%%OCCROOT%%/tests/bugs/stlvrml/bug28680
+%%OCCROOT%%/tests/bugs/stlvrml/bug30113
+%%OCCROOT%%/tests/bugs/stlvrml/bug30389
%%OCCROOT%%/tests/bugs/vis/begin
-%%OCCROOT%%/tests/bugs/vis/buc26658
-%%OCCROOT%%/tests/bugs/vis/buc60574
%%OCCROOT%%/tests/bugs/vis/buc60587
-%%OCCROOT%%/tests/bugs/vis/buc60614
%%OCCROOT%%/tests/bugs/vis/buc60632_1
%%OCCROOT%%/tests/bugs/vis/buc60632_2
%%OCCROOT%%/tests/bugs/vis/buc60659
@@ -8513,7 +8594,6 @@
%%OCCROOT%%/tests/bugs/vis/buc60740
%%OCCROOT%%/tests/bugs/vis/buc60774
%%OCCROOT%%/tests/bugs/vis/buc60814
-%%OCCROOT%%/tests/bugs/vis/buc60818
%%OCCROOT%%/tests/bugs/vis/buc60830_1
%%OCCROOT%%/tests/bugs/vis/buc60830_2
%%OCCROOT%%/tests/bugs/vis/buc60830_3
@@ -8540,18 +8620,8 @@
%%OCCROOT%%/tests/bugs/vis/bug129_1
%%OCCROOT%%/tests/bugs/vis/bug129_2
%%OCCROOT%%/tests/bugs/vis/bug136
-%%OCCROOT%%/tests/bugs/vis/bug137_1
-%%OCCROOT%%/tests/bugs/vis/bug137_10
-%%OCCROOT%%/tests/bugs/vis/bug137_11
-%%OCCROOT%%/tests/bugs/vis/bug137_2
-%%OCCROOT%%/tests/bugs/vis/bug137_3
-%%OCCROOT%%/tests/bugs/vis/bug137_6
-%%OCCROOT%%/tests/bugs/vis/bug137_7
-%%OCCROOT%%/tests/bugs/vis/bug137_8
-%%OCCROOT%%/tests/bugs/vis/bug137_9
%%OCCROOT%%/tests/bugs/vis/bug138_1
%%OCCROOT%%/tests/bugs/vis/bug138_2
-%%OCCROOT%%/tests/bugs/vis/bug1629
%%OCCROOT%%/tests/bugs/vis/bug166
%%OCCROOT%%/tests/bugs/vis/bug16950_1
%%OCCROOT%%/tests/bugs/vis/bug16950_2
@@ -8562,7 +8632,6 @@
%%OCCROOT%%/tests/bugs/vis/bug173_1
%%OCCROOT%%/tests/bugs/vis/bug173_2
%%OCCROOT%%/tests/bugs/vis/bug173_3
-%%OCCROOT%%/tests/bugs/vis/bug1786
%%OCCROOT%%/tests/bugs/vis/bug185
%%OCCROOT%%/tests/bugs/vis/bug19_1
%%OCCROOT%%/tests/bugs/vis/bug19_2
@@ -8571,14 +8640,6 @@
%%OCCROOT%%/tests/bugs/vis/bug204_2
%%OCCROOT%%/tests/bugs/vis/bug2066
%%OCCROOT%%/tests/bugs/vis/bug20802
-%%OCCROOT%%/tests/bugs/vis/bug21091_1
-%%OCCROOT%%/tests/bugs/vis/bug21091_3
-%%OCCROOT%%/tests/bugs/vis/bug21091_4
-%%OCCROOT%%/tests/bugs/vis/bug21091_5
-%%OCCROOT%%/tests/bugs/vis/bug21091_6
-%%OCCROOT%%/tests/bugs/vis/bug21091_7
-%%OCCROOT%%/tests/bugs/vis/bug21091_8
-%%OCCROOT%%/tests/bugs/vis/bug21091_9
%%OCCROOT%%/tests/bugs/vis/bug21171_1
%%OCCROOT%%/tests/bugs/vis/bug21171_2
%%OCCROOT%%/tests/bugs/vis/bug21171_3
@@ -8632,7 +8693,6 @@
%%OCCROOT%%/tests/bugs/vis/bug22795
%%OCCROOT%%/tests/bugs/vis/bug22796_1
%%OCCROOT%%/tests/bugs/vis/bug22796_2
-%%OCCROOT%%/tests/bugs/vis/bug22796_3
%%OCCROOT%%/tests/bugs/vis/bug22819
%%OCCROOT%%/tests/bugs/vis/bug22835
%%OCCROOT%%/tests/bugs/vis/bug22847
@@ -8655,7 +8715,6 @@
%%OCCROOT%%/tests/bugs/vis/bug23153
%%OCCROOT%%/tests/bugs/vis/bug23186
%%OCCROOT%%/tests/bugs/vis/bug23191
-%%OCCROOT%%/tests/bugs/vis/bug232
%%OCCROOT%%/tests/bugs/vis/bug23200
%%OCCROOT%%/tests/bugs/vis/bug23200_1
%%OCCROOT%%/tests/bugs/vis/bug23219
@@ -8753,8 +8812,6 @@
%%OCCROOT%%/tests/bugs/vis/bug24902_1
%%OCCROOT%%/tests/bugs/vis/bug24902_2
%%OCCROOT%%/tests/bugs/vis/bug24930
-%%OCCROOT%%/tests/bugs/vis/bug24965
-%%OCCROOT%%/tests/bugs/vis/bug24966
%%OCCROOT%%/tests/bugs/vis/bug24989
%%OCCROOT%%/tests/bugs/vis/bug24996
%%OCCROOT%%/tests/bugs/vis/bug25027
@@ -8787,7 +8844,6 @@
%%OCCROOT%%/tests/bugs/vis/bug25475
%%OCCROOT%%/tests/bugs/vis/bug25492
%%OCCROOT%%/tests/bugs/vis/bug25507
-%%OCCROOT%%/tests/bugs/vis/bug25528
%%OCCROOT%%/tests/bugs/vis/bug25532
%%OCCROOT%%/tests/bugs/vis/bug25540
%%OCCROOT%%/tests/bugs/vis/bug25544_graytexture
@@ -8833,7 +8889,6 @@
%%OCCROOT%%/tests/bugs/vis/bug26035_5
%%OCCROOT%%/tests/bugs/vis/bug26035_6
%%OCCROOT%%/tests/bugs/vis/bug26056
-%%OCCROOT%%/tests/bugs/vis/bug26076
%%OCCROOT%%/tests/bugs/vis/bug26082
%%OCCROOT%%/tests/bugs/vis/bug26139
%%OCCROOT%%/tests/bugs/vis/bug26146
@@ -8842,7 +8897,6 @@
%%OCCROOT%%/tests/bugs/vis/bug26154
%%OCCROOT%%/tests/bugs/vis/bug26159
%%OCCROOT%%/tests/bugs/vis/bug26163
-%%OCCROOT%%/tests/bugs/vis/bug26172
%%OCCROOT%%/tests/bugs/vis/bug26199
%%OCCROOT%%/tests/bugs/vis/bug26209
%%OCCROOT%%/tests/bugs/vis/bug26217
@@ -8877,7 +8931,6 @@
%%OCCROOT%%/tests/bugs/vis/bug26792
%%OCCROOT%%/tests/bugs/vis/bug26870
%%OCCROOT%%/tests/bugs/vis/bug26940
-%%OCCROOT%%/tests/bugs/vis/bug26945
%%OCCROOT%%/tests/bugs/vis/bug26959
%%OCCROOT%%/tests/bugs/vis/bug26960
%%OCCROOT%%/tests/bugs/vis/bug26973
@@ -8963,7 +9016,9 @@
%%OCCROOT%%/tests/bugs/vis/bug288_7
%%OCCROOT%%/tests/bugs/vis/bug288_8
%%OCCROOT%%/tests/bugs/vis/bug288_9
+%%OCCROOT%%/tests/bugs/vis/bug28936
%%OCCROOT%%/tests/bugs/vis/bug28988
+%%OCCROOT%%/tests/bugs/vis/bug29020
%%OCCROOT%%/tests/bugs/vis/bug29051
%%OCCROOT%%/tests/bugs/vis/bug29127
%%OCCROOT%%/tests/bugs/vis/bug29262
@@ -8971,8 +9026,40 @@
%%OCCROOT%%/tests/bugs/vis/bug29412
%%OCCROOT%%/tests/bugs/vis/bug29651
%%OCCROOT%%/tests/bugs/vis/bug29768
+%%OCCROOT%%/tests/bugs/vis/bug29787
%%OCCROOT%%/tests/bugs/vis/bug29791
+%%OCCROOT%%/tests/bugs/vis/bug29837
+%%OCCROOT%%/tests/bugs/vis/bug29847
+%%OCCROOT%%/tests/bugs/vis/bug29874
+%%OCCROOT%%/tests/bugs/vis/bug29938
+%%OCCROOT%%/tests/bugs/vis/bug29947
+%%OCCROOT%%/tests/bugs/vis/bug30076
%%OCCROOT%%/tests/bugs/vis/bug301
+%%OCCROOT%%/tests/bugs/vis/bug30102
+%%OCCROOT%%/tests/bugs/vis/bug30146
+%%OCCROOT%%/tests/bugs/vis/bug30182
+%%OCCROOT%%/tests/bugs/vis/bug30218
+%%OCCROOT%%/tests/bugs/vis/bug30412
+%%OCCROOT%%/tests/bugs/vis/bug30434
+%%OCCROOT%%/tests/bugs/vis/bug30437
+%%OCCROOT%%/tests/bugs/vis/bug30437_1
+%%OCCROOT%%/tests/bugs/vis/bug30561
+%%OCCROOT%%/tests/bugs/vis/bug30630_1
+%%OCCROOT%%/tests/bugs/vis/bug30630_2
+%%OCCROOT%%/tests/bugs/vis/bug30630_3
+%%OCCROOT%%/tests/bugs/vis/bug30669
+%%OCCROOT%%/tests/bugs/vis/bug30672
+%%OCCROOT%%/tests/bugs/vis/bug30695
+%%OCCROOT%%/tests/bugs/vis/bug30713
+%%OCCROOT%%/tests/bugs/vis/bug30717
+%%OCCROOT%%/tests/bugs/vis/bug30756
+%%OCCROOT%%/tests/bugs/vis/bug30777
+%%OCCROOT%%/tests/bugs/vis/bug30823
+%%OCCROOT%%/tests/bugs/vis/bug30824
+%%OCCROOT%%/tests/bugs/vis/bug30906
+%%OCCROOT%%/tests/bugs/vis/bug30907
+%%OCCROOT%%/tests/bugs/vis/bug30946
+%%OCCROOT%%/tests/bugs/vis/bug30949
%%OCCROOT%%/tests/bugs/vis/bug316
%%OCCROOT%%/tests/bugs/vis/bug319
%%OCCROOT%%/tests/bugs/vis/bug331
@@ -8989,13 +9076,6 @@
%%OCCROOT%%/tests/bugs/vis/bug544
%%OCCROOT%%/tests/bugs/vis/bug5682
%%OCCROOT%%/tests/bugs/vis/bug591
-%%OCCROOT%%/tests/bugs/vis/bug597_1
-%%OCCROOT%%/tests/bugs/vis/bug597_2
-%%OCCROOT%%/tests/bugs/vis/bug597_3
-%%OCCROOT%%/tests/bugs/vis/bug597_4
-%%OCCROOT%%/tests/bugs/vis/bug597_5
-%%OCCROOT%%/tests/bugs/vis/bug597_6
-%%OCCROOT%%/tests/bugs/vis/bug597_7
%%OCCROOT%%/tests/bugs/vis/bug5988
%%OCCROOT%%/tests/bugs/vis/bug5990
%%OCCROOT%%/tests/bugs/vis/bug6132
@@ -9003,7 +9083,6 @@
%%OCCROOT%%/tests/bugs/vis/bug641
%%OCCROOT%%/tests/bugs/vis/bug6652
%%OCCROOT%%/tests/bugs/vis/bug6897_1
-%%OCCROOT%%/tests/bugs/vis/bug6897_2
%%OCCROOT%%/tests/bugs/vis/bug708
%%OCCROOT%%/tests/bugs/vis/bug7186
%%OCCROOT%%/tests/bugs/vis/bug727
@@ -9014,12 +9093,6 @@
%%OCCROOT%%/tests/bugs/vis/bug85_2
%%OCCROOT%%/tests/bugs/vis/bug872
%%OCCROOT%%/tests/bugs/vis/bug9517
-%%OCCROOT%%/tests/bugs/vis/ger61351_1
-%%OCCROOT%%/tests/bugs/vis/ger61351_2
-%%OCCROOT%%/tests/bugs/vis/ger61351_3
-%%OCCROOT%%/tests/bugs/vis/ger61351_4
-%%OCCROOT%%/tests/bugs/vis/ger61351_5
-%%OCCROOT%%/tests/bugs/vis/ger61351_6
%%OCCROOT%%/tests/bugs/vis/pro20342
%%OCCROOT%%/tests/bugs/xde/begin
%%OCCROOT%%/tests/bugs/xde/bug1055
@@ -9118,6 +9191,18 @@
%%OCCROOT%%/tests/bugs/xde/bug29525
%%OCCROOT%%/tests/bugs/xde/bug29597
%%OCCROOT%%/tests/bugs/xde/bug29599
+%%OCCROOT%%/tests/bugs/xde/bug29821
+%%OCCROOT%%/tests/bugs/xde/bug29888_1
+%%OCCROOT%%/tests/bugs/xde/bug29888_2
+%%OCCROOT%%/tests/bugs/xde/bug29890_1
+%%OCCROOT%%/tests/bugs/xde/bug29890_2
+%%OCCROOT%%/tests/bugs/xde/bug30221
+%%OCCROOT%%/tests/bugs/xde/bug30280
+%%OCCROOT%%/tests/bugs/xde/bug30402
+%%OCCROOT%%/tests/bugs/xde/bug30409
+%%OCCROOT%%/tests/bugs/xde/bug30411
+%%OCCROOT%%/tests/bugs/xde/bug30727
+%%OCCROOT%%/tests/bugs/xde/bug30779
%%OCCROOT%%/tests/bugs/xde/bug314
%%OCCROOT%%/tests/bugs/xde/bug321
%%OCCROOT%%/tests/bugs/xde/bug34
@@ -9375,6 +9460,7 @@
%%OCCROOT%%/tests/caf/presentation/L1
%%OCCROOT%%/tests/caf/presentation/L2
%%OCCROOT%%/tests/caf/presentation/M1
+%%OCCROOT%%/tests/caf/presentation/N1
%%OCCROOT%%/tests/caf/presentation/begin
%%OCCROOT%%/tests/caf/presentation/end
%%OCCROOT%%/tests/caf/tree/A1
@@ -9512,9 +9598,21 @@
%%OCCROOT%%/tests/chamfer/grids.list
%%OCCROOT%%/tests/chamfer/parse.rules
%%OCCROOT%%/tests/collections/grids.list
+%%OCCROOT%%/tests/collections/n/array1
+%%OCCROOT%%/tests/collections/n/array2
+%%OCCROOT%%/tests/collections/n/arrayMove
%%OCCROOT%%/tests/collections/n/begin
+%%OCCROOT%%/tests/collections/n/dblmap
+%%OCCROOT%%/tests/collections/n/dmap
%%OCCROOT%%/tests/collections/n/end
+%%OCCROOT%%/tests/collections/n/idmap
+%%OCCROOT%%/tests/collections/n/imap
+%%OCCROOT%%/tests/collections/n/list
%%OCCROOT%%/tests/collections/n/map
+%%OCCROOT%%/tests/collections/n/osdpath
+%%OCCROOT%%/tests/collections/n/seq
+%%OCCROOT%%/tests/collections/n/vec4
+%%OCCROOT%%/tests/collections/n/vector
%%OCCROOT%%/tests/de/begin
%%OCCROOT%%/tests/de/end
%%OCCROOT%%/tests/de/grids.list
@@ -10601,9 +10699,25 @@
%%OCCROOT%%/tests/de/step_5/B4
%%OCCROOT%%/tests/de/step_5/B5
%%OCCROOT%%/tests/de/step_5/B6
+%%OCCROOT%%/tests/de/step_5/B7
%%OCCROOT%%/tests/de_mesh/begin
%%OCCROOT%%/tests/de_mesh/end
+%%OCCROOT%%/tests/de_mesh/gltf_read/begin
+%%OCCROOT%%/tests/de_mesh/gltf_read/brainstem
+%%OCCROOT%%/tests/de_mesh/gltf_read/buggy
+%%OCCROOT%%/tests/de_mesh/gltf_read/end
+%%OCCROOT%%/tests/de_mesh/gltf_read/engine
+%%OCCROOT%%/tests/de_mesh/gltf_read/helmet
+%%OCCROOT%%/tests/de_mesh/gltf_read/lantern
+%%OCCROOT%%/tests/de_mesh/gltf_read/orient
%%OCCROOT%%/tests/de_mesh/grids.list
+%%OCCROOT%%/tests/de_mesh/obj_read/begin
+%%OCCROOT%%/tests/de_mesh/obj_read/end
+%%OCCROOT%%/tests/de_mesh/obj_read/multiline
+%%OCCROOT%%/tests/de_mesh/obj_read/mustang
+%%OCCROOT%%/tests/de_mesh/obj_read/prism
+%%OCCROOT%%/tests/de_mesh/obj_read/ship_boat
+%%OCCROOT%%/tests/de_mesh/parse.rules
%%OCCROOT%%/tests/de_mesh/shape_write_stl/A1
%%OCCROOT%%/tests/de_mesh/shape_write_stl/A10
%%OCCROOT%%/tests/de_mesh/shape_write_stl/A11
@@ -10671,6 +10785,8 @@
%%OCCROOT%%/tests/demo/draw/binpersist_2
%%OCCROOT%%/tests/demo/draw/binpersist_3
%%OCCROOT%%/tests/demo/draw/bug23745
+%%OCCROOT%%/tests/demo/draw/bug30430
+%%OCCROOT%%/tests/demo/draw/dlog
%%OCCROOT%%/tests/demo/draw/getsource
%%OCCROOT%%/tests/demo/draw/restore
%%OCCROOT%%/tests/demo/grids.list
@@ -10684,6 +10800,7 @@
%%OCCROOT%%/tests/demo/samples/dimensionsglsl
%%OCCROOT%%/tests/demo/samples/drill
%%OCCROOT%%/tests/demo/samples/gehause
+%%OCCROOT%%/tests/demo/samples/logo2019
%%OCCROOT%%/tests/demo/samples/materials
%%OCCROOT%%/tests/demo/samples/pencil
%%OCCROOT%%/tests/demo/samples/penrose
@@ -10817,6 +10934,37 @@
%%OCCROOT%%/tests/draft/end
%%OCCROOT%%/tests/draft/grids.list
%%OCCROOT%%/tests/draft/parse.rules
+%%OCCROOT%%/tests/evolved/begin
+%%OCCROOT%%/tests/evolved/end
+%%OCCROOT%%/tests/evolved/evolved/begin
+%%OCCROOT%%/tests/evolved/evolved/bug26470_1
+%%OCCROOT%%/tests/evolved/evolved/bug26470_2
+%%OCCROOT%%/tests/evolved/evolved/pro19424
+%%OCCROOT%%/tests/evolved/grids.list
+%%OCCROOT%%/tests/evolved/parse.rules
+%%OCCROOT%%/tests/evolved/voluved/AGT001
+%%OCCROOT%%/tests/evolved/voluved/AGT002
+%%OCCROOT%%/tests/evolved/voluved/AGT003
+%%OCCROOT%%/tests/evolved/voluved/AGT004
+%%OCCROOT%%/tests/evolved/voluved/AGT005
+%%OCCROOT%%/tests/evolved/voluved/AGT006
+%%OCCROOT%%/tests/evolved/voluved/AGT007
+%%OCCROOT%%/tests/evolved/voluved/AGT008
+%%OCCROOT%%/tests/evolved/voluved/AGT009
+%%OCCROOT%%/tests/evolved/voluved/HMC001
+%%OCCROOT%%/tests/evolved/voluved/HMC002
+%%OCCROOT%%/tests/evolved/voluved/HMC003
+%%OCCROOT%%/tests/evolved/voluved/HMC004
+%%OCCROOT%%/tests/evolved/voluved/HMC005
+%%OCCROOT%%/tests/evolved/voluved/HMC006
+%%OCCROOT%%/tests/evolved/voluved/HMC007
+%%OCCROOT%%/tests/evolved/voluved/HMC008
+%%OCCROOT%%/tests/evolved/voluved/HMC009
+%%OCCROOT%%/tests/evolved/voluved/HMC010
+%%OCCROOT%%/tests/evolved/voluved/begin
+%%OCCROOT%%/tests/evolved/voluved/bug26470_1
+%%OCCROOT%%/tests/evolved/voluved/bug26470_2
+%%OCCROOT%%/tests/evolved/voluved/pro19424
%%OCCROOT%%/tests/feat/begin
%%OCCROOT%%/tests/feat/end
%%OCCROOT%%/tests/feat/featdprism/A1
@@ -11246,6 +11394,7 @@
%%OCCROOT%%/tests/gdt/view/B4
%%OCCROOT%%/tests/gdt/view/B5
%%OCCROOT%%/tests/gdt/view/B6
+%%OCCROOT%%/tests/gdt/view/B7
%%OCCROOT%%/tests/gdt/view/begin
%%OCCROOT%%/tests/gdt/view/end
%%OCCROOT%%/tests/geometry/2dbeziecurve/A1
@@ -11276,6 +11425,7 @@
%%OCCROOT%%/tests/geometry/2dbsplinecurve/B6
%%OCCROOT%%/tests/geometry/2dbsplinecurve/B7
%%OCCROOT%%/tests/geometry/2dbsplinecurve/end
+%%OCCROOT%%/tests/geometry/2dpolygon/A1
%%OCCROOT%%/tests/geometry/begin
%%OCCROOT%%/tests/geometry/beziecurve/A1
%%OCCROOT%%/tests/geometry/beziecurve/A2
@@ -12716,28 +12866,495 @@
%%OCCROOT%%/tests/heal/wire_tails_real/A5
%%OCCROOT%%/tests/heal/wire_tails_real/A6
%%OCCROOT%%/tests/heal/wire_tails_real/A7
+%%OCCROOT%%/tests/hlr/begin
+%%OCCROOT%%/tests/hlr/end
+%%OCCROOT%%/tests/hlr/exact_hlr/A1
+%%OCCROOT%%/tests/hlr/exact_hlr/A2
+%%OCCROOT%%/tests/hlr/exact_hlr/A3
+%%OCCROOT%%/tests/hlr/exact_hlr/A4
+%%OCCROOT%%/tests/hlr/exact_hlr/A5
+%%OCCROOT%%/tests/hlr/exact_hlr/A6
+%%OCCROOT%%/tests/hlr/exact_hlr/A7
+%%OCCROOT%%/tests/hlr/exact_hlr/B1
+%%OCCROOT%%/tests/hlr/exact_hlr/B2
+%%OCCROOT%%/tests/hlr/exact_hlr/B3
+%%OCCROOT%%/tests/hlr/exact_hlr/B4
+%%OCCROOT%%/tests/hlr/exact_hlr/B5
+%%OCCROOT%%/tests/hlr/exact_hlr/B6
+%%OCCROOT%%/tests/hlr/exact_hlr/B7
+%%OCCROOT%%/tests/hlr/exact_hlr/C1
+%%OCCROOT%%/tests/hlr/exact_hlr/C10
+%%OCCROOT%%/tests/hlr/exact_hlr/C11
+%%OCCROOT%%/tests/hlr/exact_hlr/C12
+%%OCCROOT%%/tests/hlr/exact_hlr/C13
+%%OCCROOT%%/tests/hlr/exact_hlr/C14
+%%OCCROOT%%/tests/hlr/exact_hlr/C15
+%%OCCROOT%%/tests/hlr/exact_hlr/C16
+%%OCCROOT%%/tests/hlr/exact_hlr/C17
+%%OCCROOT%%/tests/hlr/exact_hlr/C18
+%%OCCROOT%%/tests/hlr/exact_hlr/C19
+%%OCCROOT%%/tests/hlr/exact_hlr/C2
+%%OCCROOT%%/tests/hlr/exact_hlr/C20
+%%OCCROOT%%/tests/hlr/exact_hlr/C21
+%%OCCROOT%%/tests/hlr/exact_hlr/C22
+%%OCCROOT%%/tests/hlr/exact_hlr/C23
+%%OCCROOT%%/tests/hlr/exact_hlr/C24
+%%OCCROOT%%/tests/hlr/exact_hlr/C25
+%%OCCROOT%%/tests/hlr/exact_hlr/C26
+%%OCCROOT%%/tests/hlr/exact_hlr/C27
+%%OCCROOT%%/tests/hlr/exact_hlr/C28
+%%OCCROOT%%/tests/hlr/exact_hlr/C29
+%%OCCROOT%%/tests/hlr/exact_hlr/C3
+%%OCCROOT%%/tests/hlr/exact_hlr/C4
+%%OCCROOT%%/tests/hlr/exact_hlr/C5
+%%OCCROOT%%/tests/hlr/exact_hlr/C6
+%%OCCROOT%%/tests/hlr/exact_hlr/C7
+%%OCCROOT%%/tests/hlr/exact_hlr/C8
+%%OCCROOT%%/tests/hlr/exact_hlr/C9
+%%OCCROOT%%/tests/hlr/exact_hlr/D1
+%%OCCROOT%%/tests/hlr/exact_hlr/D2
+%%OCCROOT%%/tests/hlr/exact_hlr/D3
+%%OCCROOT%%/tests/hlr/exact_hlr/D4
+%%OCCROOT%%/tests/hlr/exact_hlr/D5
+%%OCCROOT%%/tests/hlr/exact_hlr/D6
+%%OCCROOT%%/tests/hlr/exact_hlr/D7
+%%OCCROOT%%/tests/hlr/exact_hlr/Plate
+%%OCCROOT%%/tests/hlr/exact_hlr/begin
+%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_1
+%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_2
+%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_3
+%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_4
+%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_5
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_101
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_102
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_103
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_104
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_105
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_201
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_202
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_203
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_204
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_205
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_1
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_2
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_3
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_4
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_5
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_1
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_2
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_3
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_4
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_5
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_6
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_7
+%%OCCROOT%%/tests/hlr/exact_hlr/bug29956
+%%OCCROOT%%/tests/hlr/exact_hlr/bug30243
+%%OCCROOT%%/tests/hlr/exact_hlr/bug7691
+%%OCCROOT%%/tests/hlr/grids.list
+%%OCCROOT%%/tests/hlr/poly_hlr/A1
+%%OCCROOT%%/tests/hlr/poly_hlr/A2
+%%OCCROOT%%/tests/hlr/poly_hlr/A3
+%%OCCROOT%%/tests/hlr/poly_hlr/A4
+%%OCCROOT%%/tests/hlr/poly_hlr/A5
+%%OCCROOT%%/tests/hlr/poly_hlr/A6
+%%OCCROOT%%/tests/hlr/poly_hlr/A7
+%%OCCROOT%%/tests/hlr/poly_hlr/B1
+%%OCCROOT%%/tests/hlr/poly_hlr/B2
+%%OCCROOT%%/tests/hlr/poly_hlr/B3
+%%OCCROOT%%/tests/hlr/poly_hlr/B4
+%%OCCROOT%%/tests/hlr/poly_hlr/B5
+%%OCCROOT%%/tests/hlr/poly_hlr/B6
+%%OCCROOT%%/tests/hlr/poly_hlr/B7
+%%OCCROOT%%/tests/hlr/poly_hlr/C1
+%%OCCROOT%%/tests/hlr/poly_hlr/C10
+%%OCCROOT%%/tests/hlr/poly_hlr/C11
+%%OCCROOT%%/tests/hlr/poly_hlr/C12
+%%OCCROOT%%/tests/hlr/poly_hlr/C13
+%%OCCROOT%%/tests/hlr/poly_hlr/C14
+%%OCCROOT%%/tests/hlr/poly_hlr/C15
+%%OCCROOT%%/tests/hlr/poly_hlr/C16
+%%OCCROOT%%/tests/hlr/poly_hlr/C17
+%%OCCROOT%%/tests/hlr/poly_hlr/C18
+%%OCCROOT%%/tests/hlr/poly_hlr/C19
+%%OCCROOT%%/tests/hlr/poly_hlr/C2
+%%OCCROOT%%/tests/hlr/poly_hlr/C20
+%%OCCROOT%%/tests/hlr/poly_hlr/C21
+%%OCCROOT%%/tests/hlr/poly_hlr/C22
+%%OCCROOT%%/tests/hlr/poly_hlr/C23
+%%OCCROOT%%/tests/hlr/poly_hlr/C24
+%%OCCROOT%%/tests/hlr/poly_hlr/C25
+%%OCCROOT%%/tests/hlr/poly_hlr/C26
+%%OCCROOT%%/tests/hlr/poly_hlr/C27
+%%OCCROOT%%/tests/hlr/poly_hlr/C28
+%%OCCROOT%%/tests/hlr/poly_hlr/C29
+%%OCCROOT%%/tests/hlr/poly_hlr/C3
+%%OCCROOT%%/tests/hlr/poly_hlr/C4
+%%OCCROOT%%/tests/hlr/poly_hlr/C5
+%%OCCROOT%%/tests/hlr/poly_hlr/C6
+%%OCCROOT%%/tests/hlr/poly_hlr/C7
+%%OCCROOT%%/tests/hlr/poly_hlr/C8
+%%OCCROOT%%/tests/hlr/poly_hlr/C9
+%%OCCROOT%%/tests/hlr/poly_hlr/D1
+%%OCCROOT%%/tests/hlr/poly_hlr/D2
+%%OCCROOT%%/tests/hlr/poly_hlr/D3
+%%OCCROOT%%/tests/hlr/poly_hlr/D4
+%%OCCROOT%%/tests/hlr/poly_hlr/D5
+%%OCCROOT%%/tests/hlr/poly_hlr/D6
+%%OCCROOT%%/tests/hlr/poly_hlr/D7
+%%OCCROOT%%/tests/hlr/poly_hlr/Plate
+%%OCCROOT%%/tests/hlr/poly_hlr/begin
+%%OCCROOT%%/tests/hlr/poly_hlr/bug23625_1
+%%OCCROOT%%/tests/hlr/poly_hlr/bug23625_2
+%%OCCROOT%%/tests/hlr/poly_hlr/bug23625_3
+%%OCCROOT%%/tests/hlr/poly_hlr/bug23625_4
+%%OCCROOT%%/tests/hlr/poly_hlr/bug23625_5
+%%OCCROOT%%/tests/hlr/poly_hlr/bug25813_1
+%%OCCROOT%%/tests/hlr/poly_hlr/bug25813_2
+%%OCCROOT%%/tests/hlr/poly_hlr/bug25813_3
+%%OCCROOT%%/tests/hlr/poly_hlr/bug25813_4
+%%OCCROOT%%/tests/hlr/poly_hlr/bug25813_5
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27719_101
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27719_102
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27719_103
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27719_104
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27719_105
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27719_201
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27719_202
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27719_203
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27719_204
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27719_205
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27720_1
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27720_2
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27720_3
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27720_4
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27720_5
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27979_1
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27979_2
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27979_3
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27979_4
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27979_5
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27979_6
+%%OCCROOT%%/tests/hlr/poly_hlr/bug27979_7
+%%OCCROOT%%/tests/hlr/poly_hlr/bug28242
+%%OCCROOT%%/tests/hlr/poly_hlr/bug29956
+%%OCCROOT%%/tests/hlr/poly_hlr/bug30243
+%%OCCROOT%%/tests/hlr/poly_hlr/bug7691
+%%OCCROOT%%/tests/lowalgos/2dapprox/bug29679_1
+%%OCCROOT%%/tests/lowalgos/2dapprox/bug29679_2
+%%OCCROOT%%/tests/lowalgos/2dgcc/buc60607_1
+%%OCCROOT%%/tests/lowalgos/2dgcc/buc60607_2
+%%OCCROOT%%/tests/lowalgos/2dgcc/buc60607_3
+%%OCCROOT%%/tests/lowalgos/2dgcc/buc60607_4
+%%OCCROOT%%/tests/lowalgos/2dgcc/buc60618
+%%OCCROOT%%/tests/lowalgos/2dgcc/buc60622_1
+%%OCCROOT%%/tests/lowalgos/2dgcc/buc60622_2
+%%OCCROOT%%/tests/lowalgos/2dgcc/buc60622_3
+%%OCCROOT%%/tests/lowalgos/2dgcc/buc60941
+%%OCCROOT%%/tests/lowalgos/2dgcc/bug23866
+%%OCCROOT%%/tests/lowalgos/2dgcc/bug29694
+%%OCCROOT%%/tests/lowalgos/2dgcc/doc001
%%OCCROOT%%/tests/lowalgos/2dinter/A1
%%OCCROOT%%/tests/lowalgos/2dinter/A2
+%%OCCROOT%%/tests/lowalgos/2dinter/bug23587
+%%OCCROOT%%/tests/lowalgos/2dinter/bug23706_4
+%%OCCROOT%%/tests/lowalgos/2dinter/bug23706_5
+%%OCCROOT%%/tests/lowalgos/2dinter/bug24100
+%%OCCROOT%%/tests/lowalgos/2dinter/bug24800
+%%OCCROOT%%/tests/lowalgos/2dinter/bug25593
+%%OCCROOT%%/tests/lowalgos/2dinter/bug25876
+%%OCCROOT%%/tests/lowalgos/2dinter/bug26099
+%%OCCROOT%%/tests/lowalgos/2dinter/bug27976
+%%OCCROOT%%/tests/lowalgos/2dinter/bug29162
+%%OCCROOT%%/tests/lowalgos/2dinter/bug4426_1
+%%OCCROOT%%/tests/lowalgos/2dinter/bug4426_2
%%OCCROOT%%/tests/lowalgos/begin
%%OCCROOT%%/tests/lowalgos/bnd/bug29463
+%%OCCROOT%%/tests/lowalgos/bvh/bug30655_1
+%%OCCROOT%%/tests/lowalgos/bvh/bug30655_2
+%%OCCROOT%%/tests/lowalgos/bvh/bug30655_3
+%%OCCROOT%%/tests/lowalgos/bvh/bug30655_4
+%%OCCROOT%%/tests/lowalgos/classifier/buc60609
+%%OCCROOT%%/tests/lowalgos/classifier/bug22494
+%%OCCROOT%%/tests/lowalgos/classifier/bug23244
+%%OCCROOT%%/tests/lowalgos/classifier/bug23341
+%%OCCROOT%%/tests/lowalgos/classifier/bug23777
+%%OCCROOT%%/tests/lowalgos/classifier/bug23849_2
+%%OCCROOT%%/tests/lowalgos/classifier/bug24422
+%%OCCROOT%%/tests/lowalgos/classifier/bug25969
+%%OCCROOT%%/tests/lowalgos/classifier/bug25969_std
+%%OCCROOT%%/tests/lowalgos/classifier/bug26206
+%%OCCROOT%%/tests/lowalgos/classifier/bug27434
+%%OCCROOT%%/tests/lowalgos/classifier/bug30354_1
+%%OCCROOT%%/tests/lowalgos/classifier/bug30354_2
+%%OCCROOT%%/tests/lowalgos/classifier/bug377
+%%OCCROOT%%/tests/lowalgos/classifier/bug538
%%OCCROOT%%/tests/lowalgos/end
%%OCCROOT%%/tests/lowalgos/extcc/begin
%%OCCROOT%%/tests/lowalgos/extcc/bug29465_1
%%OCCROOT%%/tests/lowalgos/extcc/bug29465_2
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_10
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_11
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_12
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_13
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_14
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_15
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_16
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_17
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_18
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_19
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_2
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_20
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_21
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_22
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_23
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_24
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_25
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_26
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_27
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_28
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_29
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_3
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_30
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_31
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_32
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_33
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_34
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_35
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_36
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_37
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_38
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_39
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_4
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_40
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_41
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_42
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_43
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_5
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_6
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_7
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_8
+%%OCCROOT%%/tests/lowalgos/extcc/bug29712_9
+%%OCCROOT%%/tests/lowalgos/extcc/bug29858_01
+%%OCCROOT%%/tests/lowalgos/extcc/bug29858_02
+%%OCCROOT%%/tests/lowalgos/extcc/bug29858_03
+%%OCCROOT%%/tests/lowalgos/extcc/bug29858_04
%%OCCROOT%%/tests/lowalgos/extcs/bug29426_1
%%OCCROOT%%/tests/lowalgos/extcs/bug29426_2
%%OCCROOT%%/tests/lowalgos/extcs/circ_sph_inter
%%OCCROOT%%/tests/lowalgos/extcs/circ_sph_nointer
%%OCCROOT%%/tests/lowalgos/extcs/circ_sph_parallel
%%OCCROOT%%/tests/lowalgos/extcs/circ_sph_touch
+%%OCCROOT%%/tests/lowalgos/extss/bug29712_44
%%OCCROOT%%/tests/lowalgos/grids.list
+%%OCCROOT%%/tests/lowalgos/intss/begin
+%%OCCROOT%%/tests/lowalgos/intss/buc60623_3
+%%OCCROOT%%/tests/lowalgos/intss/buc60815
+%%OCCROOT%%/tests/lowalgos/intss/bug106
+%%OCCROOT%%/tests/lowalgos/intss/bug139
+%%OCCROOT%%/tests/lowalgos/intss/bug20524
+%%OCCROOT%%/tests/lowalgos/intss/bug20766
+%%OCCROOT%%/tests/lowalgos/intss/bug21494_1
+%%OCCROOT%%/tests/lowalgos/intss/bug21494_2
+%%OCCROOT%%/tests/lowalgos/intss/bug21750
+%%OCCROOT%%/tests/lowalgos/intss/bug22720
+%%OCCROOT%%/tests/lowalgos/intss/bug22723
+%%OCCROOT%%/tests/lowalgos/intss/bug22766
+%%OCCROOT%%/tests/lowalgos/intss/bug22851
+%%OCCROOT%%/tests/lowalgos/intss/bug22923
+%%OCCROOT%%/tests/lowalgos/intss/bug23163_1
+%%OCCROOT%%/tests/lowalgos/intss/bug23163_2
+%%OCCROOT%%/tests/lowalgos/intss/bug23163_3
+%%OCCROOT%%/tests/lowalgos/intss/bug23166
+%%OCCROOT%%/tests/lowalgos/intss/bug23176
+%%OCCROOT%%/tests/lowalgos/intss/bug23177_1
+%%OCCROOT%%/tests/lowalgos/intss/bug23177_2
+%%OCCROOT%%/tests/lowalgos/intss/bug23178
+%%OCCROOT%%/tests/lowalgos/intss/bug23218
+%%OCCROOT%%/tests/lowalgos/intss/bug23471
+%%OCCROOT%%/tests/lowalgos/intss/bug23576
+%%OCCROOT%%/tests/lowalgos/intss/bug236
+%%OCCROOT%%/tests/lowalgos/intss/bug23643
+%%OCCROOT%%/tests/lowalgos/intss/bug23644
+%%OCCROOT%%/tests/lowalgos/intss/bug23699
+%%OCCROOT%%/tests/lowalgos/intss/bug237
+%%OCCROOT%%/tests/lowalgos/intss/bug23732
+%%OCCROOT%%/tests/lowalgos/intss/bug23948_1
+%%OCCROOT%%/tests/lowalgos/intss/bug23948_2
+%%OCCROOT%%/tests/lowalgos/intss/bug23972
+%%OCCROOT%%/tests/lowalgos/intss/bug23981
+%%OCCROOT%%/tests/lowalgos/intss/bug24142
+%%OCCROOT%%/tests/lowalgos/intss/bug24299
+%%OCCROOT%%/tests/lowalgos/intss/bug24313
+%%OCCROOT%%/tests/lowalgos/intss/bug24418_1
+%%OCCROOT%%/tests/lowalgos/intss/bug24418_2
+%%OCCROOT%%/tests/lowalgos/intss/bug24427_2
+%%OCCROOT%%/tests/lowalgos/intss/bug24429
+%%OCCROOT%%/tests/lowalgos/intss/bug24472
+%%OCCROOT%%/tests/lowalgos/intss/bug24505
+%%OCCROOT%%/tests/lowalgos/intss/bug24585_1
+%%OCCROOT%%/tests/lowalgos/intss/bug24612
+%%OCCROOT%%/tests/lowalgos/intss/bug24643
+%%OCCROOT%%/tests/lowalgos/intss/bug24648
+%%OCCROOT%%/tests/lowalgos/intss/bug24650
+%%OCCROOT%%/tests/lowalgos/intss/bug24676
+%%OCCROOT%%/tests/lowalgos/intss/bug24772
+%%OCCROOT%%/tests/lowalgos/intss/bug24915
+%%OCCROOT%%/tests/lowalgos/intss/bug25095
+%%OCCROOT%%/tests/lowalgos/intss/bug25193
+%%OCCROOT%%/tests/lowalgos/intss/bug25224
+%%OCCROOT%%/tests/lowalgos/intss/bug25248
+%%OCCROOT%%/tests/lowalgos/intss/bug25292_11
+%%OCCROOT%%/tests/lowalgos/intss/bug25292_12
+%%OCCROOT%%/tests/lowalgos/intss/bug25292_21
+%%OCCROOT%%/tests/lowalgos/intss/bug25292_22
+%%OCCROOT%%/tests/lowalgos/intss/bug25292_31
+%%OCCROOT%%/tests/lowalgos/intss/bug25292_32
+%%OCCROOT%%/tests/lowalgos/intss/bug25380
+%%OCCROOT%%/tests/lowalgos/intss/bug25416_1
+%%OCCROOT%%/tests/lowalgos/intss/bug25416_2
+%%OCCROOT%%/tests/lowalgos/intss/bug25416_3
+%%OCCROOT%%/tests/lowalgos/intss/bug25465_1
+%%OCCROOT%%/tests/lowalgos/intss/bug25465_2
+%%OCCROOT%%/tests/lowalgos/intss/bug25488
+%%OCCROOT%%/tests/lowalgos/intss/bug25697_2
+%%OCCROOT%%/tests/lowalgos/intss/bug25782_1
+%%OCCROOT%%/tests/lowalgos/intss/bug25782_2
+%%OCCROOT%%/tests/lowalgos/intss/bug25818
+%%OCCROOT%%/tests/lowalgos/intss/bug25820_1
+%%OCCROOT%%/tests/lowalgos/intss/bug25820_2
+%%OCCROOT%%/tests/lowalgos/intss/bug25820_3
+%%OCCROOT%%/tests/lowalgos/intss/bug25828_3
+%%OCCROOT%%/tests/lowalgos/intss/bug25828_4
+%%OCCROOT%%/tests/lowalgos/intss/bug25842
+%%OCCROOT%%/tests/lowalgos/intss/bug25890
+%%OCCROOT%%/tests/lowalgos/intss/bug25898
+%%OCCROOT%%/tests/lowalgos/intss/bug25950
+%%OCCROOT%%/tests/lowalgos/intss/bug25952_1
+%%OCCROOT%%/tests/lowalgos/intss/bug25952_2
+%%OCCROOT%%/tests/lowalgos/intss/bug25952_3
+%%OCCROOT%%/tests/lowalgos/intss/bug26008
+%%OCCROOT%%/tests/lowalgos/intss/bug26151_1
+%%OCCROOT%%/tests/lowalgos/intss/bug26151_2
+%%OCCROOT%%/tests/lowalgos/intss/bug26251
+%%OCCROOT%%/tests/lowalgos/intss/bug26352
+%%OCCROOT%%/tests/lowalgos/intss/bug26431_1
+%%OCCROOT%%/tests/lowalgos/intss/bug26509_1
+%%OCCROOT%%/tests/lowalgos/intss/bug26509_2
+%%OCCROOT%%/tests/lowalgos/intss/bug26509_3
+%%OCCROOT%%/tests/lowalgos/intss/bug26509_4
+%%OCCROOT%%/tests/lowalgos/intss/bug26509_5
+%%OCCROOT%%/tests/lowalgos/intss/bug26509_6
+%%OCCROOT%%/tests/lowalgos/intss/bug26576_1
+%%OCCROOT%%/tests/lowalgos/intss/bug26576_3
+%%OCCROOT%%/tests/lowalgos/intss/bug26576_4
+%%OCCROOT%%/tests/lowalgos/intss/bug26675
+%%OCCROOT%%/tests/lowalgos/intss/bug26684_1
+%%OCCROOT%%/tests/lowalgos/intss/bug26684_2
+%%OCCROOT%%/tests/lowalgos/intss/bug26699
+%%OCCROOT%%/tests/lowalgos/intss/bug26748
+%%OCCROOT%%/tests/lowalgos/intss/bug26894
+%%OCCROOT%%/tests/lowalgos/intss/bug27079_1
+%%OCCROOT%%/tests/lowalgos/intss/bug27079_2
+%%OCCROOT%%/tests/lowalgos/intss/bug271
+%%OCCROOT%%/tests/lowalgos/intss/bug27175
+%%OCCROOT%%/tests/lowalgos/intss/bug27190
+%%OCCROOT%%/tests/lowalgos/intss/bug27227
+%%OCCROOT%%/tests/lowalgos/intss/bug27252_1
+%%OCCROOT%%/tests/lowalgos/intss/bug27263
+%%OCCROOT%%/tests/lowalgos/intss/bug27269
+%%OCCROOT%%/tests/lowalgos/intss/bug27282_2
+%%OCCROOT%%/tests/lowalgos/intss/bug27302
+%%OCCROOT%%/tests/lowalgos/intss/bug27310_1
+%%OCCROOT%%/tests/lowalgos/intss/bug27310_2
+%%OCCROOT%%/tests/lowalgos/intss/bug27431
+%%OCCROOT%%/tests/lowalgos/intss/bug27623
+%%OCCROOT%%/tests/lowalgos/intss/bug27664_1
+%%OCCROOT%%/tests/lowalgos/intss/bug27747
+%%OCCROOT%%/tests/lowalgos/intss/bug27766
+%%OCCROOT%%/tests/lowalgos/intss/bug27780
+%%OCCROOT%%/tests/lowalgos/intss/bug27842
+%%OCCROOT%%/tests/lowalgos/intss/bug27856_2
+%%OCCROOT%%/tests/lowalgos/intss/bug27896
+%%OCCROOT%%/tests/lowalgos/intss/bug27937_1
+%%OCCROOT%%/tests/lowalgos/intss/bug27937_2
+%%OCCROOT%%/tests/lowalgos/intss/bug27950
+%%OCCROOT%%/tests/lowalgos/intss/bug28009_2
+%%OCCROOT%%/tests/lowalgos/intss/bug28012
+%%OCCROOT%%/tests/lowalgos/intss/bug28085_2
+%%OCCROOT%%/tests/lowalgos/intss/bug28222_1
+%%OCCROOT%%/tests/lowalgos/intss/bug28222_2
+%%OCCROOT%%/tests/lowalgos/intss/bug28222_3
+%%OCCROOT%%/tests/lowalgos/intss/bug28406
+%%OCCROOT%%/tests/lowalgos/intss/bug28493
+%%OCCROOT%%/tests/lowalgos/intss/bug28544_2
+%%OCCROOT%%/tests/lowalgos/intss/bug28557
+%%OCCROOT%%/tests/lowalgos/intss/bug286
+%%OCCROOT%%/tests/lowalgos/intss/bug28718
+%%OCCROOT%%/tests/lowalgos/intss/bug28764
+%%OCCROOT%%/tests/lowalgos/intss/bug28984
+%%OCCROOT%%/tests/lowalgos/intss/bug29103
+%%OCCROOT%%/tests/lowalgos/intss/bug29323
+%%OCCROOT%%/tests/lowalgos/intss/bug29494
+%%OCCROOT%%/tests/lowalgos/intss/bug29673
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i1001
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i1002
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i1003
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i1004
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i1005
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i1006
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i2001
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i2002
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i2003
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i2004
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i2005
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i2006
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i3001
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i3002
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i3003
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i3004
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i3005
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i4001
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i4002
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i4003
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i4004
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i4005
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i5001
+%%OCCROOT%%/tests/lowalgos/intss/bug29807_i5002
+%%OCCROOT%%/tests/lowalgos/intss/bug29866
+%%OCCROOT%%/tests/lowalgos/intss/bug29910_2
+%%OCCROOT%%/tests/lowalgos/intss/bug29972_1
+%%OCCROOT%%/tests/lowalgos/intss/bug29972_2
+%%OCCROOT%%/tests/lowalgos/intss/bug29972_3
+%%OCCROOT%%/tests/lowalgos/intss/bug29972_4
+%%OCCROOT%%/tests/lowalgos/intss/bug29972_5
+%%OCCROOT%%/tests/lowalgos/intss/bug29972_6
+%%OCCROOT%%/tests/lowalgos/intss/bug29994
+%%OCCROOT%%/tests/lowalgos/intss/bug30082_1
+%%OCCROOT%%/tests/lowalgos/intss/bug30082_2
+%%OCCROOT%%/tests/lowalgos/intss/bug30100_2
+%%OCCROOT%%/tests/lowalgos/intss/bug30202_2
+%%OCCROOT%%/tests/lowalgos/intss/bug30354
+%%OCCROOT%%/tests/lowalgos/intss/bug324
+%%OCCROOT%%/tests/lowalgos/intss/bug333
+%%OCCROOT%%/tests/lowalgos/intss/bug370
+%%OCCROOT%%/tests/lowalgos/intss/bug371
+%%OCCROOT%%/tests/lowalgos/intss/bug429
+%%OCCROOT%%/tests/lowalgos/intss/bug431
+%%OCCROOT%%/tests/lowalgos/intss/bug504
+%%OCCROOT%%/tests/lowalgos/intss/bug513
+%%OCCROOT%%/tests/lowalgos/intss/bug531
+%%OCCROOT%%/tests/lowalgos/intss/bug537
+%%OCCROOT%%/tests/lowalgos/intss/bug565
+%%OCCROOT%%/tests/lowalgos/intss/bug567_1
+%%OCCROOT%%/tests/lowalgos/intss/bug567_2
+%%OCCROOT%%/tests/lowalgos/intss/bug604
+%%OCCROOT%%/tests/lowalgos/intss/bug6474
+%%OCCROOT%%/tests/lowalgos/intss/ger61235
%%OCCROOT%%/tests/lowalgos/parse.rules
%%OCCROOT%%/tests/mesh/advanced_incmesh/begin
%%OCCROOT%%/tests/mesh/advanced_incmesh/cases.list
%%OCCROOT%%/tests/mesh/advanced_incmesh_parallel/begin
%%OCCROOT%%/tests/mesh/advanced_incmesh_parallel/cases.list
-%%OCCROOT%%/tests/mesh/advanced_mesh/begin
-%%OCCROOT%%/tests/mesh/advanced_mesh/cases.list
%%OCCROOT%%/tests/mesh/advanced_shading/begin
%%OCCROOT%%/tests/mesh/advanced_shading/cases.list
%%OCCROOT%%/tests/mesh/begin
@@ -12980,8 +13597,6 @@
%%OCCROOT%%/tests/mesh/standard_incmesh/cases.list
%%OCCROOT%%/tests/mesh/standard_incmesh_parallel/begin
%%OCCROOT%%/tests/mesh/standard_incmesh_parallel/cases.list
-%%OCCROOT%%/tests/mesh/standard_mesh/begin
-%%OCCROOT%%/tests/mesh/standard_mesh/cases.list
%%OCCROOT%%/tests/mesh/standard_shading/begin
%%OCCROOT%%/tests/mesh/standard_shading/cases.list
%%OCCROOT%%/tests/mkface/after_extsurf_and_offset/A1
@@ -13750,6 +14365,31 @@
%%OCCROOT%%/tests/offset/shape_type_i_c/XQ2
%%OCCROOT%%/tests/offset/shape_type_i_c/XQ3
%%OCCROOT%%/tests/offset/shape_type_i_c/XQ4
+%%OCCROOT%%/tests/offset/shape_type_i_c/XQ5
+%%OCCROOT%%/tests/offset/shape_type_i_c/XQ6
+%%OCCROOT%%/tests/offset/shape_type_i_c/XQ7
+%%OCCROOT%%/tests/offset/shape_type_i_c/XQ8
+%%OCCROOT%%/tests/offset/shape_type_i_c/XQ9
+%%OCCROOT%%/tests/offset/shape_type_i_c/XR1
+%%OCCROOT%%/tests/offset/shape_type_i_c/XR2
+%%OCCROOT%%/tests/offset/shape_type_i_c/XR3
+%%OCCROOT%%/tests/offset/shape_type_i_c/XR4
+%%OCCROOT%%/tests/offset/shape_type_i_c/XR5
+%%OCCROOT%%/tests/offset/shape_type_i_c/XR6
+%%OCCROOT%%/tests/offset/shape_type_i_c/XR7
+%%OCCROOT%%/tests/offset/shape_type_i_c/XR8
+%%OCCROOT%%/tests/offset/shape_type_i_c/XR9
+%%OCCROOT%%/tests/offset/shape_type_i_c/XS1
+%%OCCROOT%%/tests/offset/shape_type_i_c/XS2
+%%OCCROOT%%/tests/offset/shape_type_i_c/XS3
+%%OCCROOT%%/tests/offset/shape_type_i_c/XS4
+%%OCCROOT%%/tests/offset/shape_type_i_c/XS5
+%%OCCROOT%%/tests/offset/shape_type_i_c/XS6
+%%OCCROOT%%/tests/offset/shape_type_i_c/XS7
+%%OCCROOT%%/tests/offset/shape_type_i_c/XS8
+%%OCCROOT%%/tests/offset/shape_type_i_c/XS9
+%%OCCROOT%%/tests/offset/shape_type_i_c/XT1
+%%OCCROOT%%/tests/offset/shape_type_i_c/XT2
%%OCCROOT%%/tests/offset/shape_type_i_c/Y1
%%OCCROOT%%/tests/offset/shape_type_i_c/Y2
%%OCCROOT%%/tests/offset/shape_type_i_c/Y3
@@ -15078,19 +15718,20 @@
%%OCCROOT%%/tests/perf/caf/bug5023
%%OCCROOT%%/tests/perf/caf/bug5023_std
%%OCCROOT%%/tests/perf/de/begin
+%%OCCROOT%%/tests/perf/de/bug23979
%%OCCROOT%%/tests/perf/de/bug24024
%%OCCROOT%%/tests/perf/de/bug26338_1
%%OCCROOT%%/tests/perf/de/bug26338_2
%%OCCROOT%%/tests/perf/de/bug27570
+%%OCCROOT%%/tests/perf/de/bug29830_1
+%%OCCROOT%%/tests/perf/de/bug29830_2
+%%OCCROOT%%/tests/perf/de/bug29830_3
+%%OCCROOT%%/tests/perf/de/bug29830_dir/script
%%OCCROOT%%/tests/perf/draw/bug28404
%%OCCROOT%%/tests/perf/draw/restore
%%OCCROOT%%/tests/perf/end
%%OCCROOT%%/tests/perf/fclasses/bug24947
%%OCCROOT%%/tests/perf/fclasses/bug25514
-%%OCCROOT%%/tests/perf/fclasses/bug26184_1
-%%OCCROOT%%/tests/perf/fclasses/bug26184_2
-%%OCCROOT%%/tests/perf/fclasses/bug27131
-%%OCCROOT%%/tests/perf/fclasses/bug27371
%%OCCROOT%%/tests/perf/fclasses/handle
%%OCCROOT%%/tests/perf/fclasses/progress
%%OCCROOT%%/tests/perf/fclasses/strtod
@@ -15104,12 +15745,18 @@
%%OCCROOT%%/tests/perf/heal/bug28467_2
%%OCCROOT%%/tests/perf/heal/bug28467_3
%%OCCROOT%%/tests/perf/mesh/bug23650
+%%OCCROOT%%/tests/perf/mesh/bug23795
%%OCCROOT%%/tests/perf/mesh/bug24022
%%OCCROOT%%/tests/perf/mesh/bug24968_1
%%OCCROOT%%/tests/perf/mesh/bug24968_2
%%OCCROOT%%/tests/perf/mesh/bug25264
+%%OCCROOT%%/tests/perf/mesh/bug26889_1
+%%OCCROOT%%/tests/perf/mesh/bug26889_2
+%%OCCROOT%%/tests/perf/mesh/bug26889_3
+%%OCCROOT%%/tests/perf/mesh/bug26965
%%OCCROOT%%/tests/perf/mesh/bug27119
%%OCCROOT%%/tests/perf/mesh/bug27626
+%%OCCROOT%%/tests/perf/mesh/bug30511
%%OCCROOT%%/tests/perf/mesh/parse.rules
%%OCCROOT%%/tests/perf/modalg/bug10160_1
%%OCCROOT%%/tests/perf/modalg/bug10160_10
@@ -15143,6 +15790,8 @@
%%OCCROOT%%/tests/perf/modalg/bug25742_1
%%OCCROOT%%/tests/perf/modalg/bug25742_2
%%OCCROOT%%/tests/perf/modalg/bug25788
+%%OCCROOT%%/tests/perf/modalg/bug26184_1
+%%OCCROOT%%/tests/perf/modalg/bug26184_2
%%OCCROOT%%/tests/perf/modalg/bug26310_1
%%OCCROOT%%/tests/perf/modalg/bug26327
%%OCCROOT%%/tests/perf/modalg/bug26443_1
@@ -15153,8 +15802,11 @@
%%OCCROOT%%/tests/perf/modalg/bug26914
%%OCCROOT%%/tests/perf/modalg/bug26929
%%OCCROOT%%/tests/perf/modalg/bug26980
+%%OCCROOT%%/tests/perf/modalg/bug27021
%%OCCROOT%%/tests/perf/modalg/bug27085_1
%%OCCROOT%%/tests/perf/modalg/bug27085_2
+%%OCCROOT%%/tests/perf/modalg/bug27131
+%%OCCROOT%%/tests/perf/modalg/bug27371
%%OCCROOT%%/tests/perf/modalg/bug27569
%%OCCROOT%%/tests/perf/modalg/bug28030
%%OCCROOT%%/tests/perf/modalg/bug28600
@@ -15164,10 +15816,14 @@
%%OCCROOT%%/tests/perf/modalg/bug29237_2
%%OCCROOT%%/tests/perf/modalg/bug29237_3
%%OCCROOT%%/tests/perf/modalg/bug29311
+%%OCCROOT%%/tests/perf/modalg/bug29329
%%OCCROOT%%/tests/perf/modalg/bug29502_1
%%OCCROOT%%/tests/perf/modalg/bug29502_2
%%OCCROOT%%/tests/perf/modalg/bug29502_3
%%OCCROOT%%/tests/perf/modalg/bug29682
+%%OCCROOT%%/tests/perf/modalg/bug30176
+%%OCCROOT%%/tests/perf/modalg/bug30489
+%%OCCROOT%%/tests/perf/modalg/bug30670
%%OCCROOT%%/tests/perf/modalg/bug452_1
%%OCCROOT%%/tests/perf/modalg/bug452_2
%%OCCROOT%%/tests/perf/modalg/bug452_3
@@ -15187,6 +15843,7 @@
%%OCCROOT%%/tests/perf/moddata/bug27048_1
%%OCCROOT%%/tests/perf/moddata/bug27048_2
%%OCCROOT%%/tests/perf/moddata/bug276
+%%OCCROOT%%/tests/perf/moddata/bug30435
%%OCCROOT%%/tests/perf/moddata/bug36
%%OCCROOT%%/tests/perf/moddata/bug368
%%OCCROOT%%/tests/perf/moddata/bug453_3
@@ -16695,6 +17352,7 @@
%%OCCROOT%%/tests/tools/dfbrowser/A6
%%OCCROOT%%/tests/tools/dfbrowser/A7
%%OCCROOT%%/tests/tools/dfbrowser/A8
+%%OCCROOT%%/tests/tools/dfbrowser/A9
%%OCCROOT%%/tests/tools/end
%%OCCROOT%%/tests/tools/grids.list
%%OCCROOT%%/tests/tools/parse.rules
@@ -17113,6 +17771,9 @@
%%OCCROOT%%/tests/v3d/face/G4
%%OCCROOT%%/tests/v3d/face/begin
%%OCCROOT%%/tests/v3d/glsl/alpha_mask
+%%OCCROOT%%/tests/v3d/glsl/bndbox1
+%%OCCROOT%%/tests/v3d/glsl/clipping1
+%%OCCROOT%%/tests/v3d/glsl/cubemap
%%OCCROOT%%/tests/v3d/glsl/culldist
%%OCCROOT%%/tests/v3d/glsl/cullsize
%%OCCROOT%%/tests/v3d/glsl/depthprepass
@@ -17124,8 +17785,12 @@
%%OCCROOT%%/tests/v3d/glsl/gouraud_dir2
%%OCCROOT%%/tests/v3d/glsl/gouraud_pos1
%%OCCROOT%%/tests/v3d/glsl/gouraud_spot1
+%%OCCROOT%%/tests/v3d/glsl/interior1
+%%OCCROOT%%/tests/v3d/glsl/interior2
%%OCCROOT%%/tests/v3d/glsl/light_off
%%OCCROOT%%/tests/v3d/glsl/msaa
+%%OCCROOT%%/tests/v3d/glsl/outline1
+%%OCCROOT%%/tests/v3d/glsl/outline2
%%OCCROOT%%/tests/v3d/glsl/phong_box
%%OCCROOT%%/tests/v3d/glsl/phong_couple
%%OCCROOT%%/tests/v3d/glsl/phong_dir1
@@ -17160,17 +17825,23 @@
%%OCCROOT%%/tests/v3d/ivtk/parse.rules
%%OCCROOT%%/tests/v3d/ivtk/select
%%OCCROOT%%/tests/v3d/ivtk/selection_mode
+%%OCCROOT%%/tests/v3d/manipulator/disable_parts
+%%OCCROOT%%/tests/v3d/manipulator/dragg
%%OCCROOT%%/tests/v3d/manipulator/rotate
%%OCCROOT%%/tests/v3d/manipulator/rotate2
%%OCCROOT%%/tests/v3d/manipulator/scale
%%OCCROOT%%/tests/v3d/manipulator/translate
+%%OCCROOT%%/tests/v3d/manipulator/translate2
+%%OCCROOT%%/tests/v3d/manipulator/view_affinity
%%OCCROOT%%/tests/v3d/manipulator/zoom_persistence
%%OCCROOT%%/tests/v3d/materials/bug24855
-%%OCCROOT%%/tests/v3d/materials/bug24872_1
-%%OCCROOT%%/tests/v3d/materials/bug24872_2
%%OCCROOT%%/tests/v3d/materials/bug27617
%%OCCROOT%%/tests/v3d/materials/bug27818_1
%%OCCROOT%%/tests/v3d/materials/bug27818_2
+%%OCCROOT%%/tests/v3d/materials/colors
+%%OCCROOT%%/tests/v3d/materials/materials
+%%OCCROOT%%/tests/v3d/materials/phong1
+%%OCCROOT%%/tests/v3d/materials/raytrace1
%%OCCROOT%%/tests/v3d/mesh/A1
%%OCCROOT%%/tests/v3d/mesh/A2
%%OCCROOT%%/tests/v3d/mesh/A3
@@ -17189,6 +17860,7 @@
%%OCCROOT%%/tests/v3d/mesh/B8
%%OCCROOT%%/tests/v3d/mesh/begin
%%OCCROOT%%/tests/v3d/parse.rules
+%%OCCROOT%%/tests/v3d/point_cloud/sensitivebox
%%OCCROOT%%/tests/v3d/point_cloud/sphere
%%OCCROOT%%/tests/v3d/raytrace/begin
%%OCCROOT%%/tests/v3d/raytrace/bug24130
@@ -17643,6 +18315,10 @@
%%OCCROOT%%/tests/v3d/vertex_wire/K3
%%OCCROOT%%/tests/v3d/vertex_wire/K4
%%OCCROOT%%/tests/v3d/vertex_wire/begin
+%%OCCROOT%%/tests/v3d/viewcube/default
+%%OCCROOT%%/tests/v3d/viewcube/largedist
+%%OCCROOT%%/tests/v3d/viewcube/style
+%%OCCROOT%%/tests/v3d/viewcube/view
%%OCCROOT%%/tests/v3d/wire/A1
%%OCCROOT%%/tests/v3d/wire/A2
%%OCCROOT%%/tests/v3d/wire/A3
@@ -18370,6 +19046,7 @@ include/OpenCASCADE/AIS_AttributeFilter.lxx
include/OpenCASCADE/AIS_Axis.hxx
include/OpenCASCADE/AIS_BadEdgeFilter.hxx
include/OpenCASCADE/AIS_C0RegularityFilter.hxx
+include/OpenCASCADE/AIS_CameraFrustum.hxx
include/OpenCASCADE/AIS_Chamf2dDimension.hxx
include/OpenCASCADE/AIS_Chamf2dDimension.lxx
include/OpenCASCADE/AIS_Chamf3dDimension.hxx
@@ -18382,11 +19059,9 @@ include/OpenCASCADE/AIS_ColoredShape.hxx
include/OpenCASCADE/AIS_ConcentricRelation.hxx
include/OpenCASCADE/AIS_ConnectStatus.hxx
include/OpenCASCADE/AIS_ConnectedInteractive.hxx
-include/OpenCASCADE/AIS_DataMapIteratorOfDataMapOfILC.hxx
include/OpenCASCADE/AIS_DataMapIteratorOfDataMapOfIOStatus.hxx
include/OpenCASCADE/AIS_DataMapIteratorOfDataMapOfSelStat.hxx
include/OpenCASCADE/AIS_DataMapIteratorOfDataMapofIntegerListOfinteractive.hxx
-include/OpenCASCADE/AIS_DataMapOfILC.hxx
include/OpenCASCADE/AIS_DataMapOfIOStatus.hxx
include/OpenCASCADE/AIS_DataMapOfSelStat.hxx
include/OpenCASCADE/AIS_DataMapOfShapeDrawer.hxx
@@ -18398,6 +19073,7 @@ include/OpenCASCADE/AIS_DimensionSelectionMode.hxx
include/OpenCASCADE/AIS_DisplayMode.hxx
include/OpenCASCADE/AIS_DisplaySpecialSymbol.hxx
include/OpenCASCADE/AIS_DisplayStatus.hxx
+include/OpenCASCADE/AIS_DragAction.hxx
include/OpenCASCADE/AIS_EllipseRadiusDimension.hxx
include/OpenCASCADE/AIS_EqualDistanceRelation.hxx
include/OpenCASCADE/AIS_EqualDistanceRelation.lxx
@@ -18422,22 +19098,21 @@ include/OpenCASCADE/AIS_LengthDimension.hxx
include/OpenCASCADE/AIS_Line.hxx
include/OpenCASCADE/AIS_ListIteratorOfListOfInteractive.hxx
include/OpenCASCADE/AIS_ListOfInteractive.hxx
-include/OpenCASCADE/AIS_LocalContext.hxx
-include/OpenCASCADE/AIS_LocalContext.lxx
-include/OpenCASCADE/AIS_LocalStatus.hxx
-include/OpenCASCADE/AIS_LocalStatus.lxx
include/OpenCASCADE/AIS_Manipulator.hxx
include/OpenCASCADE/AIS_ManipulatorMode.hxx
include/OpenCASCADE/AIS_ManipulatorOwner.hxx
include/OpenCASCADE/AIS_MapIteratorOfMapOfInteractive.hxx
include/OpenCASCADE/AIS_MapOfInteractive.hxx
include/OpenCASCADE/AIS_MaxRadiusDimension.hxx
+include/OpenCASCADE/AIS_MediaPlayer.hxx
include/OpenCASCADE/AIS_MidPointRelation.hxx
include/OpenCASCADE/AIS_MidPointRelation.lxx
include/OpenCASCADE/AIS_MinRadiusDimension.hxx
+include/OpenCASCADE/AIS_MouseGesture.hxx
include/OpenCASCADE/AIS_MultipleConnectedInteractive.hxx
include/OpenCASCADE/AIS_MultipleConnectedInteractive.lxx
include/OpenCASCADE/AIS_NListOfEntityOwner.hxx
+include/OpenCASCADE/AIS_NavigationMode.hxx
include/OpenCASCADE/AIS_OffsetDimension.hxx
include/OpenCASCADE/AIS_OffsetDimension.lxx
include/OpenCASCADE/AIS_ParallelRelation.hxx
@@ -18449,6 +19124,7 @@ include/OpenCASCADE/AIS_Point.hxx
include/OpenCASCADE/AIS_PointCloud.hxx
include/OpenCASCADE/AIS_RadiusDimension.hxx
include/OpenCASCADE/AIS_Relation.hxx
+include/OpenCASCADE/AIS_RotationMode.hxx
include/OpenCASCADE/AIS_RubberBand.hxx
include/OpenCASCADE/AIS_SelectStatus.hxx
include/OpenCASCADE/AIS_Selection.hxx
@@ -18477,10 +19153,13 @@ include/OpenCASCADE/AIS_TypeOfAxis.hxx
include/OpenCASCADE/AIS_TypeOfDist.hxx
include/OpenCASCADE/AIS_TypeOfIso.hxx
include/OpenCASCADE/AIS_TypeOfPlane.hxx
+include/OpenCASCADE/AIS_ViewController.hxx
+include/OpenCASCADE/AIS_ViewCube.hxx
+include/OpenCASCADE/AIS_ViewInputBuffer.hxx
+include/OpenCASCADE/AIS_WalkDelta.hxx
include/OpenCASCADE/APIHeaderSection_EditHeader.hxx
include/OpenCASCADE/APIHeaderSection_MakeHeader.hxx
include/OpenCASCADE/Adaptor2d_Curve2d.hxx
-include/OpenCASCADE/Adaptor2d_Curve2dPtr.hxx
include/OpenCASCADE/Adaptor2d_GenHCurve2d.gxx
include/OpenCASCADE/Adaptor2d_GenHCurve2d.lxx
include/OpenCASCADE/Adaptor2d_HCurve2d.hxx
@@ -18666,7 +19345,10 @@ include/OpenCASCADE/Aspect_NeutralWindow.hxx
include/OpenCASCADE/Aspect_PolygonOffsetMode.hxx
include/OpenCASCADE/Aspect_RectangularGrid.hxx
include/OpenCASCADE/Aspect_RenderingContext.hxx
+include/OpenCASCADE/Aspect_ScrollDelta.hxx
include/OpenCASCADE/Aspect_SequenceOfColor.hxx
+include/OpenCASCADE/Aspect_Touch.hxx
+include/OpenCASCADE/Aspect_TouchMap.hxx
include/OpenCASCADE/Aspect_TypeOfColorScaleData.hxx
include/OpenCASCADE/Aspect_TypeOfColorScaleOrientation.hxx
include/OpenCASCADE/Aspect_TypeOfColorScalePosition.hxx
@@ -18680,6 +19362,9 @@ include/OpenCASCADE/Aspect_TypeOfResize.hxx
include/OpenCASCADE/Aspect_TypeOfStyleText.hxx
include/OpenCASCADE/Aspect_TypeOfTriedronPosition.hxx
include/OpenCASCADE/Aspect_Units.hxx
+include/OpenCASCADE/Aspect_VKey.hxx
+include/OpenCASCADE/Aspect_VKeyFlags.hxx
+include/OpenCASCADE/Aspect_VKeySet.hxx
include/OpenCASCADE/Aspect_WidthOfLine.hxx
include/OpenCASCADE/Aspect_Window.hxx
include/OpenCASCADE/Aspect_WindowDefinitionError.hxx
@@ -18702,6 +19387,8 @@ include/OpenCASCADE/BOPAlgo_CheckStatus.hxx
include/OpenCASCADE/BOPAlgo_CheckerSI.hxx
include/OpenCASCADE/BOPAlgo_GlueEnum.hxx
include/OpenCASCADE/BOPAlgo_ListOfCheckResult.hxx
+include/OpenCASCADE/BOPAlgo_MakeConnected.hxx
+include/OpenCASCADE/BOPAlgo_MakePeriodic.hxx
include/OpenCASCADE/BOPAlgo_MakerVolume.hxx
include/OpenCASCADE/BOPAlgo_MakerVolume.lxx
include/OpenCASCADE/BOPAlgo_Operation.hxx
@@ -18794,14 +19481,15 @@ include/OpenCASCADE/BOPTest_Objects.hxx
include/OpenCASCADE/BOPTools_AlgoTools.hxx
include/OpenCASCADE/BOPTools_AlgoTools2D.hxx
include/OpenCASCADE/BOPTools_AlgoTools3D.hxx
-include/OpenCASCADE/BOPTools_BoxBndTree.hxx
include/OpenCASCADE/BOPTools_BoxSelector.hxx
+include/OpenCASCADE/BOPTools_BoxTree.hxx
include/OpenCASCADE/BOPTools_ConnexityBlock.hxx
include/OpenCASCADE/BOPTools_CoupleOfShape.hxx
include/OpenCASCADE/BOPTools_IndexedDataMapOfSetShape.hxx
include/OpenCASCADE/BOPTools_ListOfConnexityBlock.hxx
include/OpenCASCADE/BOPTools_ListOfCoupleOfShape.hxx
include/OpenCASCADE/BOPTools_MapOfSet.hxx
+include/OpenCASCADE/BOPTools_PairSelector.hxx
include/OpenCASCADE/BOPTools_Parallel.hxx
include/OpenCASCADE/BOPTools_Set.hxx
include/OpenCASCADE/BOPTools_SetMapHasher.hxx
@@ -18830,23 +19518,15 @@ include/OpenCASCADE/BRepAlgoAPI_Section.hxx
include/OpenCASCADE/BRepAlgoAPI_Splitter.hxx
include/OpenCASCADE/BRepAlgo_AsDes.hxx
include/OpenCASCADE/BRepAlgo_BooleanOperation.hxx
-include/OpenCASCADE/BRepAlgo_BooleanOperations.hxx
include/OpenCASCADE/BRepAlgo_CheckStatus.hxx
include/OpenCASCADE/BRepAlgo_Common.hxx
include/OpenCASCADE/BRepAlgo_Cut.hxx
-include/OpenCASCADE/BRepAlgo_DSAccess.hxx
-include/OpenCASCADE/BRepAlgo_DataMapIteratorOfDataMapOfShapeBoolean.hxx
-include/OpenCASCADE/BRepAlgo_DataMapIteratorOfDataMapOfShapeInterference.hxx
-include/OpenCASCADE/BRepAlgo_DataMapOfShapeBoolean.hxx
-include/OpenCASCADE/BRepAlgo_DataMapOfShapeInterference.hxx
-include/OpenCASCADE/BRepAlgo_EdgeConnector.hxx
include/OpenCASCADE/BRepAlgo_FaceRestrictor.hxx
include/OpenCASCADE/BRepAlgo_Fuse.hxx
include/OpenCASCADE/BRepAlgo_Image.hxx
include/OpenCASCADE/BRepAlgo_Loop.hxx
include/OpenCASCADE/BRepAlgo_NormalProjection.hxx
include/OpenCASCADE/BRepAlgo_Section.hxx
-include/OpenCASCADE/BRepAlgo_SequenceOfSequenceOfInteger.hxx
include/OpenCASCADE/BRepAlgo_Tool.hxx
include/OpenCASCADE/BRepApprox_Approx.hxx
include/OpenCASCADE/BRepApprox_ApproxLine.hxx
@@ -18893,6 +19573,10 @@ include/OpenCASCADE/BRepBlend_ChamfInv.hxx
include/OpenCASCADE/BRepBlend_Chamfer.hxx
include/OpenCASCADE/BRepBlend_ConstRad.hxx
include/OpenCASCADE/BRepBlend_ConstRadInv.hxx
+include/OpenCASCADE/BRepBlend_ConstThroat.hxx
+include/OpenCASCADE/BRepBlend_ConstThroatInv.hxx
+include/OpenCASCADE/BRepBlend_ConstThroatWithPenetration.hxx
+include/OpenCASCADE/BRepBlend_ConstThroatWithPenetrationInv.hxx
include/OpenCASCADE/BRepBlend_CurvPointRadInv.hxx
include/OpenCASCADE/BRepBlend_EvolRad.hxx
include/OpenCASCADE/BRepBlend_EvolRadInv.hxx
@@ -19038,6 +19722,7 @@ include/OpenCASCADE/BRepFeat_Status.hxx
include/OpenCASCADE/BRepFeat_StatusError.hxx
include/OpenCASCADE/BRepFill.hxx
include/OpenCASCADE/BRepFill_ACRLaw.hxx
+include/OpenCASCADE/BRepFill_AdvancedEvolved.hxx
include/OpenCASCADE/BRepFill_ApproxSeewing.hxx
include/OpenCASCADE/BRepFill_CompatibleWires.hxx
include/OpenCASCADE/BRepFill_ComputeCLine.hxx
@@ -19104,6 +19789,8 @@ include/OpenCASCADE/BRepGProp_EdgeTool.hxx
include/OpenCASCADE/BRepGProp_Face.hxx
include/OpenCASCADE/BRepGProp_Face.lxx
include/OpenCASCADE/BRepGProp_Gauss.hxx
+include/OpenCASCADE/BRepGProp_MeshCinert.hxx
+include/OpenCASCADE/BRepGProp_MeshProps.hxx
include/OpenCASCADE/BRepGProp_Sinert.hxx
include/OpenCASCADE/BRepGProp_TFunction.hxx
include/OpenCASCADE/BRepGProp_TFunction.lxx
@@ -19143,41 +19830,67 @@ include/OpenCASCADE/BRepMAT2d_DataMapOfBasicEltShape.hxx
include/OpenCASCADE/BRepMAT2d_DataMapOfShapeSequenceOfBasicElt.hxx
include/OpenCASCADE/BRepMAT2d_Explorer.hxx
include/OpenCASCADE/BRepMAT2d_LinkTopoBilo.hxx
-include/OpenCASCADE/BRepMesh.hxx
+include/OpenCASCADE/BRepMeshData_Curve.hxx
+include/OpenCASCADE/BRepMeshData_Edge.hxx
+include/OpenCASCADE/BRepMeshData_Face.hxx
+include/OpenCASCADE/BRepMeshData_Model.hxx
+include/OpenCASCADE/BRepMeshData_PCurve.hxx
+include/OpenCASCADE/BRepMeshData_Wire.hxx
+include/OpenCASCADE/BRepMesh_BaseMeshAlgo.hxx
+include/OpenCASCADE/BRepMesh_BoundaryParamsRangeSplitter.hxx
include/OpenCASCADE/BRepMesh_Circle.hxx
include/OpenCASCADE/BRepMesh_CircleInspector.hxx
include/OpenCASCADE/BRepMesh_CircleTool.hxx
include/OpenCASCADE/BRepMesh_Classifier.hxx
+include/OpenCASCADE/BRepMesh_ConeRangeSplitter.hxx
+include/OpenCASCADE/BRepMesh_ConstrainedBaseMeshAlgo.hxx
+include/OpenCASCADE/BRepMesh_Context.hxx
+include/OpenCASCADE/BRepMesh_CurveTessellator.hxx
+include/OpenCASCADE/BRepMesh_CustomBaseMeshAlgo.hxx
+include/OpenCASCADE/BRepMesh_CustomDelaunayBaseMeshAlgo.hxx
+include/OpenCASCADE/BRepMesh_CylinderRangeSplitter.hxx
include/OpenCASCADE/BRepMesh_DataStructureOfDelaun.hxx
+include/OpenCASCADE/BRepMesh_DefaultRangeSplitter.hxx
+include/OpenCASCADE/BRepMesh_Deflection.hxx
include/OpenCASCADE/BRepMesh_DegreeOfFreedom.hxx
include/OpenCASCADE/BRepMesh_Delaun.hxx
+include/OpenCASCADE/BRepMesh_DelaunayBaseMeshAlgo.hxx
+include/OpenCASCADE/BRepMesh_DelaunayDeflectionControlMeshAlgo.hxx
+include/OpenCASCADE/BRepMesh_DelaunayNodeInsertionMeshAlgo.hxx
include/OpenCASCADE/BRepMesh_DiscretFactory.hxx
include/OpenCASCADE/BRepMesh_DiscretRoot.hxx
include/OpenCASCADE/BRepMesh_Edge.hxx
+include/OpenCASCADE/BRepMesh_EdgeDiscret.hxx
include/OpenCASCADE/BRepMesh_EdgeParameterProvider.hxx
include/OpenCASCADE/BRepMesh_EdgeTessellationExtractor.hxx
-include/OpenCASCADE/BRepMesh_EdgeTessellator.hxx
-include/OpenCASCADE/BRepMesh_FaceAttribute.hxx
+include/OpenCASCADE/BRepMesh_FaceChecker.hxx
+include/OpenCASCADE/BRepMesh_FaceDiscret.hxx
include/OpenCASCADE/BRepMesh_FactoryError.hxx
include/OpenCASCADE/BRepMesh_FastDiscret.hxx
-include/OpenCASCADE/BRepMesh_FastDiscretFace.hxx
include/OpenCASCADE/BRepMesh_GeomTool.hxx
-include/OpenCASCADE/BRepMesh_IEdgeTool.hxx
include/OpenCASCADE/BRepMesh_IncrementalMesh.hxx
+include/OpenCASCADE/BRepMesh_MeshAlgoFactory.hxx
+include/OpenCASCADE/BRepMesh_MeshTool.hxx
+include/OpenCASCADE/BRepMesh_ModelBuilder.hxx
+include/OpenCASCADE/BRepMesh_ModelHealer.hxx
+include/OpenCASCADE/BRepMesh_ModelPostProcessor.hxx
+include/OpenCASCADE/BRepMesh_ModelPreProcessor.hxx
+include/OpenCASCADE/BRepMesh_NURBSRangeSplitter.hxx
+include/OpenCASCADE/BRepMesh_NodeInsertionMeshAlgo.hxx
include/OpenCASCADE/BRepMesh_OrientedEdge.hxx
include/OpenCASCADE/BRepMesh_PairOfIndex.hxx
-include/OpenCASCADE/BRepMesh_PairOfPolygon.hxx
include/OpenCASCADE/BRepMesh_PluginEntryType.hxx
include/OpenCASCADE/BRepMesh_PluginMacro.hxx
include/OpenCASCADE/BRepMesh_SelectorOfDataStructureOfDelaun.hxx
include/OpenCASCADE/BRepMesh_ShapeTool.hxx
-include/OpenCASCADE/BRepMesh_Status.hxx
+include/OpenCASCADE/BRepMesh_ShapeVisitor.hxx
+include/OpenCASCADE/BRepMesh_SphereRangeSplitter.hxx
+include/OpenCASCADE/BRepMesh_TorusRangeSplitter.hxx
include/OpenCASCADE/BRepMesh_Triangle.hxx
+include/OpenCASCADE/BRepMesh_UVParamRangeSplitter.hxx
include/OpenCASCADE/BRepMesh_Vertex.hxx
include/OpenCASCADE/BRepMesh_VertexInspector.hxx
include/OpenCASCADE/BRepMesh_VertexTool.hxx
-include/OpenCASCADE/BRepMesh_WireChecker.hxx
-include/OpenCASCADE/BRepMesh_WireInterferenceChecker.hxx
include/OpenCASCADE/BRepOffset.hxx
include/OpenCASCADE/BRepOffsetAPI_DraftAngle.hxx
include/OpenCASCADE/BRepOffsetAPI_FindContigousEdges.hxx
@@ -19324,6 +20037,7 @@ include/OpenCASCADE/BRep_Tool.hxx
include/OpenCASCADE/BSplCLib.hxx
include/OpenCASCADE/BSplCLib.lxx
include/OpenCASCADE/BSplCLib_Cache.hxx
+include/OpenCASCADE/BSplCLib_CacheParams.hxx
include/OpenCASCADE/BSplCLib_CurveComputation.gxx
include/OpenCASCADE/BSplCLib_EvaluatorFunction.hxx
include/OpenCASCADE/BSplCLib_KnotDistribution.hxx
@@ -19335,16 +20049,20 @@ include/OpenCASCADE/BSplSLib_EvaluatorFunction.hxx
include/OpenCASCADE/BVH_BinaryTree.hxx
include/OpenCASCADE/BVH_BinnedBuilder.hxx
include/OpenCASCADE/BVH_Box.hxx
+include/OpenCASCADE/BVH_BoxSet.hxx
include/OpenCASCADE/BVH_BuildQueue.hxx
include/OpenCASCADE/BVH_BuildThread.hxx
include/OpenCASCADE/BVH_Builder.hxx
include/OpenCASCADE/BVH_Constants.hxx
+include/OpenCASCADE/BVH_Distance.hxx
include/OpenCASCADE/BVH_DistanceField.hxx
include/OpenCASCADE/BVH_DistanceField.lxx
include/OpenCASCADE/BVH_Geometry.hxx
+include/OpenCASCADE/BVH_IndexedBoxSet.hxx
include/OpenCASCADE/BVH_LinearBuilder.hxx
include/OpenCASCADE/BVH_Object.hxx
include/OpenCASCADE/BVH_ObjectSet.hxx
+include/OpenCASCADE/BVH_PairDistance.hxx
include/OpenCASCADE/BVH_PrimitiveSet.hxx
include/OpenCASCADE/BVH_PrimitiveSet3d.hxx
include/OpenCASCADE/BVH_Properties.hxx
@@ -19356,6 +20074,9 @@ include/OpenCASCADE/BVH_Set.hxx
include/OpenCASCADE/BVH_Sorter.hxx
include/OpenCASCADE/BVH_SpatialMedianBuilder.hxx
include/OpenCASCADE/BVH_SweepPlaneBuilder.hxx
+include/OpenCASCADE/BVH_Tools.hxx
+include/OpenCASCADE/BVH_Traverse.hxx
+include/OpenCASCADE/BVH_Traverse.lxx
include/OpenCASCADE/BVH_Tree.hxx
include/OpenCASCADE/BVH_Triangulation.hxx
include/OpenCASCADE/BVH_Types.hxx
@@ -19512,9 +20233,15 @@ include/OpenCASCADE/BlendFunc_ChamfInv.hxx
include/OpenCASCADE/BlendFunc_Chamfer.hxx
include/OpenCASCADE/BlendFunc_ConstRad.hxx
include/OpenCASCADE/BlendFunc_ConstRadInv.hxx
+include/OpenCASCADE/BlendFunc_ConstThroat.hxx
+include/OpenCASCADE/BlendFunc_ConstThroatInv.hxx
+include/OpenCASCADE/BlendFunc_ConstThroatWithPenetration.hxx
+include/OpenCASCADE/BlendFunc_ConstThroatWithPenetrationInv.hxx
include/OpenCASCADE/BlendFunc_Corde.hxx
include/OpenCASCADE/BlendFunc_EvolRad.hxx
include/OpenCASCADE/BlendFunc_EvolRadInv.hxx
+include/OpenCASCADE/BlendFunc_GenChamfInv.hxx
+include/OpenCASCADE/BlendFunc_GenChamfer.hxx
include/OpenCASCADE/BlendFunc_Ruled.hxx
include/OpenCASCADE/BlendFunc_RuledInv.hxx
include/OpenCASCADE/BlendFunc_SectionShape.hxx
@@ -19573,6 +20300,7 @@ include/OpenCASCADE/Bnd_Range.hxx
include/OpenCASCADE/Bnd_SeqOfBox.hxx
include/OpenCASCADE/Bnd_Sphere.hxx
include/OpenCASCADE/Bnd_Sphere.lxx
+include/OpenCASCADE/Bnd_Tools.hxx
include/OpenCASCADE/CDF.hxx
include/OpenCASCADE/CDF_Application.hxx
include/OpenCASCADE/CDF_Directory.hxx
@@ -19607,7 +20335,6 @@ include/OpenCASCADE/CDM_NamesDirectory.hxx
include/OpenCASCADE/CDM_PresentationDirectory.hxx
include/OpenCASCADE/CDM_Reference.hxx
include/OpenCASCADE/CDM_ReferenceIterator.hxx
-include/OpenCASCADE/COMMANDWINDOW.h
include/OpenCASCADE/CPnts_AbscissaPoint.hxx
include/OpenCASCADE/CPnts_AbscissaPoint.lxx
include/OpenCASCADE/CPnts_MyGaussFunction.hxx
@@ -19638,10 +20365,10 @@ include/OpenCASCADE/ChFi3d_FilBuilder.hxx
include/OpenCASCADE/ChFi3d_FilletShape.hxx
include/OpenCASCADE/ChFi3d_SearchSing.hxx
include/OpenCASCADE/ChFiDS_ChamfMethod.hxx
+include/OpenCASCADE/ChFiDS_ChamfMode.hxx
include/OpenCASCADE/ChFiDS_ChamfSpine.hxx
include/OpenCASCADE/ChFiDS_CircSection.hxx
include/OpenCASCADE/ChFiDS_CommonPoint.hxx
-include/OpenCASCADE/ChFiDS_CommonPoint.lxx
include/OpenCASCADE/ChFiDS_ElSpine.hxx
include/OpenCASCADE/ChFiDS_ErrorStatus.hxx
include/OpenCASCADE/ChFiDS_FaceInterference.hxx
@@ -19690,6 +20417,7 @@ include/OpenCASCADE/ChFiKPart_DataMapIteratorOfRstMap.hxx
include/OpenCASCADE/ChFiKPart_RstMap.hxx
include/OpenCASCADE/Cocoa_LocalPool.hxx
include/OpenCASCADE/Cocoa_Window.hxx
+include/OpenCASCADE/CommandWindow.h
include/OpenCASCADE/Contap_ArcFunction.hxx
include/OpenCASCADE/Contap_ArcFunction.lxx
include/OpenCASCADE/Contap_ContAna.hxx
@@ -20095,6 +20823,7 @@ include/OpenCASCADE/FEmTool_ProfileMatrix.hxx
include/OpenCASCADE/FEmTool_SeqOfLinConstr.hxx
include/OpenCASCADE/FEmTool_SparseMatrix.hxx
include/OpenCASCADE/FSD_BStream.hxx
+include/OpenCASCADE/FSD_Base64Decoder.hxx
include/OpenCASCADE/FSD_BinaryFile.hxx
include/OpenCASCADE/FSD_CmpFile.hxx
include/OpenCASCADE/FSD_FStream.hxx
@@ -20133,8 +20862,10 @@ include/OpenCASCADE/Font_FontMgr.hxx
include/OpenCASCADE/Font_NListOfSystemFont.hxx
include/OpenCASCADE/Font_NameOfFont.hxx
include/OpenCASCADE/Font_Rect.hxx
+include/OpenCASCADE/Font_StrictLevel.hxx
include/OpenCASCADE/Font_SystemFont.hxx
include/OpenCASCADE/Font_TextFormatter.hxx
+include/OpenCASCADE/Font_UnicodeSubset.hxx
include/OpenCASCADE/GCE2d_MakeArcOfCircle.hxx
include/OpenCASCADE/GCE2d_MakeArcOfEllipse.hxx
include/OpenCASCADE/GCE2d_MakeArcOfHyperbola.hxx
@@ -20625,6 +21356,7 @@ include/OpenCASCADE/GeometryTest.hxx
include/OpenCASCADE/GeometryTest_DrawableQualifiedCurve2d.hxx
include/OpenCASCADE/GeomliteTest.hxx
include/OpenCASCADE/Graphic3d_AlphaMode.hxx
+include/OpenCASCADE/Graphic3d_ArrayFlags.hxx
include/OpenCASCADE/Graphic3d_ArrayOfPoints.hxx
include/OpenCASCADE/Graphic3d_ArrayOfPolygons.hxx
include/OpenCASCADE/Graphic3d_ArrayOfPolylines.hxx
@@ -20639,14 +21371,18 @@ include/OpenCASCADE/Graphic3d_AspectFillArea3d.hxx
include/OpenCASCADE/Graphic3d_AspectLine3d.hxx
include/OpenCASCADE/Graphic3d_AspectMarker3d.hxx
include/OpenCASCADE/Graphic3d_AspectText3d.hxx
-include/OpenCASCADE/Graphic3d_AspectTextDefinitionError.hxx
+include/OpenCASCADE/Graphic3d_Aspects.hxx
+include/OpenCASCADE/Graphic3d_AttribBuffer.hxx
include/OpenCASCADE/Graphic3d_BSDF.hxx
include/OpenCASCADE/Graphic3d_BndBox3d.hxx
include/OpenCASCADE/Graphic3d_BndBox4d.hxx
include/OpenCASCADE/Graphic3d_BndBox4f.hxx
include/OpenCASCADE/Graphic3d_BoundBuffer.hxx
include/OpenCASCADE/Graphic3d_Buffer.hxx
+include/OpenCASCADE/Graphic3d_BufferRange.hxx
include/OpenCASCADE/Graphic3d_BufferType.hxx
+include/OpenCASCADE/Graphic3d_BvhCStructureSet.hxx
+include/OpenCASCADE/Graphic3d_BvhCStructureSetTrsfPers.hxx
include/OpenCASCADE/Graphic3d_CLight.hxx
include/OpenCASCADE/Graphic3d_CStructure.hxx
include/OpenCASCADE/Graphic3d_CTexture.hxx
@@ -20655,9 +21391,18 @@ include/OpenCASCADE/Graphic3d_Camera.hxx
include/OpenCASCADE/Graphic3d_CameraTile.hxx
include/OpenCASCADE/Graphic3d_CappingFlags.hxx
include/OpenCASCADE/Graphic3d_ClipPlane.hxx
+include/OpenCASCADE/Graphic3d_CubeMap.hxx
+include/OpenCASCADE/Graphic3d_CubeMapOrder.hxx
+include/OpenCASCADE/Graphic3d_CubeMapPacked.hxx
+include/OpenCASCADE/Graphic3d_CubeMapSeparate.hxx
+include/OpenCASCADE/Graphic3d_CubeMapSide.hxx
+include/OpenCASCADE/Graphic3d_CullingTool.hxx
include/OpenCASCADE/Graphic3d_DataStructureManager.hxx
include/OpenCASCADE/Graphic3d_DiagnosticInfo.hxx
-include/OpenCASCADE/Graphic3d_ExportFormat.hxx
+include/OpenCASCADE/Graphic3d_FrameStats.hxx
+include/OpenCASCADE/Graphic3d_FrameStatsCounter.hxx
+include/OpenCASCADE/Graphic3d_FrameStatsData.hxx
+include/OpenCASCADE/Graphic3d_FrameStatsTimer.hxx
include/OpenCASCADE/Graphic3d_GraduatedTrihedron.hxx
include/OpenCASCADE/Graphic3d_GraphicDriver.hxx
include/OpenCASCADE/Graphic3d_Group.hxx
@@ -20667,17 +21412,22 @@ include/OpenCASCADE/Graphic3d_HatchStyle.hxx
include/OpenCASCADE/Graphic3d_HighlightStyle.hxx
include/OpenCASCADE/Graphic3d_HorizontalTextAlignment.hxx
include/OpenCASCADE/Graphic3d_IndexBuffer.hxx
-include/OpenCASCADE/Graphic3d_IndexedMapOfAddress.hxx
+include/OpenCASCADE/Graphic3d_Layer.hxx
include/OpenCASCADE/Graphic3d_LevelOfTextureAnisotropy.hxx
include/OpenCASCADE/Graphic3d_LightSet.hxx
include/OpenCASCADE/Graphic3d_MapIteratorOfMapOfStructure.hxx
+include/OpenCASCADE/Graphic3d_MapOfAspectsToAspects.hxx
include/OpenCASCADE/Graphic3d_MapOfObject.hxx
include/OpenCASCADE/Graphic3d_MapOfStructure.hxx
+include/OpenCASCADE/Graphic3d_MapOfZLayerSettings.hxx
include/OpenCASCADE/Graphic3d_MarkerImage.hxx
include/OpenCASCADE/Graphic3d_Mat4.hxx
include/OpenCASCADE/Graphic3d_Mat4d.hxx
include/OpenCASCADE/Graphic3d_MaterialAspect.hxx
include/OpenCASCADE/Graphic3d_MaterialDefinitionError.hxx
+include/OpenCASCADE/Graphic3d_MediaTexture.hxx
+include/OpenCASCADE/Graphic3d_MediaTextureSet.hxx
+include/OpenCASCADE/Graphic3d_MutableIndexBuffer.hxx
include/OpenCASCADE/Graphic3d_NMapOfTransient.hxx
include/OpenCASCADE/Graphic3d_NameOfMaterial.hxx
include/OpenCASCADE/Graphic3d_NameOfTexture1D.hxx
@@ -20698,11 +21448,11 @@ include/OpenCASCADE/Graphic3d_ShaderObject.hxx
include/OpenCASCADE/Graphic3d_ShaderProgram.hxx
include/OpenCASCADE/Graphic3d_ShaderVariable.hxx
include/OpenCASCADE/Graphic3d_ShaderVariable.lxx
-include/OpenCASCADE/Graphic3d_SortType.hxx
include/OpenCASCADE/Graphic3d_StereoMode.hxx
include/OpenCASCADE/Graphic3d_Structure.hxx
include/OpenCASCADE/Graphic3d_StructureDefinitionError.hxx
include/OpenCASCADE/Graphic3d_StructureManager.hxx
+include/OpenCASCADE/Graphic3d_Text.hxx
include/OpenCASCADE/Graphic3d_TextPath.hxx
include/OpenCASCADE/Graphic3d_Texture1D.hxx
include/OpenCASCADE/Graphic3d_Texture1Dmanual.hxx
@@ -20917,7 +21667,6 @@ include/OpenCASCADE/HeaderSection.hxx
include/OpenCASCADE/HeaderSection_FileDescription.hxx
include/OpenCASCADE/HeaderSection_FileName.hxx
include/OpenCASCADE/HeaderSection_FileSchema.hxx
-include/OpenCASCADE/HeaderSection_HeaderRecognizer.hxx
include/OpenCASCADE/HeaderSection_Protocol.hxx
include/OpenCASCADE/Hermit.hxx
include/OpenCASCADE/IFGraph_AllConnected.hxx
@@ -21514,6 +22263,29 @@ include/OpenCASCADE/IGESToBRep_Reader.hxx
include/OpenCASCADE/IGESToBRep_ToolContainer.hxx
include/OpenCASCADE/IGESToBRep_TopoCurve.hxx
include/OpenCASCADE/IGESToBRep_TopoSurface.hxx
+include/OpenCASCADE/IMeshData_Curve.hxx
+include/OpenCASCADE/IMeshData_Edge.hxx
+include/OpenCASCADE/IMeshData_Face.hxx
+include/OpenCASCADE/IMeshData_Model.hxx
+include/OpenCASCADE/IMeshData_PCurve.hxx
+include/OpenCASCADE/IMeshData_ParametersList.hxx
+include/OpenCASCADE/IMeshData_ParametersListArrayAdaptor.hxx
+include/OpenCASCADE/IMeshData_Shape.hxx
+include/OpenCASCADE/IMeshData_Status.hxx
+include/OpenCASCADE/IMeshData_StatusOwner.hxx
+include/OpenCASCADE/IMeshData_TessellatedShape.hxx
+include/OpenCASCADE/IMeshData_Types.hxx
+include/OpenCASCADE/IMeshData_Wire.hxx
+include/OpenCASCADE/IMeshTools_Context.hxx
+include/OpenCASCADE/IMeshTools_CurveTessellator.hxx
+include/OpenCASCADE/IMeshTools_MeshAlgo.hxx
+include/OpenCASCADE/IMeshTools_MeshAlgoFactory.hxx
+include/OpenCASCADE/IMeshTools_MeshBuilder.hxx
+include/OpenCASCADE/IMeshTools_ModelAlgo.hxx
+include/OpenCASCADE/IMeshTools_ModelBuilder.hxx
+include/OpenCASCADE/IMeshTools_Parameters.hxx
+include/OpenCASCADE/IMeshTools_ShapeExplorer.hxx
+include/OpenCASCADE/IMeshTools_ShapeVisitor.hxx
include/OpenCASCADE/IVtkDraw.hxx
include/OpenCASCADE/IVtkDraw_HighlightAndSelectionPipeline.hxx
include/OpenCASCADE/IVtkDraw_Interactor.hxx
@@ -21543,6 +22315,8 @@ include/OpenCASCADE/Image_Diff.hxx
include/OpenCASCADE/Image_Format.hxx
include/OpenCASCADE/Image_PixMap.hxx
include/OpenCASCADE/Image_PixMapData.hxx
+include/OpenCASCADE/Image_PixMapTypedData.hxx
+include/OpenCASCADE/Image_Texture.hxx
include/OpenCASCADE/Image_VideoRecorder.hxx
include/OpenCASCADE/IntAna2d_AnaIntersection.hxx
include/OpenCASCADE/IntAna2d_AnaIntersection.lxx
@@ -22046,7 +22820,6 @@ include/OpenCASCADE/LocalAnalysis.hxx
include/OpenCASCADE/LocalAnalysis_CurveContinuity.hxx
include/OpenCASCADE/LocalAnalysis_StatusErrorType.hxx
include/OpenCASCADE/LocalAnalysis_SurfaceContinuity.hxx
-include/OpenCASCADE/MAINWINDOW.h
include/OpenCASCADE/MAT2d_Array2OfConnexion.hxx
include/OpenCASCADE/MAT2d_BiInt.hxx
include/OpenCASCADE/MAT2d_Circuit.hxx
@@ -22101,9 +22874,18 @@ include/OpenCASCADE/MAT_TListNodeOfListOfBisector.hxx
include/OpenCASCADE/MAT_TListNodeOfListOfEdge.hxx
include/OpenCASCADE/MAT_Zone.hxx
include/OpenCASCADE/MMgt_TShared.hxx
+include/OpenCASCADE/MainWindow.h
+include/OpenCASCADE/Media_BufferPool.hxx
+include/OpenCASCADE/Media_CodecContext.hxx
+include/OpenCASCADE/Media_FormatContext.hxx
+include/OpenCASCADE/Media_Frame.hxx
+include/OpenCASCADE/Media_IFrameQueue.hxx
+include/OpenCASCADE/Media_Packet.hxx
+include/OpenCASCADE/Media_PlayerContext.hxx
+include/OpenCASCADE/Media_Scaler.hxx
+include/OpenCASCADE/Media_Timer.hxx
include/OpenCASCADE/MeshTest.hxx
include/OpenCASCADE/MeshTest_CheckTopology.hxx
-include/OpenCASCADE/MeshTest_DrawableMesh.hxx
include/OpenCASCADE/MeshVS_Array1OfSequenceOfInteger.hxx
include/OpenCASCADE/MeshVS_Buffer.hxx
include/OpenCASCADE/MeshVS_BuilderPriority.hxx
@@ -22362,10 +23144,12 @@ include/OpenCASCADE/OSD_SIGSEGV.hxx
include/OpenCASCADE/OSD_SIGSYS.hxx
include/OpenCASCADE/OSD_SharedLibrary.hxx
include/OpenCASCADE/OSD_Signal.hxx
+include/OpenCASCADE/OSD_SignalMode.hxx
include/OpenCASCADE/OSD_SingleProtection.hxx
include/OpenCASCADE/OSD_SysType.hxx
include/OpenCASCADE/OSD_Thread.hxx
include/OpenCASCADE/OSD_ThreadFunction.hxx
+include/OpenCASCADE/OSD_ThreadPool.hxx
include/OpenCASCADE/OSD_Timer.hxx
include/OpenCASCADE/OSD_WNT.hxx
include/OpenCASCADE/OSD_WhoAmI.hxx
@@ -22375,18 +23159,16 @@ include/OpenCASCADE/OpenGl_ArbIns.hxx
include/OpenCASCADE/OpenGl_ArbSamplerObject.hxx
include/OpenCASCADE/OpenGl_ArbTBO.hxx
include/OpenCASCADE/OpenGl_ArbTexBindless.hxx
-include/OpenCASCADE/OpenGl_AspectFace.hxx
-include/OpenCASCADE/OpenGl_AspectLine.hxx
-include/OpenCASCADE/OpenGl_AspectMarker.hxx
-include/OpenCASCADE/OpenGl_AspectText.hxx
-include/OpenCASCADE/OpenGl_BVHClipPrimitiveSet.hxx
-include/OpenCASCADE/OpenGl_BVHClipPrimitiveTrsfPersSet.hxx
-include/OpenCASCADE/OpenGl_BVHTreeSelector.hxx
+include/OpenCASCADE/OpenGl_Aspects.hxx
+include/OpenCASCADE/OpenGl_AspectsProgram.hxx
+include/OpenCASCADE/OpenGl_AspectsSprite.hxx
+include/OpenCASCADE/OpenGl_AspectsTextureSet.hxx
include/OpenCASCADE/OpenGl_BackgroundArray.hxx
include/OpenCASCADE/OpenGl_CappingAlgo.hxx
include/OpenCASCADE/OpenGl_CappingPlaneResource.hxx
include/OpenCASCADE/OpenGl_Caps.hxx
include/OpenCASCADE/OpenGl_Clipping.hxx
+include/OpenCASCADE/OpenGl_ClippingIterator.hxx
include/OpenCASCADE/OpenGl_Context.hxx
include/OpenCASCADE/OpenGl_Element.hxx
include/OpenCASCADE/OpenGl_ExtGS.hxx
@@ -22412,6 +23194,7 @@ include/OpenCASCADE/OpenGl_GlCore41.hxx
include/OpenCASCADE/OpenGl_GlCore42.hxx
include/OpenCASCADE/OpenGl_GlCore43.hxx
include/OpenCASCADE/OpenGl_GlCore44.hxx
+include/OpenCASCADE/OpenGl_GlCore45.hxx
include/OpenCASCADE/OpenGl_GlFunctions.hxx
include/OpenCASCADE/OpenGl_GraduatedTrihedron.hxx
include/OpenCASCADE/OpenGl_GraphicDriver.hxx
@@ -22422,7 +23205,6 @@ include/OpenCASCADE/OpenGl_Layer.hxx
include/OpenCASCADE/OpenGl_LayerFilter.hxx
include/OpenCASCADE/OpenGl_LayerList.hxx
include/OpenCASCADE/OpenGl_LineAttributes.hxx
-include/OpenCASCADE/OpenGl_MapOfZLayerSettings.hxx
include/OpenCASCADE/OpenGl_Material.hxx
include/OpenCASCADE/OpenGl_MaterialState.hxx
include/OpenCASCADE/OpenGl_Matrix.hxx
@@ -22438,13 +23220,13 @@ include/OpenCASCADE/OpenGl_SetOfShaderPrograms.hxx
include/OpenCASCADE/OpenGl_ShaderManager.hxx
include/OpenCASCADE/OpenGl_ShaderObject.hxx
include/OpenCASCADE/OpenGl_ShaderProgram.hxx
+include/OpenCASCADE/OpenGl_ShaderProgramDumpLevel.hxx
include/OpenCASCADE/OpenGl_ShaderStates.hxx
include/OpenCASCADE/OpenGl_StencilTest.hxx
include/OpenCASCADE/OpenGl_Structure.hxx
include/OpenCASCADE/OpenGl_StructureShadow.hxx
include/OpenCASCADE/OpenGl_Text.hxx
include/OpenCASCADE/OpenGl_TextBuilder.hxx
-include/OpenCASCADE/OpenGl_TextParam.hxx
include/OpenCASCADE/OpenGl_Texture.hxx
include/OpenCASCADE/OpenGl_TextureBufferArb.hxx
include/OpenCASCADE/OpenGl_TextureSet.hxx
@@ -22592,6 +23374,7 @@ include/OpenCASCADE/Prs3d_TextAspect.hxx
include/OpenCASCADE/Prs3d_ToolCylinder.hxx
include/OpenCASCADE/Prs3d_ToolDisk.hxx
include/OpenCASCADE/Prs3d_ToolQuadric.hxx
+include/OpenCASCADE/Prs3d_ToolSector.hxx
include/OpenCASCADE/Prs3d_ToolSphere.hxx
include/OpenCASCADE/Prs3d_TypeOfHLR.hxx
include/OpenCASCADE/Prs3d_TypeOfHighlight.hxx
@@ -22599,16 +23382,12 @@ include/OpenCASCADE/Prs3d_TypeOfLinePicking.hxx
include/OpenCASCADE/Prs3d_VertexDrawMode.hxx
include/OpenCASCADE/PrsMgr_ListOfPresentableObjects.hxx
include/OpenCASCADE/PrsMgr_ListOfPresentations.hxx
-include/OpenCASCADE/PrsMgr_ModedPresentation.hxx
include/OpenCASCADE/PrsMgr_PresentableObject.hxx
-include/OpenCASCADE/PrsMgr_PresentableObjectPointer.hxx
include/OpenCASCADE/PrsMgr_Presentation.hxx
include/OpenCASCADE/PrsMgr_Presentation3d.hxx
include/OpenCASCADE/PrsMgr_PresentationManager.hxx
include/OpenCASCADE/PrsMgr_PresentationManager3d.hxx
-include/OpenCASCADE/PrsMgr_PresentationPointer.hxx
include/OpenCASCADE/PrsMgr_Presentations.hxx
-include/OpenCASCADE/PrsMgr_Prs.hxx
include/OpenCASCADE/PrsMgr_TypeOfPresentation3d.hxx
include/OpenCASCADE/QABugs.hxx
include/OpenCASCADE/QABugs_PresentableObject.hxx
@@ -22717,12 +23496,41 @@ include/OpenCASCADE/Quantity_Volume.hxx
include/OpenCASCADE/Quantity_VolumeFlow.hxx
include/OpenCASCADE/Quantity_Weight.hxx
include/OpenCASCADE/Quantity_Work.hxx
+include/OpenCASCADE/RWGltf_CafReader.hxx
+include/OpenCASCADE/RWGltf_GltfAccessor.hxx
+include/OpenCASCADE/RWGltf_GltfAccessorCompType.hxx
+include/OpenCASCADE/RWGltf_GltfAccessorLayout.hxx
+include/OpenCASCADE/RWGltf_GltfArrayType.hxx
+include/OpenCASCADE/RWGltf_GltfBufferView.hxx
+include/OpenCASCADE/RWGltf_GltfBufferViewTarget.hxx
+include/OpenCASCADE/RWGltf_GltfFace.hxx
+include/OpenCASCADE/RWGltf_GltfLatePrimitiveArray.hxx
+include/OpenCASCADE/RWGltf_GltfPrimArrayData.hxx
+include/OpenCASCADE/RWGltf_GltfPrimitiveMode.hxx
+include/OpenCASCADE/RWGltf_GltfRootElement.hxx
+include/OpenCASCADE/RWGltf_MaterialCommon.hxx
+include/OpenCASCADE/RWGltf_MaterialMetallicRoughness.hxx
+include/OpenCASCADE/RWGltf_PrimitiveArrayReader.hxx
+include/OpenCASCADE/RWGltf_TriangulationReader.hxx
include/OpenCASCADE/RWHeaderSection.hxx
include/OpenCASCADE/RWHeaderSection_GeneralModule.hxx
include/OpenCASCADE/RWHeaderSection_RWFileDescription.hxx
include/OpenCASCADE/RWHeaderSection_RWFileName.hxx
include/OpenCASCADE/RWHeaderSection_RWFileSchema.hxx
include/OpenCASCADE/RWHeaderSection_ReadWriteModule.hxx
+include/OpenCASCADE/RWMesh_CafReader.hxx
+include/OpenCASCADE/RWMesh_CoordinateSystem.hxx
+include/OpenCASCADE/RWMesh_CoordinateSystemConverter.hxx
+include/OpenCASCADE/RWMesh_NodeAttributes.hxx
+include/OpenCASCADE/RWObj.hxx
+include/OpenCASCADE/RWObj_CafReader.hxx
+include/OpenCASCADE/RWObj_Material.hxx
+include/OpenCASCADE/RWObj_MtlReader.hxx
+include/OpenCASCADE/RWObj_Reader.hxx
+include/OpenCASCADE/RWObj_SubMesh.hxx
+include/OpenCASCADE/RWObj_SubMeshReason.hxx
+include/OpenCASCADE/RWObj_Tools.hxx
+include/OpenCASCADE/RWObj_TriangulationReader.hxx
include/OpenCASCADE/RWStepAP203_RWCcDesignApproval.hxx
include/OpenCASCADE/RWStepAP203_RWCcDesignCertification.hxx
include/OpenCASCADE/RWStepAP203_RWCcDesignContract.hxx
@@ -23432,8 +24240,6 @@ include/OpenCASCADE/SelectMgr_AndFilter.hxx
include/OpenCASCADE/SelectMgr_BaseFrustum.hxx
include/OpenCASCADE/SelectMgr_CompositionFilter.hxx
include/OpenCASCADE/SelectMgr_CompositionFilter.lxx
-include/OpenCASCADE/SelectMgr_DataMapIteratorOfDataMapOfObjectSelectors.hxx
-include/OpenCASCADE/SelectMgr_DataMapOfObjectSelectors.hxx
include/OpenCASCADE/SelectMgr_EntityOwner.hxx
include/OpenCASCADE/SelectMgr_Filter.hxx
include/OpenCASCADE/SelectMgr_Frustum.hxx
@@ -23457,7 +24263,6 @@ include/OpenCASCADE/SelectMgr_SensitiveEntitySet.hxx
include/OpenCASCADE/SelectMgr_SequenceOfFilter.hxx
include/OpenCASCADE/SelectMgr_SequenceOfOwner.hxx
include/OpenCASCADE/SelectMgr_SequenceOfSelection.hxx
-include/OpenCASCADE/SelectMgr_SequenceOfSelector.hxx
include/OpenCASCADE/SelectMgr_SortCriterion.hxx
include/OpenCASCADE/SelectMgr_StateOfSelection.hxx
include/OpenCASCADE/SelectMgr_ToleranceMap.hxx
@@ -23647,6 +24452,7 @@ include/OpenCASCADE/Standard_Byte.hxx
include/OpenCASCADE/Standard_CLocaleSentry.hxx
include/OpenCASCADE/Standard_CString.hxx
include/OpenCASCADE/Standard_Character.hxx
+include/OpenCASCADE/Standard_Condition.hxx
include/OpenCASCADE/Standard_ConstructionError.hxx
include/OpenCASCADE/Standard_DefineAlloc.hxx
include/OpenCASCADE/Standard_DefineException.hxx
@@ -23655,6 +24461,7 @@ include/OpenCASCADE/Standard_DimensionError.hxx
include/OpenCASCADE/Standard_DimensionMismatch.hxx
include/OpenCASCADE/Standard_DivideByZero.hxx
include/OpenCASCADE/Standard_DomainError.hxx
+include/OpenCASCADE/Standard_Dump.hxx
include/OpenCASCADE/Standard_ErrorHandler.hxx
include/OpenCASCADE/Standard_ExtCharacter.hxx
include/OpenCASCADE/Standard_ExtString.hxx
@@ -23694,10 +24501,13 @@ include/OpenCASCADE/Standard_Persistent.hxx
include/OpenCASCADE/Standard_PrimitiveTypes.hxx
include/OpenCASCADE/Standard_ProgramError.hxx
include/OpenCASCADE/Standard_RangeError.hxx
+include/OpenCASCADE/Standard_ReadBuffer.hxx
+include/OpenCASCADE/Standard_ReadLineBuffer.hxx
include/OpenCASCADE/Standard_Real.hxx
include/OpenCASCADE/Standard_SStream.hxx
include/OpenCASCADE/Standard_ShortReal.hxx
include/OpenCASCADE/Standard_Size.hxx
+include/OpenCASCADE/Standard_Std.hxx
include/OpenCASCADE/Standard_Stream.hxx
include/OpenCASCADE/Standard_ThreadId.hxx
include/OpenCASCADE/Standard_Time.hxx
@@ -24112,9 +24922,6 @@ include/OpenCASCADE/StepBasic_WeekOfYearAndDayDate.hxx
include/OpenCASCADE/StepData.hxx
include/OpenCASCADE/StepData_Array1OfField.hxx
include/OpenCASCADE/StepData_DefaultGeneral.hxx
-include/OpenCASCADE/StepData_DescrGeneral.hxx
-include/OpenCASCADE/StepData_DescrProtocol.hxx
-include/OpenCASCADE/StepData_DescrReadWrite.hxx
include/OpenCASCADE/StepData_Described.hxx
include/OpenCASCADE/StepData_ECDescr.hxx
include/OpenCASCADE/StepData_EDescr.hxx
@@ -24131,7 +24938,6 @@ include/OpenCASCADE/StepData_FreeFormEntity.hxx
include/OpenCASCADE/StepData_GeneralModule.hxx
include/OpenCASCADE/StepData_GlobalNodeOfWriterLib.hxx
include/OpenCASCADE/StepData_HArray1OfField.hxx
-include/OpenCASCADE/StepData_HeaderTool.hxx
include/OpenCASCADE/StepData_Logical.hxx
include/OpenCASCADE/StepData_NodeOfWriterLib.hxx
include/OpenCASCADE/StepData_PDescr.hxx
@@ -25517,7 +26323,6 @@ include/OpenCASCADE/TopLoc_MapOfLocation.hxx
include/OpenCASCADE/TopLoc_SListNodeOfItemLocation.hxx
include/OpenCASCADE/TopLoc_SListNodeOfItemLocation.lxx
include/OpenCASCADE/TopLoc_SListOfItemLocation.hxx
-include/OpenCASCADE/TopLoc_SListOfItemLocation.lxx
include/OpenCASCADE/TopOpeBRep.hxx
include/OpenCASCADE/TopOpeBRepBuild_Area1dBuilder.hxx
include/OpenCASCADE/TopOpeBRepBuild_Area2dBuilder.hxx
@@ -25863,7 +26668,6 @@ include/OpenCASCADE/TopoDS_ListIteratorOfListOfShape.hxx
include/OpenCASCADE/TopoDS_ListOfShape.hxx
include/OpenCASCADE/TopoDS_LockedShape.hxx
include/OpenCASCADE/TopoDS_Shape.hxx
-include/OpenCASCADE/TopoDS_Shape.lxx
include/OpenCASCADE/TopoDS_Shell.hxx
include/OpenCASCADE/TopoDS_Shell.lxx
include/OpenCASCADE/TopoDS_Solid.hxx
@@ -25877,7 +26681,6 @@ include/OpenCASCADE/TopoDS_TEdge.lxx
include/OpenCASCADE/TopoDS_TFace.hxx
include/OpenCASCADE/TopoDS_TFace.lxx
include/OpenCASCADE/TopoDS_TShape.hxx
-include/OpenCASCADE/TopoDS_TShape.lxx
include/OpenCASCADE/TopoDS_TShell.hxx
include/OpenCASCADE/TopoDS_TShell.lxx
include/OpenCASCADE/TopoDS_TSolid.hxx
@@ -26023,7 +26826,7 @@ include/OpenCASCADE/ViewerTest_CmdParser.hxx
include/OpenCASCADE/ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName.hxx
include/OpenCASCADE/ViewerTest_DoubleMapOfInteractiveAndName.hxx
include/OpenCASCADE/ViewerTest_EventManager.hxx
-include/OpenCASCADE/ViewerTest_EventManager.lxx
+include/OpenCASCADE/ViewerTest_V3dView.hxx
include/OpenCASCADE/Vrml.hxx
include/OpenCASCADE/VrmlAPI.hxx
include/OpenCASCADE/VrmlAPI_RepresentationOfShape.hxx
@@ -26203,6 +27006,9 @@ include/OpenCASCADE/XCAFPrs_DataMapIteratorOfDataMapOfStyleTransient.hxx
include/OpenCASCADE/XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle.hxx
include/OpenCASCADE/XCAFPrs_DataMapOfStyleShape.hxx
include/OpenCASCADE/XCAFPrs_DataMapOfStyleTransient.hxx
+include/OpenCASCADE/XCAFPrs_DocumentExplorer.hxx
+include/OpenCASCADE/XCAFPrs_DocumentIdIterator.hxx
+include/OpenCASCADE/XCAFPrs_DocumentNode.hxx
include/OpenCASCADE/XCAFPrs_Driver.hxx
include/OpenCASCADE/XCAFPrs_IndexedDataMapOfShapeStyle.hxx
include/OpenCASCADE/XCAFPrs_Style.hxx
@@ -26509,7 +27315,6 @@ include/OpenCASCADE/math_FunctionSetRoot.lxx
include/OpenCASCADE/math_FunctionSetWithDerivatives.hxx
include/OpenCASCADE/math_FunctionWithDerivative.hxx
include/OpenCASCADE/math_Gauss.hxx
-include/OpenCASCADE/math_Gauss.lxx
include/OpenCASCADE/math_GaussLeastSquare.hxx
include/OpenCASCADE/math_GaussLeastSquare.lxx
include/OpenCASCADE/math_GaussMultipleIntegration.hxx
@@ -26546,7 +27351,6 @@ include/OpenCASCADE/math_Powell.lxx
include/OpenCASCADE/math_Recipes.hxx
include/OpenCASCADE/math_SVD.hxx
include/OpenCASCADE/math_SVD.lxx
-include/OpenCASCADE/math_SingleTab.hxx
include/OpenCASCADE/math_SingularMatrix.hxx
include/OpenCASCADE/math_Status.hxx
include/OpenCASCADE/math_TrigonometricEquationFunction.hxx
@@ -26661,6 +27465,9 @@ lib/libTKPrim.so.%%VER%%
lib/libTKQADraw.so
lib/libTKQADraw.so.%%VE%%
lib/libTKQADraw.so.%%VER%%
+lib/libTKRWMesh.so
+lib/libTKRWMesh.so.%%VE%%
+lib/libTKRWMesh.so.%%VER%%
lib/libTKSTEP.so
lib/libTKSTEP.so.%%VE%%
lib/libTKSTEP.so.%%VER%%
@@ -26762,10 +27569,6 @@ lib/libTKernel.so.%%VER%%
%%DOXYGEN%%%%DOCSDIR%%/html/3DView_set_orientation.png
%%DOXYGEN%%%%DOCSDIR%%/html/3rdparty_image001.png
%%DOXYGEN%%%%DOCSDIR%%/html/3rdparty_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/3rdparty_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/3rdparty_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/3rdparty_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/3rdparty_image007.png
%%DOXYGEN%%%%DOCSDIR%%/html/614_xde_04_400.png
%%DOXYGEN%%%%DOCSDIR%%/html/646_xde_11_400.png
%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_ContributionWorkflow_V3_image001.svg
@@ -26936,6 +27739,8 @@ lib/libTKernel.so.%%VER%%
%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image141.png
%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image142.png
%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image143.png
+%%DOXYGEN%%%%DOCSDIR%%/html/bop_simple_001.png
+%%DOXYGEN%%%%DOCSDIR%%/html/bop_simple_002.png
%%DOXYGEN%%%%DOCSDIR%%/html/bsplit_image001.png
%%DOXYGEN%%%%DOCSDIR%%/html/bsplit_image002.png
%%DOXYGEN%%%%DOCSDIR%%/html/bsplit_image003.png
@@ -27108,6 +27913,16 @@ lib/libTKernel.so.%%VER%%
%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image063.png
%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image064.png
%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image065.png
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mesh_001.svg
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mesh_002.svg
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mesh_003.svg
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mesh_004.svg
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im001.png
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im002.png
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im003.png
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im004.png
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im005.png
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im006.png
%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im001.png
%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im002.png
%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im003.png
@@ -27152,6 +27967,9 @@ lib/libTKernel.so.%%VER%%
%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image013.png
%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image014.png
%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image015.png
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_obb_125K.png
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_opt_obb_125K.png
+%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_pca_obb_125K.png
%%DOXYGEN%%%%DOCSDIR%%/html/nav_f.png
%%DOXYGEN%%%%DOCSDIR%%/html/nav_g.png
%%DOXYGEN%%%%DOCSDIR%%/html/nav_h.png