diff --git a/Geo/GModel.cpp b/Geo/GModel.cpp index 46b22df93673310c73cfcc5d5809a0459d7fa151..3e44a391ded7262a244a644cec655732fb7583e8 100644 --- a/Geo/GModel.cpp +++ b/Geo/GModel.cpp @@ -82,6 +82,8 @@ GModel::GModel(std::string name) // at the moment we always create (at least an empty) GEO model _createGEOInternals(); + _createOCCInternals(); + #if defined(HAVE_OCC) && defined(HAVE_SGEOM) setFactory("SGEOM"); #elif defined(HAVE_OCC) @@ -179,6 +181,12 @@ void GModel::setFactory(std::string name) } } +std::string GModel::getFactoryName() +{ + if(!_factory) return ""; + return _factory->getName(); +} + GModel *GModel::findByName(const std::string &name, const std::string &fileName) { // return last mesh with given name @@ -974,7 +982,8 @@ std::vector<MElement*> GModel::getMeshElementsByCoord(SPoint3 &p, int dim, bool return _octree->findAll(p.x(), p.y(), p.z(), dim, strict); } -void GModel::deleteOctree() { +void GModel::deleteOctree() +{ if (_octree) { delete _octree; _octree = NULL; diff --git a/Geo/GModel.h b/Geo/GModel.h index 3570c5591947d068c8ba791e3bec9a972a6d0082..b6632f36953aa089334ac91fe6d47d0647aba631 100644 --- a/Geo/GModel.h +++ b/Geo/GModel.h @@ -93,6 +93,7 @@ class GModel // OpenCascade model internal data OCC_Internals *_occ_internals; + void _createOCCInternals(); void _deleteOCCInternals(); // SGEOM model internal data @@ -507,6 +508,7 @@ class GModel // change the entity creation factory void setFactory(std::string name); + std::string getFactoryName(); // create brep geometry entities using the factory GVertex *addVertex(double x, double y, double z, double lc); @@ -629,6 +631,7 @@ class GModel GEdge *getEdgeForOCCShape(const void *shape); GFace *getFaceForOCCShape(const void *shape); GRegion *getRegionForOCCShape(const void *shape); + int importOCCInternals(); // ACIS Model int readACISSAT(const std::string &name); diff --git a/Geo/GModelFactory.cpp b/Geo/GModelFactory.cpp index 8d2bba90a4c75dd5c70ed2f834fc4ee30f6f5d7c..0ac1b4b7083a261537dd17cae52c3cb61ad4282c 100644 --- a/Geo/GModelFactory.cpp +++ b/Geo/GModelFactory.cpp @@ -712,25 +712,25 @@ GEdge *OCCFactory::addNURBS(GModel *gm, GVertex *start, GVertex *end, /* add2Drect: rectangluar face, given lower left point and width/height (in X-Y plane)*/ GFace *OCCFactory::add2Drect(GModel *gm,double x0, double y0, double dx, double dy) { - Msg::Info("Default working plane is XY in add2D* functions..."); + Msg::Info("Default working plane is XY in add2D* functions..."); - if (!gm->_occ_internals) - gm->_occ_internals = new OCC_Internals; + if (!gm->_occ_internals) + gm->_occ_internals = new OCC_Internals; - TopoDS_Vertex occv1 = BRepBuilderAPI_MakeVertex( gp_Pnt(x0 , y0 , 0.) ); - TopoDS_Vertex occv2 = BRepBuilderAPI_MakeVertex( gp_Pnt(x0+dx, y0 , 0.) ); - TopoDS_Vertex occv3 = BRepBuilderAPI_MakeVertex( gp_Pnt(x0+dx, y0+dy, 0.) ); - TopoDS_Vertex occv4 = BRepBuilderAPI_MakeVertex( gp_Pnt(x0 , y0+dy, 0.) ); + TopoDS_Vertex occv1 = BRepBuilderAPI_MakeVertex( gp_Pnt(x0 , y0 , 0.) ); + TopoDS_Vertex occv2 = BRepBuilderAPI_MakeVertex( gp_Pnt(x0+dx, y0 , 0.) ); + TopoDS_Vertex occv3 = BRepBuilderAPI_MakeVertex( gp_Pnt(x0+dx, y0+dy, 0.) ); + TopoDS_Vertex occv4 = BRepBuilderAPI_MakeVertex( gp_Pnt(x0 , y0+dy, 0.) ); - TopoDS_Edge occEdge1 = BRepBuilderAPI_MakeEdge(occv1,occv2); - TopoDS_Edge occEdge2 = BRepBuilderAPI_MakeEdge(occv2,occv3); - TopoDS_Edge occEdge3 = BRepBuilderAPI_MakeEdge(occv3,occv4); - TopoDS_Edge occEdge4 = BRepBuilderAPI_MakeEdge(occv4,occv1); + TopoDS_Edge occEdge1 = BRepBuilderAPI_MakeEdge(occv1,occv2); + TopoDS_Edge occEdge2 = BRepBuilderAPI_MakeEdge(occv2,occv3); + TopoDS_Edge occEdge3 = BRepBuilderAPI_MakeEdge(occv3,occv4); + TopoDS_Edge occEdge4 = BRepBuilderAPI_MakeEdge(occv4,occv1); - TopoDS_Wire rectWire = BRepBuilderAPI_MakeWire(occEdge1 , occEdge2 , occEdge3, occEdge4); - TopoDS_Face rectFace = BRepBuilderAPI_MakeFace(rectWire); + TopoDS_Wire rectWire = BRepBuilderAPI_MakeWire(occEdge1 , occEdge2 , occEdge3, occEdge4); + TopoDS_Face rectFace = BRepBuilderAPI_MakeFace(rectWire); - return gm->_occ_internals->addFaceToModel(gm, TopoDS::Face(rectFace)); + return gm->_occ_internals->addFaceToModel(gm, TopoDS::Face(rectFace)); } /* add2Dellips: ellips face, given lower left point and width/height (in X-Y plane)*/ @@ -1026,7 +1026,7 @@ GModel *OCCFactory::computeBooleanUnion(GModel* obj, GModel* tool, if (createNewModel){ GModel *temp = new GModel; temp->_occ_internals = new OCC_Internals; - temp->_occ_internals->addShapeToLists(occ_obj->getShape()); + temp->_occ_internals->_addShapeToLists(occ_obj->getShape()); obj = temp; } obj->_occ_internals->applyBooleanOperator(occ_tool->getShape(), @@ -1054,7 +1054,7 @@ GModel *OCCFactory::computeBooleanDifference(GModel* obj, GModel* tool, if (createNewModel){ GModel *temp = new GModel; temp->_occ_internals = new OCC_Internals; - temp->_occ_internals->addShapeToLists(occ_obj->getShape()); + temp->_occ_internals->_addShapeToLists(occ_obj->getShape()); obj = temp; } obj->getOCCInternals()->applyBooleanOperator(occ_tool->getShape(), @@ -1081,7 +1081,7 @@ GModel *OCCFactory::computeBooleanIntersection(GModel* obj, GModel* tool, if (createNewModel){ GModel *temp = new GModel; temp->_occ_internals = new OCC_Internals; - temp->_occ_internals->addShapeToLists(occ_obj->getShape()); + temp->_occ_internals->_addShapeToLists(occ_obj->getShape()); obj = temp; } obj->getOCCInternals()->applyBooleanOperator(occ_tool->getShape(), diff --git a/Geo/GModelFactory.h b/Geo/GModelFactory.h index 2ebafe54168ef2e28fcf8ac5dcb2ad713590ff01..a0201c45efd6f8560788375553dcf9ccd9855fc7 100644 --- a/Geo/GModelFactory.h +++ b/Geo/GModelFactory.h @@ -24,12 +24,11 @@ class GModelFactory { public: GModelFactory(){} virtual ~GModelFactory(){} - + virtual std::string getName(){ return ""; } // brep primitives enum arcCreationMethod {THREE_POINTS=1, CENTER_START_END=2}; enum splineType {BEZIER=1, BSPLINE=2}; - virtual GVertex *addVertex(GModel *gm, double x, double y, double z, - double lc) = 0; + virtual GVertex *addVertex(GModel *gm, double x, double y, double z, double lc) = 0; virtual GEdge *addLine(GModel *, GVertex *v1, GVertex *v2) = 0; virtual GFace *addPlanarFace(GModel *gm, std::vector<std::vector<GEdge *> > edges) = 0; virtual GFace *addPlanarFace(GModel *gm, const std::vector<std::vector<GEdgeSigned> > &edges) = 0; @@ -223,6 +222,7 @@ class GModelFactory { class GeoFactory : public GModelFactory { public: GeoFactory(){} + std::string getName(){ return "GEO"; } GVertex *addVertex(GModel *gm,double x, double y, double z, double lc); GEdge *addLine(GModel *gm,GVertex *v1, GVertex *v2); GFace *addPlanarFace(GModel *gm, std::vector<std::vector<GEdge *> > edges); @@ -243,6 +243,7 @@ private: class OCCFactory : public GModelFactory { public: OCCFactory(){} + std::string getName(){ return "OpenCASCADE"; } GVertex *addVertex(GModel *gm,double x, double y, double z, double lc); GEdge *addLine(GModel *gm,GVertex *v1, GVertex *v2); GEdge *addCircleArc(GModel *gm,const arcCreationMethod &method, diff --git a/Geo/GModelIO_GEO.cpp b/Geo/GModelIO_GEO.cpp index 8ec0a90ed7631c05876b84c942d2931275c9bf71..7aa3a42f10e0553491d4ab5f8dcd97cd49c47259 100644 --- a/Geo/GModelIO_GEO.cpp +++ b/Geo/GModelIO_GEO.cpp @@ -42,6 +42,9 @@ int GModel::readGEO(const std::string &name) { ParseFile(name, true); int imported = GModel::current()->importGEOInternals(); + + // FIXME: temp + GModel::current()->importOCCInternals(); return imported; } diff --git a/Geo/GModelIO_OCC.cpp b/Geo/GModelIO_OCC.cpp index 6e7a9ab9d5bab6ca710f3fd8a65ff75ea0492b5c..89e15214661e1cd2ebd821948c9f9bc04d300c5f 100644 --- a/Geo/GModelIO_OCC.cpp +++ b/Geo/GModelIO_OCC.cpp @@ -23,104 +23,47 @@ #endif #include <BRepBuilderAPI_Transform.hxx> - -void addSimpleShapes(TopoDS_Shape theShape, TopTools_ListOfShape &theList); - -void OCC_Internals::buildLists() -{ - somap.Clear(); - shmap.Clear(); - fmap.Clear(); - wmap.Clear(); - emap.Clear(); - vmap.Clear(); - addShapeToLists(shape); -} - -void OCC_Internals::buildShapeFromGModel(GModel* gm) -{ - somap.Clear(); - shmap.Clear(); - fmap.Clear(); - wmap.Clear(); - emap.Clear(); - vmap.Clear(); - for (GModel::riter it = gm->firstRegion(); it != gm->lastRegion() ; ++it){ - if ((*it)->getNativeType() == GEntity::OpenCascadeModel){ - OCCRegion *occ = static_cast<OCCRegion*> (*it); - if(occ) addShapeToLists(occ->getTopoDS_Shape()); - } - } - for (GModel::fiter it = gm->firstFace(); it != gm->lastFace() ; ++it){ - if ((*it)->getNativeType() == GEntity::OpenCascadeModel){ - OCCFace *occ = static_cast<OCCFace*> (*it); - if(occ) addShapeToLists(occ->getTopoDS_Face()); - } - } - BRep_Builder B; - TopoDS_Compound C; - B.MakeCompound(C); - for(int i = 1; i <= vmap.Extent(); i++) B.Add(C, vmap(i)); - for(int i = 1; i <= emap.Extent(); i++) B.Add(C, emap(i)); - for(int i = 1; i <= wmap.Extent(); i++) B.Add(C, wmap(i)); - for(int i = 1; i <= fmap.Extent(); i++) B.Add(C, fmap(i)); - for(int i = 1; i <= shmap.Extent(); i++) B.Add(C, shmap(i)); - for(int i = 1; i <= somap.Extent(); i++) B.Add(C, somap(i)); - shape = C; -} - -void OCC_Internals::buildShapeFromLists(TopoDS_Shape _shape) -{ - BRep_Builder B; - TopoDS_Compound C; - B.MakeCompound(C); - - TopTools_ListOfShape theList; - addSimpleShapes(_shape, theList); - TopTools_ListIteratorOfListOfShape itSub1(theList); - for (; itSub1.More(); itSub1.Next()) B.Add(C, itSub1.Value()); - - for(int i = 1; i <= vmap.Extent(); i++) B.Add(C, vmap(i)); - for(int i = 1; i <= emap.Extent(); i++) B.Add(C, emap(i)); - for(int i = 1; i <= wmap.Extent(); i++) B.Add(C, wmap(i)); - for(int i = 1; i <= fmap.Extent(); i++) B.Add(C, fmap(i)); - for(int i = 1; i <= shmap.Extent(); i++) B.Add(C, shmap(i)); - for(int i = 1; i <= somap.Extent(); i++) B.Add(C, somap(i)); - shape = C; -} - -void OCC_Internals::addShapeToLists(TopoDS_Shape _shape) +#include <BRepBuilderAPI_MakeEdge.hxx> +#include <BRepBuilderAPI_MakeWire.hxx> +#include <BRepOffsetAPI_ThruSections.hxx> +#include <gce_MakeCirc.hxx> +#include <gce_MakePln.hxx> +#include <ElCLib.hxx> +#include <Geom_Circle.hxx> +#include <Geom_TrimmedCurve.hxx> + +void OCC_Internals::_addShapeToLists(TopoDS_Shape shape, std::vector<int> indices[4]) { // Solids TopExp_Explorer exp0, exp1, exp2, exp3, exp4, exp5; - for(exp0.Init(_shape, TopAbs_SOLID); exp0.More(); exp0.Next()){ + for(exp0.Init(shape, TopAbs_SOLID); exp0.More(); exp0.Next()){ TopoDS_Solid solid = TopoDS::Solid(exp0.Current()); - if(somap.FindIndex(solid) < 1){ - somap.Add(solid); + if(_somap.FindIndex(solid) < 1){ + _somap.Add(solid); if(indices) indices[3].push_back(_somap.Extent()); for(exp1.Init(solid, TopAbs_SHELL); exp1.More(); exp1.Next()){ TopoDS_Shell shell = TopoDS::Shell(exp1.Current()); - if(shmap.FindIndex(shell) < 1){ - shmap.Add(shell); + if(_shmap.FindIndex(shell) < 1){ + _shmap.Add(shell); for(exp2.Init(shell, TopAbs_FACE); exp2.More(); exp2.Next()){ TopoDS_Face face = TopoDS::Face(exp2.Current()); - if(fmap.FindIndex(face) < 1){ - fmap.Add(face); + if(_fmap.FindIndex(face) < 1){ + _fmap.Add(face); for(exp3.Init(exp2.Current().Oriented(TopAbs_FORWARD), TopAbs_WIRE); exp3.More(); exp3.Next()){ TopoDS_Wire wire = TopoDS::Wire(exp3.Current()); - if(wmap.FindIndex(wire) < 1){ - wmap.Add(wire); + if(_wmap.FindIndex(wire) < 1){ + _wmap.Add(wire); for(exp4.Init(exp3.Current(), TopAbs_EDGE); exp4.More(); exp4.Next()){ TopoDS_Edge edge = TopoDS::Edge(exp4.Current()); - if(emap.FindIndex(edge) < 1){ - emap.Add(edge); + if(_emap.FindIndex(edge) < 1){ + _emap.Add(edge); for(exp5.Init(exp4.Current(), TopAbs_VERTEX); exp5.More(); exp5.Next()){ TopoDS_Vertex vertex = TopoDS::Vertex(exp5.Current()); - if(vmap.FindIndex(vertex) < 1) - vmap.Add(vertex); + if(_vmap.FindIndex(vertex) < 1) + _vmap.Add(vertex); } } } @@ -134,30 +77,30 @@ void OCC_Internals::addShapeToLists(TopoDS_Shape _shape) } // Free Shells - for(exp1.Init(exp0.Current(), TopAbs_SHELL, TopAbs_SOLID); exp1.More(); exp1.Next()){ + for(exp1.Init(shape, TopAbs_SHELL, TopAbs_SOLID); exp1.More(); exp1.Next()){ TopoDS_Shape shell = exp1.Current(); - if(shmap.FindIndex(shell) < 1){ - shmap.Add(shell); + if(_shmap.FindIndex(shell) < 1){ + _shmap.Add(shell); for(exp2.Init(shell, TopAbs_FACE); exp2.More(); exp2.Next()){ TopoDS_Face face = TopoDS::Face(exp2.Current()); - if(fmap.FindIndex(face) < 1){ - fmap.Add(face); + if(_fmap.FindIndex(face) < 1){ + _fmap.Add(face); for(exp3.Init(exp2.Current(), TopAbs_WIRE); exp3.More(); exp3.Next()){ TopoDS_Wire wire = TopoDS::Wire(exp3.Current()); - if(wmap.FindIndex(wire) < 1){ - wmap.Add(wire); + if(_wmap.FindIndex(wire) < 1){ + _wmap.Add(wire); for(exp4.Init(exp3.Current(), TopAbs_EDGE); exp4.More(); exp4.Next()){ TopoDS_Edge edge = TopoDS::Edge(exp4.Current()); - if(emap.FindIndex(edge) < 1){ - emap.Add(edge); + if(_emap.FindIndex(edge) < 1){ + _emap.Add(edge); for(exp5.Init(exp4.Current(), TopAbs_VERTEX); exp5.More(); exp5.Next()){ TopoDS_Vertex vertex = TopoDS::Vertex(exp5.Current()); - if(vmap.FindIndex(vertex) < 1) - vmap.Add(vertex); + if(_vmap.FindIndex(vertex) < 1) + _vmap.Add(vertex); } } } @@ -169,25 +112,25 @@ void OCC_Internals::addShapeToLists(TopoDS_Shape _shape) } // Free Faces - for(exp2.Init(_shape, TopAbs_FACE, TopAbs_SHELL); exp2.More(); exp2.Next()){ + for(exp2.Init(shape, TopAbs_FACE, TopAbs_SHELL); exp2.More(); exp2.Next()){ TopoDS_Face face = TopoDS::Face(exp2.Current()); - if(fmap.FindIndex(face) < 1){ - fmap.Add(face); + if(_fmap.FindIndex(face) < 1){ + _fmap.Add(face); if(indices) indices[2].push_back(_fmap.Extent()); for(exp3.Init(exp2.Current(), TopAbs_WIRE); exp3.More(); exp3.Next()){ TopoDS_Wire wire = TopoDS::Wire(exp3.Current()); - if(wmap.FindIndex(wire) < 1){ - wmap.Add(wire); + if(_wmap.FindIndex(wire) < 1){ + _wmap.Add(wire); for(exp4.Init(exp3.Current(), TopAbs_EDGE); exp4.More(); exp4.Next()){ TopoDS_Edge edge = TopoDS::Edge(exp4.Current()); - if(emap.FindIndex(edge) < 1){ - emap.Add(edge); + if(_emap.FindIndex(edge) < 1){ + _emap.Add(edge); for(exp5.Init(exp4.Current(), TopAbs_VERTEX); exp5.More(); exp5.Next()){ TopoDS_Vertex vertex = TopoDS::Vertex(exp5.Current()); - if(vmap.FindIndex(vertex) < 1) - vmap.Add(vertex); + if(_vmap.FindIndex(vertex) < 1) + _vmap.Add(vertex); } } } @@ -197,20 +140,20 @@ void OCC_Internals::addShapeToLists(TopoDS_Shape _shape) } // Free Wires - for(exp3.Init(_shape, TopAbs_WIRE, TopAbs_FACE); exp3.More(); exp3.Next()){ + for(exp3.Init(shape, TopAbs_WIRE, TopAbs_FACE); exp3.More(); exp3.Next()){ TopoDS_Wire wire = TopoDS::Wire(exp3.Current()); - if(wmap.FindIndex(wire) < 1){ - wmap.Add(wire); + if(_wmap.FindIndex(wire) < 1){ + _wmap.Add(wire); for(exp4.Init(exp3.Current(), TopAbs_EDGE); exp4.More(); exp4.Next()){ TopoDS_Edge edge = TopoDS::Edge(exp4.Current()); - if(emap.FindIndex(edge) < 1){ - emap.Add(edge); + if(_emap.FindIndex(edge) < 1){ + _emap.Add(edge); for(exp5.Init(exp4.Current(), TopAbs_VERTEX); exp5.More(); exp5.Next()){ TopoDS_Vertex vertex = TopoDS::Vertex(exp5.Current()); - if(vmap.FindIndex(vertex) < 1) - vmap.Add(vertex); + if(_vmap.FindIndex(vertex) < 1) + _vmap.Add(vertex); } } } @@ -218,28 +161,319 @@ void OCC_Internals::addShapeToLists(TopoDS_Shape _shape) } // Free Edges - for(exp4.Init(_shape, TopAbs_EDGE, TopAbs_WIRE); exp4.More(); exp4.Next()){ + for(exp4.Init(shape, TopAbs_EDGE, TopAbs_WIRE); exp4.More(); exp4.Next()){ TopoDS_Edge edge = TopoDS::Edge(exp4.Current()); - if(emap.FindIndex(edge) < 1){ - emap.Add(edge); + if(_emap.FindIndex(edge) < 1){ + _emap.Add(edge); if(indices) indices[1].push_back(_emap.Extent()); for(exp5.Init(exp4.Current(), TopAbs_VERTEX); exp5.More(); exp5.Next()){ TopoDS_Vertex vertex = TopoDS::Vertex(exp5.Current()); - if(vmap.FindIndex(vertex) < 1) - vmap.Add(vertex); + if(_vmap.FindIndex(vertex) < 1) + _vmap.Add(vertex); } } } // Free Vertices - for(exp5.Init(_shape, TopAbs_VERTEX, TopAbs_EDGE); exp5.More(); exp5.Next()){ + for(exp5.Init(shape, TopAbs_VERTEX, TopAbs_EDGE); exp5.More(); exp5.Next()){ TopoDS_Vertex vertex = TopoDS::Vertex(exp5.Current()); - if(vmap.FindIndex(vertex) < 1) - vmap.Add(vertex); + if(_vmap.FindIndex(vertex) < 1){ + _vmap.Add(vertex); if(indices) indices[0].push_back(_vmap.Extent()); + } + } +} + +void OCC_Internals::addVertex(int tag, double x, double y, double z) +{ + if(_vTagIndex.count(tag)){ + Msg::Error("OCC vertex with tag %d already exists", tag); + return; + } + TopoDS_Vertex result; + try{ + gp_Pnt aPnt; + aPnt = gp_Pnt(x, y, z); + BRepBuilderAPI_MakeVertex mkVertex(aPnt); + result = mkVertex.Vertex(); + } + catch(Standard_Failure &err){ + Msg::Error("OCC %s", err.GetMessageString()); + return; } + std::vector<int> indices[4]; + _addShapeToLists(result, indices); + if(indices[0].size()){ + int index = indices[0][0]; + _vTagIndex[tag] = index; + _vIndexTag[index] = tag; + } +} +void OCC_Internals::addCircleArc(int tag, int tagStart, int tagCenter, int tagEnd) +{ + if(_eTagIndex.count(tag)){ + Msg::Error("OCC edge with tag %d already exists", tag); + return; + } + + std::map<int, int>::iterator itStart = _vTagIndex.find(tagStart); + std::map<int, int>::iterator itCenter = _vTagIndex.find(tagCenter); + std::map<int, int>::iterator itEnd = _vTagIndex.find(tagEnd); + + if(itStart == _vTagIndex.end()){ + Msg::Error("Unknown OCC vertex with tag %d", tagStart); + return; + } + if(itCenter == _vTagIndex.end()){ + Msg::Error("Unknown OCC vertex with tag %d", tagCenter); + return; + } + if(itEnd == _vTagIndex.end()){ + Msg::Error("Unknown OCC vertex with tag %d", tagEnd); + return; + } + + TopoDS_Edge result; + try{ + TopoDS_Vertex start = TopoDS::Vertex(_vmap(itStart->second)); + TopoDS_Vertex center = TopoDS::Vertex(_vmap(itCenter->second)); + TopoDS_Vertex end = TopoDS::Vertex(_vmap(itEnd->second)); + gp_Pnt aP1 = BRep_Tool::Pnt(start); + gp_Pnt aP2 = BRep_Tool::Pnt(center); + gp_Pnt aP3 = BRep_Tool::Pnt(end); + Standard_Real Radius = aP1.Distance(aP2); + gce_MakeCirc MC(aP2, gce_MakePln(aP1, aP2, aP3).Value(), Radius); + const gp_Circ &Circ = MC.Value(); + Standard_Real Alpha1 = ElCLib::Parameter(Circ, aP1); + Standard_Real Alpha2 = ElCLib::Parameter(Circ, aP3); + Handle(Geom_Circle) C = new Geom_Circle(Circ); + Handle(Geom_TrimmedCurve) arc = new Geom_TrimmedCurve(C, Alpha1, Alpha2, false); + result = BRepBuilderAPI_MakeEdge(arc, start, end).Edge(); + } + catch(Standard_Failure &err){ + Msg::Error("OCC %s", err.GetMessageString()); + return; + } + std::vector<int> indices[4]; + _addShapeToLists(result, indices); + if(indices[1].size()){ + int index = indices[1][0]; + _eTagIndex[tag] = index; + _eIndexTag[index] = tag; + } +} + +void OCC_Internals::addSphere(int tag, double xc, double yc, double zc, double radius) +{ + if(_rTagIndex.count(tag)){ + Msg::Error("OCC region with tag %d already exists", tag); + return; + } + + TopoDS_Solid result; + try{ + gp_Pnt aP(xc, yc, zc); + result = TopoDS::Solid(BRepPrimAPI_MakeSphere(aP, radius).Shape()); + } + catch(Standard_Failure &err){ + Msg::Error("OCC %s", err.GetMessageString()); + return; + } + + std::vector<int> indices[4]; + _addShapeToLists(result, indices); + if(indices[3].size()){ + int index = indices[3][0]; + _rTagIndex[tag] = index; + _rIndexTag[index] = tag; + } +} + +void OCC_Internals::addThruSections(int tag, std::vector<std::vector<int> > tagEdges) +{ + if(_rTagIndex.count(tag)){ + Msg::Error("OCC region with tag %d already exists", tag); + return; + } + + TopoDS_Solid result; + try{ + BRepOffsetAPI_ThruSections aGenerator(Standard_True); // create solid + for (unsigned i = 0; i < tagEdges.size(); i++) { + BRepBuilderAPI_MakeWire wire_maker; + for (unsigned j = 0; j < tagEdges[i].size(); j++) { + std::map<int, int>::iterator it = _eTagIndex.find(tagEdges[i][j]); + if(it == _eTagIndex.end()){ + Msg::Error("Unknown OCC edge with tag %d", tagEdges[i][j]); + return; + } + TopoDS_Edge edge = TopoDS::Edge(_emap(it->second)); + wire_maker.Add(edge); + } + aGenerator.AddWire(wire_maker.Wire()); + } + aGenerator.CheckCompatibility(Standard_False); + aGenerator.Build(); + result = TopoDS::Solid(aGenerator.Shape()); + } + catch(Standard_Failure &err){ + Msg::Error("OCC %s", err.GetMessageString()); + return; + } + + std::vector<int> indices[4]; + _addShapeToLists(result, indices); + if(indices[3].size()){ + int index = indices[3][0]; + _rTagIndex[tag] = index; + _rIndexTag[index] = tag; + } +} + +void OCC_Internals::applyBooleanOperator(int tag, + std::vector<int> shapeTags[4], + std::vector<int> toolTags[4], + BooleanOperator op, + bool removeShape, bool removeTool) +{ + if(tag < 0){ + for(std::map<int, int>::iterator it = _rTagIndex.begin(); it != _rTagIndex.end(); it++) + tag = std::max(it->first, tag); + tag++; + } + + if(_rTagIndex.count(tag)){ + Msg::Error("OCC region with tag %d already exists", tag); + return; + } + + if(shapeTags[3].size() == 1 && toolTags[3].size() == 1){ + TopoDS_Shape result; + std::map<int, int>::iterator it1 = _rTagIndex.find(shapeTags[3][0]); + if(it1 == _rTagIndex.end()){ + Msg::Error("Unknown OCC region with tag %d", shapeTags[3][0]); + return; + } + std::map<int, int>::iterator it2 = _rTagIndex.find(toolTags[3][0]); + if(it2 == _rTagIndex.end()){ + Msg::Error("Unknown OCC region with tag %d", toolTags[3][0]); + return; + } + try{ + BRepAlgoAPI_Fuse BO(TopoDS::Solid(_somap(it1->second)), + TopoDS::Solid(_somap(it2->second))); + if(!BO.IsDone()) { + Msg::Error("Fuse operation can not be performed on the given shapes"); + } + result = BO.Shape(); + if(removeShape || removeTool){ + TopTools_IndexedMapOfShape tmp; + std::map<int, int> rIndexTag, rTagIndex; + for(int i = 1; i <= _somap.Extent(); i++){ + if(removeShape && i == it1->second){ + continue; + } + if(removeTool && i == it2->second){ + continue; + } + else{ + int tag = _rIndexTag[i]; + tmp.Add(_somap(i)); + int index = tmp.Extent(); + rIndexTag[index] = tag; + rTagIndex[tag] = index; + } + } + _somap = tmp; + _rTagIndex = rTagIndex; + _rIndexTag = rIndexTag; + } + } + catch(Standard_Failure &err){ + Msg::Error("OCC %s", err.GetMessageString()); + return; + } + std::vector<int> indices[4]; + _addShapeToLists(result, indices); + if(indices[3].size()){ + int index = indices[3][0]; + _rTagIndex[tag] = index; + _rIndexTag[index] = tag; + } + } + else{ + Msg::Error("General boolean operation not implemented yet!"); + } + +} + + +void addSimpleShapes(TopoDS_Shape theShape, TopTools_ListOfShape &theList); + +void OCC_Internals::buildLists() +{ + _somap.Clear(); + _shmap.Clear(); + _fmap.Clear(); + _wmap.Clear(); + _emap.Clear(); + _vmap.Clear(); + _addShapeToLists(_shape); } +void OCC_Internals::buildShapeFromGModel(GModel* gm) +{ + _somap.Clear(); + _shmap.Clear(); + _fmap.Clear(); + _wmap.Clear(); + _emap.Clear(); + _vmap.Clear(); + for (GModel::riter it = gm->firstRegion(); it != gm->lastRegion() ; ++it){ + if ((*it)->getNativeType() == GEntity::OpenCascadeModel){ + OCCRegion *occ = static_cast<OCCRegion*> (*it); + if(occ) _addShapeToLists(occ->getTopoDS_Shape()); + } + } + for (GModel::fiter it = gm->firstFace(); it != gm->lastFace() ; ++it){ + if ((*it)->getNativeType() == GEntity::OpenCascadeModel){ + OCCFace *occ = static_cast<OCCFace*> (*it); + if(occ) _addShapeToLists(occ->getTopoDS_Face()); + } + } + BRep_Builder B; + TopoDS_Compound C; + B.MakeCompound(C); + for(int i = 1; i <= _vmap.Extent(); i++) B.Add(C, _vmap(i)); + for(int i = 1; i <= _emap.Extent(); i++) B.Add(C, _emap(i)); + for(int i = 1; i <= _wmap.Extent(); i++) B.Add(C, _wmap(i)); + for(int i = 1; i <= _fmap.Extent(); i++) B.Add(C, _fmap(i)); + for(int i = 1; i <= _shmap.Extent(); i++) B.Add(C, _shmap(i)); + for(int i = 1; i <= _somap.Extent(); i++) B.Add(C, _somap(i)); + _shape = C; +} + +void OCC_Internals::buildShapeFromLists(TopoDS_Shape shape) +{ + BRep_Builder B; + TopoDS_Compound C; + B.MakeCompound(C); + + TopTools_ListOfShape theList; + addSimpleShapes(shape, theList); + TopTools_ListIteratorOfListOfShape itSub1(theList); + for (; itSub1.More(); itSub1.Next()) B.Add(C, itSub1.Value()); + + for(int i = 1; i <= _vmap.Extent(); i++) B.Add(C, _vmap(i)); + for(int i = 1; i <= _emap.Extent(); i++) B.Add(C, _emap(i)); + for(int i = 1; i <= _wmap.Extent(); i++) B.Add(C, _wmap(i)); + for(int i = 1; i <= _fmap.Extent(); i++) B.Add(C, _fmap(i)); + for(int i = 1; i <= _shmap.Extent(); i++) B.Add(C, _shmap(i)); + for(int i = 1; i <= _somap.Extent(); i++) B.Add(C, _somap(i)); + _shape = C; +} + + void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, bool fixsmalledges, bool fixspotstripfaces, bool sewfaces, bool makesolids, int connect, @@ -249,8 +483,8 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, Msg::Info("Scaling geometry by factor %g", scaling); gp_Trsf t; t.SetScaleFactor(scaling); - BRepBuilderAPI_Transform trsf(shape, t); - shape = trsf.Shape(); + BRepBuilderAPI_Transform trsf(_shape, t); + _shape = trsf.Shape(); } if(!fixdegenerated && !fixsmalledges && !fixspotstripfaces && @@ -261,13 +495,13 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, buildLists(); TopExp_Explorer exp0, exp1; int nrc = 0, nrcs = 0; - int nrso = somap.Extent(), nrsh = shmap.Extent(), nrf = fmap.Extent(); - int nrw = wmap.Extent(), nre = emap.Extent(), nrv = vmap.Extent(); - for(exp0.Init(shape, TopAbs_COMPOUND); exp0.More(); exp0.Next()) nrc++; - for(exp0.Init(shape, TopAbs_COMPSOLID); exp0.More(); exp0.Next()) nrcs++; + int nrso = _somap.Extent(), nrsh = _shmap.Extent(), nrf = _fmap.Extent(); + int nrw = _wmap.Extent(), nre = _emap.Extent(), nrv = _vmap.Extent(); + for(exp0.Init(_shape, TopAbs_COMPOUND); exp0.More(); exp0.Next()) nrc++; + for(exp0.Init(_shape, TopAbs_COMPSOLID); exp0.More(); exp0.Next()) nrcs++; double surfacecont = 0; - for(exp0.Init(shape, TopAbs_FACE); exp0.More(); exp0.Next()){ + for(exp0.Init(_shape, TopAbs_FACE); exp0.More(); exp0.Next()){ TopoDS_Face face = TopoDS::Face(exp0.Current()); GProp_GProps system; BRepGProp::SurfaceProperties(face, system); @@ -279,22 +513,22 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, { Handle_ShapeBuild_ReShape rebuild = new ShapeBuild_ReShape; - rebuild->Apply(shape); - for(exp1.Init(shape, TopAbs_EDGE); exp1.More(); exp1.Next()){ + rebuild->Apply(_shape); + for(exp1.Init(_shape, TopAbs_EDGE); exp1.More(); exp1.Next()){ TopoDS_Edge edge = TopoDS::Edge(exp1.Current()); if(BRep_Tool::Degenerated(edge)) rebuild->Remove(edge, false); } - shape = rebuild->Apply(shape); + _shape = rebuild->Apply(_shape); } buildLists(); { Handle(ShapeFix_Face) sff; Handle_ShapeBuild_ReShape rebuild = new ShapeBuild_ReShape; - rebuild->Apply(shape); + rebuild->Apply(_shape); - for(exp0.Init(shape, TopAbs_FACE); exp0.More(); exp0.Next()){ + for(exp0.Init(_shape, TopAbs_FACE); exp0.More(); exp0.Next()){ TopoDS_Face face = TopoDS::Face(exp0.Current()); sff = new ShapeFix_Face(face); @@ -308,7 +542,7 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, sff->Status(ShapeExtend_DONE4) || sff->Status(ShapeExtend_DONE5)) { - Msg::Info(" repaired face %d", fmap.FindIndex(face)); + Msg::Info(" repaired face %d", _fmap.FindIndex(face)); if(sff->Status(ShapeExtend_DONE1)) Msg::Info(" (some wires are fixed)"); else if(sff->Status(ShapeExtend_DONE2)) @@ -324,18 +558,18 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, rebuild->Replace(face, newface, Standard_False); } } - shape = rebuild->Apply(shape); + _shape = rebuild->Apply(_shape); } { Handle_ShapeBuild_ReShape rebuild = new ShapeBuild_ReShape; - rebuild->Apply(shape); - for(exp1.Init(shape, TopAbs_EDGE); exp1.More(); exp1.Next()){ + rebuild->Apply(_shape); + for(exp1.Init(_shape, TopAbs_EDGE); exp1.More(); exp1.Next()){ TopoDS_Edge edge = TopoDS::Edge(exp1.Current()); if(BRep_Tool::Degenerated(edge)) rebuild->Remove(edge, false); } - shape = rebuild->Apply(shape); + _shape = rebuild->Apply(_shape); } } @@ -344,9 +578,9 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, Handle(ShapeFix_Wire) sfw; Handle_ShapeBuild_ReShape rebuild = new ShapeBuild_ReShape; - rebuild->Apply(shape); + rebuild->Apply(_shape); - for(exp0.Init(shape, TopAbs_FACE); exp0.More(); exp0.Next()){ + for(exp0.Init(_shape, TopAbs_FACE); exp0.More(); exp0.Next()){ TopoDS_Face face = TopoDS::Face(exp0.Current()); for(exp1.Init(face, TopAbs_WIRE); exp1.More(); exp1.Next()){ @@ -364,20 +598,20 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, ! (sfw->StatusSmall(ShapeExtend_FAIL1) || sfw->StatusSmall(ShapeExtend_FAIL2) || sfw->StatusSmall(ShapeExtend_FAIL3))){ - Msg::Info(" fixed small edge in wire %d", wmap.FindIndex(oldwire)); + Msg::Info(" fixed small edge in wire %d", _wmap.FindIndex(oldwire)); replace = true; } else if(sfw->StatusSmall(ShapeExtend_FAIL1)) Msg::Warning("Failed to fix small edge in wire %d, edge cannot be checked " - "(no 3d curve and no pcurve)", wmap.FindIndex(oldwire)); + "(no 3d curve and no pcurve)", _wmap.FindIndex(oldwire)); else if(sfw->StatusSmall(ShapeExtend_FAIL2)) Msg::Warning("Failed to fix small edge in wire %d, " "edge is null-length and has different vertives at begin and " "end, and lockvtx is True or ModifiyTopologyMode is False", - wmap.FindIndex(oldwire)); + _wmap.FindIndex(oldwire)); else if(sfw->StatusSmall(ShapeExtend_FAIL3)) Msg::Warning("Failed to fix small edge in wire, CheckConnected has failed", - wmap.FindIndex(oldwire)); + _wmap.FindIndex(oldwire)); replace = sfw->FixEdgeCurves() || replace; replace = sfw->FixDegenerated() || replace; @@ -390,44 +624,44 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, } } - shape = rebuild->Apply(shape); + _shape = rebuild->Apply(_shape); { buildLists(); Handle_ShapeBuild_ReShape rebuild = new ShapeBuild_ReShape; - rebuild->Apply(shape); + rebuild->Apply(_shape); - for(exp1.Init(shape, TopAbs_EDGE); exp1.More(); exp1.Next()){ + for(exp1.Init(_shape, TopAbs_EDGE); exp1.More(); exp1.Next()){ TopoDS_Edge edge = TopoDS::Edge(exp1.Current()); - if(vmap.FindIndex(TopExp::FirstVertex(edge)) == - vmap.FindIndex(TopExp::LastVertex(edge))){ + if(_vmap.FindIndex(TopExp::FirstVertex(edge)) == + _vmap.FindIndex(TopExp::LastVertex(edge))){ GProp_GProps system; BRepGProp::LinearProperties(edge, system); if(system.Mass() < tolerance){ Msg::Info(" removing degenerated edge %d from vertex %d to vertex %d", - emap.FindIndex(edge), vmap.FindIndex(TopExp::FirstVertex(edge)), - vmap.FindIndex(TopExp::LastVertex(edge))); + _emap.FindIndex(edge), _vmap.FindIndex(TopExp::FirstVertex(edge)), + _vmap.FindIndex(TopExp::LastVertex(edge))); rebuild->Remove(edge, false); } } } - shape = rebuild->Apply(shape); + _shape = rebuild->Apply(_shape); } { Handle_ShapeBuild_ReShape rebuild = new ShapeBuild_ReShape; - rebuild->Apply(shape); - for(exp1.Init(shape, TopAbs_EDGE); exp1.More(); exp1.Next()){ + rebuild->Apply(_shape); + for(exp1.Init(_shape, TopAbs_EDGE); exp1.More(); exp1.Next()){ TopoDS_Edge edge = TopoDS::Edge(exp1.Current()); if(BRep_Tool::Degenerated(edge) ) rebuild->Remove(edge, false); } - shape = rebuild->Apply(shape); + _shape = rebuild->Apply(_shape); } Handle(ShapeFix_Wireframe) sfwf = new ShapeFix_Wireframe; sfwf->SetPrecision(tolerance); - sfwf->Load(shape); + sfwf->Load(_shape); sfwf->ModeDropSmallEdges() = Standard_True; if(sfwf->FixWireGaps()){ @@ -456,17 +690,17 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, Msg::Info(" failed to fix some small edges"); } - shape = sfwf->Shape(); + _shape = sfwf->Shape(); } if(fixspotstripfaces){ Msg::Info("- fixing spot and strip faces"); Handle(ShapeFix_FixSmallFace) sffsm = new ShapeFix_FixSmallFace(); - sffsm->Init(shape); + sffsm->Init(_shape); sffsm->SetPrecision(tolerance); sffsm->Perform(); - shape = sffsm->FixShape(); + _shape = sffsm->FixShape(); } if(sewfaces){ @@ -474,7 +708,7 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, BRepOffsetAPI_Sewing sewedObj(tolerance); - for(exp0.Init(shape, TopAbs_FACE); exp0.More(); exp0.Next()){ + for(exp0.Init(_shape, TopAbs_FACE); exp0.More(); exp0.Next()){ TopoDS_Face face = TopoDS::Face(exp0.Current()); sewedObj.Add(face); } @@ -482,20 +716,20 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, sewedObj.Perform(); if(!sewedObj.SewedShape().IsNull()) - shape = sewedObj.SewedShape(); + _shape = sewedObj.SewedShape(); else Msg::Info(" not possible"); } { Handle_ShapeBuild_ReShape rebuild = new ShapeBuild_ReShape; - rebuild->Apply(shape); - for(exp1.Init(shape, TopAbs_EDGE); exp1.More(); exp1.Next()){ + rebuild->Apply(_shape); + for(exp1.Init(_shape, TopAbs_EDGE); exp1.More(); exp1.Next()){ TopoDS_Edge edge = TopoDS::Edge(exp1.Current()); if(BRep_Tool::Degenerated(edge)) rebuild->Remove(edge, false); } - shape = rebuild->Apply(shape); + _shape = rebuild->Apply(_shape); } if(makesolids){ @@ -503,7 +737,7 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, BRepBuilderAPI_MakeSolid ms; int count = 0; - for(exp0.Init(shape, TopAbs_SHELL); exp0.More(); exp0.Next()){ + for(exp0.Init(_shape, TopAbs_SHELL); exp0.More(); exp0.Next()){ count++; ms.Add(TopoDS::Shell(exp0.Current())); } @@ -519,18 +753,18 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, sfs->SetPrecision(tolerance); sfs->SetMaxTolerance(tolerance); sfs->Perform(); - shape = sfs->Shape(); + _shape = sfs->Shape(); - for(exp0.Init(shape, TopAbs_SOLID); exp0.More(); exp0.Next()){ + for(exp0.Init(_shape, TopAbs_SOLID); exp0.More(); exp0.Next()){ TopoDS_Solid solid = TopoDS::Solid(exp0.Current()); TopoDS_Solid newsolid = solid; BRepLib::OrientClosedSolid(newsolid); Handle_ShapeBuild_ReShape rebuild = new ShapeBuild_ReShape; - // rebuild->Apply(shape); + // rebuild->Apply(_shape); rebuild->Replace(solid, newsolid, Standard_False); - TopoDS_Shape newshape = rebuild->Apply(shape, TopAbs_COMPSOLID);//, 1); - // TopoDS_Shape newshape = rebuild->Apply(shape); - shape = newshape; + TopoDS_Shape newshape = rebuild->Apply(_shape, TopAbs_COMPSOLID);//, 1); + // TopoDS_Shape newshape = rebuild->Apply(_shape); + _shape = newshape; } } else @@ -543,14 +777,14 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, Msg::Info("- cutting and connecting faces with Salome's Partition_Spliter"); TopExp_Explorer e2; Partition_Spliter ps; - for(e2.Init(shape, TopAbs_SOLID); e2.More(); e2.Next()) + for(e2.Init(_shape, TopAbs_SOLID); e2.More(); e2.Next()) ps.AddShape(e2.Current()); try{ ps.Compute(); - shape = ps.Shape(); + _shape = ps.Shape(); } catch(Standard_Failure &err){ - Msg::Error("%s", err.GetMessageString()); + Msg::Error("OCC %s", err.GetMessageString()); } } else @@ -558,14 +792,14 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, if(connect){ Msg::Info("- cutting and connecting faces with OCC_Connect"); OCC_Connect connect(1); - for(TopExp_Explorer p(shape, TopAbs_SOLID); p.More(); p.Next()) + for(TopExp_Explorer p(_shape, TopAbs_SOLID); p.More(); p.Next()) connect.Add(p.Current()); connect.Connect(); - shape = connect; + _shape = connect; } double newsurfacecont = 0; - for(exp0.Init(shape, TopAbs_FACE); exp0.More(); exp0.Next()){ + for(exp0.Init(_shape, TopAbs_FACE); exp0.More(); exp0.Next()){ TopoDS_Face face = TopoDS::Face(exp0.Current()); GProp_GProps system; BRepGProp::SurfaceProperties(face, system); @@ -574,10 +808,10 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, buildLists(); int nnrc = 0, nnrcs = 0; - int nnrso = somap.Extent(), nnrsh = shmap.Extent(), nnrf = fmap.Extent(); - int nnrw = wmap.Extent(), nnre = emap.Extent(), nnrv = vmap.Extent(); - for(exp0.Init(shape, TopAbs_COMPOUND); exp0.More(); exp0.Next()) nnrc++; - for(exp0.Init(shape, TopAbs_COMPSOLID); exp0.More(); exp0.Next()) nnrcs++; + int nnrso = _somap.Extent(), nnrsh = _shmap.Extent(), nnrf = _fmap.Extent(); + int nnrw = _wmap.Extent(), nnre = _emap.Extent(), nnrv = _vmap.Extent(); + for(exp0.Init(_shape, TopAbs_COMPOUND); exp0.More(); exp0.Next()) nnrc++; + for(exp0.Init(_shape, TopAbs_COMPSOLID); exp0.More(); exp0.Next()) nnrcs++; Msg::Info("-----------------------------------"); Msg::Info("Compounds : %d (%d)", nnrc, nrc); @@ -595,8 +829,8 @@ void OCC_Internals::healGeometry(double tolerance, bool fixdegenerated, void OCC_Internals::loadBREP(const char *fn) { BRep_Builder aBuilder; - BRepTools::Read(shape, (char*)fn, aBuilder); - BRepTools::Clean(shape); + BRepTools::Read(_shape, (char*)fn, aBuilder); + BRepTools::Clean(_shape); healGeometry(CTX::instance()->geom.tolerance, CTX::instance()->geom.occFixDegenerated, CTX::instance()->geom.occFixSmallEdges, @@ -605,7 +839,7 @@ void OCC_Internals::loadBREP(const char *fn) false, CTX::instance()->geom.occConnectFaces, CTX::instance()->geom.occScaling); - BRepTools::Clean(shape); + BRepTools::Clean(_shape); buildLists(); } @@ -614,10 +848,10 @@ void OCC_Internals::writeBREP(const char *fn) std::ofstream myFile; myFile.open(fn); try { - BRepTools::Write(shape, myFile); + BRepTools::Write(_shape, myFile); } catch(Standard_Failure &err){ - Msg::Error("%s", err.GetMessageString()); + Msg::Error("OCC %s", err.GetMessageString()); } myFile.close(); } @@ -628,8 +862,8 @@ void OCC_Internals::loadSTEP(const char *fn) reader.ReadFile((char*)fn); reader.NbRootsForTransfer(); reader.TransferRoots(); - shape = reader.OneShape(); - BRepTools::Clean(shape); + _shape = reader.OneShape(); + BRepTools::Clean(_shape); healGeometry(CTX::instance()->geom.tolerance, CTX::instance()->geom.occFixDegenerated, CTX::instance()->geom.occFixSmallEdges, @@ -638,14 +872,14 @@ void OCC_Internals::loadSTEP(const char *fn) false, CTX::instance()->geom.occConnectFaces, CTX::instance()->geom.occScaling); - BRepTools::Clean(shape); + BRepTools::Clean(_shape); buildLists(); } void OCC_Internals::writeSTEP(const char *fn) { STEPControl_Writer writer; - IFSelect_ReturnStatus status = writer.Transfer(shape, STEPControl_ManifoldSolidBrep); + IFSelect_ReturnStatus status = writer.Transfer(_shape, STEPControl_ManifoldSolidBrep); if(status == IFSelect_RetDone) status = writer.Write((char*)fn); } @@ -656,8 +890,8 @@ void OCC_Internals::loadIGES(const char *fn) reader.ReadFile((char*)fn); reader.NbRootsForTransfer(); reader.TransferRoots(); - shape = reader.OneShape(); - BRepTools::Clean(shape); + _shape = reader.OneShape(); + BRepTools::Clean(_shape); healGeometry(CTX::instance()->geom.tolerance, CTX::instance()->geom.occFixDegenerated, CTX::instance()->geom.occFixSmallEdges, @@ -666,42 +900,42 @@ void OCC_Internals::loadIGES(const char *fn) false, CTX::instance()->geom.occConnectFaces, CTX::instance()->geom.occScaling); - BRepTools::Clean(shape); + BRepTools::Clean(_shape); buildLists(); } void OCC_Internals::loadShape(const TopoDS_Shape *s) { - shape = *s; - BRepTools::Clean(shape); + _shape = *s; + BRepTools::Clean(_shape); buildLists(); } GVertex *OCC_Internals::getOCCVertexByNativePtr(GModel *model, TopoDS_Vertex toFind) { - if(gvNumCache.IsBound(toFind)) - return model->getVertexByTag(gvNumCache.Find(toFind)); + if(_gvNumCache.IsBound(toFind)) + return model->getVertexByTag(_gvNumCache.Find(toFind)); return 0; } GEdge *OCC_Internals::getOCCEdgeByNativePtr(GModel *model, TopoDS_Edge toFind) { - if(geNumCache.IsBound(toFind)) - return model->getEdgeByTag(geNumCache.Find(toFind)); + if(_geNumCache.IsBound(toFind)) + return model->getEdgeByTag(_geNumCache.Find(toFind)); return 0; } GFace *OCC_Internals::getOCCFaceByNativePtr(GModel *model, TopoDS_Face toFind) { - if(gfNumCache.IsBound(toFind)) - return model->getFaceByTag(gfNumCache.Find(toFind)); + if(_gfNumCache.IsBound(toFind)) + return model->getFaceByTag(_gfNumCache.Find(toFind)); return 0; } GRegion *OCC_Internals::getOCCRegionByNativePtr(GModel *model, TopoDS_Solid toFind) { - if(grNumCache.IsBound(toFind)) - return model->getRegionByTag(grNumCache.Find(toFind)); + if(_grNumCache.IsBound(toFind)) + return model->getRegionByTag(_grNumCache.Find(toFind)); return 0; } @@ -709,7 +943,7 @@ GVertex *OCC_Internals::addVertexToModel(GModel *model, TopoDS_Vertex vertex) { GVertex *gv = getOCCVertexByNativePtr(model, vertex); if(gv) return gv; - addShapeToLists(vertex); + _addShapeToLists(vertex); buildShapeFromLists(vertex); buildGModel(model); return getOCCVertexByNativePtr(model, vertex); @@ -719,7 +953,7 @@ GEdge *OCC_Internals::addEdgeToModel(GModel *model, TopoDS_Edge edge) { GEdge *ge = getOCCEdgeByNativePtr(model, edge); if(ge) return ge; - addShapeToLists(edge); + _addShapeToLists(edge); buildShapeFromLists(edge); buildGModel(model); return getOCCEdgeByNativePtr(model, edge); @@ -729,7 +963,7 @@ GFace* OCC_Internals::addFaceToModel(GModel *model, TopoDS_Face face) { GFace *gf = getOCCFaceByNativePtr(model, face); if(gf) return gf; - addShapeToLists(face); + _addShapeToLists(face); buildShapeFromLists(face); buildGModel(model); return getOCCFaceByNativePtr(model, face); @@ -747,7 +981,7 @@ GRegion* OCC_Internals::addRegionToModel(GModel *model, TopoDS_Solid region) buildGModel(model); return getOCCRegionByNativePtr(model, region); - // addShapeToLists(region); + // _addShapeToLists(region); // buildShapeFromLists(region); // buildGModel(model); // return getOCCRegionByNativePtr(model, region); @@ -757,9 +991,8 @@ void OCC_Internals::buildGModel(GModel *model) { // building geom vertices int numv = model->getMaxElementaryNumber(0) + 1; - for(int i = 1; i <= vmap.Extent(); i++){ - TopoDS_Vertex vertex = TopoDS::Vertex(vmap(i)); - + for(int i = 1; i <= _vmap.Extent(); i++){ + TopoDS_Vertex vertex = TopoDS::Vertex(_vmap(i)); if(!getOCCVertexByNativePtr(model, vertex)){ model->add(new OCCVertex(model, numv, vertex)); numv++; @@ -768,40 +1001,132 @@ void OCC_Internals::buildGModel(GModel *model) // building geom edges int nume = model->getMaxElementaryNumber(1) + 1; - for(int i = 1; i <= emap.Extent(); i++){ - int i1 = vmap.FindIndex(TopExp::FirstVertex(TopoDS::Edge(emap(i)))); - int i2 = vmap.FindIndex(TopExp::LastVertex(TopoDS::Edge(emap(i)))); - if(!getOCCEdgeByNativePtr(model, TopoDS::Edge(emap(i)))){ - GVertex *v1 = getOCCVertexByNativePtr(model, TopoDS::Vertex(vmap(i1))); - GVertex *v2 = getOCCVertexByNativePtr(model, TopoDS::Vertex(vmap(i2))); - model->add(new OCCEdge(model, TopoDS::Edge(emap(i)), nume, v1, v2)); + for(int i = 1; i <= _emap.Extent(); i++){ + int i1 = _vmap.FindIndex(TopExp::FirstVertex(TopoDS::Edge(_emap(i)))); + int i2 = _vmap.FindIndex(TopExp::LastVertex(TopoDS::Edge(_emap(i)))); + if(!getOCCEdgeByNativePtr(model, TopoDS::Edge(_emap(i)))){ + GVertex *v1 = getOCCVertexByNativePtr(model, TopoDS::Vertex(_vmap(i1))); + GVertex *v2 = getOCCVertexByNativePtr(model, TopoDS::Vertex(_vmap(i2))); + model->add(new OCCEdge(model, TopoDS::Edge(_emap(i)), nume, v1, v2)); nume++; } } // building geom faces int numf = model->getMaxElementaryNumber(2) + 1; - for(int i = 1; i <= fmap.Extent(); i++){ - if(!getOCCFaceByNativePtr(model, TopoDS::Face(fmap(i)))){ - model->add(new OCCFace(model, TopoDS::Face(fmap(i)), numf)); + for(int i = 1; i <= _fmap.Extent(); i++){ + if(!getOCCFaceByNativePtr(model, TopoDS::Face(_fmap(i)))){ + model->add(new OCCFace(model, TopoDS::Face(_fmap(i)), numf)); numf++; } } // building geom regions int numr = model->getMaxElementaryNumber(3) + 1; - for(int i = 1; i <= somap.Extent(); i++){ - if(!getOCCRegionByNativePtr(model, TopoDS::Solid(somap(i)))){ - model->add(new OCCRegion(model, TopoDS::Solid(somap(i)), numr)); + for(int i = 1; i <= _somap.Extent(); i++){ + if(!getOCCRegionByNativePtr(model, TopoDS::Solid(_somap(i)))){ + model->add(new OCCRegion(model, TopoDS::Solid(_somap(i)), numr)); numr++; } } } +int GModel::importOCCInternals() +{ + _occ_internals->importOCCInternals(this); + return 1; +} + +void OCC_Internals::importOCCInternals(GModel *model) +{ + int vTagMax = model->getMaxElementaryNumber(0); + for(std::map<int, int>::iterator it = _vTagIndex.begin(); it != _vTagIndex.end(); it++) + vTagMax = std::max(it->first, vTagMax); + int eTagMax = model->getMaxElementaryNumber(1); + for(std::map<int, int>::iterator it = _eTagIndex.begin(); it != _eTagIndex.end(); it++) + eTagMax = std::max(it->first, eTagMax); + int fTagMax = model->getMaxElementaryNumber(2); + for(std::map<int, int>::iterator it = _fTagIndex.begin(); it != _fTagIndex.end(); it++) + fTagMax = std::max(it->first, fTagMax); + int rTagMax = model->getMaxElementaryNumber(3); + for(std::map<int, int>::iterator it = _rTagIndex.begin(); it != _rTagIndex.end(); it++) + rTagMax = std::max(it->first, rTagMax); + + // this imports all OCC entities stored in _vmap, _emap, _fmap and _somap, by + // preserving any explicit entity tag specified in the TagIndex/IndexTag maps. + + for(int i = 1; i <= _vmap.Extent(); i++){ + TopoDS_Vertex vertex = TopoDS::Vertex(_vmap(i)); + if(!getOCCVertexByNativePtr(model, vertex)){ + int tag; + std::map<int, int>::iterator it = _vIndexTag.find(i); + if(it == _vIndexTag.end()){ + tag = vTagMax + 1; + vTagMax++; + } + else + tag = it->second; + model->add(new OCCVertex(model, tag, vertex)); + } + } + + // building geom edges + for(int i = 1; i <= _emap.Extent(); i++){ + TopoDS_Edge edge = TopoDS::Edge(_emap(i)); + int i1 = _vmap.FindIndex(TopExp::FirstVertex(edge)); + int i2 = _vmap.FindIndex(TopExp::LastVertex(edge)); + if(!getOCCEdgeByNativePtr(model, edge)){ + GVertex *v1 = getOCCVertexByNativePtr(model, TopoDS::Vertex(_vmap(i1))); + GVertex *v2 = getOCCVertexByNativePtr(model, TopoDS::Vertex(_vmap(i2))); + int tag; + std::map<int, int>::iterator it = _eIndexTag.find(i); + if(it == _eIndexTag.end()){ + tag = eTagMax + 1; + eTagMax++; + } + else + tag = it->second; + model->add(new OCCEdge(model, edge, tag, v1, v2)); + } + } + + // building geom faces + for(int i = 1; i <= _fmap.Extent(); i++){ + TopoDS_Face face = TopoDS::Face(_fmap(i)); + if(!getOCCFaceByNativePtr(model, face)){ + int tag; + std::map<int, int>::iterator it = _fIndexTag.find(i); + if(it == _fIndexTag.end()){ + tag = fTagMax + 1; + fTagMax++; + } + else + tag = it->second; + model->add(new OCCFace(model, face, tag)); + } + } + + // building geom regions + for(int i = 1; i <= _somap.Extent(); i++){ + TopoDS_Solid region = TopoDS::Solid(_somap(i)); + if(!getOCCRegionByNativePtr(model, region)){ + int tag; + std::map<int, int>::iterator it = _rIndexTag.find(i); + if(it == _rIndexTag.end()){ + tag = rTagMax + 1; + rTagMax++; + } + else + tag = it->second; + model->add(new OCCRegion(model, region, tag)); + } + } +} + void addSimpleShapes(TopoDS_Shape theShape, TopTools_ListOfShape &theList) { if(theShape.ShapeType() != TopAbs_COMPOUND && - theShape.ShapeType() != TopAbs_COMPSOLID) { + theShape.ShapeType() != TopAbs_COMPSOLID) { theList.Append(theShape); return; } @@ -826,182 +1151,185 @@ void addSimpleShapes(TopoDS_Shape theShape, TopTools_ListOfShape &theList) void OCC_Internals::applyBooleanOperator(TopoDS_Shape tool, const BooleanOperator &op) { if(tool.IsNull()) return; - if(shape.IsNull()) shape = tool; - else{ - switch(op){ - case OCC_Internals::Intersection : - { - TopoDS_Shape theNewShape; - BRep_Builder B; - TopoDS_Compound C; - B.MakeCompound(C); - TopTools_ListOfShape listShape1, listShape2; - addSimpleShapes(shape, listShape1); - addSimpleShapes(tool, listShape2); - Standard_Boolean isCompound = - (listShape1.Extent() > 1 || listShape2.Extent() > 1); - - TopTools_ListIteratorOfListOfShape itSub1(listShape1); - for(; itSub1.More(); itSub1.Next()) { - TopoDS_Shape aValue1 = itSub1.Value(); - TopTools_ListIteratorOfListOfShape itSub2(listShape2); - for(; itSub2.More(); itSub2.Next()) { - TopoDS_Shape aValue2 = itSub2.Value(); - BRepAlgoAPI_Common BO(aValue1, aValue2); - if(!BO.IsDone()) { - Msg::Error("Boolean Intersection Operator can not be performed"); - } - if(isCompound) { - TopoDS_Shape aStepResult = BO.Shape(); - if(aStepResult.ShapeType() == TopAbs_COMPOUND) { - TopoDS_Iterator aCompIter(aStepResult); - for(; aCompIter.More(); aCompIter.Next()) { - B.Add(C, aCompIter.Value()); - } - } - else { - B.Add(C, aStepResult); - } - } - else - theNewShape = BO.Shape(); - } - } - if(isCompound) { - TopTools_ListOfShape listShapeC; - addSimpleShapes(C, listShapeC); - TopTools_ListIteratorOfListOfShape itSubC(listShapeC); - //bool isOnlySolids = true; - for(; itSubC.More(); itSubC.Next()) { - TopoDS_Shape aValueC = itSubC.Value(); - //if(aValueC.ShapeType() != TopAbs_SOLID) isOnlySolids = false; - } - // if(isOnlySolids) - // theNewShape = GlueFaces(C, Precision::Confusion()); - // else - theNewShape = C; - } - shape = theNewShape; - } - break; - case OCC_Internals::Cut : - { - TopoDS_Shape theNewShape; - BRep_Builder B; - TopoDS_Compound C; - B.MakeCompound(C); - - TopTools_ListOfShape listShapes, listTools; - addSimpleShapes(shape, listShapes); - addSimpleShapes(tool, listTools); - - Standard_Boolean isCompound = (listShapes.Extent() > 1); - - TopTools_ListIteratorOfListOfShape itSub1(listShapes); - for(; itSub1.More(); itSub1.Next()) { - TopoDS_Shape aCut = itSub1.Value(); - // tools - TopTools_ListIteratorOfListOfShape itSub2(listTools); - for(; itSub2.More(); itSub2.Next()) { - TopoDS_Shape aTool = itSub2.Value(); - BRepAlgoAPI_Cut BO(aCut, aTool); - if(!BO.IsDone()) { - Msg::Error("Cut operation can not be performed on the given shapes"); - return; - } - aCut = BO.Shape(); + if(_shape.IsNull()){ + _shape = tool; + return; + } + + switch(op){ + case OCC_Internals::Intersection : + { + TopoDS_Shape theNewShape; + BRep_Builder B; + TopoDS_Compound C; + B.MakeCompound(C); + TopTools_ListOfShape listShape1, listShape2; + addSimpleShapes(_shape, listShape1); + addSimpleShapes(tool, listShape2); + Standard_Boolean isCompound = + (listShape1.Extent() > 1 || listShape2.Extent() > 1); + + TopTools_ListIteratorOfListOfShape itSub1(listShape1); + for(; itSub1.More(); itSub1.Next()) { + TopoDS_Shape aValue1 = itSub1.Value(); + TopTools_ListIteratorOfListOfShape itSub2(listShape2); + for(; itSub2.More(); itSub2.Next()) { + TopoDS_Shape aValue2 = itSub2.Value(); + BRepAlgoAPI_Common BO(aValue1, aValue2); + if(!BO.IsDone()) { + Msg::Error("Boolean Intersection Operator can not be performed"); } if(isCompound) { - if(aCut.ShapeType() == TopAbs_COMPOUND) { - TopoDS_Iterator aCompIter(aCut); + TopoDS_Shape aStepResult = BO.Shape(); + if(aStepResult.ShapeType() == TopAbs_COMPOUND) { + TopoDS_Iterator aCompIter(aStepResult); for(; aCompIter.More(); aCompIter.Next()) { B.Add(C, aCompIter.Value()); } } else { - B.Add(C, aCut); + B.Add(C, aStepResult); } } else - theNewShape = aCut; - } - - if(isCompound) { - TopTools_ListOfShape listShapeC; - addSimpleShapes(C, listShapeC); - TopTools_ListIteratorOfListOfShape itSubC(listShapeC); - //bool isOnlySolids = true; - for(; itSubC.More(); itSubC.Next()) { - TopoDS_Shape aValueC = itSubC.Value(); - //if(aValueC.ShapeType() != TopAbs_SOLID) isOnlySolids = false; - } - // if(isOnlySolids) - // theNewShape = GlueFaces(C, Precision::Confusion()); - // else - theNewShape = C; + theNewShape = BO.Shape(); } - shape = theNewShape; } - break; - case OCC_Internals::Fuse : - { - TopoDS_Solid solid1, solid2; - int hack = 0; - if(shape.ShapeType() != TopAbs_SOLID && tool.ShapeType() != TopAbs_SOLID){ - TopExp_Explorer exp0; - for(exp0.Init(shape, TopAbs_SOLID); exp0.More(); exp0.Next()){ - solid1 = TopoDS::Solid(exp0.Current()); - hack++; - break; - } - for(exp0.Init(tool, TopAbs_SOLID); exp0.More(); exp0.Next()){ - solid2 = TopoDS::Solid(exp0.Current()); - hack++; - break; - } + if(isCompound) { + TopTools_ListOfShape listShapeC; + addSimpleShapes(C, listShapeC); + TopTools_ListIteratorOfListOfShape itSubC(listShapeC); + //bool isOnlySolids = true; + for(; itSubC.More(); itSubC.Next()) { + TopoDS_Shape aValueC = itSubC.Value(); + //if(aValueC.ShapeType() != TopAbs_SOLID) isOnlySolids = false; } - if(hack == 2){ // FIXME: just a temp hack! - Msg::Info("Temporary hack in Fuse :-)"); - BRepAlgoAPI_Fuse BO(solid1, solid2); + // if(isOnlySolids) + // theNewShape = GlueFaces(C, Precision::Confusion()); + // else + theNewShape = C; + } + _shape = theNewShape; + } + break; + case OCC_Internals::Cut : + { + TopoDS_Shape theNewShape; + BRep_Builder B; + TopoDS_Compound C; + B.MakeCompound(C); + + TopTools_ListOfShape listShapes, listTools; + addSimpleShapes(_shape, listShapes); + addSimpleShapes(tool, listTools); + + Standard_Boolean isCompound = (listShapes.Extent() > 1); + + TopTools_ListIteratorOfListOfShape itSub1(listShapes); + for(; itSub1.More(); itSub1.Next()) { + TopoDS_Shape aCut = itSub1.Value(); + // tools + TopTools_ListIteratorOfListOfShape itSub2(listTools); + for(; itSub2.More(); itSub2.Next()) { + TopoDS_Shape aTool = itSub2.Value(); + BRepAlgoAPI_Cut BO(aCut, aTool); if(!BO.IsDone()) { - Msg::Error("Fuse operation can not be performed on the given shapes"); + Msg::Error("Cut operation can not be performed on the given shapes"); + return; } - shape = BO.Shape(); + aCut = BO.Shape(); } - else{ - BRepAlgoAPI_Fuse BO(tool, shape); - if(!BO.IsDone()) { - Msg::Error("Fuse operation can not be performed on the given shapes"); + if(isCompound) { + if(aCut.ShapeType() == TopAbs_COMPOUND) { + TopoDS_Iterator aCompIter(aCut); + for(; aCompIter.More(); aCompIter.Next()) { + B.Add(C, aCompIter.Value()); + } + } + else { + B.Add(C, aCut); } - shape = BO.Shape(); } + else + theNewShape = aCut; } - break; - case OCC_Internals::Section : - { - TopoDS_Shape theNewShape; - BRep_Builder B; - TopoDS_Compound C; - B.MakeCompound(C); - - TopTools_ListOfShape listShapes, listTools; - addSimpleShapes(shape, listShapes); - addSimpleShapes(tool, listTools); - - Standard_Boolean isCompound = (listShapes.Extent() > 1); - TopTools_ListIteratorOfListOfShape itSub1(listShapes); - for(; itSub1.More(); itSub1.Next()) { - TopoDS_Shape aValue1 = itSub1.Value(); - TopTools_ListIteratorOfListOfShape itSub2(listTools); - for(; itSub2.More(); itSub2.Next()) { - TopoDS_Shape aValue2 = itSub2.Value(); - BRepAlgoAPI_Section BO(aValue1, aValue2, Standard_False); - BO.Approximation(Standard_True); - BO.Build(); - if(!BO.IsDone()) { - Msg::Error("Section operation can not be performed on the given shapes"); - return; - } + + if(isCompound) { + TopTools_ListOfShape listShapeC; + addSimpleShapes(C, listShapeC); + TopTools_ListIteratorOfListOfShape itSubC(listShapeC); + //bool isOnlySolids = true; + for(; itSubC.More(); itSubC.Next()) { + TopoDS_Shape aValueC = itSubC.Value(); + //if(aValueC.ShapeType() != TopAbs_SOLID) isOnlySolids = false; + } + // if(isOnlySolids) + // theNewShape = GlueFaces(C, Precision::Confusion()); + // else + theNewShape = C; + } + _shape = theNewShape; + } + break; + case OCC_Internals::Fuse : + { + TopoDS_Solid solid1, solid2; + int hack = 0; + if(_shape.ShapeType() != TopAbs_SOLID && tool.ShapeType() != TopAbs_SOLID){ + TopExp_Explorer exp0; + for(exp0.Init(_shape, TopAbs_SOLID); exp0.More(); exp0.Next()){ + solid1 = TopoDS::Solid(exp0.Current()); + hack++; + break; + } + for(exp0.Init(tool, TopAbs_SOLID); exp0.More(); exp0.Next()){ + solid2 = TopoDS::Solid(exp0.Current()); + hack++; + break; + } + } + if(hack == 2){ // FIXME: just a temp hack! + Msg::Info("Temporary hack in Fuse :-)"); + BRepAlgoAPI_Fuse BO(solid1, solid2); + if(!BO.IsDone()) { + Msg::Error("Fuse operation can not be performed on the given shapes"); + } + _shape = BO.Shape(); + } + else{ + BRepAlgoAPI_Fuse BO(tool, _shape); + if(!BO.IsDone()) { + Msg::Error("Fuse operation can not be performed on the given shapes"); + } + _shape = BO.Shape(); + } + } + break; + case OCC_Internals::Section : + { + TopoDS_Shape theNewShape; + BRep_Builder B; + TopoDS_Compound C; + B.MakeCompound(C); + + TopTools_ListOfShape listShapes, listTools; + addSimpleShapes(_shape, listShapes); + addSimpleShapes(tool, listTools); + + Standard_Boolean isCompound = (listShapes.Extent() > 1); + TopTools_ListIteratorOfListOfShape itSub1(listShapes); + for(; itSub1.More(); itSub1.Next()) { + TopoDS_Shape aValue1 = itSub1.Value(); + TopTools_ListIteratorOfListOfShape itSub2(listTools); + for(; itSub2.More(); itSub2.Next()) { + TopoDS_Shape aValue2 = itSub2.Value(); + BRepAlgoAPI_Section BO(aValue1, aValue2, Standard_False); + BO.Approximation(Standard_True); + BO.Build(); + if(!BO.IsDone()) { + Msg::Error("Section operation can not be performed on the given shapes"); + return; + } if(isCompound) { TopoDS_Shape aStepResult = BO.Shape(); if(aStepResult.ShapeType() == TopAbs_COMPOUND) { @@ -1016,17 +1344,16 @@ void OCC_Internals::applyBooleanOperator(TopoDS_Shape tool, const BooleanOperato } else theNewShape = BO.Shape(); - } } - if(isCompound) - theNewShape = C; - shape = theNewShape; } - break; - default : - Msg::Error("Requested boolean operation not implemented"); - break; + if(isCompound) + theNewShape = C; + _shape = theNewShape; } + break; + default : + Msg::Error("Requested boolean operation not implemented"); + break; } } @@ -1034,7 +1361,7 @@ void OCC_Internals::fillet(std::vector<TopoDS_Edge> &edgesToFillet, double Radius) { // create a tool for fillet - BRepFilletAPI_MakeFillet fill(shape); + BRepFilletAPI_MakeFillet fill(_shape); for(unsigned int i = 0; i < edgesToFillet.size(); ++i){ fill.Add(edgesToFillet[i]); } @@ -1046,17 +1373,23 @@ void OCC_Internals::fillet(std::vector<TopoDS_Edge> &edgesToFillet, Msg::Error("Fillet can't be computed on the given shape with the given radius"); return; } - shape = fill.Shape(); + _shape = fill.Shape(); - if(shape.IsNull()) return; + if(_shape.IsNull()) return; // Check shape validity - BRepCheck_Analyzer ana(shape, false); + BRepCheck_Analyzer ana(_shape, false); if(!ana.IsValid()) { Msg::Error("Fillet algorithm have produced an invalid shape result"); } } +void GModel::_createOCCInternals() +{ + if(_occ_internals) delete _occ_internals; + _occ_internals = new OCC_Internals; +} + void GModel::_deleteOCCInternals() { if(_occ_internals) delete _occ_internals; @@ -1151,6 +1484,10 @@ GRegion* GModel::getRegionForOCCShape(const void *shape) #else +void GModel::_createOCCInternals() +{ +} + void GModel::_deleteOCCInternals() { } diff --git a/Geo/GModelIO_OCC.h b/Geo/GModelIO_OCC.h index 5c3408301effee9e15de100ebd74f2b21469e4dd..3d5a4b7ea0af65ffbd6e23c05305dcbc035cff13 100644 --- a/Geo/GModelIO_OCC.h +++ b/Geo/GModelIO_OCC.h @@ -15,39 +15,76 @@ class OCC_Internals { protected : - // the shape - TopoDS_Shape shape; - // all the (sub) TopoDS_Shapes in 'shape' - TopTools_IndexedMapOfShape fmap, emap, vmap, somap, shmap, wmap; + // a temporary shape FIXME will be removed + TopoDS_Shape _shape; + + // all the (sub) TopoDS_Shapes + TopTools_IndexedMapOfShape _vmap, _emap, _wmap, _fmap, _shmap, _somap; // cache mapping TopoDS_Shapes to their corresponding GEntity tags - TopTools_DataMapOfShapeInteger gvNumCache, geNumCache, gfNumCache, grNumCache; + TopTools_DataMapOfShapeInteger _gvNumCache, _geNumCache, _gfNumCache, _grNumCache; + // mapping between indices of the (sub) shapes in the maps and the assigned tags + std::map<int, int> _vTagIndex, _eTagIndex, _fTagIndex, _rTagIndex; + std::map<int, int> _vIndexTag, _eIndexTag, _fIndexTag, _rIndexTag; + + public: + // add shape and all sub-shapes in _maps + // FIXME: this should be private, but is currently used in deprectated + // GModelFactory + void _addShapeToLists(TopoDS_Shape shape, std::vector<int> indices[4]=0); + public: enum BooleanOperator { Intersection, Cut, Section, Fuse }; OCC_Internals(){} - TopoDS_Shape getShape () { return shape; } + + // add shapes only using internal OCC data + void addVertex(int tag, double x, double y, double z); + void addCircleArc(int tag, int tagStart, int tagCenter, int tagEnd); + void addSphere(int tag, double xc, double yc, double zc, double radius); + void addThruSections(int tag, std::vector<std::vector<int> > tagEdges); + + // apply boolean operation + void applyBooleanOperator(int tag, + std::vector<int> shapeTags[4], + std::vector<int> toolTags[4], + BooleanOperator op, + bool removeShape=true, bool removeTool=true); + + + // perform boolean operation on _shape, using tool + void applyBooleanOperator(TopoDS_Shape tool, const BooleanOperator &op); + + // import all the OCC shapes into the model + void importOCCInternals(GModel *model); + + // manipulate _shape + TopoDS_Shape getShape () { return _shape; } void buildLists(); - void buildShapeFromLists(TopoDS_Shape _shape); - void buildShapeFromGModel(GModel*); - void addShapeToLists(TopoDS_Shape shape); + void buildShapeFromLists(TopoDS_Shape shape); + void healGeometry(double tolerance, bool fixdegenerated, bool fixsmalledges, bool fixspotstripfaces, bool sewfaces, bool makesolids=false, int connect=0, double scaling=0.0); + void fillet(std::vector<TopoDS_Edge> &shapes, double radius); + + + // I/O towards GModel + void buildShapeFromGModel(GModel*); + void buildGModel(GModel *gm); void loadBREP(const char *); void writeBREP(const char *); void loadSTEP(const char *); void writeSTEP(const char *); void loadIGES(const char *); void loadShape(const TopoDS_Shape *); - void buildGModel(GModel *gm); - void bind(TopoDS_Vertex vertex, int num){ gvNumCache.Bind(vertex, num); } - void bind(TopoDS_Edge edge, int num){ geNumCache.Bind(edge, num); } - void bind(TopoDS_Face face, int num){ gfNumCache.Bind(face, num); } - void bind(TopoDS_Solid solid, int num){ grNumCache.Bind(solid, num); } - void unbind(TopoDS_Vertex vertex){ gvNumCache.UnBind(vertex); } - void unbind(TopoDS_Edge edge){ geNumCache.UnBind(edge); } - void unbind(TopoDS_Face face){ gfNumCache.UnBind(face); } - void unbind(TopoDS_Solid solid){ grNumCache.UnBind(solid); } + void bind(TopoDS_Vertex vertex, int num){ _gvNumCache.Bind(vertex, num); } + void bind(TopoDS_Edge edge, int num){ _geNumCache.Bind(edge, num); } + void bind(TopoDS_Face face, int num){ _gfNumCache.Bind(face, num); } + void bind(TopoDS_Solid solid, int num){ _grNumCache.Bind(solid, num); } + void unbind(TopoDS_Vertex vertex){ _gvNumCache.UnBind(vertex); } + void unbind(TopoDS_Edge edge){ _geNumCache.UnBind(edge); } + void unbind(TopoDS_Face face){ _gfNumCache.UnBind(face); } + void unbind(TopoDS_Solid solid){ _grNumCache.UnBind(solid); } GVertex *getOCCVertexByNativePtr(GModel *model, TopoDS_Vertex toFind); GEdge *getOCCEdgeByNativePtr(GModel *model, TopoDS_Edge toFind); GFace *getOCCFaceByNativePtr(GModel *model, TopoDS_Face toFind); @@ -56,8 +93,18 @@ class OCC_Internals { GEdge *addEdgeToModel(GModel *model, TopoDS_Edge e); GFace *addFaceToModel(GModel *model, TopoDS_Face f); GRegion *addRegionToModel(GModel *model, TopoDS_Solid r); - void fillet(std::vector<TopoDS_Edge> &shapes, double radius); - void applyBooleanOperator(TopoDS_Shape tool, const BooleanOperator &op); +}; + +#else + +class OCC_Internals { +public: + enum BooleanOperator { Intersection, Cut, Section, Fuse }; + OCC_Internals(){} + void addVertex(int tag, double x, double y, double z){} + void addCircleArc(int tag, int tagStart, int tagCenter, int tagEnd){} + void addThruSections(int tag, std::vector<std::vector<int> > tagEdges){} + void importOCCInternals(GModel *model){} }; #endif diff --git a/Geo/Geo.h b/Geo/Geo.h index 2f032e79eddbe3180de29a4bb5df495ff0e58ee3..bde13557b1960e9e641e6fdb96dcb89889219223 100644 --- a/Geo/Geo.h +++ b/Geo/Geo.h @@ -56,6 +56,8 @@ #define MSH_PHYSICAL_SURFACE 502 #define MSH_PHYSICAL_VOLUME 503 +#define MSH_UNKNOWN 999 + struct Coord{ double X, Y, Z; }; diff --git a/Parser/Gmsh.l b/Parser/Gmsh.l index 58fb22cabac75a192aa8d5de73f0366c5c4f8ef9..09f7aa02a38aab12eb6d0051f1e4b9be1823076d 100644 --- a/Parser/Gmsh.l +++ b/Parser/Gmsh.l @@ -120,6 +120,9 @@ ArcTan2 return tAtan2; Betti return tBetti; Bezier return tBezier; BSpline return tBSpline; +BooleanUnion return tBooleanUnion; +BooleanIntersection return tBooleanIntersection; +BooleanSubtraction return tBooleanSubtraction; BoundingBox return tBoundingBox; Catenary return tCatenary; @@ -258,6 +261,7 @@ Reverse return tReverse; ScaleLastLayer return tScaleLast; Smoother return tSmoother; +SetFactory return tSetFactory; SetNumber return tSetNumber; SetString return tSetString; SetPartition return tSetPartition; @@ -290,6 +294,7 @@ T2 return tText2D; T3 return tText3D; TestLevel return tTestLevel; TextAttributes return tTextAttributes; +ThruSections return tThruSections; TIME return tTime; Transfinite return tTransfinite; Transf[qQ]uad[tT]ri return tTransfQuadTri; diff --git a/Parser/Gmsh.tab.cpp b/Parser/Gmsh.tab.cpp index d7748a2f38c1e0ab7a8e434a43c6abb0210edbe1..e8e6f044456654e518d95bc1ec2bd6d5d907bedf 100644 --- a/Parser/Gmsh.tab.cpp +++ b/Parser/Gmsh.tab.cpp @@ -171,102 +171,107 @@ tRefineMesh = 352, tAdaptMesh = 353, tRelocateMesh = 354, - tPlane = 355, - tRuled = 356, - tTransfinite = 357, - tComplex = 358, - tPhysical = 359, - tCompound = 360, - tPeriodic = 361, - tUsing = 362, - tPlugin = 363, - tDegenerated = 364, - tRecursive = 365, - tRotate = 366, - tTranslate = 367, - tSymmetry = 368, - tDilate = 369, - tExtrude = 370, - tLevelset = 371, - tAffine = 372, - tRecombine = 373, - tSmoother = 374, - tSplit = 375, - tDelete = 376, - tCoherence = 377, - tIntersect = 378, - tMeshAlgorithm = 379, - tReverse = 380, - tLayers = 381, - tScaleLast = 382, - tHole = 383, - tAlias = 384, - tAliasWithOptions = 385, - tCopyOptions = 386, - tQuadTriAddVerts = 387, - tQuadTriNoNewVerts = 388, - tQuadTriSngl = 389, - tQuadTriDbl = 390, - tRecombLaterals = 391, - tTransfQuadTri = 392, - tText2D = 393, - tText3D = 394, - tInterpolationScheme = 395, - tTime = 396, - tCombine = 397, - tBSpline = 398, - tBezier = 399, - tNurbs = 400, - tNurbsOrder = 401, - tNurbsKnots = 402, - tColor = 403, - tColorTable = 404, - tFor = 405, - tIn = 406, - tEndFor = 407, - tIf = 408, - tElseIf = 409, - tElse = 410, - tEndIf = 411, - tExit = 412, - tAbort = 413, - tField = 414, - tReturn = 415, - tCall = 416, - tSlide = 417, - tMacro = 418, - tShow = 419, - tHide = 420, - tGetValue = 421, - tGetStringValue = 422, - tGetEnv = 423, - tGetString = 424, - tGetNumber = 425, - tHomology = 426, - tCohomology = 427, - tBetti = 428, - tExists = 429, - tFileExists = 430, - tGMSH_MAJOR_VERSION = 431, - tGMSH_MINOR_VERSION = 432, - tGMSH_PATCH_VERSION = 433, - tGmshExecutableName = 434, - tSetPartition = 435, - tNameToString = 436, - tStringToName = 437, - tAFFECTDIVIDE = 438, - tAFFECTTIMES = 439, - tAFFECTMINUS = 440, - tAFFECTPLUS = 441, - tOR = 442, - tAND = 443, - tNOTEQUAL = 444, - tEQUAL = 445, - tGREATEROREQUAL = 446, - tLESSOREQUAL = 447, - UNARYPREC = 448, - tMINUSMINUS = 449, - tPLUSPLUS = 450 + tSetFactory = 355, + tThruSections = 356, + tPlane = 357, + tRuled = 358, + tTransfinite = 359, + tComplex = 360, + tPhysical = 361, + tCompound = 362, + tPeriodic = 363, + tUsing = 364, + tPlugin = 365, + tDegenerated = 366, + tRecursive = 367, + tRotate = 368, + tTranslate = 369, + tSymmetry = 370, + tDilate = 371, + tExtrude = 372, + tLevelset = 373, + tAffine = 374, + tBooleanUnion = 375, + tBooleanIntersection = 376, + tBooleanSubtraction = 377, + tRecombine = 378, + tSmoother = 379, + tSplit = 380, + tDelete = 381, + tCoherence = 382, + tIntersect = 383, + tMeshAlgorithm = 384, + tReverse = 385, + tLayers = 386, + tScaleLast = 387, + tHole = 388, + tAlias = 389, + tAliasWithOptions = 390, + tCopyOptions = 391, + tQuadTriAddVerts = 392, + tQuadTriNoNewVerts = 393, + tQuadTriSngl = 394, + tQuadTriDbl = 395, + tRecombLaterals = 396, + tTransfQuadTri = 397, + tText2D = 398, + tText3D = 399, + tInterpolationScheme = 400, + tTime = 401, + tCombine = 402, + tBSpline = 403, + tBezier = 404, + tNurbs = 405, + tNurbsOrder = 406, + tNurbsKnots = 407, + tColor = 408, + tColorTable = 409, + tFor = 410, + tIn = 411, + tEndFor = 412, + tIf = 413, + tElseIf = 414, + tElse = 415, + tEndIf = 416, + tExit = 417, + tAbort = 418, + tField = 419, + tReturn = 420, + tCall = 421, + tSlide = 422, + tMacro = 423, + tShow = 424, + tHide = 425, + tGetValue = 426, + tGetStringValue = 427, + tGetEnv = 428, + tGetString = 429, + tGetNumber = 430, + tHomology = 431, + tCohomology = 432, + tBetti = 433, + tExists = 434, + tFileExists = 435, + tGMSH_MAJOR_VERSION = 436, + tGMSH_MINOR_VERSION = 437, + tGMSH_PATCH_VERSION = 438, + tGmshExecutableName = 439, + tSetPartition = 440, + tNameToString = 441, + tStringToName = 442, + tAFFECTDIVIDE = 443, + tAFFECTTIMES = 444, + tAFFECTMINUS = 445, + tAFFECTPLUS = 446, + tOR = 447, + tAND = 448, + tNOTEQUAL = 449, + tEQUAL = 450, + tGREATEROREQUAL = 451, + tLESSOREQUAL = 452, + UNARYPREC = 453, + tMINUSMINUS = 454, + tPLUSPLUS = 455 }; #endif /* Tokens. */ @@ -367,102 +372,107 @@ #define tRefineMesh 352 #define tAdaptMesh 353 #define tRelocateMesh 354 -#define tPlane 355 -#define tRuled 356 -#define tTransfinite 357 -#define tComplex 358 -#define tPhysical 359 -#define tCompound 360 -#define tPeriodic 361 -#define tUsing 362 -#define tPlugin 363 -#define tDegenerated 364 -#define tRecursive 365 -#define tRotate 366 -#define tTranslate 367 -#define tSymmetry 368 -#define tDilate 369 -#define tExtrude 370 -#define tLevelset 371 -#define tAffine 372 -#define tRecombine 373 -#define tSmoother 374 -#define tSplit 375 -#define tDelete 376 -#define tCoherence 377 -#define tIntersect 378 -#define tMeshAlgorithm 379 -#define tReverse 380 -#define tLayers 381 -#define tScaleLast 382 -#define tHole 383 -#define tAlias 384 -#define tAliasWithOptions 385 -#define tCopyOptions 386 -#define tQuadTriAddVerts 387 -#define tQuadTriNoNewVerts 388 -#define tQuadTriSngl 389 -#define tQuadTriDbl 390 -#define tRecombLaterals 391 -#define tTransfQuadTri 392 -#define tText2D 393 -#define tText3D 394 -#define tInterpolationScheme 395 -#define tTime 396 -#define tCombine 397 -#define tBSpline 398 -#define tBezier 399 -#define tNurbs 400 -#define tNurbsOrder 401 -#define tNurbsKnots 402 -#define tColor 403 -#define tColorTable 404 -#define tFor 405 -#define tIn 406 -#define tEndFor 407 -#define tIf 408 -#define tElseIf 409 -#define tElse 410 -#define tEndIf 411 -#define tExit 412 -#define tAbort 413 -#define tField 414 -#define tReturn 415 -#define tCall 416 -#define tSlide 417 -#define tMacro 418 -#define tShow 419 -#define tHide 420 -#define tGetValue 421 -#define tGetStringValue 422 -#define tGetEnv 423 -#define tGetString 424 -#define tGetNumber 425 -#define tHomology 426 -#define tCohomology 427 -#define tBetti 428 -#define tExists 429 -#define tFileExists 430 -#define tGMSH_MAJOR_VERSION 431 -#define tGMSH_MINOR_VERSION 432 -#define tGMSH_PATCH_VERSION 433 -#define tGmshExecutableName 434 -#define tSetPartition 435 -#define tNameToString 436 -#define tStringToName 437 -#define tAFFECTDIVIDE 438 -#define tAFFECTTIMES 439 -#define tAFFECTMINUS 440 -#define tAFFECTPLUS 441 -#define tOR 442 -#define tAND 443 -#define tNOTEQUAL 444 -#define tEQUAL 445 -#define tGREATEROREQUAL 446 -#define tLESSOREQUAL 447 -#define UNARYPREC 448 -#define tMINUSMINUS 449 -#define tPLUSPLUS 450 +#define tSetFactory 355 +#define tThruSections 356 +#define tPlane 357 +#define tRuled 358 +#define tTransfinite 359 +#define tComplex 360 +#define tPhysical 361 +#define tCompound 362 +#define tPeriodic 363 +#define tUsing 364 +#define tPlugin 365 +#define tDegenerated 366 +#define tRecursive 367 +#define tRotate 368 +#define tTranslate 369 +#define tSymmetry 370 +#define tDilate 371 +#define tExtrude 372 +#define tLevelset 373 +#define tAffine 374 +#define tBooleanUnion 375 +#define tBooleanIntersection 376 +#define tBooleanSubtraction 377 +#define tRecombine 378 +#define tSmoother 379 +#define tSplit 380 +#define tDelete 381 +#define tCoherence 382 +#define tIntersect 383 +#define tMeshAlgorithm 384 +#define tReverse 385 +#define tLayers 386 +#define tScaleLast 387 +#define tHole 388 +#define tAlias 389 +#define tAliasWithOptions 390 +#define tCopyOptions 391 +#define tQuadTriAddVerts 392 +#define tQuadTriNoNewVerts 393 +#define tQuadTriSngl 394 +#define tQuadTriDbl 395 +#define tRecombLaterals 396 +#define tTransfQuadTri 397 +#define tText2D 398 +#define tText3D 399 +#define tInterpolationScheme 400 +#define tTime 401 +#define tCombine 402 +#define tBSpline 403 +#define tBezier 404 +#define tNurbs 405 +#define tNurbsOrder 406 +#define tNurbsKnots 407 +#define tColor 408 +#define tColorTable 409 +#define tFor 410 +#define tIn 411 +#define tEndFor 412 +#define tIf 413 +#define tElseIf 414 +#define tElse 415 +#define tEndIf 416 +#define tExit 417 +#define tAbort 418 +#define tField 419 +#define tReturn 420 +#define tCall 421 +#define tSlide 422 +#define tMacro 423 +#define tShow 424 +#define tHide 425 +#define tGetValue 426 +#define tGetStringValue 427 +#define tGetEnv 428 +#define tGetString 429 +#define tGetNumber 430 +#define tHomology 431 +#define tCohomology 432 +#define tBetti 433 +#define tExists 434 +#define tFileExists 435 +#define tGMSH_MAJOR_VERSION 436 +#define tGMSH_MINOR_VERSION 437 +#define tGMSH_PATCH_VERSION 438 +#define tGmshExecutableName 439 +#define tSetPartition 440 +#define tNameToString 441 +#define tStringToName 442 +#define tAFFECTDIVIDE 443 +#define tAFFECTTIMES 444 +#define tAFFECTMINUS 445 +#define tAFFECTPLUS 446 +#define tOR 447 +#define tAND 448 +#define tNOTEQUAL 449 +#define tEQUAL 450 +#define tGREATEROREQUAL 451 +#define tLESSOREQUAL 452 +#define UNARYPREC 453 +#define tMINUSMINUS 454 +#define tPLUSPLUS 455 @@ -490,6 +500,7 @@ #include "Numeric.h" #include "Context.h" #include "GModel.h" +#include "GModelIO_OCC.h" #include "Geo.h" #include "GeoInterpolation.h" #include "Options.h" @@ -529,7 +540,7 @@ #endif - // Global parser variables +// Global parser variables std::string gmsh_yyname; int gmsh_yyerrorstate = 0; int gmsh_yyviewindex = 0; @@ -555,6 +566,7 @@ static double LoopControlVariablesTab[MAX_RECUR_LOOPS][3]; static std::string LoopControlVariablesNameTab[MAX_RECUR_LOOPS]; static std::map<std::string, std::vector<double> > floatOptions; static std::map<std::string, std::vector<std::string> > charOptions; +static std::string factory; void yyerror(const char *s); void yymsg(int level, const char *fmt, ...); @@ -603,7 +615,7 @@ struct doubleXstring{ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE -#line 115 "Gmsh.y" +#line 117 "Gmsh.y" { char *c; int i; @@ -614,7 +626,7 @@ typedef union YYSTYPE List_T *l; } /* Line 193 of yacc.c. */ -#line 618 "Gmsh.tab.cpp" +#line 630 "Gmsh.tab.cpp" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 @@ -627,7 +639,7 @@ typedef union YYSTYPE /* Line 216 of yacc.c. */ -#line 631 "Gmsh.tab.cpp" +#line 643 "Gmsh.tab.cpp" #ifdef short # undef short @@ -842,20 +854,20 @@ union yyalloc /* YYFINAL -- State number of the termination state. */ #define YYFINAL 5 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 12943 +#define YYLAST 13306 /* YYNTOKENS -- Number of terminals. */ -#define YYNTOKENS 216 +#define YYNTOKENS 221 /* YYNNTS -- Number of nonterminals. */ -#define YYNNTS 101 +#define YYNNTS 104 /* YYNRULES -- Number of rules. */ -#define YYNRULES 564 +#define YYNRULES 575 /* YYNRULES -- Number of states. */ -#define YYNSTATES 2043 +#define YYNSTATES 2075 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 -#define YYMAXUTOK 450 +#define YYMAXUTOK 455 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) @@ -866,16 +878,16 @@ static const yytype_uint8 yytranslate[] = 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 201, 2, 211, 2, 200, 2, 2, - 206, 207, 198, 196, 212, 197, 210, 199, 2, 2, + 2, 2, 2, 206, 2, 216, 2, 205, 2, 2, + 211, 212, 203, 201, 217, 202, 215, 204, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 192, 2, 193, 187, 2, 2, 2, 2, 2, 2, + 197, 2, 198, 192, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 208, 2, 209, 205, 2, 2, 2, 2, 2, + 2, 213, 2, 214, 210, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 213, 2, 214, 215, 2, 2, 2, + 2, 2, 2, 218, 2, 219, 220, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, @@ -907,8 +919,8 @@ static const yytype_uint8 yytranslate[] = 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 188, 189, 190, 191, 194, 195, 202, 203, - 204 + 185, 186, 187, 188, 189, 190, 191, 193, 194, 195, + 196, 199, 200, 207, 208, 209 }; #if YYDEBUG @@ -918,457 +930,463 @@ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 5, 8, 9, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, - 40, 42, 44, 46, 48, 51, 57, 63, 71, 79, - 87, 97, 104, 111, 118, 127, 128, 131, 134, 137, - 140, 143, 145, 149, 151, 155, 156, 157, 168, 170, - 174, 175, 189, 191, 195, 196, 212, 221, 236, 237, - 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, - 264, 266, 272, 278, 286, 294, 299, 303, 310, 317, - 325, 333, 340, 347, 357, 367, 374, 381, 389, 397, - 404, 411, 416, 425, 434, 444, 454, 464, 474, 483, - 492, 502, 512, 522, 532, 539, 549, 556, 566, 572, - 581, 590, 602, 609, 619, 625, 633, 643, 653, 665, - 673, 683, 693, 694, 696, 697, 701, 707, 708, 718, - 719, 731, 732, 744, 750, 751, 761, 762, 766, 770, - 776, 782, 783, 786, 790, 796, 800, 801, 804, 808, - 812, 816, 822, 824, 826, 830, 832, 834, 838, 840, - 842, 846, 848, 850, 854, 855, 861, 862, 865, 873, - 882, 889, 897, 902, 910, 919, 928, 936, 944, 956, - 965, 970, 979, 988, 997, 1007, 1011, 1016, 1027, 1035, - 1043, 1052, 1057, 1066, 1079, 1088, 1097, 1105, 1110, 1119, - 1128, 1134, 1146, 1152, 1162, 1172, 1177, 1187, 1197, 1199, - 1201, 1202, 1205, 1212, 1219, 1226, 1233, 1242, 1253, 1268, - 1285, 1298, 1307, 1316, 1323, 1338, 1343, 1350, 1357, 1361, - 1366, 1372, 1379, 1385, 1389, 1393, 1398, 1404, 1409, 1415, - 1419, 1425, 1433, 1441, 1445, 1453, 1457, 1460, 1463, 1466, - 1469, 1472, 1488, 1491, 1494, 1497, 1500, 1503, 1520, 1532, - 1539, 1548, 1557, 1568, 1570, 1573, 1576, 1578, 1582, 1586, - 1591, 1596, 1598, 1600, 1606, 1618, 1632, 1633, 1641, 1642, - 1656, 1657, 1673, 1674, 1681, 1690, 1699, 1708, 1721, 1734, - 1747, 1762, 1777, 1792, 1793, 1806, 1807, 1820, 1821, 1834, - 1835, 1852, 1853, 1870, 1871, 1888, 1889, 1908, 1909, 1928, - 1929, 1948, 1950, 1953, 1959, 1967, 1977, 1980, 1983, 1987, - 1990, 1994, 1997, 2001, 2004, 2008, 2011, 2015, 2025, 2032, - 2033, 2037, 2038, 2040, 2041, 2044, 2045, 2048, 2049, 2052, - 2060, 2067, 2076, 2082, 2086, 2095, 2101, 2106, 2113, 2125, - 2137, 2156, 2175, 2188, 2201, 2214, 2225, 2236, 2247, 2258, - 2269, 2274, 2279, 2284, 2289, 2294, 2297, 2301, 2308, 2310, - 2312, 2314, 2317, 2323, 2331, 2342, 2344, 2348, 2351, 2354, - 2357, 2361, 2365, 2369, 2373, 2377, 2381, 2385, 2389, 2393, - 2397, 2401, 2405, 2409, 2413, 2419, 2424, 2429, 2434, 2439, - 2444, 2449, 2454, 2459, 2464, 2469, 2476, 2481, 2486, 2491, - 2496, 2501, 2506, 2511, 2518, 2525, 2532, 2537, 2539, 2541, - 2543, 2545, 2547, 2549, 2551, 2553, 2555, 2557, 2559, 2560, - 2567, 2572, 2579, 2581, 2586, 2591, 2596, 2601, 2606, 2611, - 2616, 2619, 2625, 2631, 2637, 2643, 2647, 2654, 2659, 2667, - 2674, 2681, 2688, 2693, 2700, 2705, 2707, 2710, 2713, 2717, - 2721, 2733, 2743, 2751, 2759, 2761, 2765, 2767, 2769, 2772, - 2776, 2781, 2787, 2789, 2791, 2794, 2798, 2802, 2808, 2813, - 2816, 2819, 2822, 2825, 2829, 2833, 2837, 2841, 2847, 2853, - 2859, 2865, 2882, 2899, 2916, 2933, 2935, 2937, 2941, 2945, - 2950, 2955, 2960, 2967, 2974, 2981, 2988, 2997, 3006, 3011, - 3026, 3028, 3030, 3034, 3038, 3048, 3056, 3058, 3064, 3068, - 3075, 3077, 3081, 3083, 3085, 3090, 3095, 3100, 3105, 3109, - 3116, 3118, 3123, 3125, 3127, 3129, 3134, 3141, 3146, 3153, - 3158, 3163, 3168, 3177, 3182, 3187, 3192, 3197, 3206, 3215, - 3222, 3227, 3234, 3239, 3241, 3246, 3251, 3252, 3259, 3261, - 3265, 3271, 3277, 3279, 3281 + 40, 42, 44, 46, 48, 50, 53, 59, 65, 73, + 81, 89, 99, 106, 113, 120, 129, 130, 133, 136, + 139, 142, 145, 147, 151, 153, 157, 158, 159, 170, + 172, 176, 177, 191, 193, 197, 198, 214, 223, 238, + 239, 246, 248, 250, 252, 254, 256, 258, 260, 262, + 264, 266, 268, 274, 280, 288, 296, 301, 305, 312, + 319, 327, 335, 342, 349, 359, 369, 376, 383, 391, + 399, 406, 413, 418, 427, 436, 446, 456, 466, 476, + 485, 494, 504, 514, 524, 534, 541, 551, 558, 568, + 574, 583, 592, 604, 611, 621, 627, 635, 645, 655, + 667, 675, 685, 695, 696, 698, 699, 703, 709, 710, + 720, 721, 733, 734, 746, 752, 753, 763, 764, 768, + 772, 778, 784, 785, 788, 792, 798, 802, 803, 806, + 810, 814, 818, 824, 826, 828, 832, 834, 836, 840, + 842, 844, 848, 850, 852, 856, 857, 863, 864, 867, + 873, 881, 890, 897, 905, 910, 918, 927, 936, 944, + 952, 964, 973, 978, 987, 996, 1005, 1015, 1019, 1024, + 1035, 1043, 1051, 1060, 1065, 1074, 1087, 1096, 1105, 1113, + 1123, 1128, 1137, 1146, 1152, 1164, 1170, 1180, 1190, 1195, + 1205, 1215, 1217, 1219, 1220, 1223, 1230, 1237, 1244, 1251, + 1260, 1271, 1286, 1303, 1316, 1325, 1334, 1341, 1356, 1361, + 1368, 1375, 1379, 1384, 1390, 1397, 1403, 1407, 1411, 1416, + 1422, 1427, 1433, 1437, 1443, 1451, 1459, 1463, 1471, 1475, + 1478, 1481, 1484, 1487, 1490, 1506, 1509, 1512, 1515, 1518, + 1521, 1538, 1550, 1557, 1566, 1575, 1586, 1588, 1591, 1594, + 1596, 1600, 1604, 1609, 1614, 1616, 1618, 1624, 1636, 1650, + 1651, 1659, 1660, 1674, 1675, 1691, 1692, 1699, 1708, 1717, + 1726, 1739, 1752, 1765, 1780, 1795, 1810, 1811, 1824, 1825, + 1838, 1839, 1852, 1853, 1870, 1871, 1888, 1889, 1906, 1907, + 1926, 1927, 1946, 1947, 1966, 1968, 1971, 1977, 1985, 1995, + 1998, 2001, 2005, 2008, 2012, 2015, 2019, 2022, 2026, 2029, + 2033, 2043, 2050, 2052, 2054, 2056, 2057, 2060, 2064, 2074, + 2075, 2079, 2080, 2082, 2083, 2086, 2087, 2090, 2091, 2094, + 2102, 2109, 2118, 2124, 2128, 2137, 2143, 2148, 2155, 2167, + 2179, 2198, 2217, 2230, 2243, 2256, 2267, 2278, 2289, 2300, + 2311, 2316, 2321, 2326, 2331, 2336, 2339, 2343, 2350, 2352, + 2354, 2356, 2359, 2365, 2373, 2384, 2386, 2390, 2393, 2396, + 2399, 2403, 2407, 2411, 2415, 2419, 2423, 2427, 2431, 2435, + 2439, 2443, 2447, 2451, 2455, 2461, 2466, 2471, 2476, 2481, + 2486, 2491, 2496, 2501, 2506, 2511, 2518, 2523, 2528, 2533, + 2538, 2543, 2548, 2553, 2560, 2567, 2574, 2579, 2581, 2583, + 2585, 2587, 2589, 2591, 2593, 2595, 2597, 2599, 2601, 2602, + 2609, 2614, 2621, 2623, 2628, 2633, 2638, 2643, 2648, 2653, + 2658, 2661, 2667, 2673, 2679, 2685, 2689, 2696, 2701, 2709, + 2716, 2723, 2730, 2735, 2742, 2747, 2749, 2752, 2755, 2759, + 2763, 2775, 2785, 2793, 2801, 2803, 2807, 2809, 2811, 2814, + 2818, 2823, 2829, 2831, 2833, 2836, 2840, 2844, 2850, 2855, + 2858, 2861, 2864, 2867, 2871, 2875, 2879, 2883, 2889, 2895, + 2901, 2907, 2924, 2941, 2958, 2975, 2977, 2979, 2981, 2985, + 2989, 2994, 2999, 3004, 3011, 3018, 3025, 3032, 3041, 3050, + 3055, 3070, 3072, 3074, 3078, 3082, 3092, 3100, 3102, 3108, + 3112, 3119, 3121, 3125, 3127, 3129, 3134, 3139, 3144, 3149, + 3153, 3160, 3162, 3167, 3169, 3171, 3173, 3178, 3185, 3190, + 3197, 3202, 3207, 3212, 3221, 3226, 3231, 3236, 3241, 3250, + 3259, 3266, 3271, 3278, 3283, 3285, 3290, 3295, 3296, 3303, + 3305, 3309, 3315, 3321, 3323, 3325 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { - 217, 0, -1, 218, -1, 1, 6, -1, -1, 218, - 219, -1, 222, -1, 221, -1, 242, -1, 261, -1, - 262, -1, 266, -1, 267, -1, 268, -1, 269, -1, - 273, -1, 294, -1, 295, -1, 272, -1, 271, -1, - 270, -1, 265, -1, 297, -1, 193, -1, 193, 193, - -1, 42, 206, 311, 207, 6, -1, 43, 206, 311, - 207, 6, -1, 42, 206, 311, 207, 220, 311, 6, - -1, 42, 206, 311, 212, 307, 207, 6, -1, 43, - 206, 311, 212, 307, 207, 6, -1, 42, 206, 311, - 212, 307, 207, 220, 311, 6, -1, 4, 311, 213, - 223, 214, 6, -1, 129, 4, 208, 298, 209, 6, - -1, 130, 4, 208, 298, 209, 6, -1, 131, 4, - 208, 298, 212, 298, 209, 6, -1, -1, 223, 226, - -1, 223, 230, -1, 223, 233, -1, 223, 235, -1, - 223, 236, -1, 298, -1, 224, 212, 298, -1, 298, - -1, 225, 212, 298, -1, -1, -1, 4, 227, 206, - 224, 207, 228, 213, 225, 214, 6, -1, 311, -1, - 229, 212, 311, -1, -1, 138, 206, 298, 212, 298, - 212, 298, 207, 231, 213, 229, 214, 6, -1, 311, - -1, 232, 212, 311, -1, -1, 139, 206, 298, 212, - 298, 212, 298, 212, 298, 207, 234, 213, 232, 214, - 6, -1, 140, 213, 303, 214, 213, 303, 214, 6, - -1, 140, 213, 303, 214, 213, 303, 214, 213, 303, - 214, 213, 303, 214, 6, -1, -1, 141, 237, 213, - 225, 214, 6, -1, 7, -1, 186, -1, 185, -1, - 184, -1, 183, -1, 204, -1, 203, -1, 206, -1, - 208, -1, 207, -1, 209, -1, 78, 208, 244, 209, - 6, -1, 79, 208, 249, 209, 6, -1, 82, 240, - 312, 212, 298, 241, 6, -1, 83, 240, 316, 212, - 312, 241, 6, -1, 316, 238, 304, 6, -1, 316, - 239, 6, -1, 4, 208, 209, 238, 304, 6, -1, - 315, 208, 209, 238, 304, 6, -1, 4, 208, 298, - 209, 238, 298, 6, -1, 315, 208, 298, 209, 238, - 298, 6, -1, 4, 208, 298, 209, 239, 6, -1, - 315, 208, 298, 209, 239, 6, -1, 4, 240, 213, - 307, 214, 241, 238, 304, 6, -1, 315, 240, 213, - 307, 214, 241, 238, 304, 6, -1, 4, 206, 207, - 238, 304, 6, -1, 315, 206, 207, 238, 304, 6, - -1, 4, 206, 298, 207, 238, 298, 6, -1, 315, - 206, 298, 207, 238, 298, 6, -1, 4, 206, 298, - 207, 239, 6, -1, 315, 206, 298, 207, 239, 6, - -1, 316, 7, 312, 6, -1, 4, 208, 209, 7, - 44, 240, 241, 6, -1, 315, 208, 209, 7, 44, - 240, 241, 6, -1, 4, 208, 209, 7, 44, 240, - 314, 241, 6, -1, 315, 208, 209, 7, 44, 240, - 314, 241, 6, -1, 4, 208, 209, 186, 44, 240, - 314, 241, 6, -1, 315, 208, 209, 186, 44, 240, - 314, 241, 6, -1, 4, 206, 207, 7, 44, 240, - 241, 6, -1, 315, 206, 207, 7, 44, 240, 241, - 6, -1, 4, 206, 207, 7, 44, 240, 314, 241, - 6, -1, 315, 206, 207, 7, 44, 240, 314, 241, - 6, -1, 4, 206, 207, 186, 44, 240, 314, 241, - 6, -1, 315, 206, 207, 186, 44, 240, 314, 241, - 6, -1, 4, 210, 4, 7, 312, 6, -1, 4, - 208, 298, 209, 210, 4, 7, 312, 6, -1, 4, - 210, 4, 238, 298, 6, -1, 4, 208, 298, 209, - 210, 4, 238, 298, 6, -1, 4, 210, 4, 239, - 6, -1, 4, 208, 298, 209, 210, 4, 239, 6, - -1, 4, 210, 148, 210, 4, 7, 308, 6, -1, - 4, 208, 298, 209, 210, 148, 210, 4, 7, 308, - 6, -1, 4, 210, 149, 7, 309, 6, -1, 4, - 208, 298, 209, 210, 149, 7, 309, 6, -1, 4, - 159, 7, 298, 6, -1, 159, 208, 298, 209, 7, - 4, 6, -1, 159, 208, 298, 209, 210, 4, 7, - 298, 6, -1, 159, 208, 298, 209, 210, 4, 7, - 312, 6, -1, 159, 208, 298, 209, 210, 4, 7, - 213, 307, 214, 6, -1, 159, 208, 298, 209, 210, - 4, 6, -1, 108, 206, 4, 207, 210, 4, 7, - 298, 6, -1, 108, 206, 4, 207, 210, 4, 7, - 312, 6, -1, -1, 212, -1, -1, 244, 243, 316, - -1, 244, 243, 316, 7, 298, -1, -1, 244, 243, - 316, 7, 213, 304, 245, 251, 214, -1, -1, 244, - 243, 316, 208, 209, 7, 213, 304, 246, 251, 214, - -1, -1, 244, 243, 316, 206, 207, 7, 213, 304, - 247, 251, 214, -1, 244, 243, 316, 7, 312, -1, - -1, 244, 243, 316, 7, 213, 312, 248, 253, 214, - -1, -1, 249, 243, 311, -1, 298, 7, 312, -1, - 250, 212, 298, 7, 312, -1, 306, 7, 316, 206, - 207, -1, -1, 251, 252, -1, 212, 4, 304, -1, - 212, 4, 213, 250, 214, -1, 212, 4, 312, -1, - -1, 253, 254, -1, 212, 4, 298, -1, 212, 4, - 312, -1, 212, 163, 312, -1, 212, 4, 213, 314, - 214, -1, 298, -1, 312, -1, 312, 212, 298, -1, - 298, -1, 312, -1, 312, 212, 298, -1, 298, -1, - 312, -1, 312, 212, 298, -1, 298, -1, 312, -1, - 312, 212, 298, -1, -1, 151, 88, 213, 298, 214, - -1, -1, 100, 301, -1, 84, 206, 298, 207, 7, - 301, 6, -1, 104, 84, 206, 255, 207, 238, 304, - 6, -1, 93, 94, 304, 7, 298, 6, -1, 87, - 206, 298, 207, 7, 304, 6, -1, 109, 87, 304, - 6, -1, 91, 206, 298, 207, 7, 304, 6, -1, - 85, 206, 298, 207, 7, 304, 260, 6, -1, 86, - 206, 298, 207, 7, 304, 260, 6, -1, 143, 206, - 298, 207, 7, 304, 6, -1, 144, 206, 298, 207, - 7, 304, 6, -1, 145, 206, 298, 207, 7, 304, - 147, 304, 146, 298, 6, -1, 87, 4, 206, 298, - 207, 7, 304, 6, -1, 105, 87, 304, 6, -1, - 105, 87, 206, 298, 207, 7, 304, 6, -1, 104, - 87, 206, 256, 207, 238, 304, 6, -1, 100, 90, - 206, 298, 207, 7, 304, 6, -1, 101, 90, 206, - 298, 207, 7, 304, 259, 6, -1, 12, 13, 6, - -1, 13, 90, 298, 6, -1, 95, 90, 206, 298, - 207, 7, 5, 5, 5, 6, -1, 88, 206, 298, - 207, 7, 304, 6, -1, 89, 206, 298, 207, 7, - 304, 6, -1, 90, 4, 206, 298, 207, 7, 304, - 6, -1, 105, 90, 304, 6, -1, 105, 90, 206, - 298, 207, 7, 304, 6, -1, 105, 90, 206, 298, - 207, 7, 304, 4, 213, 303, 214, 6, -1, 104, - 90, 206, 257, 207, 238, 304, 6, -1, 103, 92, - 206, 298, 207, 7, 304, 6, -1, 92, 206, 298, - 207, 7, 304, 6, -1, 105, 92, 304, 6, -1, - 105, 92, 206, 298, 207, 7, 304, 6, -1, 104, - 92, 206, 258, 207, 238, 304, 6, -1, 112, 301, - 213, 263, 214, -1, 111, 213, 301, 212, 301, 212, - 298, 214, 213, 263, 214, -1, 113, 301, 213, 263, - 214, -1, 114, 213, 301, 212, 298, 214, 213, 263, - 214, -1, 114, 213, 301, 212, 301, 214, 213, 263, - 214, -1, 4, 213, 263, 214, -1, 123, 87, 213, - 307, 214, 90, 213, 298, 214, -1, 120, 87, 206, - 298, 207, 213, 307, 214, 6, -1, 264, -1, 262, - -1, -1, 264, 261, -1, 264, 84, 213, 307, 214, - 6, -1, 264, 87, 213, 307, 214, 6, -1, 264, - 90, 213, 307, 214, 6, -1, 264, 92, 213, 307, - 214, 6, -1, 116, 100, 206, 298, 207, 7, 304, - 6, -1, 116, 84, 206, 298, 207, 7, 213, 303, - 214, 6, -1, 116, 100, 206, 298, 207, 7, 213, - 301, 212, 301, 212, 307, 214, 6, -1, 116, 100, - 206, 298, 207, 7, 213, 301, 212, 301, 212, 301, - 212, 307, 214, 6, -1, 116, 88, 206, 298, 207, - 7, 213, 301, 212, 307, 214, 6, -1, 116, 4, - 206, 298, 207, 7, 304, 6, -1, 116, 4, 206, - 298, 207, 7, 5, 6, -1, 116, 4, 213, 298, - 214, 6, -1, 116, 4, 206, 298, 207, 7, 213, - 301, 212, 301, 212, 307, 214, 6, -1, 121, 213, - 264, 214, -1, 121, 159, 208, 298, 209, 6, -1, - 121, 4, 208, 298, 209, 6, -1, 121, 316, 6, - -1, 121, 4, 4, 6, -1, 148, 308, 213, 264, - 214, -1, 110, 148, 308, 213, 264, 214, -1, 180, - 298, 213, 264, 214, -1, 164, 5, 6, -1, 165, - 5, 6, -1, 164, 213, 264, 214, -1, 110, 164, - 213, 264, 214, -1, 165, 213, 264, 214, -1, 110, - 165, 213, 264, 214, -1, 4, 312, 6, -1, 71, - 206, 314, 207, 6, -1, 4, 4, 208, 298, 209, - 311, 6, -1, 4, 4, 4, 208, 298, 209, 6, - -1, 4, 298, 6, -1, 108, 206, 4, 207, 210, - 4, 6, -1, 142, 4, 6, -1, 157, 6, -1, - 158, 6, -1, 68, 6, -1, 69, 6, -1, 62, - 6, -1, 62, 213, 298, 212, 298, 212, 298, 212, - 298, 212, 298, 212, 298, 214, 6, -1, 63, 6, - -1, 64, 6, -1, 75, 6, -1, 76, 6, -1, - 97, 6, -1, 98, 213, 307, 214, 213, 307, 214, - 213, 303, 214, 213, 298, 212, 298, 214, 6, -1, - 162, 206, 213, 307, 214, 212, 312, 212, 312, 207, - 6, -1, 150, 206, 298, 8, 298, 207, -1, 150, - 206, 298, 8, 298, 8, 298, 207, -1, 150, 4, - 151, 213, 298, 8, 298, 214, -1, 150, 4, 151, - 213, 298, 8, 298, 8, 298, 214, -1, 152, -1, - 163, 4, -1, 163, 312, -1, 160, -1, 161, 316, - 6, -1, 161, 312, 6, -1, 153, 206, 298, 207, - -1, 154, 206, 298, 207, -1, 155, -1, 156, -1, - 115, 301, 213, 264, 214, -1, 115, 213, 301, 212, - 301, 212, 298, 214, 213, 264, 214, -1, 115, 213, - 301, 212, 301, 212, 301, 212, 298, 214, 213, 264, - 214, -1, -1, 115, 301, 213, 264, 274, 287, 214, - -1, -1, 115, 213, 301, 212, 301, 212, 298, 214, - 213, 264, 275, 287, 214, -1, -1, 115, 213, 301, - 212, 301, 212, 301, 212, 298, 214, 213, 264, 276, - 287, 214, -1, -1, 115, 213, 264, 277, 287, 214, - -1, 115, 84, 213, 298, 212, 301, 214, 6, -1, - 115, 87, 213, 298, 212, 301, 214, 6, -1, 115, - 90, 213, 298, 212, 301, 214, 6, -1, 115, 84, - 213, 298, 212, 301, 212, 301, 212, 298, 214, 6, - -1, 115, 87, 213, 298, 212, 301, 212, 301, 212, - 298, 214, 6, -1, 115, 90, 213, 298, 212, 301, - 212, 301, 212, 298, 214, 6, -1, 115, 84, 213, - 298, 212, 301, 212, 301, 212, 301, 212, 298, 214, - 6, -1, 115, 87, 213, 298, 212, 301, 212, 301, - 212, 301, 212, 298, 214, 6, -1, 115, 90, 213, - 298, 212, 301, 212, 301, 212, 301, 212, 298, 214, - 6, -1, -1, 115, 84, 213, 298, 212, 301, 214, - 278, 213, 287, 214, 6, -1, -1, 115, 87, 213, - 298, 212, 301, 214, 279, 213, 287, 214, 6, -1, - -1, 115, 90, 213, 298, 212, 301, 214, 280, 213, - 287, 214, 6, -1, -1, 115, 84, 213, 298, 212, - 301, 212, 301, 212, 298, 214, 281, 213, 287, 214, - 6, -1, -1, 115, 87, 213, 298, 212, 301, 212, - 301, 212, 298, 214, 282, 213, 287, 214, 6, -1, - -1, 115, 90, 213, 298, 212, 301, 212, 301, 212, - 298, 214, 283, 213, 287, 214, 6, -1, -1, 115, - 84, 213, 298, 212, 301, 212, 301, 212, 301, 212, - 298, 214, 284, 213, 287, 214, 6, -1, -1, 115, - 87, 213, 298, 212, 301, 212, 301, 212, 301, 212, - 298, 214, 285, 213, 287, 214, 6, -1, -1, 115, - 90, 213, 298, 212, 301, 212, 301, 212, 301, 212, - 298, 214, 286, 213, 287, 214, 6, -1, 288, -1, - 287, 288, -1, 126, 213, 298, 214, 6, -1, 126, - 213, 304, 212, 304, 214, 6, -1, 126, 213, 304, - 212, 304, 212, 304, 214, 6, -1, 127, 6, -1, - 118, 6, -1, 118, 298, 6, -1, 134, 6, -1, - 134, 136, 6, -1, 135, 6, -1, 135, 136, 6, - -1, 132, 6, -1, 132, 136, 6, -1, 133, 6, - -1, 133, 136, 6, -1, 128, 206, 298, 207, 7, - 304, 107, 298, 6, -1, 107, 4, 208, 298, 209, - 6, -1, -1, 107, 4, 298, -1, -1, 4, -1, - -1, 7, 304, -1, -1, 7, 298, -1, -1, 117, - 304, -1, 102, 87, 305, 7, 298, 289, 6, -1, - 102, 90, 305, 291, 290, 6, -1, 96, 90, 213, - 298, 214, 7, 304, 6, -1, 102, 92, 305, 291, - 6, -1, 137, 305, 6, -1, 124, 90, 213, 307, - 214, 7, 298, 6, -1, 118, 90, 305, 292, 6, - -1, 118, 92, 305, 6, -1, 119, 90, 304, 7, - 298, 6, -1, 106, 87, 213, 307, 214, 7, 213, - 307, 214, 293, 6, -1, 106, 90, 213, 307, 214, - 7, 213, 307, 214, 293, 6, -1, 106, 87, 213, - 307, 214, 7, 213, 307, 214, 111, 213, 301, 212, - 301, 212, 298, 214, 6, -1, 106, 90, 213, 307, - 214, 7, 213, 307, 214, 111, 213, 301, 212, 301, - 212, 298, 214, 6, -1, 106, 87, 213, 307, 214, - 7, 213, 307, 214, 112, 301, 6, -1, 106, 90, - 213, 307, 214, 7, 213, 307, 214, 112, 301, 6, - -1, 106, 90, 298, 213, 307, 214, 7, 298, 213, - 307, 214, 6, -1, 84, 213, 307, 214, 151, 90, - 213, 298, 214, 6, -1, 87, 213, 307, 214, 151, - 90, 213, 298, 214, 6, -1, 84, 213, 307, 214, - 151, 92, 213, 298, 214, 6, -1, 87, 213, 307, - 214, 151, 92, 213, 298, 214, 6, -1, 90, 213, - 307, 214, 151, 92, 213, 298, 214, 6, -1, 125, - 90, 305, 6, -1, 125, 87, 305, 6, -1, 99, - 84, 305, 6, -1, 99, 87, 305, 6, -1, 99, - 90, 305, 6, -1, 122, 6, -1, 122, 4, 6, - -1, 122, 84, 213, 307, 214, 6, -1, 171, -1, - 172, -1, 173, -1, 296, 6, -1, 296, 213, 304, - 214, 6, -1, 296, 213, 304, 212, 304, 214, 6, - -1, 296, 206, 304, 207, 213, 304, 212, 304, 214, - 6, -1, 299, -1, 206, 298, 207, -1, 197, 298, - -1, 196, 298, -1, 201, 298, -1, 298, 197, 298, - -1, 298, 196, 298, -1, 298, 198, 298, -1, 298, - 199, 298, -1, 298, 200, 298, -1, 298, 205, 298, - -1, 298, 192, 298, -1, 298, 193, 298, -1, 298, - 195, 298, -1, 298, 194, 298, -1, 298, 191, 298, - -1, 298, 190, 298, -1, 298, 189, 298, -1, 298, - 188, 298, -1, 298, 187, 298, 8, 298, -1, 15, - 240, 298, 241, -1, 16, 240, 298, 241, -1, 17, - 240, 298, 241, -1, 18, 240, 298, 241, -1, 19, - 240, 298, 241, -1, 20, 240, 298, 241, -1, 21, - 240, 298, 241, -1, 22, 240, 298, 241, -1, 23, - 240, 298, 241, -1, 25, 240, 298, 241, -1, 26, - 240, 298, 212, 298, 241, -1, 27, 240, 298, 241, - -1, 28, 240, 298, 241, -1, 29, 240, 298, 241, - -1, 30, 240, 298, 241, -1, 31, 240, 298, 241, - -1, 32, 240, 298, 241, -1, 33, 240, 298, 241, - -1, 34, 240, 298, 212, 298, 241, -1, 35, 240, - 298, 212, 298, 241, -1, 36, 240, 298, 212, 298, - 241, -1, 24, 240, 298, 241, -1, 3, -1, 9, - -1, 14, -1, 10, -1, 11, -1, 176, -1, 177, - -1, 178, -1, 72, -1, 73, -1, 74, -1, -1, - 80, 240, 298, 300, 251, 241, -1, 170, 240, 311, - 241, -1, 170, 240, 311, 212, 298, 241, -1, 316, - -1, 4, 208, 298, 209, -1, 4, 206, 298, 207, - -1, 315, 208, 298, 209, -1, 315, 206, 298, 207, - -1, 174, 206, 316, 207, -1, 175, 206, 312, 207, - -1, 211, 316, 240, 241, -1, 316, 239, -1, 4, - 208, 298, 209, 239, -1, 4, 206, 298, 207, 239, - -1, 315, 208, 298, 209, 239, -1, 315, 206, 298, - 207, 239, -1, 4, 210, 4, -1, 4, 208, 298, - 209, 210, 4, -1, 4, 210, 4, 239, -1, 4, - 208, 298, 209, 210, 4, 239, -1, 166, 206, 311, - 212, 298, 207, -1, 54, 206, 304, 212, 304, 207, - -1, 55, 240, 311, 212, 311, 241, -1, 53, 240, - 311, 241, -1, 56, 240, 311, 212, 311, 241, -1, - 61, 206, 314, 207, -1, 302, -1, 197, 301, -1, - 196, 301, -1, 301, 197, 301, -1, 301, 196, 301, - -1, 213, 298, 212, 298, 212, 298, 212, 298, 212, - 298, 214, -1, 213, 298, 212, 298, 212, 298, 212, - 298, 214, -1, 213, 298, 212, 298, 212, 298, 214, - -1, 206, 298, 212, 298, 212, 298, 207, -1, 304, - -1, 303, 212, 304, -1, 298, -1, 306, -1, 213, - 214, -1, 213, 307, 214, -1, 197, 213, 307, 214, - -1, 298, 198, 213, 307, 214, -1, 304, -1, 5, - -1, 197, 306, -1, 298, 198, 306, -1, 298, 8, - 298, -1, 298, 8, 298, 8, 298, -1, 84, 213, - 298, 214, -1, 84, 5, -1, 87, 5, -1, 90, - 5, -1, 92, 5, -1, 104, 84, 5, -1, 104, - 87, 5, -1, 104, 90, 5, -1, 104, 92, 5, - -1, 104, 84, 213, 307, 214, -1, 104, 87, 213, - 307, 214, -1, 104, 90, 213, 307, 214, -1, 104, - 92, 213, 307, 214, -1, 84, 151, 62, 213, 298, - 212, 298, 212, 298, 212, 298, 212, 298, 212, 298, - 214, -1, 87, 151, 62, 213, 298, 212, 298, 212, - 298, 212, 298, 212, 298, 212, 298, 214, -1, 90, - 151, 62, 213, 298, 212, 298, 212, 298, 212, 298, - 212, 298, 212, 298, 214, -1, 92, 151, 62, 213, - 298, 212, 298, 212, 298, 212, 298, 212, 298, 212, - 298, 214, -1, 262, -1, 273, -1, 4, 240, 241, - -1, 315, 240, 241, -1, 37, 208, 316, 209, -1, - 37, 208, 306, 209, -1, 37, 206, 306, 207, -1, - 37, 208, 213, 307, 214, 209, -1, 37, 206, 213, - 307, 214, 207, -1, 4, 240, 213, 307, 214, 241, - -1, 315, 240, 213, 307, 214, 241, -1, 38, 240, - 298, 212, 298, 212, 298, 241, -1, 39, 240, 298, - 212, 298, 212, 298, 241, -1, 40, 240, 311, 241, - -1, 41, 240, 298, 212, 298, 212, 298, 212, 298, - 212, 298, 212, 298, 241, -1, 298, -1, 306, -1, - 307, 212, 298, -1, 307, 212, 306, -1, 213, 298, - 212, 298, 212, 298, 212, 298, 214, -1, 213, 298, - 212, 298, 212, 298, 214, -1, 316, -1, 4, 210, - 148, 210, 4, -1, 213, 310, 214, -1, 4, 208, - 298, 209, 210, 149, -1, 308, -1, 310, 212, 308, - -1, 312, -1, 316, -1, 4, 208, 298, 209, -1, - 315, 208, 298, 209, -1, 4, 206, 298, 207, -1, - 315, 206, 298, 207, -1, 4, 210, 4, -1, 4, - 208, 298, 209, 210, 4, -1, 5, -1, 181, 208, - 316, 209, -1, 65, -1, 179, -1, 70, -1, 168, - 206, 311, 207, -1, 167, 206, 311, 212, 311, 207, - -1, 169, 240, 311, 241, -1, 169, 240, 311, 212, - 311, 241, -1, 46, 240, 314, 241, -1, 47, 206, - 311, 207, -1, 48, 206, 311, 207, -1, 49, 206, - 311, 212, 311, 212, 311, 207, -1, 44, 240, 314, - 241, -1, 58, 240, 311, 241, -1, 59, 240, 311, - 241, -1, 60, 240, 311, 241, -1, 57, 240, 298, - 212, 311, 212, 311, 241, -1, 52, 240, 311, 212, - 298, 212, 298, 241, -1, 52, 240, 311, 212, 298, - 241, -1, 45, 240, 311, 241, -1, 45, 240, 311, - 212, 307, 241, -1, 66, 240, 311, 241, -1, 67, - -1, 51, 240, 311, 241, -1, 50, 240, 311, 241, - -1, -1, 81, 240, 312, 313, 253, 241, -1, 311, - -1, 314, 212, 311, -1, 4, 215, 213, 298, 214, - -1, 315, 215, 213, 298, 214, -1, 4, -1, 315, - -1, 182, 208, 311, 209, -1 + 222, 0, -1, 223, -1, 1, 6, -1, -1, 223, + 224, -1, 227, -1, 226, -1, 247, -1, 266, -1, + 267, -1, 271, -1, 272, -1, 273, -1, 274, -1, + 278, -1, 296, -1, 302, -1, 303, -1, 277, -1, + 276, -1, 275, -1, 270, -1, 305, -1, 198, -1, + 198, 198, -1, 42, 211, 319, 212, 6, -1, 43, + 211, 319, 212, 6, -1, 42, 211, 319, 212, 225, + 319, 6, -1, 42, 211, 319, 217, 315, 212, 6, + -1, 43, 211, 319, 217, 315, 212, 6, -1, 42, + 211, 319, 217, 315, 212, 225, 319, 6, -1, 4, + 319, 218, 228, 219, 6, -1, 134, 4, 213, 306, + 214, 6, -1, 135, 4, 213, 306, 214, 6, -1, + 136, 4, 213, 306, 217, 306, 214, 6, -1, -1, + 228, 231, -1, 228, 235, -1, 228, 238, -1, 228, + 240, -1, 228, 241, -1, 306, -1, 229, 217, 306, + -1, 306, -1, 230, 217, 306, -1, -1, -1, 4, + 232, 211, 229, 212, 233, 218, 230, 219, 6, -1, + 319, -1, 234, 217, 319, -1, -1, 143, 211, 306, + 217, 306, 217, 306, 212, 236, 218, 234, 219, 6, + -1, 319, -1, 237, 217, 319, -1, -1, 144, 211, + 306, 217, 306, 217, 306, 217, 306, 212, 239, 218, + 237, 219, 6, -1, 145, 218, 311, 219, 218, 311, + 219, 6, -1, 145, 218, 311, 219, 218, 311, 219, + 218, 311, 219, 218, 311, 219, 6, -1, -1, 146, + 242, 218, 230, 219, 6, -1, 7, -1, 191, -1, + 190, -1, 189, -1, 188, -1, 209, -1, 208, -1, + 211, -1, 213, -1, 212, -1, 214, -1, 78, 213, + 249, 214, 6, -1, 79, 213, 254, 214, 6, -1, + 82, 245, 320, 217, 306, 246, 6, -1, 83, 245, + 324, 217, 320, 246, 6, -1, 324, 243, 312, 6, + -1, 324, 244, 6, -1, 4, 213, 214, 243, 312, + 6, -1, 323, 213, 214, 243, 312, 6, -1, 4, + 213, 306, 214, 243, 306, 6, -1, 323, 213, 306, + 214, 243, 306, 6, -1, 4, 213, 306, 214, 244, + 6, -1, 323, 213, 306, 214, 244, 6, -1, 4, + 245, 218, 315, 219, 246, 243, 312, 6, -1, 323, + 245, 218, 315, 219, 246, 243, 312, 6, -1, 4, + 211, 212, 243, 312, 6, -1, 323, 211, 212, 243, + 312, 6, -1, 4, 211, 306, 212, 243, 306, 6, + -1, 323, 211, 306, 212, 243, 306, 6, -1, 4, + 211, 306, 212, 244, 6, -1, 323, 211, 306, 212, + 244, 6, -1, 324, 7, 320, 6, -1, 4, 213, + 214, 7, 44, 245, 246, 6, -1, 323, 213, 214, + 7, 44, 245, 246, 6, -1, 4, 213, 214, 7, + 44, 245, 322, 246, 6, -1, 323, 213, 214, 7, + 44, 245, 322, 246, 6, -1, 4, 213, 214, 191, + 44, 245, 322, 246, 6, -1, 323, 213, 214, 191, + 44, 245, 322, 246, 6, -1, 4, 211, 212, 7, + 44, 245, 246, 6, -1, 323, 211, 212, 7, 44, + 245, 246, 6, -1, 4, 211, 212, 7, 44, 245, + 322, 246, 6, -1, 323, 211, 212, 7, 44, 245, + 322, 246, 6, -1, 4, 211, 212, 191, 44, 245, + 322, 246, 6, -1, 323, 211, 212, 191, 44, 245, + 322, 246, 6, -1, 4, 215, 4, 7, 320, 6, + -1, 4, 213, 306, 214, 215, 4, 7, 320, 6, + -1, 4, 215, 4, 243, 306, 6, -1, 4, 213, + 306, 214, 215, 4, 243, 306, 6, -1, 4, 215, + 4, 244, 6, -1, 4, 213, 306, 214, 215, 4, + 244, 6, -1, 4, 215, 153, 215, 4, 7, 316, + 6, -1, 4, 213, 306, 214, 215, 153, 215, 4, + 7, 316, 6, -1, 4, 215, 154, 7, 317, 6, + -1, 4, 213, 306, 214, 215, 154, 7, 317, 6, + -1, 4, 164, 7, 306, 6, -1, 164, 213, 306, + 214, 7, 4, 6, -1, 164, 213, 306, 214, 215, + 4, 7, 306, 6, -1, 164, 213, 306, 214, 215, + 4, 7, 320, 6, -1, 164, 213, 306, 214, 215, + 4, 7, 218, 315, 219, 6, -1, 164, 213, 306, + 214, 215, 4, 6, -1, 110, 211, 4, 212, 215, + 4, 7, 306, 6, -1, 110, 211, 4, 212, 215, + 4, 7, 320, 6, -1, -1, 217, -1, -1, 249, + 248, 324, -1, 249, 248, 324, 7, 306, -1, -1, + 249, 248, 324, 7, 218, 312, 250, 256, 219, -1, + -1, 249, 248, 324, 213, 214, 7, 218, 312, 251, + 256, 219, -1, -1, 249, 248, 324, 211, 212, 7, + 218, 312, 252, 256, 219, -1, 249, 248, 324, 7, + 320, -1, -1, 249, 248, 324, 7, 218, 320, 253, + 258, 219, -1, -1, 254, 248, 319, -1, 306, 7, + 320, -1, 255, 217, 306, 7, 320, -1, 314, 7, + 324, 211, 212, -1, -1, 256, 257, -1, 217, 4, + 312, -1, 217, 4, 218, 255, 219, -1, 217, 4, + 320, -1, -1, 258, 259, -1, 217, 4, 306, -1, + 217, 4, 320, -1, 217, 168, 320, -1, 217, 4, + 218, 322, 219, -1, 306, -1, 320, -1, 320, 217, + 306, -1, 306, -1, 320, -1, 320, 217, 306, -1, + 306, -1, 320, -1, 320, 217, 306, -1, 306, -1, + 320, -1, 320, 217, 306, -1, -1, 156, 88, 218, + 306, 219, -1, -1, 102, 309, -1, 100, 211, 319, + 212, 6, -1, 84, 211, 306, 212, 7, 309, 6, + -1, 106, 84, 211, 260, 212, 243, 312, 6, -1, + 93, 94, 312, 7, 306, 6, -1, 87, 211, 306, + 212, 7, 312, 6, -1, 111, 87, 312, 6, -1, + 91, 211, 306, 212, 7, 312, 6, -1, 85, 211, + 306, 212, 7, 312, 265, 6, -1, 86, 211, 306, + 212, 7, 312, 265, 6, -1, 148, 211, 306, 212, + 7, 312, 6, -1, 149, 211, 306, 212, 7, 312, + 6, -1, 150, 211, 306, 212, 7, 312, 152, 312, + 151, 306, 6, -1, 87, 4, 211, 306, 212, 7, + 312, 6, -1, 107, 87, 312, 6, -1, 107, 87, + 211, 306, 212, 7, 312, 6, -1, 106, 87, 211, + 261, 212, 243, 312, 6, -1, 102, 90, 211, 306, + 212, 7, 312, 6, -1, 103, 90, 211, 306, 212, + 7, 312, 264, 6, -1, 12, 13, 6, -1, 13, + 90, 306, 6, -1, 95, 90, 211, 306, 212, 7, + 5, 5, 5, 6, -1, 88, 211, 306, 212, 7, + 312, 6, -1, 89, 211, 306, 212, 7, 312, 6, + -1, 90, 4, 211, 306, 212, 7, 312, 6, -1, + 107, 90, 312, 6, -1, 107, 90, 211, 306, 212, + 7, 312, 6, -1, 107, 90, 211, 306, 212, 7, + 312, 4, 218, 311, 219, 6, -1, 106, 90, 211, + 262, 212, 243, 312, 6, -1, 105, 92, 211, 306, + 212, 7, 312, 6, -1, 92, 211, 306, 212, 7, + 312, 6, -1, 101, 211, 306, 212, 7, 218, 311, + 219, 6, -1, 107, 92, 312, 6, -1, 107, 92, + 211, 306, 212, 7, 312, 6, -1, 106, 92, 211, + 263, 212, 243, 312, 6, -1, 114, 309, 218, 268, + 219, -1, 113, 218, 309, 217, 309, 217, 306, 219, + 218, 268, 219, -1, 115, 309, 218, 268, 219, -1, + 116, 218, 309, 217, 306, 219, 218, 268, 219, -1, + 116, 218, 309, 217, 309, 219, 218, 268, 219, -1, + 4, 218, 268, 219, -1, 128, 87, 218, 315, 219, + 90, 218, 306, 219, -1, 125, 87, 211, 306, 212, + 218, 315, 219, 6, -1, 269, -1, 267, -1, -1, + 269, 266, -1, 269, 84, 218, 315, 219, 6, -1, + 269, 87, 218, 315, 219, 6, -1, 269, 90, 218, + 315, 219, 6, -1, 269, 92, 218, 315, 219, 6, + -1, 118, 102, 211, 306, 212, 7, 312, 6, -1, + 118, 84, 211, 306, 212, 7, 218, 311, 219, 6, + -1, 118, 102, 211, 306, 212, 7, 218, 309, 217, + 309, 217, 315, 219, 6, -1, 118, 102, 211, 306, + 212, 7, 218, 309, 217, 309, 217, 309, 217, 315, + 219, 6, -1, 118, 88, 211, 306, 212, 7, 218, + 309, 217, 315, 219, 6, -1, 118, 4, 211, 306, + 212, 7, 312, 6, -1, 118, 4, 211, 306, 212, + 7, 5, 6, -1, 118, 4, 218, 306, 219, 6, + -1, 118, 4, 211, 306, 212, 7, 218, 309, 217, + 309, 217, 315, 219, 6, -1, 126, 218, 269, 219, + -1, 126, 164, 213, 306, 214, 6, -1, 126, 4, + 213, 306, 214, 6, -1, 126, 324, 6, -1, 126, + 4, 4, 6, -1, 153, 316, 218, 269, 219, -1, + 112, 153, 316, 218, 269, 219, -1, 185, 306, 218, + 269, 219, -1, 169, 5, 6, -1, 170, 5, 6, + -1, 169, 218, 269, 219, -1, 112, 169, 218, 269, + 219, -1, 170, 218, 269, 219, -1, 112, 170, 218, + 269, 219, -1, 4, 320, 6, -1, 71, 211, 322, + 212, 6, -1, 4, 4, 213, 306, 214, 319, 6, + -1, 4, 4, 4, 213, 306, 214, 6, -1, 4, + 306, 6, -1, 110, 211, 4, 212, 215, 4, 6, + -1, 147, 4, 6, -1, 162, 6, -1, 163, 6, + -1, 68, 6, -1, 69, 6, -1, 62, 6, -1, + 62, 218, 306, 217, 306, 217, 306, 217, 306, 217, + 306, 217, 306, 219, 6, -1, 63, 6, -1, 64, + 6, -1, 75, 6, -1, 76, 6, -1, 97, 6, + -1, 98, 218, 315, 219, 218, 315, 219, 218, 311, + 219, 218, 306, 217, 306, 219, 6, -1, 167, 211, + 218, 315, 219, 217, 320, 217, 320, 212, 6, -1, + 155, 211, 306, 8, 306, 212, -1, 155, 211, 306, + 8, 306, 8, 306, 212, -1, 155, 4, 156, 218, + 306, 8, 306, 219, -1, 155, 4, 156, 218, 306, + 8, 306, 8, 306, 219, -1, 157, -1, 168, 4, + -1, 168, 320, -1, 165, -1, 166, 324, 6, -1, + 166, 320, 6, -1, 158, 211, 306, 212, -1, 159, + 211, 306, 212, -1, 160, -1, 161, -1, 117, 309, + 218, 269, 219, -1, 117, 218, 309, 217, 309, 217, + 306, 219, 218, 269, 219, -1, 117, 218, 309, 217, + 309, 217, 309, 217, 306, 219, 218, 269, 219, -1, + -1, 117, 309, 218, 269, 279, 292, 219, -1, -1, + 117, 218, 309, 217, 309, 217, 306, 219, 218, 269, + 280, 292, 219, -1, -1, 117, 218, 309, 217, 309, + 217, 309, 217, 306, 219, 218, 269, 281, 292, 219, + -1, -1, 117, 218, 269, 282, 292, 219, -1, 117, + 84, 218, 306, 217, 309, 219, 6, -1, 117, 87, + 218, 306, 217, 309, 219, 6, -1, 117, 90, 218, + 306, 217, 309, 219, 6, -1, 117, 84, 218, 306, + 217, 309, 217, 309, 217, 306, 219, 6, -1, 117, + 87, 218, 306, 217, 309, 217, 309, 217, 306, 219, + 6, -1, 117, 90, 218, 306, 217, 309, 217, 309, + 217, 306, 219, 6, -1, 117, 84, 218, 306, 217, + 309, 217, 309, 217, 309, 217, 306, 219, 6, -1, + 117, 87, 218, 306, 217, 309, 217, 309, 217, 309, + 217, 306, 219, 6, -1, 117, 90, 218, 306, 217, + 309, 217, 309, 217, 309, 217, 306, 219, 6, -1, + -1, 117, 84, 218, 306, 217, 309, 219, 283, 218, + 292, 219, 6, -1, -1, 117, 87, 218, 306, 217, + 309, 219, 284, 218, 292, 219, 6, -1, -1, 117, + 90, 218, 306, 217, 309, 219, 285, 218, 292, 219, + 6, -1, -1, 117, 84, 218, 306, 217, 309, 217, + 309, 217, 306, 219, 286, 218, 292, 219, 6, -1, + -1, 117, 87, 218, 306, 217, 309, 217, 309, 217, + 306, 219, 287, 218, 292, 219, 6, -1, -1, 117, + 90, 218, 306, 217, 309, 217, 309, 217, 306, 219, + 288, 218, 292, 219, 6, -1, -1, 117, 84, 218, + 306, 217, 309, 217, 309, 217, 309, 217, 306, 219, + 289, 218, 292, 219, 6, -1, -1, 117, 87, 218, + 306, 217, 309, 217, 309, 217, 309, 217, 306, 219, + 290, 218, 292, 219, 6, -1, -1, 117, 90, 218, + 306, 217, 309, 217, 309, 217, 309, 217, 306, 219, + 291, 218, 292, 219, 6, -1, 293, -1, 292, 293, + -1, 131, 218, 306, 219, 6, -1, 131, 218, 312, + 217, 312, 219, 6, -1, 131, 218, 312, 217, 312, + 217, 312, 219, 6, -1, 132, 6, -1, 123, 6, + -1, 123, 306, 6, -1, 139, 6, -1, 139, 141, + 6, -1, 140, 6, -1, 140, 141, 6, -1, 137, + 6, -1, 137, 141, 6, -1, 138, 6, -1, 138, + 141, 6, -1, 133, 211, 306, 212, 7, 312, 109, + 306, 6, -1, 109, 4, 213, 306, 214, 6, -1, + 120, -1, 121, -1, 122, -1, -1, 126, 6, -1, + 126, 306, 6, -1, 294, 218, 269, 295, 219, 218, + 269, 295, 219, -1, -1, 109, 4, 306, -1, -1, + 4, -1, -1, 7, 312, -1, -1, 7, 306, -1, + -1, 119, 312, -1, 104, 87, 313, 7, 306, 297, + 6, -1, 104, 90, 313, 299, 298, 6, -1, 96, + 90, 218, 306, 219, 7, 312, 6, -1, 104, 92, + 313, 299, 6, -1, 142, 313, 6, -1, 129, 90, + 218, 315, 219, 7, 306, 6, -1, 123, 90, 313, + 300, 6, -1, 123, 92, 313, 6, -1, 124, 90, + 312, 7, 306, 6, -1, 108, 87, 218, 315, 219, + 7, 218, 315, 219, 301, 6, -1, 108, 90, 218, + 315, 219, 7, 218, 315, 219, 301, 6, -1, 108, + 87, 218, 315, 219, 7, 218, 315, 219, 113, 218, + 309, 217, 309, 217, 306, 219, 6, -1, 108, 90, + 218, 315, 219, 7, 218, 315, 219, 113, 218, 309, + 217, 309, 217, 306, 219, 6, -1, 108, 87, 218, + 315, 219, 7, 218, 315, 219, 114, 309, 6, -1, + 108, 90, 218, 315, 219, 7, 218, 315, 219, 114, + 309, 6, -1, 108, 90, 306, 218, 315, 219, 7, + 306, 218, 315, 219, 6, -1, 84, 218, 315, 219, + 156, 90, 218, 306, 219, 6, -1, 87, 218, 315, + 219, 156, 90, 218, 306, 219, 6, -1, 84, 218, + 315, 219, 156, 92, 218, 306, 219, 6, -1, 87, + 218, 315, 219, 156, 92, 218, 306, 219, 6, -1, + 90, 218, 315, 219, 156, 92, 218, 306, 219, 6, + -1, 130, 90, 313, 6, -1, 130, 87, 313, 6, + -1, 99, 84, 313, 6, -1, 99, 87, 313, 6, + -1, 99, 90, 313, 6, -1, 127, 6, -1, 127, + 4, 6, -1, 127, 84, 218, 315, 219, 6, -1, + 176, -1, 177, -1, 178, -1, 304, 6, -1, 304, + 218, 312, 219, 6, -1, 304, 218, 312, 217, 312, + 219, 6, -1, 304, 211, 312, 212, 218, 312, 217, + 312, 219, 6, -1, 307, -1, 211, 306, 212, -1, + 202, 306, -1, 201, 306, -1, 206, 306, -1, 306, + 202, 306, -1, 306, 201, 306, -1, 306, 203, 306, + -1, 306, 204, 306, -1, 306, 205, 306, -1, 306, + 210, 306, -1, 306, 197, 306, -1, 306, 198, 306, + -1, 306, 200, 306, -1, 306, 199, 306, -1, 306, + 196, 306, -1, 306, 195, 306, -1, 306, 194, 306, + -1, 306, 193, 306, -1, 306, 192, 306, 8, 306, + -1, 15, 245, 306, 246, -1, 16, 245, 306, 246, + -1, 17, 245, 306, 246, -1, 18, 245, 306, 246, + -1, 19, 245, 306, 246, -1, 20, 245, 306, 246, + -1, 21, 245, 306, 246, -1, 22, 245, 306, 246, + -1, 23, 245, 306, 246, -1, 25, 245, 306, 246, + -1, 26, 245, 306, 217, 306, 246, -1, 27, 245, + 306, 246, -1, 28, 245, 306, 246, -1, 29, 245, + 306, 246, -1, 30, 245, 306, 246, -1, 31, 245, + 306, 246, -1, 32, 245, 306, 246, -1, 33, 245, + 306, 246, -1, 34, 245, 306, 217, 306, 246, -1, + 35, 245, 306, 217, 306, 246, -1, 36, 245, 306, + 217, 306, 246, -1, 24, 245, 306, 246, -1, 3, + -1, 9, -1, 14, -1, 10, -1, 11, -1, 181, + -1, 182, -1, 183, -1, 72, -1, 73, -1, 74, + -1, -1, 80, 245, 306, 308, 256, 246, -1, 175, + 245, 319, 246, -1, 175, 245, 319, 217, 306, 246, + -1, 324, -1, 4, 213, 306, 214, -1, 4, 211, + 306, 212, -1, 323, 213, 306, 214, -1, 323, 211, + 306, 212, -1, 179, 211, 324, 212, -1, 180, 211, + 320, 212, -1, 216, 324, 245, 246, -1, 324, 244, + -1, 4, 213, 306, 214, 244, -1, 4, 211, 306, + 212, 244, -1, 323, 213, 306, 214, 244, -1, 323, + 211, 306, 212, 244, -1, 4, 215, 4, -1, 4, + 213, 306, 214, 215, 4, -1, 4, 215, 4, 244, + -1, 4, 213, 306, 214, 215, 4, 244, -1, 171, + 211, 319, 217, 306, 212, -1, 54, 211, 312, 217, + 312, 212, -1, 55, 245, 319, 217, 319, 246, -1, + 53, 245, 319, 246, -1, 56, 245, 319, 217, 319, + 246, -1, 61, 211, 322, 212, -1, 310, -1, 202, + 309, -1, 201, 309, -1, 309, 202, 309, -1, 309, + 201, 309, -1, 218, 306, 217, 306, 217, 306, 217, + 306, 217, 306, 219, -1, 218, 306, 217, 306, 217, + 306, 217, 306, 219, -1, 218, 306, 217, 306, 217, + 306, 219, -1, 211, 306, 217, 306, 217, 306, 212, + -1, 312, -1, 311, 217, 312, -1, 306, -1, 314, + -1, 218, 219, -1, 218, 315, 219, -1, 202, 218, + 315, 219, -1, 306, 203, 218, 315, 219, -1, 312, + -1, 5, -1, 202, 314, -1, 306, 203, 314, -1, + 306, 8, 306, -1, 306, 8, 306, 8, 306, -1, + 84, 218, 306, 219, -1, 84, 5, -1, 87, 5, + -1, 90, 5, -1, 92, 5, -1, 106, 84, 5, + -1, 106, 87, 5, -1, 106, 90, 5, -1, 106, + 92, 5, -1, 106, 84, 218, 315, 219, -1, 106, + 87, 218, 315, 219, -1, 106, 90, 218, 315, 219, + -1, 106, 92, 218, 315, 219, -1, 84, 156, 62, + 218, 306, 217, 306, 217, 306, 217, 306, 217, 306, + 217, 306, 219, -1, 87, 156, 62, 218, 306, 217, + 306, 217, 306, 217, 306, 217, 306, 217, 306, 219, + -1, 90, 156, 62, 218, 306, 217, 306, 217, 306, + 217, 306, 217, 306, 217, 306, 219, -1, 92, 156, + 62, 218, 306, 217, 306, 217, 306, 217, 306, 217, + 306, 217, 306, 219, -1, 267, -1, 278, -1, 296, + -1, 4, 245, 246, -1, 323, 245, 246, -1, 37, + 213, 324, 214, -1, 37, 213, 314, 214, -1, 37, + 211, 314, 212, -1, 37, 213, 218, 315, 219, 214, + -1, 37, 211, 218, 315, 219, 212, -1, 4, 245, + 218, 315, 219, 246, -1, 323, 245, 218, 315, 219, + 246, -1, 38, 245, 306, 217, 306, 217, 306, 246, + -1, 39, 245, 306, 217, 306, 217, 306, 246, -1, + 40, 245, 319, 246, -1, 41, 245, 306, 217, 306, + 217, 306, 217, 306, 217, 306, 217, 306, 246, -1, + 306, -1, 314, -1, 315, 217, 306, -1, 315, 217, + 314, -1, 218, 306, 217, 306, 217, 306, 217, 306, + 219, -1, 218, 306, 217, 306, 217, 306, 219, -1, + 324, -1, 4, 215, 153, 215, 4, -1, 218, 318, + 219, -1, 4, 213, 306, 214, 215, 154, -1, 316, + -1, 318, 217, 316, -1, 320, -1, 324, -1, 4, + 213, 306, 214, -1, 323, 213, 306, 214, -1, 4, + 211, 306, 212, -1, 323, 211, 306, 212, -1, 4, + 215, 4, -1, 4, 213, 306, 214, 215, 4, -1, + 5, -1, 186, 213, 324, 214, -1, 65, -1, 184, + -1, 70, -1, 173, 211, 319, 212, -1, 172, 211, + 319, 217, 319, 212, -1, 174, 245, 319, 246, -1, + 174, 245, 319, 217, 319, 246, -1, 46, 245, 322, + 246, -1, 47, 211, 319, 212, -1, 48, 211, 319, + 212, -1, 49, 211, 319, 217, 319, 217, 319, 212, + -1, 44, 245, 322, 246, -1, 58, 245, 319, 246, + -1, 59, 245, 319, 246, -1, 60, 245, 319, 246, + -1, 57, 245, 306, 217, 319, 217, 319, 246, -1, + 52, 245, 319, 217, 306, 217, 306, 246, -1, 52, + 245, 319, 217, 306, 246, -1, 45, 245, 319, 246, + -1, 45, 245, 319, 217, 315, 246, -1, 66, 245, + 319, 246, -1, 67, -1, 51, 245, 319, 246, -1, + 50, 245, 319, 246, -1, -1, 81, 245, 320, 321, + 258, 246, -1, 319, -1, 322, 217, 319, -1, 4, + 220, 218, 306, 219, -1, 323, 220, 218, 306, 219, + -1, 4, -1, 323, -1, 187, 213, 319, 214, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { - 0, 204, 204, 205, 210, 212, 216, 217, 218, 219, - 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, - 230, 231, 232, 236, 240, 247, 252, 257, 271, 284, - 297, 325, 339, 352, 365, 384, 389, 390, 391, 392, - 393, 397, 399, 404, 406, 412, 516, 411, 534, 541, - 552, 551, 569, 576, 587, 586, 603, 620, 643, 642, - 656, 657, 658, 659, 660, 664, 665, 671, 671, 672, - 672, 678, 679, 680, 685, 691, 753, 770, 799, 828, - 833, 838, 843, 848, 855, 865, 894, 923, 928, 933, - 938, 946, 955, 961, 967, 980, 993, 1008, 1025, 1031, - 1037, 1050, 1063, 1078, 1095, 1101, 1110, 1128, 1146, 1155, - 1167, 1172, 1180, 1200, 1223, 1234, 1242, 1264, 1287, 1325, - 1346, 1358, 1372, 1372, 1374, 1376, 1385, 1395, 1394, 1415, - 1414, 1433, 1432, 1450, 1460, 1459, 1473, 1475, 1483, 1489, - 1494, 1520, 1521, 1525, 1536, 1551, 1561, 1562, 1567, 1575, - 1584, 1592, 1610, 1614, 1620, 1628, 1632, 1638, 1646, 1650, - 1656, 1664, 1668, 1674, 1683, 1686, 1699, 1702, 1712, 1735, - 1778, 1801, 1819, 1840, 1858, 1888, 1918, 1936, 1954, 1981, - 2000, 2005, 2023, 2069, 2087, 2126, 2132, 2138, 2145, 2170, - 2195, 2212, 2216, 2235, 2269, 2316, 2334, 2351, 2355, 2371, - 2419, 2424, 2429, 2434, 2439, 2444, 2467, 2473, 2484, 2485, - 2490, 2493, 2497, 2520, 2543, 2566, 2594, 2615, 2641, 2662, - 2684, 2704, 2816, 2835, 2873, 2982, 2991, 2997, 3012, 3040, - 3057, 3066, 3080, 3094, 3100, 3106, 3115, 3124, 3133, 3147, - 3209, 3227, 3244, 3259, 3288, 3300, 3324, 3328, 3333, 3340, - 3345, 3351, 3356, 3362, 3370, 3374, 3378, 3383, 3443, 3459, - 3476, 3493, 3515, 3537, 3572, 3580, 3588, 3594, 3601, 3608, - 3628, 3654, 3666, 3678, 3686, 3694, 3703, 3702, 3717, 3716, - 3731, 3730, 3745, 3744, 3758, 3765, 3772, 3779, 3786, 3793, - 3800, 3807, 3814, 3822, 3821, 3835, 3834, 3848, 3847, 3861, - 3860, 3874, 3873, 3887, 3886, 3900, 3899, 3913, 3912, 3926, - 3925, 3942, 3945, 3951, 3963, 3983, 4007, 4011, 4015, 4019, - 4023, 4027, 4033, 4039, 4043, 4047, 4051, 4055, 4074, 4087, - 4090, 4106, 4109, 4126, 4129, 4135, 4138, 4145, 4148, 4155, - 4211, 4281, 4286, 4353, 4389, 4397, 4440, 4479, 4499, 4531, - 4558, 4584, 4610, 4636, 4662, 4684, 4712, 4740, 4768, 4796, - 4824, 4863, 4902, 4923, 4944, 4971, 4975, 4985, 5020, 5021, - 5022, 5026, 5032, 5044, 5062, 5090, 5091, 5092, 5093, 5094, - 5095, 5096, 5097, 5098, 5105, 5106, 5107, 5108, 5109, 5110, - 5111, 5112, 5113, 5114, 5115, 5116, 5117, 5118, 5119, 5120, - 5121, 5122, 5123, 5124, 5125, 5126, 5127, 5128, 5129, 5130, - 5131, 5132, 5133, 5134, 5135, 5136, 5137, 5146, 5147, 5148, - 5149, 5150, 5151, 5152, 5153, 5154, 5155, 5156, 5161, 5160, - 5168, 5173, 5178, 5195, 5213, 5231, 5249, 5267, 5272, 5278, - 5293, 5312, 5332, 5352, 5372, 5395, 5400, 5405, 5415, 5425, - 5430, 5441, 5450, 5455, 5460, 5487, 5491, 5495, 5499, 5503, - 5510, 5514, 5518, 5522, 5529, 5534, 5541, 5546, 5550, 5555, - 5559, 5567, 5578, 5582, 5594, 5602, 5610, 5617, 5627, 5656, - 5660, 5664, 5668, 5672, 5676, 5680, 5684, 5688, 5717, 5746, - 5775, 5804, 5817, 5830, 5843, 5856, 5866, 5876, 5888, 5901, - 5913, 5917, 5921, 5925, 5929, 5947, 5965, 5973, 5981, 6010, - 6023, 6028, 6032, 6036, 6048, 6052, 6064, 6081, 6091, 6095, - 6110, 6115, 6122, 6126, 6139, 6153, 6167, 6181, 6195, 6203, - 6214, 6218, 6222, 6230, 6236, 6242, 6250, 6258, 6265, 6273, - 6288, 6302, 6316, 6328, 6344, 6353, 6362, 6372, 6383, 6391, - 6399, 6403, 6422, 6429, 6435, 6442, 6450, 6449, 6462, 6467, - 6473, 6482, 6495, 6498, 6502 + 0, 207, 207, 208, 213, 215, 219, 220, 221, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 240, 244, 251, 256, 261, 275, + 288, 301, 329, 343, 356, 369, 388, 393, 394, 395, + 396, 397, 401, 403, 408, 410, 416, 520, 415, 538, + 545, 556, 555, 573, 580, 591, 590, 607, 624, 647, + 646, 660, 661, 662, 663, 664, 668, 669, 675, 675, + 676, 676, 682, 683, 684, 689, 695, 757, 774, 803, + 832, 837, 842, 847, 852, 859, 869, 898, 927, 932, + 937, 942, 950, 959, 965, 971, 984, 997, 1012, 1029, + 1035, 1041, 1054, 1067, 1082, 1099, 1105, 1114, 1132, 1150, + 1159, 1171, 1176, 1184, 1204, 1227, 1238, 1246, 1268, 1291, + 1329, 1350, 1362, 1376, 1376, 1378, 1380, 1389, 1399, 1398, + 1419, 1418, 1437, 1436, 1454, 1464, 1463, 1477, 1479, 1487, + 1493, 1498, 1524, 1525, 1529, 1540, 1555, 1565, 1566, 1571, + 1579, 1588, 1596, 1614, 1618, 1624, 1632, 1636, 1642, 1650, + 1654, 1660, 1668, 1672, 1678, 1687, 1690, 1703, 1706, 1714, + 1722, 1750, 1793, 1816, 1834, 1855, 1873, 1913, 1943, 1961, + 1979, 2006, 2025, 2030, 2048, 2094, 2112, 2151, 2157, 2163, + 2170, 2211, 2237, 2254, 2258, 2277, 2311, 2358, 2376, 2393, + 2422, 2426, 2442, 2490, 2495, 2500, 2505, 2510, 2515, 2538, + 2544, 2555, 2556, 2561, 2564, 2568, 2597, 2626, 2655, 2689, + 2710, 2736, 2757, 2779, 2799, 2911, 2930, 2968, 3077, 3086, + 3092, 3107, 3135, 3152, 3161, 3175, 3189, 3195, 3201, 3210, + 3219, 3228, 3242, 3304, 3322, 3339, 3354, 3383, 3395, 3419, + 3423, 3428, 3436, 3441, 3447, 3452, 3458, 3466, 3470, 3474, + 3479, 3539, 3555, 3572, 3589, 3611, 3633, 3668, 3676, 3684, + 3690, 3697, 3704, 3724, 3750, 3762, 3774, 3782, 3790, 3799, + 3798, 3813, 3812, 3827, 3826, 3841, 3840, 3854, 3861, 3868, + 3875, 3882, 3889, 3896, 3903, 3910, 3918, 3917, 3931, 3930, + 3944, 3943, 3957, 3956, 3970, 3969, 3983, 3982, 3996, 3995, + 4009, 4008, 4022, 4021, 4038, 4041, 4047, 4059, 4079, 4103, + 4107, 4111, 4115, 4119, 4123, 4129, 4135, 4139, 4143, 4147, + 4151, 4170, 4183, 4184, 4185, 4189, 4190, 4191, 4194, 4216, + 4219, 4235, 4238, 4255, 4258, 4264, 4267, 4274, 4277, 4284, + 4340, 4410, 4415, 4482, 4518, 4526, 4569, 4608, 4628, 4660, + 4687, 4713, 4739, 4765, 4791, 4813, 4841, 4869, 4897, 4925, + 4953, 4992, 5031, 5052, 5073, 5100, 5104, 5114, 5149, 5150, + 5151, 5155, 5161, 5173, 5191, 5219, 5220, 5221, 5222, 5223, + 5224, 5225, 5226, 5227, 5234, 5235, 5236, 5237, 5238, 5239, + 5240, 5241, 5242, 5243, 5244, 5245, 5246, 5247, 5248, 5249, + 5250, 5251, 5252, 5253, 5254, 5255, 5256, 5257, 5258, 5259, + 5260, 5261, 5262, 5263, 5264, 5265, 5266, 5275, 5276, 5277, + 5278, 5279, 5280, 5281, 5282, 5283, 5284, 5285, 5290, 5289, + 5297, 5302, 5307, 5324, 5342, 5360, 5378, 5396, 5401, 5407, + 5422, 5441, 5461, 5481, 5501, 5524, 5529, 5534, 5544, 5554, + 5559, 5570, 5579, 5584, 5589, 5616, 5620, 5624, 5628, 5632, + 5639, 5643, 5647, 5651, 5658, 5663, 5670, 5675, 5679, 5684, + 5688, 5696, 5707, 5711, 5723, 5731, 5739, 5746, 5756, 5785, + 5789, 5793, 5797, 5801, 5805, 5809, 5813, 5817, 5846, 5875, + 5904, 5933, 5946, 5959, 5972, 5985, 5995, 6005, 6015, 6027, + 6040, 6052, 6056, 6060, 6064, 6068, 6086, 6104, 6112, 6120, + 6149, 6162, 6167, 6171, 6175, 6187, 6191, 6203, 6220, 6230, + 6234, 6249, 6254, 6261, 6265, 6278, 6292, 6306, 6320, 6334, + 6342, 6353, 6357, 6361, 6369, 6375, 6381, 6389, 6397, 6404, + 6412, 6427, 6441, 6455, 6467, 6483, 6492, 6501, 6511, 6522, + 6530, 6538, 6542, 6561, 6568, 6574, 6581, 6589, 6588, 6601, + 6606, 6612, 6621, 6634, 6637, 6641 }; #endif @@ -1395,44 +1413,46 @@ static const char *const yytname[] = "tSetString", "tPoint", "tCircle", "tEllipse", "tLine", "tSphere", "tPolarSphere", "tSurface", "tSpline", "tVolume", "tCharacteristic", "tLength", "tParametric", "tElliptic", "tRefineMesh", "tAdaptMesh", - "tRelocateMesh", "tPlane", "tRuled", "tTransfinite", "tComplex", - "tPhysical", "tCompound", "tPeriodic", "tUsing", "tPlugin", - "tDegenerated", "tRecursive", "tRotate", "tTranslate", "tSymmetry", - "tDilate", "tExtrude", "tLevelset", "tAffine", "tRecombine", "tSmoother", - "tSplit", "tDelete", "tCoherence", "tIntersect", "tMeshAlgorithm", - "tReverse", "tLayers", "tScaleLast", "tHole", "tAlias", - "tAliasWithOptions", "tCopyOptions", "tQuadTriAddVerts", - "tQuadTriNoNewVerts", "tQuadTriSngl", "tQuadTriDbl", "tRecombLaterals", - "tTransfQuadTri", "tText2D", "tText3D", "tInterpolationScheme", "tTime", - "tCombine", "tBSpline", "tBezier", "tNurbs", "tNurbsOrder", - "tNurbsKnots", "tColor", "tColorTable", "tFor", "tIn", "tEndFor", "tIf", - "tElseIf", "tElse", "tEndIf", "tExit", "tAbort", "tField", "tReturn", - "tCall", "tSlide", "tMacro", "tShow", "tHide", "tGetValue", - "tGetStringValue", "tGetEnv", "tGetString", "tGetNumber", "tHomology", - "tCohomology", "tBetti", "tExists", "tFileExists", "tGMSH_MAJOR_VERSION", - "tGMSH_MINOR_VERSION", "tGMSH_PATCH_VERSION", "tGmshExecutableName", - "tSetPartition", "tNameToString", "tStringToName", "tAFFECTDIVIDE", - "tAFFECTTIMES", "tAFFECTMINUS", "tAFFECTPLUS", "'?'", "tOR", "tAND", - "tNOTEQUAL", "tEQUAL", "'<'", "'>'", "tGREATEROREQUAL", "tLESSOREQUAL", - "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "UNARYPREC", "tMINUSMINUS", - "tPLUSPLUS", "'^'", "'('", "')'", "'['", "']'", "'.'", "'#'", "','", - "'{'", "'}'", "'~'", "$accept", "All", "GeoFormatItems", "GeoFormatItem", - "SendToFile", "Printf", "View", "Views", "ElementCoords", - "ElementValues", "Element", "@1", "@2", "Text2DValues", "Text2D", "@3", - "Text3DValues", "Text3D", "@4", "InterpolationMatrix", "Time", "@5", - "NumericAffectation", "NumericIncrement", "LP", "RP", "Affectation", - "Comma", "DefineConstants", "@6", "@7", "@8", "@9", "UndefineConstants", - "Enumeration", "FloatParameterOptions", "FloatParameterOption", - "CharParameterOptions", "CharParameterOption", "PhysicalId0", - "PhysicalId1", "PhysicalId2", "PhysicalId3", "InSphereCenter", - "CircleOptions", "Shape", "Transform", "MultipleShape", "ListOfShapes", - "LevelSet", "Delete", "Colorify", "SetPartition", "Visibility", - "Command", "Slide", "Loop", "Extrude", "@10", "@11", "@12", "@13", "@14", - "@15", "@16", "@17", "@18", "@19", "@20", "@21", "@22", - "ExtrudeParameters", "ExtrudeParameter", "TransfiniteType", - "TransfiniteArrangement", "TransfiniteCorners", "RecombineAngle", - "PeriodicTransform", "Constraints", "Coherence", "HomologyCommand", - "Homology", "FExpr", "FExpr_Single", "@23", "VExpr", "VExpr_Single", + "tRelocateMesh", "tSetFactory", "tThruSections", "tPlane", "tRuled", + "tTransfinite", "tComplex", "tPhysical", "tCompound", "tPeriodic", + "tUsing", "tPlugin", "tDegenerated", "tRecursive", "tRotate", + "tTranslate", "tSymmetry", "tDilate", "tExtrude", "tLevelset", "tAffine", + "tBooleanUnion", "tBooleanIntersection", "tBooleanSubtraction", + "tRecombine", "tSmoother", "tSplit", "tDelete", "tCoherence", + "tIntersect", "tMeshAlgorithm", "tReverse", "tLayers", "tScaleLast", + "tHole", "tAlias", "tAliasWithOptions", "tCopyOptions", + "tQuadTriAddVerts", "tQuadTriNoNewVerts", "tQuadTriSngl", "tQuadTriDbl", + "tRecombLaterals", "tTransfQuadTri", "tText2D", "tText3D", + "tInterpolationScheme", "tTime", "tCombine", "tBSpline", "tBezier", + "tNurbs", "tNurbsOrder", "tNurbsKnots", "tColor", "tColorTable", "tFor", + "tIn", "tEndFor", "tIf", "tElseIf", "tElse", "tEndIf", "tExit", "tAbort", + "tField", "tReturn", "tCall", "tSlide", "tMacro", "tShow", "tHide", + "tGetValue", "tGetStringValue", "tGetEnv", "tGetString", "tGetNumber", + "tHomology", "tCohomology", "tBetti", "tExists", "tFileExists", + "tGMSH_MAJOR_VERSION", "tGMSH_MINOR_VERSION", "tGMSH_PATCH_VERSION", + "tGmshExecutableName", "tSetPartition", "tNameToString", "tStringToName", + "tAFFECTDIVIDE", "tAFFECTTIMES", "tAFFECTMINUS", "tAFFECTPLUS", "'?'", + "tOR", "tAND", "tNOTEQUAL", "tEQUAL", "'<'", "'>'", "tGREATEROREQUAL", + "tLESSOREQUAL", "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "UNARYPREC", + "tMINUSMINUS", "tPLUSPLUS", "'^'", "'('", "')'", "'['", "']'", "'.'", + "'#'", "','", "'{'", "'}'", "'~'", "$accept", "All", "GeoFormatItems", + "GeoFormatItem", "SendToFile", "Printf", "View", "Views", + "ElementCoords", "ElementValues", "Element", "@1", "@2", "Text2DValues", + "Text2D", "@3", "Text3DValues", "Text3D", "@4", "InterpolationMatrix", + "Time", "@5", "NumericAffectation", "NumericIncrement", "LP", "RP", + "Affectation", "Comma", "DefineConstants", "@6", "@7", "@8", "@9", + "UndefineConstants", "Enumeration", "FloatParameterOptions", + "FloatParameterOption", "CharParameterOptions", "CharParameterOption", + "PhysicalId0", "PhysicalId1", "PhysicalId2", "PhysicalId3", + "InSphereCenter", "CircleOptions", "Shape", "Transform", "MultipleShape", + "ListOfShapes", "LevelSet", "Delete", "Colorify", "SetPartition", + "Visibility", "Command", "Slide", "Loop", "Extrude", "@10", "@11", "@12", + "@13", "@14", "@15", "@16", "@17", "@18", "@19", "@20", "@21", "@22", + "ExtrudeParameters", "ExtrudeParameter", "BooleanOperator", + "BooleanOption", "Boolean", "TransfiniteType", "TransfiniteArrangement", + "TransfiniteCorners", "RecombineAngle", "PeriodicTransform", + "Constraints", "Coherence", "HomologyCommand", "Homology", "FExpr", + "FExpr_Single", "@23", "VExpr", "VExpr_Single", "RecursiveListOfListOfDouble", "ListOfDouble", "ListOfDoubleOrAll", "FExpr_Multi", "RecursiveListOfDouble", "ColorExpr", "ListOfColor", "RecursiveListOfColor", "StringExprVar", "StringExpr", "@24", @@ -1463,73 +1483,75 @@ static const yytype_uint16 yytoknum[] = 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, - 435, 436, 437, 438, 439, 440, 441, 63, 442, 443, - 444, 445, 60, 62, 446, 447, 43, 45, 42, 47, - 37, 33, 448, 449, 450, 94, 40, 41, 91, 93, - 46, 35, 44, 123, 125, 126 + 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, + 445, 446, 63, 447, 448, 449, 450, 60, 62, 451, + 452, 43, 45, 42, 47, 37, 33, 453, 454, 455, + 94, 40, 41, 91, 93, 46, 35, 44, 123, 125, + 126 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { - 0, 216, 217, 217, 218, 218, 219, 219, 219, 219, - 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 220, 220, 221, 221, 221, 221, 221, - 221, 222, 222, 222, 222, 223, 223, 223, 223, 223, - 223, 224, 224, 225, 225, 227, 228, 226, 229, 229, - 231, 230, 232, 232, 234, 233, 235, 235, 237, 236, - 238, 238, 238, 238, 238, 239, 239, 240, 240, 241, - 241, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, - 242, 242, 243, 243, 244, 244, 244, 245, 244, 246, - 244, 247, 244, 244, 248, 244, 249, 249, 250, 250, - 250, 251, 251, 252, 252, 252, 253, 253, 254, 254, - 254, 254, 255, 255, 255, 256, 256, 256, 257, 257, - 257, 258, 258, 258, 259, 259, 260, 260, 261, 261, - 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, - 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, - 261, 261, 261, 261, 261, 261, 261, 261, 261, 261, - 262, 262, 262, 262, 262, 262, 262, 262, 263, 263, - 264, 264, 264, 264, 264, 264, 265, 265, 265, 265, - 265, 265, 265, 265, 265, 266, 266, 266, 266, 266, - 267, 267, 268, 269, 269, 269, 269, 269, 269, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - 270, 270, 270, 270, 270, 270, 270, 270, 271, 272, - 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, - 272, 272, 272, 273, 273, 273, 274, 273, 275, 273, - 276, 273, 277, 273, 273, 273, 273, 273, 273, 273, - 273, 273, 273, 278, 273, 279, 273, 280, 273, 281, - 273, 282, 273, 283, 273, 284, 273, 285, 273, 286, - 273, 287, 287, 288, 288, 288, 288, 288, 288, 288, - 288, 288, 288, 288, 288, 288, 288, 288, 288, 289, - 289, 290, 290, 291, 291, 292, 292, 293, 293, 294, - 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, - 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, - 294, 294, 294, 294, 294, 295, 295, 295, 296, 296, - 296, 297, 297, 297, 297, 298, 298, 298, 298, 298, - 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, - 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, - 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, - 298, 298, 298, 298, 298, 298, 298, 299, 299, 299, - 299, 299, 299, 299, 299, 299, 299, 299, 300, 299, - 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, - 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, - 299, 299, 299, 299, 299, 301, 301, 301, 301, 301, - 302, 302, 302, 302, 303, 303, 304, 304, 304, 304, - 304, 304, 305, 305, 306, 306, 306, 306, 306, 306, + 0, 221, 222, 222, 223, 223, 224, 224, 224, 224, + 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, + 224, 224, 224, 224, 225, 225, 226, 226, 226, 226, + 226, 226, 227, 227, 227, 227, 228, 228, 228, 228, + 228, 228, 229, 229, 230, 230, 232, 233, 231, 234, + 234, 236, 235, 237, 237, 239, 238, 240, 240, 242, + 241, 243, 243, 243, 243, 243, 244, 244, 245, 245, + 246, 246, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 247, 247, 248, 248, 249, 249, 249, 250, 249, + 251, 249, 252, 249, 249, 253, 249, 254, 254, 255, + 255, 255, 256, 256, 257, 257, 257, 258, 258, 259, + 259, 259, 259, 260, 260, 260, 261, 261, 261, 262, + 262, 262, 263, 263, 263, 264, 264, 265, 265, 266, + 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, + 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, + 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, + 266, 266, 266, 267, 267, 267, 267, 267, 267, 267, + 267, 268, 268, 269, 269, 269, 269, 269, 269, 270, + 270, 270, 270, 270, 270, 270, 270, 270, 271, 271, + 271, 271, 271, 272, 272, 273, 274, 274, 274, 274, + 274, 274, 275, 275, 275, 275, 275, 275, 275, 275, + 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, + 275, 276, 277, 277, 277, 277, 277, 277, 277, 277, + 277, 277, 277, 277, 277, 277, 278, 278, 278, 279, + 278, 280, 278, 281, 278, 282, 278, 278, 278, 278, + 278, 278, 278, 278, 278, 278, 283, 278, 284, 278, + 285, 278, 286, 278, 287, 278, 288, 278, 289, 278, + 290, 278, 291, 278, 292, 292, 293, 293, 293, 293, + 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, + 293, 293, 294, 294, 294, 295, 295, 295, 296, 297, + 297, 298, 298, 299, 299, 300, 300, 301, 301, 302, + 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, + 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, + 302, 302, 302, 302, 302, 303, 303, 303, 304, 304, + 304, 305, 305, 305, 305, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, - 307, 307, 307, 307, 308, 308, 308, 308, 309, 309, - 310, 310, 311, 311, 311, 311, 311, 311, 311, 311, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 313, 312, 314, 314, - 315, 315, 316, 316, 316 + 306, 306, 306, 306, 306, 306, 306, 307, 307, 307, + 307, 307, 307, 307, 307, 307, 307, 307, 308, 307, + 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, + 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, + 307, 307, 307, 307, 307, 309, 309, 309, 309, 309, + 310, 310, 310, 310, 311, 311, 312, 312, 312, 312, + 312, 312, 313, 313, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 315, 315, 315, 315, 316, 316, 316, 316, 317, + 317, 318, 318, 319, 319, 319, 319, 319, 319, 319, + 319, 320, 320, 320, 320, 320, 320, 320, 320, 320, + 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, + 320, 320, 320, 320, 320, 320, 320, 321, 320, 322, + 322, 323, 323, 324, 324, 324 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ @@ -1537,37 +1559,38 @@ static const yytype_uint8 yyr2[] = { 0, 2, 1, 2, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 2, 5, 5, 7, 7, 7, - 9, 6, 6, 6, 8, 0, 2, 2, 2, 2, - 2, 1, 3, 1, 3, 0, 0, 10, 1, 3, - 0, 13, 1, 3, 0, 15, 8, 14, 0, 6, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 5, 5, 7, 7, 4, 3, 6, 6, 7, - 7, 6, 6, 9, 9, 6, 6, 7, 7, 6, - 6, 4, 8, 8, 9, 9, 9, 9, 8, 8, - 9, 9, 9, 9, 6, 9, 6, 9, 5, 8, - 8, 11, 6, 9, 5, 7, 9, 9, 11, 7, - 9, 9, 0, 1, 0, 3, 5, 0, 9, 0, - 11, 0, 11, 5, 0, 9, 0, 3, 3, 5, - 5, 0, 2, 3, 5, 3, 0, 2, 3, 3, - 3, 5, 1, 1, 3, 1, 1, 3, 1, 1, - 3, 1, 1, 3, 0, 5, 0, 2, 7, 8, - 6, 7, 4, 7, 8, 8, 7, 7, 11, 8, - 4, 8, 8, 8, 9, 3, 4, 10, 7, 7, - 8, 4, 8, 12, 8, 8, 7, 4, 8, 8, - 5, 11, 5, 9, 9, 4, 9, 9, 1, 1, - 0, 2, 6, 6, 6, 6, 8, 10, 14, 16, - 12, 8, 8, 6, 14, 4, 6, 6, 3, 4, - 5, 6, 5, 3, 3, 4, 5, 4, 5, 3, - 5, 7, 7, 3, 7, 3, 2, 2, 2, 2, - 2, 15, 2, 2, 2, 2, 2, 16, 11, 6, - 8, 8, 10, 1, 2, 2, 1, 3, 3, 4, - 4, 1, 1, 5, 11, 13, 0, 7, 0, 13, - 0, 15, 0, 6, 8, 8, 8, 12, 12, 12, - 14, 14, 14, 0, 12, 0, 12, 0, 12, 0, - 16, 0, 16, 0, 16, 0, 18, 0, 18, 0, - 18, 1, 2, 5, 7, 9, 2, 2, 3, 2, - 3, 2, 3, 2, 3, 2, 3, 9, 6, 0, + 1, 1, 1, 1, 1, 2, 5, 5, 7, 7, + 7, 9, 6, 6, 6, 8, 0, 2, 2, 2, + 2, 2, 1, 3, 1, 3, 0, 0, 10, 1, + 3, 0, 13, 1, 3, 0, 15, 8, 14, 0, + 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 5, 5, 7, 7, 4, 3, 6, 6, + 7, 7, 6, 6, 9, 9, 6, 6, 7, 7, + 6, 6, 4, 8, 8, 9, 9, 9, 9, 8, + 8, 9, 9, 9, 9, 6, 9, 6, 9, 5, + 8, 8, 11, 6, 9, 5, 7, 9, 9, 11, + 7, 9, 9, 0, 1, 0, 3, 5, 0, 9, + 0, 11, 0, 11, 5, 0, 9, 0, 3, 3, + 5, 5, 0, 2, 3, 5, 3, 0, 2, 3, + 3, 3, 5, 1, 1, 3, 1, 1, 3, 1, + 1, 3, 1, 1, 3, 0, 5, 0, 2, 5, + 7, 8, 6, 7, 4, 7, 8, 8, 7, 7, + 11, 8, 4, 8, 8, 8, 9, 3, 4, 10, + 7, 7, 8, 4, 8, 12, 8, 8, 7, 9, + 4, 8, 8, 5, 11, 5, 9, 9, 4, 9, + 9, 1, 1, 0, 2, 6, 6, 6, 6, 8, + 10, 14, 16, 12, 8, 8, 6, 14, 4, 6, + 6, 3, 4, 5, 6, 5, 3, 3, 4, 5, + 4, 5, 3, 5, 7, 7, 3, 7, 3, 2, + 2, 2, 2, 2, 15, 2, 2, 2, 2, 2, + 16, 11, 6, 8, 8, 10, 1, 2, 2, 1, + 3, 3, 4, 4, 1, 1, 5, 11, 13, 0, + 7, 0, 13, 0, 15, 0, 6, 8, 8, 8, + 12, 12, 12, 14, 14, 14, 0, 12, 0, 12, + 0, 12, 0, 16, 0, 16, 0, 16, 0, 18, + 0, 18, 0, 18, 1, 2, 5, 7, 9, 2, + 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, + 9, 6, 1, 1, 1, 0, 2, 3, 9, 0, 3, 0, 1, 0, 2, 0, 2, 0, 2, 7, 6, 8, 5, 3, 8, 5, 4, 6, 11, 11, 18, 18, 12, 12, 12, 10, 10, 10, 10, 10, @@ -1584,14 +1607,14 @@ static const yytype_uint8 yyr2[] = 11, 9, 7, 7, 1, 3, 1, 1, 2, 3, 4, 5, 1, 1, 2, 3, 3, 5, 4, 2, 2, 2, 2, 3, 3, 3, 3, 5, 5, 5, - 5, 16, 16, 16, 16, 1, 1, 3, 3, 4, - 4, 4, 6, 6, 6, 6, 8, 8, 4, 14, - 1, 1, 3, 3, 9, 7, 1, 5, 3, 6, - 1, 3, 1, 1, 4, 4, 4, 4, 3, 6, - 1, 4, 1, 1, 1, 4, 6, 4, 6, 4, - 4, 4, 8, 4, 4, 4, 4, 8, 8, 6, - 4, 6, 4, 1, 4, 4, 0, 6, 1, 3, - 5, 5, 1, 1, 4 + 5, 16, 16, 16, 16, 1, 1, 1, 3, 3, + 4, 4, 4, 6, 6, 6, 6, 8, 8, 4, + 14, 1, 1, 3, 3, 9, 7, 1, 5, 3, + 6, 1, 3, 1, 1, 4, 4, 4, 4, 3, + 6, 1, 4, 1, 1, 1, 4, 6, 4, 6, + 4, 4, 4, 8, 4, 4, 4, 4, 8, 8, + 6, 4, 6, 4, 1, 4, 4, 0, 6, 1, + 3, 5, 5, 1, 1, 4 }; /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state @@ -1599,3269 +1622,3350 @@ static const yytype_uint8 yyr2[] = means the default is an error. */ static const yytype_uint16 yydefact[] = { - 0, 0, 0, 2, 3, 1, 562, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 3, 1, 573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 263, 0, 0, 271, 272, 0, 0, 0, - 266, 0, 0, 0, 0, 0, 368, 369, 370, 0, - 0, 5, 7, 6, 8, 9, 10, 21, 11, 12, - 13, 14, 20, 19, 18, 15, 16, 17, 0, 22, - 563, 0, 417, 562, 530, 418, 420, 421, 419, 0, + 0, 0, 0, 0, 0, 0, 332, 333, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 266, 0, 0, + 274, 275, 0, 0, 0, 269, 0, 0, 0, 0, + 0, 378, 379, 380, 0, 0, 5, 7, 6, 8, + 9, 10, 22, 11, 12, 13, 14, 21, 20, 19, + 15, 0, 16, 17, 18, 0, 23, 574, 0, 427, + 573, 541, 428, 430, 431, 429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 532, - 0, 553, 534, 425, 426, 427, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 422, 423, 424, 533, - 0, 0, 0, 0, 67, 68, 0, 0, 210, 0, - 0, 0, 375, 0, 522, 563, 432, 0, 0, 0, - 0, 250, 0, 252, 253, 248, 249, 0, 254, 255, - 124, 136, 67, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 543, 0, 564, 545, + 435, 436, 437, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 432, 433, 434, 544, 0, 0, 0, + 0, 68, 69, 0, 0, 213, 0, 0, 0, 385, + 0, 533, 574, 442, 0, 0, 0, 0, 253, 0, + 255, 256, 251, 252, 0, 257, 258, 125, 137, 68, + 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 455, 0, 0, 0, 0, 0, 210, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 562, - 0, 210, 563, 0, 0, 365, 0, 0, 0, 0, - 0, 0, 0, 0, 562, 473, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 495, - 496, 466, 472, 0, 467, 563, 432, 0, 0, 0, - 0, 562, 0, 0, 516, 0, 0, 0, 0, 246, - 247, 0, 562, 0, 0, 0, 264, 265, 0, 210, - 0, 210, 562, 0, 563, 0, 371, 0, 0, 67, - 68, 0, 0, 60, 64, 63, 62, 61, 66, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 465, 0, 0, 0, 0, 0, 213, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 573, 0, + 213, 574, 0, 0, 375, 0, 0, 0, 0, 0, + 0, 0, 0, 573, 483, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 505, 506, + 507, 476, 482, 0, 477, 574, 442, 0, 0, 0, + 0, 573, 0, 0, 527, 0, 0, 0, 0, 249, + 250, 0, 573, 0, 0, 0, 267, 268, 0, 213, + 0, 213, 573, 0, 574, 0, 213, 381, 0, 0, + 68, 69, 0, 0, 61, 65, 64, 63, 62, 67, + 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 378, 377, - 379, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 209, 0, 208, 0, 0, 243, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 388, + 387, 389, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 212, 0, 211, 0, 0, 246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 35, 239, 0, 0, 440, 185, 0, 562, 0, - 522, 563, 523, 0, 0, 558, 0, 122, 122, 0, - 0, 0, 0, 510, 511, 0, 0, 0, 0, 0, + 0, 0, 36, 242, 0, 0, 450, 187, 0, 573, + 0, 533, 574, 534, 0, 0, 569, 0, 123, 123, + 0, 0, 0, 0, 521, 522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 333, 333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 210, 210, 0, 457, - 456, 0, 0, 0, 0, 210, 210, 0, 0, 0, - 0, 0, 0, 0, 282, 0, 210, 0, 0, 0, - 0, 0, 335, 0, 0, 0, 0, 0, 0, 0, - 228, 366, 0, 0, 0, 0, 0, 0, 0, 0, - 67, 68, 0, 0, 0, 0, 0, 0, 0, 0, - 479, 0, 0, 480, 0, 481, 0, 482, 0, 0, - 0, 0, 0, 0, 377, 474, 0, 468, 0, 0, - 0, 343, 67, 68, 0, 245, 0, 0, 0, 0, - 0, 210, 0, 0, 0, 0, 0, 268, 267, 0, - 233, 0, 234, 0, 0, 0, 210, 0, 0, 0, + 343, 343, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, + 213, 0, 467, 466, 0, 0, 0, 0, 213, 213, + 0, 0, 0, 0, 0, 0, 0, 285, 0, 213, + 0, 0, 0, 0, 0, 345, 0, 0, 0, 0, + 0, 0, 0, 231, 376, 0, 0, 0, 0, 0, + 0, 0, 0, 68, 69, 0, 0, 0, 0, 0, + 0, 0, 0, 489, 0, 0, 490, 0, 491, 0, + 492, 0, 0, 0, 0, 0, 0, 387, 484, 0, + 478, 0, 0, 0, 353, 68, 69, 0, 248, 0, + 0, 0, 0, 0, 213, 0, 0, 0, 0, 0, + 271, 270, 0, 236, 0, 237, 0, 0, 0, 213, + 0, 0, 0, 335, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 77, 0, 0, 0, 455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 76, 0, 0, 0, 445, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 428, 556, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 60, 61, 0, - 376, 60, 61, 0, 0, 60, 0, 0, 0, 0, - 0, 205, 0, 0, 0, 0, 211, 0, 0, 0, - 393, 392, 391, 390, 386, 387, 389, 388, 381, 380, - 382, 383, 384, 385, 0, 0, 0, 186, 0, 0, + 438, 567, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 61, 62, 0, 386, 61, 62, 0, 0, 61, + 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, + 214, 0, 0, 0, 403, 402, 401, 400, 396, 397, + 399, 398, 391, 390, 392, 393, 394, 395, 0, 0, + 0, 188, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 362, 363, 364, 0, - 0, 0, 0, 331, 0, 0, 0, 152, 153, 0, - 155, 156, 0, 158, 159, 0, 161, 162, 0, 180, - 0, 191, 0, 197, 0, 0, 0, 0, 172, 210, - 0, 0, 0, 0, 0, 459, 458, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 276, 0, 0, 0, - 0, 0, 0, 0, 346, 0, 0, 229, 0, 0, - 225, 0, 0, 0, 361, 360, 0, 0, 0, 0, - 0, 445, 69, 70, 0, 497, 0, 0, 0, 0, - 0, 432, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 483, 0, 484, 0, 485, 0, 486, 0, 0, - 376, 469, 476, 0, 382, 475, 0, 0, 0, 498, - 0, 0, 0, 0, 0, 0, 0, 0, 269, 270, - 0, 0, 235, 237, 0, 564, 0, 0, 0, 60, - 61, 0, 0, 60, 61, 0, 0, 0, 0, 91, - 75, 0, 434, 433, 447, 395, 396, 397, 398, 399, - 400, 401, 402, 403, 416, 404, 0, 406, 407, 408, - 409, 410, 411, 412, 0, 0, 0, 543, 0, 550, - 539, 540, 541, 0, 555, 554, 0, 452, 0, 0, - 0, 0, 544, 545, 546, 454, 552, 141, 146, 114, - 0, 0, 535, 0, 537, 0, 430, 437, 438, 531, - 0, 0, 0, 60, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 108, 0, 0, 0, 0, 439, - 0, 0, 0, 0, 560, 0, 0, 45, 0, 0, - 0, 58, 0, 36, 37, 38, 39, 40, 436, 435, - 0, 0, 528, 25, 23, 0, 0, 0, 0, 26, - 0, 0, 240, 559, 71, 125, 72, 137, 0, 0, - 0, 512, 513, 0, 0, 0, 0, 0, 0, 0, + 372, 373, 374, 0, 0, 0, 0, 0, 0, 341, + 0, 0, 0, 153, 154, 0, 156, 157, 0, 159, + 160, 0, 162, 163, 0, 182, 0, 193, 0, 200, + 0, 0, 0, 0, 174, 213, 0, 0, 0, 0, + 0, 469, 468, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 279, 0, 0, 0, 0, 0, 0, 0, + 356, 0, 0, 232, 0, 0, 228, 0, 0, 0, + 371, 370, 0, 0, 0, 0, 0, 455, 70, 71, + 0, 508, 0, 0, 0, 0, 0, 442, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 493, 0, 494, + 0, 495, 0, 496, 0, 0, 386, 479, 486, 0, + 392, 485, 0, 0, 0, 509, 0, 0, 0, 0, + 0, 0, 0, 0, 272, 273, 0, 0, 238, 240, + 0, 575, 0, 0, 0, 0, 0, 61, 62, 0, + 0, 61, 62, 0, 0, 0, 0, 92, 76, 0, + 444, 443, 457, 405, 406, 407, 408, 409, 410, 411, + 412, 413, 426, 414, 0, 416, 417, 418, 419, 420, + 421, 422, 0, 0, 0, 554, 0, 561, 550, 551, + 552, 0, 566, 565, 0, 462, 0, 0, 0, 0, + 555, 556, 557, 464, 563, 142, 147, 115, 0, 0, + 546, 0, 548, 0, 440, 447, 448, 542, 0, 0, + 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 109, 0, 0, 0, 0, 449, 0, 0, + 0, 0, 571, 0, 0, 46, 0, 0, 0, 59, + 0, 37, 38, 39, 40, 41, 446, 445, 0, 0, + 539, 26, 24, 0, 0, 0, 0, 27, 0, 0, + 243, 570, 72, 126, 73, 138, 0, 0, 0, 523, + 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 169, 0, 0, + 0, 339, 344, 342, 0, 352, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 386, 386, 386, 0, 0, + 0, 0, 0, 239, 241, 0, 0, 0, 203, 205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 329, 334, 332, 0, 342, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 376, 376, 376, 0, 0, - 0, 0, 0, 236, 238, 0, 0, 0, 200, 202, + 0, 0, 0, 0, 0, 314, 0, 276, 0, 0, + 0, 0, 0, 0, 346, 355, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 444, 443, 0, 0, + 512, 0, 511, 510, 0, 0, 519, 0, 0, 488, + 0, 0, 0, 0, 0, 0, 0, 480, 0, 0, + 446, 445, 0, 0, 0, 0, 0, 0, 233, 0, + 0, 0, 0, 0, 235, 336, 0, 0, 0, 0, + 382, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 572, 0, 0, 452, 0, 451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 311, 0, 273, 0, 0, - 0, 0, 0, 0, 336, 345, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 434, 433, 0, 0, - 501, 0, 500, 499, 0, 0, 508, 0, 0, 478, - 0, 0, 0, 0, 0, 0, 0, 470, 0, 0, - 436, 435, 0, 0, 0, 0, 0, 0, 230, 0, - 0, 0, 0, 0, 232, 0, 0, 372, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 561, 0, - 0, 442, 0, 441, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 86, 0, 90, + 0, 0, 78, 0, 0, 0, 0, 82, 105, 107, + 0, 0, 531, 0, 113, 0, 0, 0, 0, 0, + 404, 0, 0, 0, 0, 0, 32, 454, 453, 537, + 535, 25, 0, 0, 538, 536, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 167, 167, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 172, 0, + 0, 0, 0, 0, 0, 0, 0, 350, 0, 0, + 155, 0, 158, 0, 161, 0, 164, 0, 0, 0, + 0, 0, 0, 0, 234, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 320, 0, 0, 319, 0, 326, + 0, 328, 0, 322, 0, 324, 0, 286, 315, 0, + 0, 0, 226, 0, 0, 0, 357, 0, 230, 229, + 377, 0, 0, 33, 34, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 497, 498, 499, + 500, 487, 481, 0, 0, 0, 0, 528, 0, 0, + 0, 262, 0, 0, 0, 337, 213, 0, 0, 0, + 0, 87, 0, 91, 0, 0, 79, 0, 83, 0, + 245, 456, 244, 415, 423, 424, 425, 562, 0, 0, + 560, 460, 461, 463, 0, 0, 439, 143, 0, 568, + 148, 459, 547, 549, 441, 0, 0, 0, 88, 0, + 0, 0, 61, 0, 0, 0, 0, 80, 0, 0, + 0, 529, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 474, 0, 0, 28, 29, 0, 30, 0, 0, + 127, 134, 0, 0, 74, 75, 170, 0, 0, 0, + 0, 0, 0, 173, 0, 0, 190, 191, 0, 0, + 175, 198, 0, 0, 0, 0, 0, 165, 0, 349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 85, 0, 89, 0, 0, 77, - 0, 0, 0, 0, 81, 104, 106, 0, 0, 520, - 0, 112, 0, 0, 0, 0, 0, 394, 0, 0, - 0, 0, 0, 31, 444, 443, 526, 524, 24, 0, - 0, 527, 525, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 166, 166, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 170, 0, 0, 0, 0, - 0, 0, 0, 340, 0, 0, 154, 0, 157, 0, - 160, 0, 163, 0, 0, 0, 0, 0, 0, 0, - 231, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 317, 0, 0, 316, 0, 323, 0, 325, 0, 319, - 0, 321, 0, 283, 312, 0, 0, 0, 223, 0, - 0, 0, 347, 0, 227, 226, 367, 0, 0, 32, - 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 487, 488, 489, 490, 477, 471, 0, - 0, 0, 0, 517, 0, 0, 0, 259, 0, 0, - 0, 0, 0, 0, 0, 86, 0, 90, 0, 0, - 78, 0, 82, 0, 242, 446, 241, 405, 413, 414, - 415, 551, 0, 0, 549, 450, 451, 453, 0, 0, - 429, 142, 0, 557, 147, 449, 536, 538, 431, 0, - 0, 0, 87, 0, 0, 0, 60, 0, 0, 0, - 0, 79, 0, 0, 0, 518, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 464, 0, 0, 27, 28, - 0, 29, 0, 0, 126, 133, 0, 0, 73, 74, - 168, 0, 0, 0, 0, 0, 0, 171, 0, 0, - 188, 189, 0, 0, 173, 196, 0, 0, 0, 0, - 164, 0, 339, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 244, 0, 0, 0, 0, 210, - 210, 0, 293, 0, 295, 0, 297, 0, 318, 466, - 0, 0, 324, 326, 320, 322, 0, 0, 277, 0, + 0, 247, 0, 0, 0, 0, 213, 213, 0, 296, + 0, 298, 0, 300, 0, 321, 476, 0, 0, 327, + 329, 323, 325, 0, 0, 280, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 456, 515, 514, + 513, 0, 0, 0, 0, 0, 0, 0, 516, 178, + 179, 0, 0, 0, 0, 116, 120, 0, 0, 335, + 0, 383, 0, 0, 0, 89, 0, 0, 0, 81, + 0, 458, 0, 0, 0, 0, 0, 0, 99, 0, + 0, 93, 0, 0, 0, 0, 110, 0, 0, 111, + 0, 532, 215, 216, 217, 218, 0, 0, 42, 0, + 0, 0, 0, 0, 44, 540, 0, 0, 128, 135, + 0, 0, 0, 0, 168, 176, 177, 181, 0, 0, + 192, 0, 0, 351, 0, 0, 185, 0, 0, 340, + 197, 171, 184, 196, 202, 183, 0, 194, 201, 0, + 0, 0, 0, 0, 0, 473, 0, 472, 0, 0, + 0, 287, 0, 0, 288, 0, 0, 289, 0, 0, + 0, 0, 0, 0, 0, 225, 0, 0, 224, 0, + 0, 0, 219, 0, 0, 354, 35, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 526, 0, 264, 263, + 0, 0, 0, 0, 0, 0, 100, 0, 0, 94, + 0, 0, 0, 553, 559, 558, 0, 144, 146, 0, + 149, 150, 151, 101, 103, 95, 97, 106, 108, 0, + 114, 0, 84, 47, 0, 0, 0, 475, 0, 0, + 0, 31, 0, 142, 147, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 199, 0, 186, 0, 347, 347, + 0, 121, 122, 213, 0, 206, 207, 0, 0, 0, + 0, 0, 0, 0, 316, 0, 0, 213, 0, 0, + 0, 0, 0, 210, 209, 517, 518, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 117, 118, 0, 338, + 0, 102, 104, 96, 98, 85, 0, 521, 522, 0, + 0, 530, 0, 43, 0, 0, 0, 45, 60, 0, + 0, 0, 132, 130, 365, 367, 366, 368, 369, 189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 446, 504, 503, 502, 0, 0, 0, 0, 0, 0, - 0, 505, 176, 177, 0, 0, 0, 0, 115, 119, - 0, 0, 0, 373, 0, 0, 0, 88, 0, 0, - 0, 80, 0, 448, 0, 0, 0, 0, 0, 0, - 98, 0, 0, 92, 0, 0, 0, 0, 109, 0, - 0, 110, 0, 521, 212, 213, 214, 215, 0, 0, - 41, 0, 0, 0, 0, 0, 43, 529, 0, 0, - 127, 134, 0, 0, 0, 0, 167, 174, 175, 179, - 0, 0, 190, 0, 0, 341, 0, 183, 0, 0, - 330, 195, 169, 182, 194, 199, 181, 0, 192, 198, - 0, 0, 0, 0, 0, 0, 463, 0, 462, 0, - 0, 0, 284, 0, 0, 285, 0, 0, 286, 0, - 0, 0, 0, 0, 0, 0, 222, 0, 0, 221, - 0, 0, 0, 216, 0, 0, 344, 34, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 515, 0, 261, - 260, 0, 0, 0, 0, 0, 99, 0, 0, 93, - 0, 0, 0, 542, 548, 547, 0, 143, 145, 0, - 148, 149, 150, 100, 102, 94, 96, 105, 107, 0, - 113, 0, 83, 46, 0, 0, 0, 465, 0, 0, - 0, 30, 0, 141, 146, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 184, 0, 337, 337, 0, - 120, 121, 210, 0, 203, 204, 0, 0, 0, 0, - 0, 0, 0, 313, 0, 0, 210, 0, 0, 0, - 0, 0, 207, 206, 506, 507, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 116, 117, 0, 0, 101, - 103, 95, 97, 84, 0, 510, 511, 0, 0, 519, - 0, 42, 0, 0, 0, 44, 59, 0, 0, 0, - 131, 129, 355, 357, 356, 358, 359, 187, 0, 0, + 0, 0, 0, 471, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 331, 0, 0, 0, 281, 0, 0, + 220, 0, 0, 0, 0, 0, 0, 0, 0, 525, + 265, 0, 0, 384, 0, 145, 0, 0, 152, 112, + 0, 0, 0, 0, 0, 129, 136, 142, 142, 0, + 0, 0, 0, 0, 348, 358, 0, 0, 359, 0, + 204, 0, 302, 0, 0, 304, 0, 0, 306, 0, + 0, 0, 317, 0, 277, 0, 213, 0, 0, 0, + 0, 0, 0, 0, 0, 180, 119, 261, 0, 139, + 0, 0, 51, 0, 57, 0, 0, 0, 0, 0, + 166, 195, 0, 362, 0, 363, 364, 470, 290, 0, + 0, 297, 291, 0, 0, 299, 292, 0, 0, 301, + 0, 0, 0, 283, 0, 223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 461, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 328, 0, 0, 0, 278, 0, 0, 217, 0, - 0, 0, 0, 0, 0, 0, 0, 514, 262, 0, - 0, 374, 0, 144, 0, 0, 151, 111, 0, 0, - 0, 0, 0, 128, 135, 141, 141, 0, 0, 0, - 0, 0, 338, 348, 0, 0, 349, 0, 201, 0, - 299, 0, 0, 301, 0, 0, 303, 0, 0, 0, - 314, 0, 274, 0, 210, 0, 0, 0, 0, 0, - 0, 0, 0, 178, 118, 258, 0, 138, 0, 0, - 50, 0, 56, 0, 0, 0, 0, 0, 165, 193, - 0, 352, 0, 353, 354, 460, 287, 0, 0, 294, - 288, 0, 0, 296, 289, 0, 0, 298, 0, 0, - 0, 280, 0, 220, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 132, 130, - 0, 0, 0, 0, 305, 0, 307, 0, 309, 315, - 327, 279, 275, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 139, 140, 47, 0, 54, 0, 0, 0, - 0, 0, 0, 290, 0, 0, 291, 0, 0, 292, - 0, 0, 224, 0, 218, 0, 0, 0, 0, 0, - 0, 48, 0, 0, 251, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 281, 0, 509, 0, 0, 0, - 0, 0, 0, 0, 0, 257, 0, 0, 300, 0, - 302, 0, 304, 0, 219, 0, 0, 0, 0, 49, - 51, 0, 52, 0, 0, 0, 0, 0, 0, 491, - 492, 493, 494, 0, 0, 57, 350, 351, 306, 308, - 310, 53, 55 + 133, 131, 0, 0, 0, 0, 308, 0, 310, 0, + 312, 318, 330, 282, 278, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 140, 141, 48, 0, 55, 0, + 0, 0, 0, 0, 0, 293, 0, 0, 294, 0, + 0, 295, 0, 0, 227, 0, 221, 0, 0, 0, + 0, 0, 0, 49, 0, 0, 254, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 284, 0, 520, 0, + 0, 0, 0, 0, 0, 0, 0, 260, 0, 0, + 303, 0, 305, 0, 307, 0, 222, 0, 0, 0, + 0, 50, 52, 0, 53, 0, 0, 0, 0, 0, + 0, 501, 502, 503, 504, 0, 0, 58, 360, 361, + 309, 311, 313, 54, 56 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { - -1, 2, 3, 91, 1015, 92, 93, 724, 1559, 1565, - 1003, 1218, 1760, 1980, 1004, 1924, 2021, 1005, 1982, 1006, - 1007, 1222, 360, 455, 190, 845, 94, 742, 467, 1693, - 1836, 1835, 1694, 468, 1754, 1186, 1381, 1187, 1384, 776, - 779, 782, 785, 1589, 1434, 706, 309, 431, 432, 97, - 98, 99, 100, 101, 102, 103, 104, 310, 1098, 1863, - 1943, 814, 1613, 1616, 1619, 1897, 1901, 1905, 1964, 1967, - 1970, 1094, 1095, 1262, 1054, 773, 823, 1784, 106, 107, - 108, 109, 311, 192, 957, 520, 263, 1414, 312, 313, - 314, 588, 323, 988, 1210, 465, 460, 958, 466, 344, - 316 + -1, 2, 3, 96, 1033, 97, 98, 738, 1587, 1593, + 1021, 1241, 1792, 2012, 1022, 1956, 2053, 1023, 2014, 1024, + 1025, 1245, 371, 466, 197, 861, 99, 756, 478, 1723, + 1868, 1867, 1724, 479, 1786, 1209, 1407, 1210, 1410, 792, + 795, 798, 801, 1618, 1460, 720, 318, 442, 443, 102, + 103, 104, 105, 106, 107, 108, 109, 319, 1118, 1895, + 1975, 830, 1642, 1645, 1648, 1929, 1933, 1937, 1996, 1999, + 2002, 1114, 1115, 111, 913, 320, 1286, 1074, 789, 839, + 1816, 113, 114, 115, 116, 321, 199, 975, 533, 272, + 1440, 322, 323, 324, 601, 333, 1006, 1233, 476, 471, + 976, 477, 354, 326 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -1658 +#define YYPACT_NINF -1697 static const yytype_int16 yypact[] = { - 9616, 99, 95, 9750, -1658, -1658, 4196, 52, 64, -164, - -97, 41, 158, 189, 195, 201, -64, 207, 247, 74, - 107, -56, -56, -103, 137, 168, 22, 199, 215, 28, - 228, 235, 287, 323, 413, 465, 306, 623, 437, 440, - 650, 442, 705, 795, -13, 332, 494, -95, 350, -138, - -138, 360, 482, 53, 343, 499, 508, 4, 60, 514, - 533, 227, 640, 649, 669, 5736, 673, 429, 432, 478, - 26, 59, -1658, 525, 537, -1658, -1658, 762, 767, 569, - -1658, 6248, 594, 6640, 12, 39, -1658, -1658, -1658, 9475, - 580, -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, - -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, 55, -1658, - -104, 136, -1658, 14, -1658, -1658, -1658, -1658, -1658, -56, - -56, -56, -56, -56, -56, -56, -56, -56, -56, -56, - -56, -56, -56, -56, -56, -56, -56, -56, -56, -56, - -56, -56, -56, -56, 597, 603, 616, -56, -56, -56, - -56, 617, -56, -56, -56, -56, -56, -56, 638, -1658, - -56, -1658, -1658, -1658, -1658, -1658, -56, -56, 830, 644, - 647, 651, -56, -56, 663, 686, -1658, -1658, -1658, -1658, - 698, 9475, 9475, 9475, 8866, 8933, 18, 16, 305, 683, - 703, 932, -1658, 706, 916, -75, -10, 927, 9475, 6453, - 6453, -1658, 9475, -1658, -1658, -1658, -1658, 6453, -1658, -1658, - -1658, -1658, -1658, -1658, 6844, 16, 9475, 8667, 9475, 9475, - 750, 9475, 8667, 9475, 9475, 756, 8667, 9475, 9475, 6146, - 760, 723, -1658, 8667, 5736, 5736, 5736, 764, 779, 5736, - 5736, 5736, 785, 823, 832, 833, 837, 6351, 6556, 6761, - 761, 8196, 1006, 6146, 26, 858, 864, -138, -138, -138, - 9475, 9475, -116, -1658, -51, -138, 878, 905, 925, 8263, - -48, -77, 840, 855, 859, 5736, 5736, 6146, 880, 3, - 926, -1658, 924, 1156, 1157, -1658, 965, 1000, 1001, 5736, - 5736, 976, 1007, 1008, 641, -1658, 269, -56, -56, -56, - -56, 36, 30, 32, 38, 768, 6966, 9475, 4620, -1658, - -1658, 2992, -1658, 1196, -1658, 264, 89, 1213, 9475, 9475, - 9475, 117, 9475, 1009, -1658, 1072, 9475, 9475, 9475, -1658, - -1658, 9475, 1026, 1238, 1239, 1033, -1658, -1658, 1241, -1658, - 1243, -1658, -38, 8223, 339, 6453, -1658, 6146, 6146, 9137, - 9204, 1037, 1040, 6844, -1658, -1658, -1658, -1658, -1658, -1658, - 6146, 1245, 1050, 9475, 9475, 1251, 9475, 9475, 9475, 9475, - 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, - 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 6453, 6453, - 6453, 6453, 6453, 6453, 6453, 6453, 6453, 6453, 6146, 6453, - 6453, 9475, 6453, 6453, 6453, 6453, 6453, 9475, 6844, 9475, - 6453, 6453, 6453, 6453, 6453, 16, 6844, 16, 1054, 1054, - 1054, 140, 6083, 181, 8158, 167, 1053, 1253, -56, 1052, - -1658, 1055, 2176, 9475, 8667, -1658, 9475, 9475, 9475, 9475, - 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, - 9475, -1658, -1658, 9475, 9475, -1658, -1658, 977, 91, 142, - -1658, 352, -1658, 208, 10188, -1658, 276, 171, 242, 1061, - 1062, 6288, 8667, 3779, -1658, 393, 11917, 11938, 9475, 11959, - 486, 11980, 12001, 9475, 516, 12022, 12043, 1268, 9475, 9475, - 587, 1270, 1271, 1273, 9475, 9475, 1274, 1275, 1275, 9475, - 8468, 8468, 8468, 8468, 9475, 1284, 9475, 1285, 9475, 1290, - 8667, 8667, 10082, 1090, 1292, 1086, -1658, -1658, 84, -1658, - -1658, 10214, 10240, -138, -138, 305, 305, 88, 9475, 9475, - 9475, 8263, 8263, 9475, 2176, 150, -1658, 9475, 9475, 9475, - 9475, 9475, 1293, 1295, 1296, 9475, 1299, 9475, 9475, 1227, - -1658, -1658, 8667, 8667, 8667, 1300, 1301, 9475, 9475, 9475, - 9475, 9475, 1298, 577, 7171, 7376, 9475, 9475, 6453, 9475, - -1658, 1247, 9475, -1658, 1259, -1658, 1261, -1658, 1262, 43, - 45, 46, 47, 8667, 1054, -1658, 12064, -1658, 596, 9475, - 7581, -1658, 9475, 9475, 611, -1658, 12085, 12106, 12127, 1178, - 10266, -1658, 1116, 4099, 12148, 12169, 8828, -1658, -1658, 8667, - -1658, 2471, -1658, 2785, 9475, 9475, -1658, 9475, 9475, 1124, - 1127, 607, 301, 12190, 331, 9099, 9475, 8667, 1329, 1331, - -1658, 9475, 12211, 9370, 169, 5454, 5454, 5454, 5454, 5454, - 5454, 5454, 5454, 5454, 5454, 5454, 10292, 5454, 5454, 5454, - 5454, 5454, 5454, 5454, 10318, 10344, 10370, 456, 681, 456, - 1145, 1146, 1147, 302, 302, 1148, 302, 1150, 1151, 1152, - 10396, 302, 302, 302, 290, 302, 4557, -1658, 1038, 1153, - 1154, 1161, 688, 692, 1166, 1169, 1158, 1313, 1314, 6146, - 175, 1317, 1333, 6146, 127, 6844, 9475, 1372, 1375, 29, - 302, -1658, -21, 42, 34, 65, -1658, 5426, 626, 4121, - 527, 1149, 634, 634, 506, 506, 506, 506, 248, 248, - 1054, 1054, 1054, 1054, 20, 12232, 11618, -1658, 9475, 9475, - 1390, 17, 8667, 9475, 9475, 1389, 8667, 9475, 1391, 6453, - 1393, -1658, 16, 1394, 6453, 9475, 6844, 1395, 8667, 8667, - 1252, 1397, 1398, 12253, 1399, 1257, 1402, 1403, 12274, 1260, - 1405, 1406, 9475, 12295, 6903, 1183, -1658, -1658, -1658, 12316, - 12337, 9475, 6146, 1410, 1409, 12358, 1209, 4557, 1206, 1212, - 4557, 1210, 1214, 4557, 1211, 1217, 4557, 1215, 12379, -1658, - 12400, -1658, 12421, -1658, 667, 677, 8667, 1216, -1658, -1658, - 2853, 3769, -138, 9475, 9475, -1658, -1658, 1218, 1219, 8263, - 10422, 10448, 10474, 10162, 476, -138, 3969, 12442, 7108, 12463, - 12484, 12505, 9475, 1419, -1658, 9475, 12526, -1658, 11641, 11664, - -1658, 713, 717, 725, -1658, -1658, 11687, 11710, 10500, 12547, - 11733, 89, -1658, -1658, 8667, -1658, 8667, 3779, 1224, 8667, - 1228, 132, 10526, 10552, 302, 10578, 1225, 7313, 1229, 1230, - 1233, -1658, 8667, -1658, 8667, -1658, 8667, -1658, 8667, 729, - -1658, -1658, 4141, 8667, 1054, -1658, 12568, 11756, 8667, -1658, - 1444, 1445, 1450, 1250, 9475, 4053, 9475, 9475, -1658, -1658, - 5, 730, -1658, -1658, 4464, -1658, 1249, 6146, 1457, 1420, - 1421, 6146, 175, 1423, 1424, 6146, 175, 7518, 739, -1658, - -1658, 11779, 236, 1743, -1658, -1658, -1658, -1658, -1658, -1658, - -1658, -1658, -1658, -1658, -1658, -1658, 9475, -1658, -1658, -1658, - -1658, -1658, -1658, -1658, 9475, 9475, 9475, -1658, 8667, -1658, - -1658, -1658, -1658, 6453, -1658, -1658, 9475, -1658, 6146, 6453, - 6453, 6453, -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, - 9475, 6453, -1658, 6453, -1658, 9475, -1658, -1658, -1658, -1658, - -56, -56, 1473, -1658, 9475, 1476, -56, -56, 1477, 27, - 9475, 1478, 1479, 1193, -1658, 1465, 1280, 26, 1484, -1658, - 8667, 8667, 8667, 8667, -1658, 302, 9475, -1658, 1286, 1287, - 1281, -1658, 1489, -1658, -1658, -1658, -1658, -1658, 286, 297, - 12589, 11802, -1658, -1658, 1303, 6453, 406, 12610, 11825, -1658, - 452, 10604, -1658, -1658, -1658, -6, -1658, -1658, 5454, 302, - -138, 3779, -1658, 772, 6146, 6146, 1490, 6146, 862, 6146, - 6146, 1491, 1407, 6146, 6146, 1541, 1493, 1495, 8667, 1496, - 1498, -73, -1658, -1658, 1503, -1658, 1505, 391, 9475, 391, - 9475, 391, 9475, 391, 9475, 1507, 1508, 1509, 1510, 1511, - 743, 1506, 5581, -1658, -1658, 172, 10630, 10656, -1658, -1658, - 7723, -58, -138, -138, -138, 1516, 9408, 1308, 1518, 1316, - 15, 19, 21, 54, -34, -1658, 226, -1658, 476, 1523, - 1519, 1524, 1526, 1529, 4557, -1658, 1638, 1324, 1532, 1533, - 1534, 1451, 1535, 1538, 1539, 9475, 89, 85, 747, 751, - -1658, 757, -1658, -1658, 9475, 9475, -1658, 9475, 9475, -1658, - 9475, 9475, 9475, 763, 766, 799, 803, -1658, 9475, 804, - 89, 89, 807, 6146, 6146, 6146, 1542, 10682, -1658, 4577, - 906, 1544, 1546, 1339, -1658, 6146, 1338, -1658, -56, -56, - 1550, 9475, 1552, -56, -56, 1553, 9475, 1555, -1658, 302, - 1559, -1658, 1562, -1658, 1561, 5454, 5454, 5454, 5454, 696, - 1360, 10136, 1367, 302, 302, 1363, 700, 711, 12631, 1369, - 302, 5454, 1800, 6453, -1658, 1696, -1658, 1800, 6453, -1658, - 309, 1368, 1570, 1898, -1658, -1658, -1658, 26, 9475, -1658, - 808, -1658, 812, 813, 816, 821, 391, 4557, 1373, 9475, - 9475, 6146, 1374, -1658, -1658, -1658, -1658, 1371, -1658, 1576, - 23, -1658, -1658, 1579, 9475, 5253, 1379, 1380, 1582, 1591, - 9, 1392, 1400, 1502, 1502, 6146, 1597, 1401, 1404, 1598, - 1600, 6146, 1408, 1601, 1602, -1658, 1607, 6146, 835, 6146, - 6146, 1612, 1614, -1658, 6146, 6146, 4557, 6146, 4557, 6146, - 4557, 6146, 4557, 6146, 6146, 6146, 1412, 1413, 1611, 349, - -1658, 9475, 9475, 9475, 1417, 1418, -125, -106, -84, 1414, - -1658, 1948, 6146, -1658, 9475, -1658, 1617, -1658, 1626, -1658, - 1627, -1658, 1628, -1658, -1658, 8263, 548, 5941, -1658, 1422, - 1425, 7786, -1658, 8667, -1658, -1658, -1658, 1426, 9475, -1658, - -1658, 11848, 1632, 302, 1430, 1431, 10708, 10734, 10760, 10786, - 10812, 10838, 10864, -1658, -1658, -1658, -1658, 4557, -1658, 302, - 1636, 1637, 1499, -1658, 9475, 9475, 9475, -1658, 1639, 748, - 6844, 1435, 1643, 1800, 6453, -1658, 2118, -1658, 1800, 6453, - -1658, 2663, -1658, 391, -1658, 375, -1658, -1658, -1658, -1658, - -1658, -1658, 6453, 9475, -1658, -1658, -1658, -1658, 6453, 1647, - -1658, -1658, 6, -1658, -1658, -1658, -1658, -1658, -1658, 1646, - 456, 456, -1658, 1648, 456, 456, 6844, 9475, 1650, 1651, - 29, -1658, 1652, 11871, 26, -1658, 1653, 1654, 1655, 1656, - 6146, 9475, 10890, 10916, 838, -1658, 9475, 1660, -1658, -1658, - 6453, -1658, 10942, 4843, 4557, -1658, 1658, 1661, -1658, -1658, - -1658, 9475, 9475, -138, 1663, 1664, 1665, -1658, 9475, 9475, - -1658, -1658, 1666, 9475, -1658, -1658, 1662, 1667, 1440, 1668, - 1527, 9475, -1658, 1669, 1671, 1673, 1675, 1676, 1677, 1047, - 1678, 8667, 8667, 9475, -1658, 8468, 7928, 12652, 4780, 305, - 305, -138, 1680, -138, 1681, -138, 1683, 9475, -1658, 268, - 1482, 12673, -1658, -1658, -1658, -1658, 8048, 230, -1658, 1685, - 4414, 1689, 6146, -138, 4414, 1690, 843, 9475, 2909, 1691, - 89, -1658, -1658, -1658, 9475, 9475, 9475, 9475, 9475, 9475, - 9475, -1658, -1658, -1658, 6146, 4985, 809, 12694, -1658, -1658, - 5326, 1486, 6146, -1658, 1693, 456, 456, -1658, 1694, 456, - 456, -1658, 6146, -1658, 1494, 5454, 302, 5048, 5531, 6844, - -1658, 1698, 1699, -1658, 1701, 1718, 1719, 3037, -1658, 1735, - 1737, -1658, 1540, -1658, -1658, -1658, -1658, -1658, 1739, 487, - 4557, 9475, 9475, 6146, 1545, 844, 4557, -1658, 1746, 9475, - -1658, -1658, 1547, 1549, 8115, 8363, 798, -1658, -1658, -1658, - 8391, 8419, -1658, 8604, 1749, -1658, 6146, -1658, 1682, 1751, - 4557, -1658, -1658, -1658, -1658, -1658, -1658, 1556, -1658, -1658, - 848, 852, 10109, 3080, 1753, 1558, -1658, 9475, -1658, 1551, - 1560, 233, -1658, 1565, 284, -1658, 1566, 356, -1658, 1572, - 11894, 1757, 6146, 1748, 1573, 9475, -1658, 7991, 374, -1658, - 869, 388, 400, -1658, 1760, 8718, -1658, -1658, 5454, 5454, - 10968, 10994, 11020, 11046, 11072, 1670, 9475, -1658, 9475, -1658, - -1658, 8667, 3204, 1766, 6844, 1583, -1658, 1767, 1790, -1658, - 1792, 1805, 1806, -1658, -1658, -1658, 4620, -1658, -1658, 6453, - 4557, -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, 26, - -1658, 1657, -1658, -1658, 9475, 11098, 11124, -1658, 6146, 9475, - 1808, -1658, 11150, -1658, -1658, 6146, 6146, 1811, 1812, 1814, - 1815, 1817, 1833, 870, 1594, -1658, 6146, 636, 755, 8667, - -1658, -1658, 305, 5285, -1658, -1658, 8263, 476, 8263, 476, - 8263, 476, 1834, -1658, 873, 6146, -1658, 8785, -138, 1835, - 8667, -138, -1658, -1658, -1658, -1658, 9475, 9475, 9475, 9475, - 9475, 9475, 8891, 8989, 895, -1658, -1658, 1635, 1847, -1658, - -1658, -1658, -1658, -1658, 896, 3758, 1848, 900, 1855, -1658, - 1641, 4557, 9475, 9475, 921, 4557, -1658, 9475, 931, 934, - -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, 1659, 9475, - 935, 1684, -138, 6146, 1862, 1686, -138, 1863, 939, 1688, - 9475, -1658, 9056, 402, 631, 9162, 449, 941, 9260, 496, - 1160, -1658, 6146, 1865, 1768, 5786, 1692, 538, -1658, 942, - 555, 11176, 11202, 11228, 11254, 11280, 3233, -1658, -1658, 1868, - 1870, -1658, 9475, -1658, 6844, 16, -1658, -1658, 9475, 12715, - 11306, 49, 11332, -1658, -1658, -1658, -1658, 9475, 9327, 1872, - -138, 70, -1658, -1658, -138, 73, -1658, 1873, -1658, 9746, - 1876, 9475, 1892, 1897, 9475, 1901, 1903, 9475, 1907, 1703, - -1658, 9475, -1658, 476, -1658, 8667, 1909, 7991, 9475, 9475, - 9475, 9475, 9475, -1658, -1658, -1658, 1521, -1658, 1712, 945, - -1658, 9475, -1658, 6146, 9475, 946, 967, 11358, -1658, -1658, - 575, -1658, 579, -1658, -1658, -1658, -1658, 1707, 9774, -1658, - -1658, 1708, 9802, -1658, -1658, 1710, 9830, -1658, 1920, 3409, - 1321, 5991, 971, -1658, 582, 979, 11384, 11410, 11436, 11462, - 11488, 6844, 1723, 1925, 1724, 12736, 989, 9858, -1658, -1658, - 9475, -138, -138, 476, 1926, 476, 1932, 476, 1934, -1658, - -1658, -1658, -1658, 476, 1935, 8667, 1937, 9475, 9475, 9475, - 9475, 9475, -1658, -1658, -1658, 6453, -1658, 1731, 1939, 9886, - 584, 586, 1343, -1658, 1736, 1436, -1658, 1738, 1466, -1658, - 1742, 1649, -1658, 993, -1658, 5454, 11514, 11540, 11566, 11592, - 994, -1658, 1744, 6146, -1658, 1942, 9475, 9475, 1944, 476, - 1952, 476, 1953, 476, -1658, 1954, -1658, 9475, 9475, 9475, - 9475, 6453, 1955, 6453, 997, -1658, 9914, 9942, -1658, 1801, - -1658, 1886, -1658, 2239, -1658, 9970, 9998, 10026, 10054, -1658, - -1658, 998, -1658, 1956, 1957, 1960, 1964, 1965, 1966, -1658, - -1658, -1658, -1658, 6453, 1967, -1658, -1658, -1658, -1658, -1658, - -1658, -1658, -1658 + 9922, 102, 42, 10061, -1697, -1697, 4431, 51, -59, -159, + -94, 47, 137, 147, 162, 168, -79, 181, 204, 10, + 55, 113, 113, -142, 61, 65, 18, 79, 92, 30, + 123, 155, 228, 290, 327, 342, 206, 435, 219, 303, + 374, 450, 700, 451, 404, 721, 110, 336, 464, -69, + 339, -76, -76, 347, 395, 36, -1697, -1697, -1697, 298, + 504, 512, 14, 62, 528, 542, 302, 608, 631, 635, + 6020, 643, 425, 441, 446, 25, 56, -1697, 452, 453, + -1697, -1697, 670, 679, 466, -1697, 8620, 483, 6115, 38, + 39, -1697, -1697, -1697, 9776, 486, -1697, -1697, -1697, -1697, + -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, + -1697, 488, -1697, -1697, -1697, 17, -1697, -109, 111, -1697, + 7, -1697, -1697, -1697, -1697, -1697, 113, 113, 113, 113, + 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, + 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, + 113, 524, 531, 537, 113, 113, 113, 113, 538, 113, + 113, 113, 113, 113, 113, 541, -1697, 113, -1697, -1697, + -1697, -1697, -1697, 113, 113, 725, 546, 551, 561, 113, + 113, 573, 577, -1697, -1697, -1697, -1697, 597, 9776, 9776, + 9776, 8948, 9015, 16, 9, 473, 604, 605, 521, -1697, + 620, 826, 431, 136, 833, 9776, 10208, 10208, -1697, 9776, + -1697, -1697, -1697, -1697, 10208, -1697, -1697, -1697, -1697, -1697, + -1697, 6316, 9, 9776, 8744, 9776, 9776, 636, 9776, 8744, + 9776, 9776, 644, 8744, 9776, 9776, 6440, 645, 653, -1697, + 8744, 6020, 6020, 6020, 10208, 9776, 649, 665, 6020, 6020, + 6020, 671, 677, 682, 685, 692, 6650, 6860, 7070, 681, + 2061, 910, 6440, 25, 704, 733, -76, -76, -76, 9776, + 9776, -145, -1697, -140, -76, 756, 765, 782, 4203, -96, + -82, 706, 723, 745, 6020, 6020, 6440, 750, 4, 790, + -1697, 792, 1007, 1020, -1697, 817, 821, 830, 6020, 6020, + 843, 844, 852, 543, -1697, 226, 113, 113, 113, 113, + -4, 19, 20, 21, 699, 7280, 9776, 4884, -1697, -1697, + -1697, 4094, -1697, 1054, -1697, 445, 132, 1055, 9776, 9776, + 9776, -174, 9776, 886, -1697, 912, 9776, 9776, 9776, -1697, + -1697, 9776, 858, 1084, 1102, 914, -1697, -1697, 1137, -1697, + 1138, -1697, 616, 10288, 525, 10208, -1697, -1697, 6440, 6440, + 9224, 9291, 941, 952, 6316, -1697, -1697, -1697, -1697, -1697, + -1697, 6440, 1161, 963, 9776, 9776, 1173, 9776, 9776, 9776, + 9776, 9776, 9776, 9776, 9776, 9776, 9776, 9776, 9776, 9776, + 9776, 9776, 9776, 9776, 9776, 9776, 9776, 9776, 9776, 10208, + 10208, 10208, 10208, 10208, 10208, 10208, 10208, 10208, 10208, 6440, + 10208, 10208, 9776, 10208, 10208, 10208, 10208, 10208, 9776, 6316, + 9776, 10208, 10208, 10208, 10208, 10208, 9, 6316, 9, 996, + 996, 996, 103, 12193, 120, 9462, 127, 992, 1204, 113, + 1011, -1697, 1018, 5367, 9776, 8744, -1697, 9776, 9776, 9776, + 9776, 9776, 9776, 9776, 9776, 9776, 9776, 9776, 9776, 9776, + 9776, 9776, -1697, -1697, 9776, 9776, -1697, -1697, 926, 622, + -137, -1697, 526, -1697, -122, 4680, -1697, -114, 224, 312, + 1025, 1026, 12214, 8744, 4129, -1697, 130, 12235, 12256, 9776, + 12277, 259, 12298, 12319, 9776, 273, 12340, 12361, 1252, 9776, + 9776, 552, 1254, 1258, 1272, 1071, 12382, 9776, 9776, 1290, + 1291, 1291, 9776, 8540, 8540, 8540, 8540, 9776, 1293, 9776, + 1296, 9776, 1297, 8744, 8744, 10315, 1097, 1299, 1092, -1697, + -1697, -62, -1697, -1697, 10421, 10447, -76, -76, 473, 473, + -51, 9776, 9776, 9776, 4203, 4203, 9776, 5367, -38, -1697, + 9776, 9776, 9776, 9776, 9776, 1304, 1308, 1309, 9776, 1311, + 9776, 9776, 1318, -1697, -1697, 8744, 8744, 8744, 1313, 1316, + 9776, 9776, 9776, 9776, 9776, 1319, 491, 7490, 7700, 9776, + 9776, 10208, 9776, -1697, 1253, 9776, -1697, 1262, -1697, 1263, + -1697, 1265, 40, 44, 45, 46, 8744, 996, -1697, 12403, + -1697, 559, 9776, 7910, -1697, 9776, 9776, 632, -1697, 12424, + 12445, 12466, 1176, 10473, -1697, 1115, 4155, 12487, 12508, 11825, + -1697, -1697, 8744, -1697, 1479, -1697, 1732, 9776, 9776, -1697, + 9776, 9776, 1133, 5151, 1153, 651, 188, 12529, 195, 11848, + 9776, 8744, 1360, 1361, -1697, 9776, 12550, 11871, 218, 5728, + 5728, 5728, 5728, 5728, 5728, 5728, 5728, 5728, 5728, 5728, + 10499, 5728, 5728, 5728, 5728, 5728, 5728, 5728, 10525, 10551, + 10577, 637, 652, 637, 1156, 1158, 1154, 409, 409, 1155, + 409, 1157, 1162, 1163, 10603, 409, 409, 409, -55, 409, + 13096, -1697, 953, 1179, 1180, 1166, 666, 673, 1186, 1188, + 1198, 1329, 1331, 6440, 142, 1370, 1371, 6440, 89, 6316, + 9776, 1410, 1413, 33, 409, -1697, -70, 31, 34, -13, + -1697, 2574, 655, 4327, 1189, 1140, 794, 794, 614, 614, + 614, 614, 230, 230, 996, 996, 996, 996, 15, 12571, + 11894, -1697, 9776, 9776, 1422, 27, 8744, 9776, 9776, 1424, + 8744, 9776, 1425, 10208, 1426, -1697, 9, 1428, 10208, 9776, + 6316, 1421, 8744, 8744, 1279, 1429, 1431, 12592, 1432, 1284, + 1434, 1437, 12613, 1289, 1440, 1442, 9776, 12634, 6377, 1232, + -1697, -1697, -1697, 1445, 1462, 12655, 12676, 9776, 6440, 1467, + 1468, 12697, 1261, 13096, 1255, 1264, 13096, 1267, 1266, 13096, + 1276, 1268, 13096, 1277, 12718, -1697, 12739, -1697, 12760, -1697, + 689, 690, 8744, 1274, -1697, -1697, 2599, 2994, -76, 9776, + 9776, -1697, -1697, 1256, 1280, 4203, 10629, 10655, 10681, 10395, + 905, -76, 3045, 12781, 6587, 12802, 12823, 12844, 9776, 1471, + -1697, 9776, 12865, -1697, 11917, 11940, -1697, 696, 712, 716, + -1697, -1697, 11963, 11986, 10707, 12886, 12009, 132, -1697, -1697, + 8744, -1697, 8744, 4129, 1269, 8744, 1281, 257, 10733, 10759, + 409, 10785, 1278, 6797, 1282, 1283, 1285, -1697, 8744, -1697, + 8744, -1697, 8744, -1697, 8744, 722, -1697, -1697, 4353, 8744, + 996, -1697, 12907, 12032, 8744, -1697, 1472, 1491, 1495, 1294, + 9776, 3241, 9776, 9776, -1697, -1697, -2, 726, -1697, -1697, + 3462, -1697, 9500, 1286, 1288, 6440, 1498, 1469, 1475, 6440, + 142, 1477, 1478, 6440, 142, 7007, 730, -1697, -1697, 12055, + 275, 1036, -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, + -1697, -1697, -1697, -1697, 9776, -1697, -1697, -1697, -1697, -1697, + -1697, -1697, 9776, 9776, 9776, -1697, 8744, -1697, -1697, -1697, + -1697, 10208, -1697, -1697, 9776, -1697, 6440, 10208, 10208, 10208, + -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, 9776, 10208, + -1697, 10208, -1697, 9776, -1697, -1697, -1697, -1697, 113, 113, + 1504, -1697, 9776, 1505, 113, 113, 1506, 35, 9776, 1517, + 1518, 1159, -1697, 1519, 1312, 25, 1521, -1697, 8744, 8744, + 8744, 8744, -1697, 409, 9776, -1697, 1317, 1320, 1314, -1697, + 1524, -1697, -1697, -1697, -1697, -1697, 478, 489, 12928, 12078, + -1697, -1697, 1335, 10208, 153, 12949, 12101, -1697, 157, 10811, + -1697, -1697, -1697, 58, -1697, -1697, 5728, 409, -76, 4129, + -1697, 618, 6440, 6440, 1529, 6440, 848, 6440, 6440, 1532, + 1448, 6440, 6440, 1260, 1534, 1538, 8744, -1697, 1328, 1546, + 1547, 4587, -1697, -1697, 1549, -1697, 1551, 279, 9776, 279, + 9776, 279, 9776, 279, 9776, 1552, 1554, 1566, 1569, 1571, + 731, 1579, 3529, -1697, -1697, -18, 10837, 10863, -1697, -1697, + 7217, -131, -76, -76, -76, 1583, 9572, 1338, 1586, 1385, + 24, 26, 41, 49, -46, -1697, -8, -1697, 905, 1593, + 1595, 1600, 1602, 1605, 13096, -1697, 1664, 1384, 1613, 1614, + 1615, 1541, 1619, 1626, 1630, 9776, 132, -23, 735, 738, + -1697, 743, -1697, -1697, 9776, 9776, -1697, 9776, 9776, -1697, + 9776, 9776, 9776, 753, 754, 758, 762, -1697, 9776, 763, + 132, 132, 769, 6440, 6440, 6440, 1633, 10889, -1697, 4839, + 602, 1634, 1636, 1427, -1697, -1697, 1801, 1423, 6440, 1420, + -1697, 113, 113, 1637, 9776, 1643, 113, 113, 1644, 9776, + 1649, -1697, 409, 1652, -1697, 1638, -1697, 1654, 5728, 5728, + 5728, 5728, 680, 1444, 10369, 1450, 409, 409, 1446, 688, + 713, 12970, 1452, 409, 5728, 1134, 10208, -1697, 1841, -1697, + 1134, 10208, -1697, 173, 1451, 1665, 2023, -1697, -1697, -1697, + 25, 9776, -1697, 802, -1697, 805, 810, 814, 815, 279, + 13096, 1470, 9776, 9776, 6440, 1460, -1697, -1697, -1697, -1697, + 1464, -1697, 1674, 52, -1697, -1697, 1676, 9776, 5527, 1474, + 1473, 1677, 1678, 6, 1476, 1481, 1587, 1587, 6440, 1682, + 1482, 1483, 1684, 1685, 6440, 1484, 1686, 1689, -1697, 1698, + 6440, 834, 6440, 6440, 6440, 1701, 1702, -1697, 6440, 6440, + 13096, 6440, 13096, 6440, 13096, 6440, 13096, 6440, 6440, 6440, + 1489, 1492, 1704, 209, -1697, 9776, 9776, 9776, 1494, 1496, + -120, -89, -86, 1503, -1697, 2121, 6440, -1697, 9776, -1697, + 1703, -1697, 1711, -1697, 1713, -1697, 1714, -1697, -1697, 4203, + 522, 6230, -1697, 1507, 1508, 8120, -1697, 8744, -1697, -1697, + -1697, 1509, 9776, -1697, -1697, 12124, 1717, 409, 1512, 1514, + 10915, 10941, 10967, 10993, 11019, 11045, 11071, -1697, -1697, -1697, + -1697, 13096, -1697, 409, 1723, 1724, 1581, -1697, 9776, 9776, + 9776, -1697, 1725, 565, 6316, -1697, -1697, 1522, 1729, 1134, + 10208, -1697, 2199, -1697, 1134, 10208, -1697, 2243, -1697, 279, + -1697, 493, -1697, -1697, -1697, -1697, -1697, -1697, 10208, 9776, + -1697, -1697, -1697, -1697, 10208, 1734, -1697, -1697, 13, -1697, + -1697, -1697, -1697, -1697, -1697, 1730, 637, 637, -1697, 1737, + 637, 637, 6316, 9776, 1744, 1752, 33, -1697, 1751, 12147, + 25, -1697, 1753, 1754, 1780, 1781, 6440, 9776, 11097, 11123, + 847, -1697, 9776, 1784, -1697, -1697, 10208, -1697, 11149, 5101, + 13096, -1697, 1786, 1793, -1697, -1697, -1697, 9776, 9776, -76, + 1795, 1797, 1798, -1697, 9776, 9776, -1697, -1697, 1799, 9776, + -1697, -1697, 1805, 1800, 1608, 850, 1807, 1655, 9776, -1697, + 1823, 1824, 1830, 1835, 1839, 1842, 1068, 1843, 8744, 8744, + 9776, -1697, 8540, 7427, 12991, 2439, 473, 473, -76, 1844, + -76, 1845, -76, 1847, 9776, -1697, 253, 1629, 13012, -1697, + -1697, -1697, -1697, 7637, 104, -1697, 1864, 4650, 1865, 6440, + -76, 4650, 1866, 856, 9776, 2384, 1867, 132, -1697, -1697, + -1697, 9776, 9776, 9776, 9776, 9776, 9776, 9776, -1697, -1697, + -1697, 6440, 5559, 305, 13033, -1697, -1697, 5600, 1659, 5151, + 6440, -1697, 1871, 637, 637, -1697, 1872, 637, 637, -1697, + 6440, -1697, 1667, 5728, 409, 5317, 5810, 6316, -1697, 1877, + 1878, -1697, 1879, 1880, 1881, 2472, -1697, 1883, 1882, -1697, + 1680, -1697, -1697, -1697, -1697, -1697, 1885, 306, 13096, 9776, + 9776, 6440, 1675, 860, 13096, -1697, 1886, 9776, -1697, -1697, + 1683, 1690, 7847, 8057, 389, -1697, -1697, -1697, 8267, 8434, + -1697, 8681, 1895, -1697, 6440, 1896, -1697, 1821, 1904, 13096, + -1697, -1697, -1697, -1697, -1697, -1697, 1695, -1697, -1697, 872, + 888, 10342, 3046, 1908, 1697, -1697, 9776, -1697, 1699, 1700, + 126, -1697, 1705, 156, -1697, 1707, 192, -1697, 1708, 12170, + 1910, 6440, 1913, 1709, 9776, -1697, 8330, 214, -1697, 892, + 227, 258, -1697, 1911, 8795, -1697, -1697, 5728, 5728, 11175, + 11201, 11227, 11253, 11279, 1770, 9776, -1697, 9776, -1697, -1697, + 8744, 3329, 1916, 6316, 1710, 1712, -1697, 1922, 1924, -1697, + 1926, 1927, 1928, -1697, -1697, -1697, 4884, -1697, -1697, 10208, + 13096, -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, 25, + -1697, 1782, -1697, -1697, 9776, 11305, 11331, -1697, 6440, 9776, + 1929, -1697, 11357, -1697, -1697, 6440, 6440, 1931, 1933, 1934, + 1939, 1940, 1941, 896, -1697, 1735, -1697, 6440, 615, 739, + 8744, -1697, -1697, 473, 5700, -1697, -1697, 4203, 905, 4203, + 905, 4203, 905, 1942, -1697, 897, 6440, -1697, 8862, -76, + 1944, 8744, -76, -1697, -1697, -1697, -1697, 9776, 9776, 9776, + 9776, 9776, 9776, 8905, 8973, 918, -1697, -1697, 1740, -1697, + 1948, -1697, -1697, -1697, -1697, -1697, 923, 3952, 1949, 949, + 1951, -1697, 1741, 13096, 9776, 9776, 954, 13096, -1697, 9776, + 955, 970, -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, + 1743, 9776, 971, 1746, -76, 6440, 1952, 1749, -76, 1956, + 986, 1736, 9776, -1697, 9071, 311, 642, 9138, 315, 878, + 9181, 368, 1093, -1697, 6440, 1962, 1861, 3834, 1763, 375, + -1697, 1002, 378, 11383, 11409, 11435, 11461, 11487, 3694, -1697, + -1697, 1976, 1977, -1697, 9776, -1697, 6316, 9, -1697, -1697, + 9776, 13054, 11513, 48, 11539, -1697, -1697, -1697, -1697, 9776, + 9249, 1980, -76, 73, -1697, -1697, -76, 83, -1697, 1981, + -1697, 9347, 1982, 9776, 1983, 1984, 9776, 1985, 2001, 9776, + 2002, 1790, -1697, 9776, -1697, 905, -1697, 8744, 2004, 8330, + 9776, 9776, 9776, 9776, 9776, -1697, -1697, -1697, 3973, -1697, + 1802, 1021, -1697, 9776, -1697, 6440, 9776, 1030, 1033, 11565, + -1697, -1697, 403, -1697, 407, -1697, -1697, -1697, -1697, 1796, + 9419, -1697, -1697, 1804, 9525, -1697, -1697, 1806, 9623, -1697, + 2009, 3911, 1130, 5860, 1038, -1697, 424, 1039, 11591, 11617, + 11643, 11669, 11695, 6316, 1808, 2010, 1809, 13075, 1056, 9665, + -1697, -1697, 9776, -76, -76, 905, 2011, 905, 2012, 905, + 2013, -1697, -1697, -1697, -1697, 905, 2017, 8744, 2019, 9776, + 9776, 9776, 9776, 9776, -1697, -1697, -1697, 10208, -1697, 1810, + 2020, 9693, 426, 432, 1411, -1697, 1813, 1466, -1697, 1829, + 1485, -1697, 1831, 1536, -1697, 1057, -1697, 5728, 11721, 11747, + 11773, 11799, 1065, -1697, 1832, 6440, -1697, 2042, 9776, 9776, + 2046, 905, 2047, 905, 2048, 905, -1697, 2049, -1697, 9776, + 9776, 9776, 9776, 10208, 2052, 10208, 1070, -1697, 10098, 10126, + -1697, 1609, -1697, 1766, -1697, 1840, -1697, 10154, 10204, 10232, + 10260, -1697, -1697, 1074, -1697, 2054, 2055, 2060, 2062, 2063, + 2067, -1697, -1697, -1697, -1697, 10208, 2092, -1697, -1697, -1697, + -1697, -1697, -1697, -1697, -1697 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -1658, -1658, -1658, -1658, 744, -1658, -1658, -1658, -1658, 147, - -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, - -1658, -1658, -146, 80, 3879, 1854, -1658, 1515, -1658, -1658, - -1658, -1658, -1658, -1658, -1658, -1657, -1658, 282, -1658, -1658, - -1658, -1658, -1658, -1658, 733, 1975, 11, -520, -253, -1658, - -1658, -1658, -1658, -1658, -1658, -1658, -1658, 1981, -1658, -1658, - -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, -1658, - -1658, -1059, -1085, -1658, -1658, 1487, -1658, 278, -1658, -1658, - -1658, -1658, 1850, -1658, -1658, 33, -1658, -1479, 2402, 381, - 2896, -177, -243, 588, -1658, 129, 90, -1658, -386, -3, - 237 + -1697, -1697, -1697, -1697, 846, -1697, -1697, -1697, -1697, 207, + -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, + -1697, -1697, -313, -90, 1635, 3378, -1697, 1621, -1697, -1697, + -1697, -1697, -1697, -1697, -1697, -1696, -1697, 377, -1697, -1697, + -1697, -1697, -1697, -1697, 835, 2100, 11, -529, -242, -1697, + -1697, -1697, -1697, -1697, -1697, -1697, -1697, 2101, -1697, -1697, + -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, -1697, + -1697, -1102, -1099, -1697, 556, 2103, -1697, -1697, 1596, -1697, + 369, -1697, -1697, -1697, -1697, 1969, -1697, -1697, 93, -1697, + -1275, 2529, 318, 2421, 3131, -261, 683, -1697, 131, 68, + -1697, -395, -3, 267 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which number is the opposite. If zero, do what YYDEFACT says. If YYTABLE_NINF, syntax error. */ -#define YYTABLE_NINF -530 +#define YYTABLE_NINF -541 static const yytype_int16 yytable[] = { - 110, 1235, 657, 195, 659, 807, 808, 546, 279, 1304, - 1538, 515, 1151, 1630, 96, 1430, 534, 338, 362, 674, - 332, 1295, 425, 1013, 997, 1297, 220, 1299, 549, 1419, - 321, 1200, 225, 986, 1261, 573, 1768, 575, 225, 1306, - 475, 570, 199, 577, 340, 480, 220, 201, 861, 484, - 863, 865, 867, 254, 282, 1882, 490, 271, 258, 259, - 1301, 346, 315, 325, 284, 197, 285, 282, 260, 255, - 256, 523, 524, 1085, 250, 261, 1891, 251, 282, 1893, - 523, 524, 262, 264, 1086, 270, 611, 1471, 613, 1472, - 523, 524, 1087, 1088, 1089, 5, 194, 525, 1090, 1091, - 1092, 1093, 349, 216, 350, 4, 1473, 1703, 1474, 200, - 217, 351, 523, 524, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 1475, 537, - 1476, 453, 450, 454, 973, 193, 538, 272, 523, 524, - 351, 273, 207, 353, 286, 523, 524, 687, 523, 524, - 212, 1296, 213, 274, 198, 1298, 1285, 1300, 998, 999, - 1000, 1001, 526, 280, 203, 536, 426, 427, 614, 1539, - 615, 333, 562, 337, 695, 1201, 1202, 189, 1885, 1886, - 1303, 574, 973, 576, 282, 216, 90, 571, 691, 578, - 1302, 361, 990, 358, 359, 204, 461, 461, 90, 430, - 1236, 205, 1237, -523, 461, 523, 524, 206, 90, 1764, - 1014, 547, 282, 208, 315, 1152, 1014, 281, 189, 315, - 363, 1304, 364, 315, 365, 339, 315, 1780, 221, 189, - 315, 315, 315, 315, 1002, 222, 315, 315, 315, 322, - 111, 226, 987, 196, 315, 315, 315, 992, 221, 572, - 315, 282, 341, 209, 202, 991, 862, 708, 864, 866, - 868, 347, 1883, 800, 801, 326, 523, 524, 348, 523, - 524, 228, 315, 315, 315, 689, 589, 693, 993, 696, - 523, 524, 210, 816, 523, 524, 315, 315, 358, 359, - 518, 519, 358, 359, 283, 1322, 802, 728, 527, 729, - 809, 730, 535, 315, 469, 315, 189, 324, 899, 429, - 354, 355, 356, 357, 289, 211, 1396, 290, 334, 354, - 355, 356, 357, 354, 355, 356, 688, 599, 459, 463, - 358, 359, 189, 794, 795, 358, 359, 979, 903, 358, - 359, 1123, 461, 218, 315, 315, 523, 524, 885, 731, - 354, 355, 356, 357, 732, 1464, 1465, 315, 354, 355, - 356, 357, 815, 894, 354, 355, 356, 692, 523, 524, - 358, 359, 358, 359, 219, 831, 832, 833, 358, 359, - 740, 229, -528, 741, 1281, 461, 461, 461, 461, 461, - 461, 461, 461, 461, 461, 315, 461, 461, 973, 461, - 461, 461, 461, 461, 1926, 223, 869, 461, 461, 461, - 461, 461, 282, 230, 282, 735, 48, 49, 50, 51, - 736, 224, 523, 524, 428, 56, 523, 524, 59, 523, - 524, 315, 891, 275, 227, 276, 462, 462, 1305, 358, - 359, 228, 1625, 628, 462, 1716, 447, 448, 449, -526, - 908, 743, 470, 450, 741, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 590, 448, 449, 315, - 592, 232, 593, 450, 619, 564, 901, 565, 905, 351, - 523, 524, 1621, 738, 354, 355, 356, 900, 739, 358, - 359, 324, 354, 355, 356, 357, 1718, 955, 677, -527, - 358, 359, 739, 231, 2004, 697, 685, 315, 315, 842, - -525, 843, 358, 359, 354, 355, 356, 904, 658, 233, - 660, 661, 662, 663, 664, 665, 666, 237, 668, 669, - 238, 671, 672, 673, 242, 675, 430, 430, 252, 679, - 680, 681, 682, 683, 974, 617, 1072, 618, 980, 315, - 315, 315, 523, 524, 351, 1016, 805, 806, 733, 1020, - 734, 315, 315, 257, 519, 461, 266, 351, 1720, 267, - 523, 524, 268, 265, 354, 355, 356, 357, 358, 359, - 315, 253, 462, 1085, 523, 524, 1728, 315, -529, 277, - 778, 781, 784, 787, 1086, 278, 523, 524, 523, 524, - 1730, 287, 1087, 1088, 1089, 749, 315, 750, 1090, 1091, - 1092, 1093, 1731, 1230, 1851, 491, 492, 493, 749, 1070, - 496, 497, 498, 288, 315, 462, 462, 462, 462, 462, - 462, 462, 462, 462, 462, 318, 462, 462, 319, 462, - 462, 462, 462, 462, 291, 523, 524, 462, 462, 462, - 462, 462, 684, 292, 686, 1085, 542, 543, 1794, 1233, - 1797, 1854, 1800, 842, 749, 843, 1086, 1118, 739, 1119, - 555, 556, 1121, 293, 1087, 1088, 1089, 317, 258, 259, - 1090, 1091, 1092, 1093, 320, 1133, 315, 1134, 260, 1135, - 315, 1136, 523, 524, 1683, 269, 1139, 854, 749, 1684, - 755, 1142, 445, 446, 447, 448, 449, 234, 1857, 1304, - 235, 450, 1304, 236, 914, 1304, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 749, 315, - 759, 327, 450, 315, 523, 524, 461, 239, 1085, 282, - 240, 461, 241, 328, 1209, 315, 315, 1781, 1782, 1086, - 1865, 523, 524, 1783, 1519, 1520, 1161, 1087, 1088, 1089, - 1166, 1179, 1488, 1090, 1091, 1092, 1093, 1867, 329, 315, - 975, 523, 524, 330, 981, 523, 524, 331, 523, 524, - 523, 524, 523, 524, 842, 982, 843, 1931, 345, 243, - 844, 1932, 244, 315, 1945, 245, 1986, 246, 1987, 749, - 335, 765, 851, 391, 1910, 462, 1390, 1391, 749, 392, - 871, 1394, 1395, 1212, 1213, 1214, 1215, 1648, 842, 897, - 843, 898, 393, 398, 878, 1304, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 1075, 1029, 409, 749, 450, - 995, 315, 1081, 315, 405, 1852, 315, 560, 1096, 561, - 410, 562, 579, 411, 188, 580, 189, 412, 581, 315, - 582, 315, 1241, 315, 1242, 315, 1785, 1786, 1023, 415, - 315, 1258, 1783, 1027, 1962, 315, 1965, 1304, 1968, 749, - 1304, 1068, 247, 1304, 1971, 248, 1304, 249, 842, 749, - 843, 1069, 416, 938, 315, 842, 433, 843, 315, 842, - 963, 843, 315, 842, 965, 843, 417, 842, 749, 843, - 461, 1265, 1379, 1267, 1346, 1269, 434, 1271, 842, 451, - 843, 914, 452, 1382, 1304, 749, 1304, 1110, 1304, 749, - 2009, 1111, 2011, 456, 2013, 315, 489, 749, 435, 1112, - 461, 749, 749, 1137, 1153, 315, 461, 461, 461, 1609, - 1610, 749, 1247, 1169, 1248, 749, 478, 1278, 461, 749, - 461, 1323, 483, 749, 1402, 1324, 488, 1525, 1526, 749, - 494, 1325, 1529, 1530, 510, 749, 462, 1333, 749, 1025, - 1334, 462, 1162, 727, 282, 495, 1167, 315, 315, 315, - 315, 499, 1171, 1173, 523, 524, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 513, 749, 461, 1335, 450, 749, 749, 1336, 1338, 749, - 1404, 1339, 1405, 1649, 749, 749, 1406, 1407, 749, 500, - 1408, 315, 315, 749, 315, 1409, 315, 315, 501, 502, - 315, 315, 1174, 503, 959, 315, 539, 749, 1085, 1448, - 1563, 1597, 1564, 1598, 1397, 749, 1689, 1634, 1690, 1086, - 749, 540, 1707, 1240, 749, 541, 1708, 1087, 1088, 1089, - 1410, 516, 1180, 1090, 1091, 1092, 1093, 517, 1183, 1184, - 1185, 1563, 1563, 1729, 1778, 1802, 545, 1803, 1224, 1225, - 1189, 528, 1190, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 749, 1822, 1819, - 1823, 450, 739, 1347, 1826, 1286, 1287, 1288, 529, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 1563, 548, 1831, 1496, 450, 530, 351, - 315, 315, 315, 1379, 1229, 1833, 1382, 1563, 1834, 1839, - 462, 749, 315, 1847, 749, 1855, 1866, 1689, 1379, 1923, - 1928, 1553, 550, 551, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 552, 1379, - 462, 1929, 450, 749, 557, 1944, 462, 462, 462, 461, - 461, 749, 1789, 1946, 461, 461, 1171, 1173, 462, 1206, - 462, 1563, 591, 1957, 282, 749, 2001, 1995, 2002, 1563, - 2033, 2023, 2034, 553, 554, 558, 559, 1532, 315, 595, - 1224, 1225, 601, 602, 324, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 7, - 8, 189, 315, 450, 607, 608, 609, 610, 315, 612, - 626, 630, 462, 627, 315, 634, 315, 315, 631, 450, - 699, 315, 315, 698, 315, 188, 315, 1085, 315, 701, - 315, 315, 315, 745, 746, 762, 766, 767, 1086, 768, - 1398, 771, 772, 1757, 1600, 1601, 1087, 1088, 1089, 315, - 789, 791, 1090, 1091, 1092, 1093, 793, 797, 798, 799, - 822, 824, 841, 825, 315, 827, 834, 835, 315, 856, - 315, 702, 24, 25, 703, 27, 28, 704, 30, 705, - 32, 858, 33, 859, 860, 1425, 883, 38, 39, 886, - 41, 42, 43, 895, 896, 909, 46, 910, 1487, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 461, 461, 941, 942, 450, 461, 461, 970, 971, 943, - 946, 976, 948, 949, 950, 960, 961, 969, 962, 461, - 67, 68, 69, 967, 1858, 461, 968, 977, 984, 985, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 1012, 1019, 1048, 1022, 450, 1024, - 1026, 282, 1030, 1033, 1034, 1035, 1037, 315, 1038, 1039, - 1040, 1042, 1043, 1044, 1053, 1055, 1057, 461, 1058, 1059, - 315, 1061, 1060, 1062, 1063, 1105, 1071, 1064, 1085, 462, - 462, 1120, 1078, 1079, 462, 462, 1758, 1122, 1128, 1086, - 1521, 830, 1130, 1131, 324, 1533, 1132, 1087, 1088, 1089, - 1085, 1143, 1144, 1090, 1091, 1092, 1093, 1145, 315, 315, - 1146, 1086, 1155, 1157, 1158, 1159, 1576, 1163, 1164, 1087, - 1088, 1089, 1207, 1805, 1744, 1090, 1091, 1092, 1093, 1194, - 430, 430, 1196, 1199, 1204, 1205, 1546, 315, 1208, 315, - 1211, 315, 1219, 1220, 1221, 1223, 1228, 1245, 1251, 1252, - 1256, 1534, 1257, 1259, 1611, 1260, 1614, 1536, 1617, 1263, - 1279, 315, 1264, 1571, 1273, 1274, 1275, 1276, 1277, 315, - 1289, 1292, 1294, 1628, 1293, 1308, 1631, 1632, 1921, 315, - 1307, 1309, 1788, 1310, 315, 1941, 1311, 1313, 1314, 1315, - 1316, 1317, 1318, 1085, 1319, 1320, 1343, 1255, 1348, 1568, - 1349, 1350, 1352, 1809, 1086, 1604, 1355, 1988, 1357, 1360, - 315, 1362, 1087, 1088, 1089, 1364, 1365, 1366, 1090, 1091, - 1092, 1093, 1372, 1085, 1375, 1378, 1386, 1400, 1399, 1411, - 1533, 1417, 1418, 315, 1086, 1421, 1426, 1416, 1428, 1427, - 462, 462, 1087, 1088, 1089, 462, 462, 1429, 1090, 1091, - 1092, 1093, 1433, 1437, 1440, 1431, 1441, 1444, 1445, 462, - 1653, 1911, 1446, 1432, 1438, 462, 1451, 1439, 1463, 315, - 1452, 1443, 1477, 1482, 315, 1461, 1462, 1668, 1671, 1672, - 1469, 1470, 1483, 1484, 1485, 1492, 1500, 1502, 1493, 1497, - 1503, 324, 1512, 1513, 1312, 1518, 1514, 1522, 315, 1523, - 1990, 1537, 1540, 1586, 1543, 1549, 1548, 462, 1551, 1554, - 1555, 1556, 1557, 315, 1567, 1572, 461, 1584, 1573, 1577, - 1578, 1579, 1582, 1585, 1587, 1591, 282, 1592, 1588, 1593, - 1992, 1594, 1595, 1596, 1599, 315, 1612, 1615, 1912, 1618, - 1915, 1626, 315, 315, 1622, 1629, 1633, 1637, 1654, 1656, - 1659, 1663, 1392, 315, 1673, 1674, 315, 1675, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 315, 430, 1676, 1677, 450, 315, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 1679, 1680, 1747, 1682, 450, 458, 114, 1793, - 1681, 1796, 1691, 1799, 1702, 1725, 1085, 1705, 1688, 1711, - 1695, 1807, 1696, 1723, 1810, 1714, 1732, 1086, 1973, 1706, - 1704, 1712, 1746, 1749, 1715, 1087, 1088, 1089, 1717, 1719, - 315, 1090, 1091, 1092, 1093, 1721, 1726, 141, 142, 143, - 144, 145, 146, 147, 148, 149, 1750, 1748, 1751, 315, - 154, 155, 156, 157, 458, 114, 1759, 1779, 159, 160, - 161, 1752, 1753, 162, 1766, 1841, 1741, 1772, 1773, 1845, - 1774, 1775, 282, 1776, 167, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 1777, - 1801, 1808, 1820, 450, 141, 142, 143, 144, 145, 146, - 147, 148, 149, 1821, 1828, 1825, 191, 154, 155, 156, - 157, 1827, 315, 1994, 315, 159, 160, 161, 1843, 1846, - 162, 1860, 1837, 1890, 1874, 1861, 1875, 1892, 1889, 1894, - 315, 167, 1896, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 1840, 1899, 1844, - 1914, 450, 1848, 1900, 1401, 1864, 462, 1903, 1085, 1904, - 170, 171, 172, 1907, 1877, 1913, 324, 1908, 1922, 1086, - 1933, 1935, 179, 1937, 180, 90, 1939, 1087, 1088, 1089, - 1953, 1954, 1963, 1090, 1091, 1092, 1093, 1955, 1966, 343, - 1969, 1972, 315, 1974, 1983, 1984, 358, 359, 2005, 1989, - 2008, 1991, 461, 1172, 1478, 1993, -524, 2003, 2010, 2012, - 2014, 2020, 2035, 2036, 1960, 1961, 2037, 170, 171, 172, - 2038, 2039, 2040, 2042, 1420, 1879, 1769, 1435, 95, 179, - 315, 180, 90, 744, 105, 774, 1787, 0, 1550, 0, - 0, 0, 0, 1085, 0, 0, 0, 0, 461, 0, - 461, 0, 0, 0, 1086, 0, 0, 842, 0, 843, - 0, 1952, 1087, 1088, 1089, 2026, 0, 0, 1090, 1091, - 1092, 1093, 0, 0, 0, 0, 0, 0, 0, 0, - 461, 418, 419, 420, 422, 424, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 457, 0, - 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1878, 0, 0, 0, 471, 473, 476, 477, - 0, 479, 473, 481, 482, 0, 473, 485, 486, 0, - 0, 0, 0, 473, 1981, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 2027, 512, 0, 450, 0, 0, 0, 0, 0, 0, - 521, 522, 0, 0, 0, 0, 0, 0, 0, 522, - 0, 0, 0, 0, 1527, 0, 0, 0, 0, 0, - 2019, 0, 2022, 0, 0, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 584, 586, 473, 0, - 0, 0, 2041, 0, 0, 0, 0, 0, 596, 597, - 598, 0, 600, 0, 0, 0, 603, 604, 605, 0, - 0, 606, 0, 0, 0, 0, 0, 0, 7, 8, - 0, 0, 462, 0, 0, 0, 0, 0, 0, 623, - 625, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 632, 633, 0, 635, 636, 637, 638, - 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, - 649, 650, 651, 652, 653, 654, 655, 656, 462, 0, - 462, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 670, 0, 0, 0, 0, 0, 676, 0, 678, - 702, 24, 25, 703, 27, 28, 704, 30, 705, 32, - 462, 33, 0, 0, 0, 0, 38, 39, 0, 41, - 42, 43, 0, 707, 473, 46, 709, 710, 711, 712, - 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, - 723, 0, 0, 725, 726, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 67, - 68, 69, 584, 450, 0, 0, 0, 0, 753, 0, - 0, 0, 0, 758, 0, 0, 0, 0, 763, 764, - 0, 0, 0, 0, 769, 770, 1085, 0, 0, 775, - 777, 780, 783, 786, 788, 0, 790, 1086, 792, 0, - 473, 473, 0, 0, 0, 1087, 1088, 1089, 0, 0, - 0, 1090, 1091, 1092, 1093, 0, 0, 0, 810, 811, - 812, 418, 419, 813, 0, 0, 0, 817, 818, 819, - 820, 821, 0, 0, 0, 826, 0, 828, 829, 0, - 0, 0, 473, 473, 473, 0, 0, 836, 837, 838, - 839, 840, 0, 0, 847, 847, 852, 853, 0, 855, - 0, 0, 857, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 473, 0, 0, 0, 0, 0, 872, - 874, 0, 876, 877, 0, 0, 0, 0, 879, 0, - 0, 0, 0, 2028, 0, 0, 0, 0, 0, 473, - 0, 0, 0, 0, 839, 840, 0, 876, 877, 0, - 0, 0, 0, 0, 0, 0, 907, 473, 0, 0, - 0, 911, 0, 7, 8, 0, 0, 0, 0, 915, - 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, - 0, 927, 928, 929, 930, 931, 932, 933, 0, 0, - 0, 937, 939, 940, 0, 0, 0, 944, 945, 0, - 947, 0, 0, 0, 0, 952, 953, 954, 0, 956, - 0, 0, 0, 0, 0, 0, 964, 966, 0, 0, - 0, 0, 0, 0, 0, 0, 983, 0, 0, 0, - 0, 0, 0, 0, 989, 702, 24, 25, 703, 27, - 28, 704, 30, 705, 32, 0, 33, 0, 0, 0, - 0, 38, 39, 0, 41, 42, 43, 0, 1010, 1011, - 46, 0, 473, 1017, 1018, 0, 473, 1021, 0, 0, - 0, 0, 0, 0, 0, 1028, 0, 0, 874, 1031, + 117, 583, 528, 202, 671, 1171, 673, 1475, 559, 823, + 824, 373, 1456, 342, 101, 1328, 1330, 1566, 288, 1015, + 436, 688, 227, 357, 586, 588, 590, 1800, 372, 331, + 1319, 205, 1321, 1031, 232, 227, 547, 1004, 232, 1223, + 280, 612, 5, 348, 350, 877, 196, 1323, 562, 879, + 881, 883, 206, 208, 1914, 1325, 536, 537, 1445, 291, + 335, 536, 537, 1105, 204, 1258, 293, 325, 294, 223, + 536, 537, 291, 538, 201, 745, 224, 1106, 539, 1923, + 746, 536, 537, 291, 263, 1107, 1108, 1109, 1309, 1925, + 749, 1110, 1111, 1112, 1113, 750, 991, 1498, 752, 1499, + 264, 265, 360, 753, 361, 536, 537, 624, 4, 626, + 701, 362, 536, 537, 633, 536, 537, 207, 364, 703, + 281, 707, 549, 710, 282, 267, 268, 705, 1500, 550, + 1501, 1502, 214, 1503, 709, 269, 551, 200, 283, 536, + 537, 223, 270, 210, 271, 273, 295, 279, 1008, 991, + 536, 537, 584, 211, 343, 818, 347, 973, 1016, 1017, + 1018, 1019, 753, 536, 537, 1320, 825, 1322, 212, 437, + 438, 1917, 1918, 1327, 213, 587, 589, 591, 289, 831, + 1422, 1567, 1324, 536, 537, 369, 370, 215, 1224, 1225, + 1326, 291, 1346, 536, 537, 917, 95, 259, 235, 1305, + 260, 95, 921, 472, 472, 1011, 441, 536, 537, 1329, + 216, 472, 95, 1172, 585, 1491, 1492, 560, 374, 291, + 375, 325, 376, 217, 196, 1032, 325, 196, 358, 228, + 325, 1328, 290, 325, 1020, 359, 229, 325, 325, 325, + 325, 472, 228, 332, 1659, 325, 325, 325, 233, 1009, + 1032, 1005, 1010, 325, 325, 325, 349, 351, 878, 325, + 291, 602, 880, 882, 884, 209, 1915, 336, 218, 1259, + 118, 1260, 225, 203, 536, 537, 226, 365, 366, 367, + 368, 325, 325, 325, 536, 537, 991, 816, 817, 480, + 230, 365, 366, 367, 702, 325, 325, 369, 370, 365, + 366, 367, 368, 231, 997, 536, 537, 832, 365, 366, + 367, 706, 325, 1677, 325, 365, 366, 367, 368, 369, + 370, 1654, 236, 919, 219, 923, 220, 536, 537, 292, + 365, 366, 367, 368, 234, 369, 370, 470, 474, 1733, + 369, 370, 334, 1747, 369, 370, 711, 763, 239, 764, + 369, 370, 472, 344, -534, 325, 325, 536, 537, 531, + 532, 365, 366, 367, 368, 1253, 235, 540, 325, 1256, + 763, 548, 901, 1749, 763, 505, 365, 366, 367, 918, + 237, 369, 370, 365, 366, 367, 922, 910, 284, 298, + 285, 992, 299, 536, 537, 998, 472, 472, 472, 472, + 472, 472, 472, 472, 472, 472, 325, 472, 472, 1751, + 472, 472, 472, 472, 472, 536, 537, 238, 472, 472, + 472, 472, 472, 291, 240, 291, 369, 370, 536, 537, + 244, 1759, 642, 458, 459, 460, -539, 577, 754, 578, + 461, 755, 325, 1796, 1761, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 603, 459, 460, 536, + 537, 439, 1812, 461, 246, 369, 370, 365, 366, 367, + 368, 1143, 1650, 473, 473, 1762, 763, 440, 769, 275, + 325, 473, 276, 369, 370, 277, 632, 691, 252, 481, + 763, 253, 773, -537, 254, 699, 255, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 473, 536, 537, 245, 461, 536, 537, 1713, 241, + 325, 325, 242, 1714, 1678, 243, 757, 446, 1883, 755, + 334, 672, 1886, 674, 675, 676, 677, 678, 679, 680, + 247, 682, 683, 251, 685, 686, 687, 261, 689, 441, + 441, 262, 693, 694, 695, 696, 697, 266, 932, 502, + 503, 504, 325, 325, 325, 274, 509, 510, 511, 536, + 537, 1546, 1547, 1092, 325, 325, 536, 537, 472, 536, + 537, 794, 797, 800, 803, 1889, 50, 51, 52, 53, + 536, 537, 1897, 325, 286, 1899, 267, 268, 61, 287, + 325, 64, 555, 556, 536, 537, 269, 1184, 536, 537, + 1370, 1189, 300, 278, 993, 296, 568, 569, 999, 325, + 1963, 858, 473, 859, 1964, 536, 537, 536, 537, 821, + 822, 1105, 297, 536, 537, 301, 328, 532, 325, 302, + 1958, 1977, 464, 2018, 465, 1106, 1826, 327, 1829, 2019, + 1832, 362, 329, 1107, 1108, 1109, 605, 330, 606, 1110, + 1111, 1112, 1113, 337, 338, 362, 473, 473, 473, 473, + 473, 473, 473, 473, 473, 473, 339, 473, 473, 341, + 473, 473, 473, 473, 473, 340, 369, 370, 473, 473, + 473, 473, 473, 698, 345, 700, -538, 369, 370, 355, + 325, 369, 370, 858, 325, 859, 356, -536, 1264, 860, + 1265, -540, 870, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 1328, 1813, 1814, + 1328, 461, 420, 1328, 1815, 402, 630, 747, 631, 748, + 2036, 1515, 403, 325, 1232, 362, 362, 325, 404, 409, + 472, 1105, 416, 291, 573, 472, 574, 421, 575, 325, + 325, 195, 422, 196, 1289, 1106, 1291, 932, 1293, 763, + 1295, 779, 423, 1107, 1108, 1109, 763, 1000, 887, 1110, + 1111, 1112, 1113, 592, 426, 325, 593, 248, 427, 594, + 249, 595, 250, 1942, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 256, 325, + 428, 257, 461, 258, 1371, 456, 457, 458, 459, 460, + 1416, 1417, 444, 445, 461, 1420, 1421, 627, 1047, 628, + 1185, 575, 463, 742, 1190, 743, 196, 744, 462, 467, + 1194, 1196, 196, 1328, 858, 867, 859, 489, 473, 858, + 894, 859, 1817, 1818, 753, 494, 499, 325, 1815, 325, + 507, 1884, 325, 1994, 858, 1997, 859, 2000, 915, 956, + 916, 500, 763, 2003, 1013, 325, 508, 325, 858, 325, + 859, 325, 512, 981, 1041, 858, 325, 859, 513, 1045, + 983, 325, 858, 514, 859, 1328, 515, 763, 1328, 523, + 858, 1328, 859, 516, 1328, 1405, 763, 763, 1088, 1089, + 1423, 1095, 325, 763, 526, 1130, 325, 552, 1101, 2041, + 325, 2043, 529, 2045, 1116, 858, 1436, 859, 472, 763, + 1408, 1131, 741, 763, 553, 1132, 1247, 1248, 1270, 763, + 1271, 1157, 1328, 763, 1328, 1173, 1328, 763, 763, 1192, + 1302, 530, 763, 325, 1347, 763, 554, 1348, 472, 977, + 763, 558, 1349, 325, 472, 472, 472, 1638, 1639, 1428, + 763, 763, 1357, 1358, 541, 763, 472, 1359, 472, 763, + 763, 1360, 1362, 542, 1553, 1554, 763, 1105, 1363, 1557, + 1558, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 543, 1106, 291, 561, 461, 325, 325, 325, 325, 1107, + 1108, 1109, 362, 563, 1105, 1110, 1111, 1112, 1113, 1430, + 473, 1431, 763, 1043, 1432, 473, 564, 763, 1106, 1433, + 472, 763, 763, 1434, 1435, 565, 1107, 1108, 1109, 566, + 469, 121, 1110, 1111, 1112, 1113, 1194, 1196, 567, 325, + 325, 763, 325, 1474, 325, 325, 570, 571, 325, 325, + 604, 608, 1197, 325, 1591, 572, 1592, 1591, 615, 1615, + 1247, 1248, 1626, 763, 1627, 1663, 1560, 1719, 196, 1720, + 148, 149, 150, 151, 152, 153, 154, 155, 156, 763, + 620, 1738, 1203, 161, 162, 163, 164, 1887, 1206, 1207, + 1208, 166, 167, 168, 614, 763, 169, 1739, 621, 1591, + 1212, 1760, 1213, 1591, 1834, 1810, 1835, 174, 447, 448, + 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, + 459, 460, 622, 1424, 1549, 763, 461, 1851, 469, 121, + 1854, 1263, 1855, 623, 625, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 640, + 325, 325, 325, 461, 1252, 1229, 753, 644, 1858, 1581, + 641, 1591, 1405, 1863, 1865, 325, 645, 648, 148, 149, + 150, 151, 152, 153, 154, 155, 156, 1408, 1591, 1866, + 1871, 161, 162, 163, 164, 1310, 1311, 1312, 473, 166, + 167, 168, 1105, 763, 169, 1879, 461, 712, 177, 178, + 179, 713, 472, 472, 1821, 174, 1106, 472, 472, 763, + 186, 1898, 187, 95, 1107, 1108, 1109, 291, 473, 195, + 1110, 1111, 1112, 1113, 473, 473, 473, 715, 1719, 1105, + 1955, 325, 759, 760, 369, 370, 473, 1405, 473, 1960, + 1405, 1195, 1961, 1106, -535, 763, 763, 1976, 1978, 776, + 780, 1107, 1108, 1109, 781, 325, 1278, 1110, 1111, 1112, + 1113, 325, 334, 1591, 763, 1989, 2027, 325, 782, 325, + 325, 325, 2033, 783, 2034, 325, 325, 1591, 325, 2055, + 325, 2065, 325, 2066, 325, 325, 325, 787, 788, 805, + 473, 1561, 807, 809, 1789, 814, 177, 178, 179, 813, + 815, 838, 1890, 325, 840, 872, 841, 843, 186, 850, + 187, 95, 851, 857, 874, 875, 1451, 876, 325, 899, + 7, 8, 325, 902, 325, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 858, 911, 859, 1973, + 461, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 914, 927, 928, 959, 461, + 960, 961, 964, 988, 966, 989, 472, 472, 980, 967, + 968, 472, 472, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 472, 978, 979, 985, 461, + 986, 472, 716, 24, 25, 717, 27, 28, 718, 30, + 719, 32, 987, 33, 994, 995, 1002, 1003, 38, 39, + 40, 41, 1514, 43, 44, 45, 1030, 291, 1048, 48, + 1037, 1040, 1042, 325, 1044, 1051, 1052, 1561, 1053, 1055, + 1056, 1057, 1548, 472, 1058, 1060, 325, 1061, 1790, 1062, + 1066, 1067, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 72, 73, 74, 1068, + 461, 1073, 1078, 1077, 1075, 1098, 1079, 1125, 1081, 1163, + 1083, 1140, 473, 473, 1080, 325, 325, 473, 473, 1091, + 1574, 7, 8, 1082, 1084, 1142, 1148, 334, 1164, 1099, + 1150, 1151, 1165, 1152, 1180, 1177, 1178, 441, 441, 1166, + 1217, 1219, 1222, 1181, 325, 1837, 325, 1599, 325, 1182, + 1105, 1186, 1187, 1227, 1228, 1231, 1230, 1234, 1242, 1562, + 1246, 1243, 1244, 1251, 1106, 1564, 1268, 846, 325, 1274, + 1275, 1279, 1107, 1108, 1109, 1280, 1282, 325, 1110, 1111, + 1112, 1113, 1604, 1283, 1284, 1287, 1316, 325, 1288, 1297, + 1633, 1298, 325, 716, 24, 25, 717, 27, 28, 718, + 30, 719, 32, 1299, 33, 1105, 1300, 1596, 1301, 38, + 39, 40, 41, 1303, 43, 44, 45, 1313, 325, 1106, + 48, 1640, 1317, 1643, 1105, 1646, 1318, 1107, 1108, 1109, + 1331, 1332, 1337, 1110, 1111, 1112, 1113, 1333, 1106, 1334, + 1657, 325, 1335, 1660, 1661, 1682, 1107, 1108, 1109, 1338, + 1339, 1340, 1110, 1111, 1112, 1113, 1342, 72, 73, 74, + 2020, 1341, 1343, 1698, 1701, 1702, 1344, 1367, 1372, 1378, + 1373, 1376, 1391, 1381, 1374, 1105, 473, 473, 325, 1383, + 1386, 473, 473, 325, 1943, 1388, 221, 222, 1390, 1106, + 1392, 1398, 1401, 1404, 1412, 473, 1425, 1107, 1108, 1109, + 1336, 473, 1426, 1110, 1111, 1112, 1113, 325, 1442, 1443, + 1444, 1437, 1447, 1454, 1455, 2022, 1452, 1453, 1463, 1459, + 1466, 1467, 1470, 325, 1457, 1471, 472, 334, 908, 1458, + 1464, 1465, 1469, 1472, 2024, 1478, 291, 1488, 1479, 1509, + 1489, 1490, 1496, 473, 1497, 325, 1504, 1510, 1105, 1511, + 1512, 1527, 325, 325, 1529, 1519, 1520, 1524, 1530, 1539, + 1540, 1545, 1106, 1541, 325, 1551, 1568, 325, 1565, 1550, + 1107, 1108, 1109, 1571, 7, 8, 1110, 1111, 1112, 1113, + 1576, 1778, 363, 325, 441, 2026, 1577, 1579, 325, 1582, + 1583, 377, 378, 379, 380, 381, 382, 383, 384, 385, + 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, + 396, 397, 398, 399, 400, 401, 1584, 1585, 1595, 405, + 406, 407, 408, 1600, 410, 411, 412, 413, 414, 415, + 1601, 1605, 417, 1606, 1607, 1610, 1613, 1375, 418, 419, + 1612, 1617, 325, 1616, 424, 425, 716, 24, 25, 717, + 27, 28, 718, 30, 719, 32, 1614, 33, 2058, 1620, + 1621, 325, 38, 39, 40, 41, 1622, 43, 44, 45, + 1825, 1623, 1828, 48, 1831, 1624, 1651, 1418, 1625, 1628, + 1641, 1644, 1839, 1647, 291, 1842, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 1655, 1658, 1662, 1666, 461, 1105, 1683, 1686, 1689, 1693, + 72, 73, 74, 1703, 1704, 1705, 1706, 1707, 1710, 1106, + 1709, 1712, 1721, 1718, 325, 1711, 325, 1107, 1108, 1109, + 1732, 1725, 1734, 1110, 1111, 1112, 1113, 1873, 1726, 1735, + 1736, 1877, 325, 1737, 1742, 1743, 1754, 1763, 1745, 1746, + 1756, 1772, 1777, 1748, 1909, 1750, 1752, 1757, 1781, 1779, + 1782, 1780, 1783, 1784, 1785, 1798, 1791, 1804, 576, 1805, + 1806, 579, 580, 581, 582, 1807, 1808, 1809, 1833, 1105, + 1840, 909, 1852, 1811, 1853, 1880, 1857, 1859, 1875, 1860, + 607, 1869, 1878, 1106, 1872, 1922, 473, 1876, 1892, 1924, + 1893, 1107, 1108, 1109, 325, 198, 334, 1110, 1111, 1112, + 1113, 1896, 1906, 1907, 472, 2059, 1921, 1926, 1928, 1931, + 1932, 1935, 1946, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 1936, 1939, 1940, + 1945, 461, 325, 1954, 1965, 1971, 1986, 1995, 1998, 2001, + 1985, 1984, 1967, 2004, 1969, 2006, 2016, 1987, 2015, 1427, + 472, 2021, 472, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 2023, 2037, 2025, + 2035, 461, 2040, 2042, 2044, 2046, 1992, 1993, 2052, 2060, + 2067, 2068, 472, 353, 119, 352, 2069, 1911, 2070, 2071, + 122, 123, 124, 2072, 714, 125, 126, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 2074, 1446, + 758, 1801, 1461, 100, 110, 1684, 112, 790, 1819, 1578, + 0, 0, 0, 0, 157, 158, 159, 160, 2013, 0, + 0, 0, 165, 0, 1910, 0, 0, 1505, 0, 0, + 0, 0, 0, 170, 171, 172, 0, 0, 0, 0, + 0, 173, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 429, 430, 431, + 433, 435, 0, 0, 2051, 0, 2054, 0, 0, 0, + 0, 0, 0, 0, 468, 0, 0, 0, 475, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 482, 484, 487, 488, 2073, 490, 484, 492, + 493, 0, 484, 496, 497, 1555, 0, 0, 0, 484, + 0, 0, 0, 0, 506, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 525, + 0, 0, 176, 461, 0, 0, 180, 0, 534, 535, + 181, 182, 183, 184, 185, 0, 0, 535, 95, 1559, + 0, 0, 0, 0, 473, 0, 0, 0, 0, 0, + 0, 0, 188, 189, 0, 0, 0, 190, 0, 0, + 0, 0, 316, 0, 0, 0, 0, 194, 0, 524, + 0, 0, 0, 0, 597, 599, 484, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 609, 610, 611, + 473, 613, 473, 0, 0, 616, 617, 618, 0, 0, + 619, 0, 0, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 637, + 639, 461, 473, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 646, 647, 0, 649, 650, 651, 652, + 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, + 663, 664, 665, 666, 667, 668, 669, 670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1045, 0, 67, 68, 69, 0, 0, 0, - 0, 1051, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 487, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 473, 0, 0, 505, - 507, 509, 0, 1076, 1077, 514, 0, 0, 0, 1080, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1531, - 0, 0, 1104, 0, 0, 1106, 0, 0, 0, 544, - 0, 0, 0, 0, 0, 892, 0, 0, 0, 0, - 0, 0, 0, 0, 473, 0, 473, 0, 0, 473, - 0, 0, 0, 0, 0, 0, 0, 0, 1126, 0, - 0, 0, 473, 0, 473, 0, 473, 0, 473, 0, - 0, 0, 0, 473, 0, 0, 0, 0, 473, 0, - 0, 0, 0, 0, 1147, 0, 1149, 1150, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 620, - 621, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 629, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1175, 0, 0, 0, - 0, 0, 0, 0, 1176, 1177, 1178, 0, 473, 0, - 0, 0, 0, 0, 0, 0, 1181, 7, 8, 0, - 667, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1188, 0, 0, 0, 0, 1191, 0, 0, 0, 0, - 0, 0, 0, 0, 1195, 0, 0, 0, 0, 0, - 1203, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 473, 473, 473, 473, 0, 0, 1217, 0, 0, 1216, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 7, 8, 0, 450, 702, - 24, 25, 703, 27, 28, 704, 30, 705, 32, 0, - 33, 0, 1238, 1239, 0, 38, 39, 0, 41, 42, - 43, 0, 0, 0, 46, 0, 0, 0, 473, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1266, 0, - 1268, 0, 1270, 0, 1272, 1636, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 67, 68, - 69, 0, 0, 0, 0, 0, 1291, 702, 24, 25, - 703, 27, 28, 704, 30, 705, 32, 0, 33, 0, - 0, 0, 0, 38, 39, 0, 41, 42, 43, 0, - 0, 0, 46, 0, 0, 1321, 0, 0, 0, 0, - 0, 0, 0, 0, 1326, 1327, 0, 1328, 1329, 0, - 1330, 1331, 1332, 0, 0, 0, 0, 0, 1337, 0, - 0, 0, 0, 0, 0, 0, 67, 68, 69, 893, - 589, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1356, 0, 0, 0, 0, 1361, 0, 0, 0, - 0, 0, 0, 1363, 0, 0, 0, 0, 0, 1367, - 1368, 1369, 1370, 1371, 0, 1374, 0, 1376, 1377, 0, - 1380, 1383, 0, 1678, 1387, 1388, 1389, 0, 0, 0, - 0, 1393, 0, 0, 0, 0, 0, 0, 1403, 0, - 0, 0, 0, 0, 0, 0, 0, 1073, 0, 1412, - 1413, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1422, 1424, 1710, 0, 0, 0, - 0, 972, 0, 0, 0, 978, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 0, 474, 450, 0, 0, 0, 474, 0, - 0, 0, 474, 0, 0, 0, 0, 0, 0, 474, - 0, 1466, 1467, 1468, 0, 0, 0, 0, 0, 0, - 0, 0, 1479, 0, 1481, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1486, 0, 0, 0, 0, - 0, 0, 0, 473, 0, 0, 0, 0, 1498, 0, - 0, 0, 0, 0, 1052, 0, 0, 1501, 0, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 590, 448, 449, 1511, 1515, 1516, 1517, 450, 0, 0, - 0, 0, 585, 0, 474, 0, 0, 1524, 0, 0, - 1745, 0, 1528, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1535, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 0, 1873, - 0, 0, 450, 0, 1541, 1542, 0, 1547, 1544, 1545, + 0, 684, 0, 0, 0, 0, 0, 690, 0, 692, + 1665, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 721, 484, 0, 723, 724, 725, 726, + 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, + 737, 0, 0, 739, 740, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 597, 461, 0, 0, 0, 0, 767, 0, + 0, 0, 0, 772, 0, 0, 0, 0, 777, 778, + 0, 0, 0, 0, 0, 0, 785, 786, 1708, 0, + 0, 791, 793, 796, 799, 802, 804, 0, 806, 0, + 808, 0, 484, 484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1560, 0, 0, 0, 0, 1566, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 1574, 1575, 0, 0, 450, 0, 0, 1580, 1581, - 0, 0, 0, 1583, 0, 0, 0, 0, 0, 1156, - 0, 1590, 0, 1160, 0, 0, 0, 1165, 0, 0, - 0, 473, 473, 1602, 0, 1603, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1620, 0, 0, - 474, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 473, 0, 0, 0, 473, 0, 0, 1635, 0, 0, - 1182, 0, 0, 0, 1638, 1639, 1640, 1641, 1642, 1643, - 1644, 0, 0, 0, 0, 0, 0, 0, 585, 0, - 1652, 0, 0, 0, 0, 0, 0, 0, 0, 1657, - 1658, 0, 0, 1660, 1661, 0, 0, 0, 1670, 1664, - 1665, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 474, 474, 0, 450, - 0, 1685, 1686, 0, 0, 1940, 0, 0, 0, 1692, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 1243, 1244, 450, 1246, - 0, 1249, 1250, 0, 0, 1253, 1254, 0, 474, 474, - 474, 0, 0, 0, 0, 0, 0, 1713, 0, 0, - 848, 850, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1727, 0, 584, 0, 474, - 0, 0, 0, 0, 0, 0, 875, 0, 0, 0, - 0, 0, 1734, 1735, 0, 0, 1742, 0, 1743, 0, - 0, 473, 0, 0, 0, 474, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1755, 0, 0, 0, - 0, 0, 0, 474, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1761, 0, 0, 0, 0, 1765, - 0, 0, 0, 0, 0, 1340, 1341, 1342, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1351, 0, 473, - 0, 0, 0, 0, 0, 0, 1792, 0, 1795, 0, - 1798, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 473, 0, 0, 0, 0, 0, 1811, 1812, 1813, 1814, - 1815, 1816, 0, 0, 0, 0, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 1829, 1830, 450, 0, 0, 1832, 0, 0, - 0, 0, 0, 1415, 0, 0, 0, 0, 474, 1838, - 0, 0, 474, 0, 0, 0, 0, 0, 0, 0, - 1849, 0, 0, 0, 875, 1032, 0, 1436, 0, 0, - 0, 0, 0, 1442, 0, 0, 0, 0, 0, 1447, - 0, 1449, 1450, 0, 0, 0, 1453, 1454, 0, 1455, - 0, 1456, 1876, 1457, 0, 1458, 1459, 1460, 1566, 0, - 0, 0, 0, 0, 0, 0, 0, 1887, 0, 0, - 0, 0, 474, 0, 1480, 0, 0, 0, 0, 0, - 0, 1898, 0, 0, 1902, 0, 0, 1906, 0, 1491, - 0, 1909, 0, 1495, 0, 473, 0, 473, 1916, 1917, - 1918, 1919, 1920, 0, 0, 0, 0, 0, 0, 0, - 0, 1925, 0, 0, 1927, 0, 0, 0, 0, 0, - 474, 0, 474, 0, 0, 474, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 474, 0, - 474, 0, 474, 0, 474, 1824, 589, 0, 0, 474, - 0, 0, 0, 0, 474, 0, 0, 0, 0, 0, - 1959, 7, 8, 0, 0, 0, 0, 589, 0, 0, - 0, 0, 0, 0, 0, 473, 0, 1975, 1976, 1977, - 1978, 1979, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1558, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1570, 0, 0, 0, 1996, - 0, 0, 0, 0, 474, 0, 2006, 2007, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2015, 2016, 2017, - 2018, 0, 0, 702, 24, 25, 703, 27, 28, 704, - 30, 705, 32, 0, 33, 0, 0, 0, 0, 38, - 39, 0, 41, 42, 43, 0, 0, 0, 46, 0, - 0, 0, 0, 0, 0, 0, 474, 474, 474, 474, - 0, 0, 0, 0, 1415, 0, 0, 0, 0, 0, - 214, 215, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 67, 68, 69, 0, 1645, 0, 0, 0, - 0, 0, 0, 0, 1655, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1662, 0, 0, 0, 0, 1667, - 0, 0, 0, 0, 474, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 748, 448, 449, 0, - 0, 0, 0, 450, 0, 1687, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 748, 448, 449, - 0, 7, 8, 1074, 450, 0, 0, 0, 1415, 352, - 0, 0, 0, 0, 0, 0, 0, 0, 366, 367, - 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, - 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, - 388, 389, 390, 0, 1724, 0, 394, 395, 396, 397, - 0, 399, 400, 401, 402, 403, 404, 0, 0, 406, - 0, 0, 0, 0, 0, 407, 408, 0, 0, 0, - 0, 413, 414, 702, 24, 25, 703, 27, 28, 704, - 30, 705, 32, 0, 33, 7, 8, 0, 0, 38, - 39, 0, 41, 42, 43, 0, 0, 0, 46, 0, + 826, 827, 828, 429, 430, 829, 0, 0, 0, 833, + 834, 835, 836, 837, 0, 0, 0, 842, 0, 844, + 845, 0, 0, 0, 484, 484, 484, 0, 0, 852, + 853, 854, 855, 856, 0, 0, 863, 863, 868, 869, + 0, 871, 0, 0, 873, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 484, 0, 0, 0, 0, + 0, 888, 890, 0, 892, 893, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 484, 0, 0, 461, 0, 855, 856, 0, 892, + 893, 0, 0, 0, 0, 0, 0, 0, 0, 925, + 484, 7, 8, 0, 929, 0, 0, 0, 0, 0, + 0, 0, 0, 1215, 1216, 0, 0, 0, 0, 1220, + 1221, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 485, 0, 0, 0, 461, + 485, 0, 0, 0, 485, 0, 1636, 0, 1637, 0, + 0, 485, 0, 0, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 0, 1001, + 0, 0, 461, 716, 24, 25, 717, 27, 28, 718, + 30, 719, 32, 0, 33, 0, 0, 0, 0, 38, + 39, 40, 41, 0, 43, 44, 45, 0, 0, 0, + 48, 1028, 1029, 0, 0, 484, 1035, 1036, 0, 484, + 1039, 0, 0, 0, 0, 0, 0, 0, 1046, 0, + 0, 890, 1049, 0, 0, 0, 598, 0, 485, 0, + 0, 0, 0, 0, 0, 1063, 0, 72, 73, 74, + 0, 0, 0, 0, 0, 0, 1071, 0, 0, 0, + 0, 0, 0, 0, 0, 498, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 484, 0, 0, 461, 518, 520, 522, 1096, 1097, + 0, 527, 0, 1012, 1100, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1124, 0, 0, + 1126, 0, 0, 0, 0, 557, 1379, 1380, 1093, 0, + 0, 1384, 1385, 0, 0, 0, 0, 0, 0, 484, + 0, 484, 0, 0, 484, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 484, 0, 484, + 0, 484, 0, 484, 0, 0, 0, 0, 484, 0, + 0, 0, 0, 484, 0, 0, 485, 0, 0, 1167, + 0, 1169, 1170, 0, 0, 0, 0, 0, 0, 0, + 0, 1176, 0, 0, 0, 0, 0, 634, 635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1415, 0, 0, 0, 0, 0, 0, 1770, 1771, 0, - 0, 0, 0, 0, 0, 0, 0, 887, 1415, 0, - 0, 0, 67, 68, 69, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1804, 0, 996, - 0, 0, 0, 0, 0, 0, 0, 702, 24, 25, - 703, 27, 28, 704, 30, 705, 32, 0, 33, 1138, - 0, 0, 0, 38, 39, 0, 41, 42, 43, 0, - 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 563, 0, 0, 566, 567, 568, 569, - 0, 0, 0, 1097, 0, 1842, 0, 0, 0, 0, - 0, 0, 0, 0, 594, 0, 67, 68, 69, 112, - 113, 114, 0, 0, 1859, 115, 116, 117, 0, 474, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, + 643, 0, 0, 0, 598, 0, 0, 0, 0, 0, + 0, 0, 0, 1198, 0, 0, 0, 0, 0, 0, + 0, 1199, 1200, 1201, 0, 484, 0, 0, 0, 0, + 0, 0, 0, 1204, 0, 0, 0, 0, 681, 0, + 0, 0, 0, 0, 485, 485, 0, 1211, 0, 0, + 0, 0, 1214, 0, 0, 0, 0, 0, 0, 0, + 0, 1218, 0, 0, 0, 0, 0, 1226, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 484, 484, 484, + 484, 0, 0, 1240, 0, 0, 485, 485, 485, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 864, 866, + 0, 0, 0, 0, 0, 0, 7, 8, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 485, 0, 0, + 0, 0, 0, 0, 891, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 484, 0, 0, 0, 0, + 0, 0, 0, 485, 0, 0, 0, 1290, 0, 1292, + 0, 1294, 1741, 1296, 0, 0, 0, 7, 8, 0, + 0, 0, 485, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1315, 0, 0, 716, 24, + 25, 717, 27, 28, 718, 30, 719, 32, 0, 33, + 0, 0, 0, 0, 38, 39, 40, 41, 0, 43, + 44, 45, 0, 0, 1345, 48, 0, 0, 0, 0, + 0, 0, 0, 1350, 1351, 0, 1352, 1353, 0, 1354, + 1355, 1356, 0, 0, 0, 0, 0, 1361, 0, 716, + 24, 25, 717, 27, 28, 718, 30, 719, 32, 0, + 33, 0, 72, 73, 74, 38, 39, 40, 41, 0, + 43, 44, 45, 1382, 0, 0, 48, 0, 1387, 0, + 0, 0, 0, 0, 0, 0, 0, 485, 0, 0, + 0, 485, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 891, 1050, 0, 0, 0, 0, 0, + 0, 0, 0, 72, 73, 74, 0, 0, 0, 0, + 1429, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1438, 1439, 1094, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1448, 1450, 0, 0, + 0, 0, 990, 485, 0, 0, 996, 0, 447, 448, + 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, + 459, 460, 0, 7, 8, 0, 461, 0, 0, 0, + 0, 0, 0, 0, 1117, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1493, 1494, 1495, 0, 0, 0, + 0, 485, 0, 485, 0, 1506, 485, 1508, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1513, 485, + 0, 485, 0, 485, 0, 485, 484, 0, 0, 0, + 485, 1525, 0, 0, 0, 485, 0, 1072, 0, 0, + 0, 0, 0, 0, 0, 716, 24, 25, 717, 27, + 28, 718, 30, 719, 32, 1776, 33, 1542, 1543, 1544, + 0, 38, 39, 40, 41, 0, 43, 44, 45, 0, + 0, 0, 48, 0, 0, 486, 0, 0, 0, 0, + 491, 0, 0, 0, 495, 0, 0, 0, 1563, 0, + 0, 501, 0, 0, 0, 0, 0, 485, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, + 73, 74, 1575, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1588, 0, 0, 0, + 0, 1594, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1602, 1603, 0, 485, + 485, 485, 485, 1608, 1609, 0, 0, 0, 1611, 0, + 0, 0, 0, 0, 1179, 0, 0, 1619, 1183, 0, + 0, 0, 1188, 0, 0, 0, 0, 484, 484, 1631, + 1168, 1632, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1649, 7, 8, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 484, 485, 0, 0, + 484, 0, 0, 1664, 0, 1205, 0, 0, 0, 0, + 1667, 1668, 1669, 1670, 1671, 1672, 1673, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1681, 0, 0, 0, + 0, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 1700, 0, 0, 0, 461, + 0, 7, 8, 0, 0, 0, 716, 24, 25, 717, + 27, 28, 718, 30, 719, 32, 0, 33, 1715, 1716, + 0, 0, 38, 39, 40, 41, 1722, 43, 44, 45, + 0, 0, 0, 48, 0, 0, 722, 0, 0, 0, + 0, 1266, 1267, 0, 1269, 0, 1272, 1273, 0, 0, + 1276, 1277, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1744, 0, 0, 0, 0, + 72, 73, 74, 716, 24, 25, 717, 27, 28, 718, + 30, 719, 32, 1758, 33, 597, 0, 0, 0, 38, + 39, 40, 41, 0, 43, 44, 45, 0, 0, 0, + 48, 0, 0, 0, 1773, 0, 1774, 0, 0, 484, + 0, 0, 0, 0, 810, 811, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1787, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 72, 73, 74, + 0, 1174, 0, 1793, 0, 0, 0, 0, 1797, 0, + 0, 0, 1364, 1365, 1366, 0, 847, 848, 849, 0, + 1905, 0, 0, 0, 0, 0, 0, 1377, 0, 484, + 0, 0, 0, 0, 0, 0, 1824, 0, 1827, 0, + 1830, 0, 0, 0, 0, 0, 0, 885, 0, 0, + 484, 0, 0, 0, 0, 0, 1843, 1844, 1845, 1846, + 1847, 1848, 0, 0, 0, 0, 0, 0, 1304, 0, + 0, 0, 0, 907, 0, 0, 0, 0, 485, 0, + 0, 0, 0, 1861, 1862, 0, 0, 0, 1864, 0, + 0, 0, 926, 1441, 0, 0, 0, 0, 0, 0, + 1870, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1881, 0, 0, 0, 0, 0, 1462, 0, 0, + 0, 0, 0, 1468, 0, 0, 0, 0, 0, 1473, + 0, 1441, 1476, 1477, 0, 0, 0, 1480, 1481, 0, + 1482, 0, 1483, 1908, 1484, 0, 1485, 1486, 1487, 1594, + 0, 0, 0, 0, 0, 0, 0, 0, 1919, 0, + 0, 0, 0, 0, 0, 1507, 7, 8, 0, 0, + 0, 0, 1930, 0, 0, 1934, 0, 0, 1938, 0, + 1518, 0, 1941, 0, 1522, 0, 484, 0, 484, 1948, + 1949, 1950, 1951, 1952, 0, 0, 0, 1034, 0, 0, + 0, 1038, 1957, 0, 0, 1959, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 0, 0, 0, 485, + 485, 0, 0, 0, 0, 0, 0, 1972, 716, 24, + 25, 717, 27, 28, 718, 30, 719, 32, 0, 33, + 0, 1991, 0, 0, 38, 39, 40, 41, 485, 43, + 44, 45, 485, 1090, 0, 48, 484, 0, 2007, 2008, + 2009, 2010, 2011, 0, 0, 0, 0, 0, 0, 1856, + 602, 0, 0, 0, 0, 1586, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1598, 0, + 1953, 0, 72, 73, 74, 895, 0, 2038, 2039, 0, + 0, 1138, 0, 1139, 0, 0, 1141, 0, 2047, 2048, + 2049, 2050, 0, 0, 0, 0, 0, 0, 0, 1153, + 0, 1154, 0, 1155, 0, 1156, 0, 0, 0, 0, + 1159, 0, 0, 0, 0, 1162, 0, 933, 934, 935, + 936, 937, 938, 939, 940, 941, 942, 943, 0, 945, + 946, 947, 948, 949, 950, 951, 0, 0, 1441, 955, + 957, 958, 0, 1894, 0, 962, 963, 0, 965, 0, + 0, 0, 0, 970, 971, 972, 0, 974, 0, 0, + 1674, 0, 0, 0, 982, 984, 0, 598, 0, 1685, + 0, 0, 0, 0, 0, 0, 0, 1202, 0, 1692, + 0, 0, 1007, 0, 1697, 0, 0, 0, 0, 0, + 0, 485, 602, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 1788, 0, 0, + 1717, 461, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 602, 0, 1235, + 1236, 1237, 1238, 1441, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 762, 459, 460, 0, 0, + 0, 485, 461, 903, 0, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 1755, 0, 485, 461, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1281, 0, 0, + 0, 0, 0, 0, 0, 0, 119, 352, 0, 0, + 0, 0, 122, 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 0, 0, 0, 0, 0, 0, 0, - 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, - 151, 152, 153, 154, 155, 156, 157, 158, 0, 0, - 0, 159, 160, 161, 0, 0, 162, 1148, 163, 164, - 165, 0, 0, 0, 0, 0, 166, 167, 0, 0, - 0, 0, 0, 0, 0, 1415, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 0, 0, 450, 0, 0, 700, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 0, 0, 0, 0, 450, 0, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 0, 0, 0, 0, 450, 0, 0, 0, - 0, 0, 0, 0, 0, 168, 0, 474, 474, 0, - 0, 0, 169, 170, 171, 172, 173, 0, 0, 0, - 174, 175, 176, 177, 178, 179, 0, 180, 90, 0, - 0, 0, 0, 0, 0, 1415, 474, 0, 0, 0, - 474, 0, 181, 182, 0, 0, 0, 183, 0, 0, - 0, 0, 184, 0, 185, 0, 186, 187, 0, 188, - 0, 189, 0, 0, 0, 0, 0, 112, 294, 0, - 0, 0, 0, 115, 116, 117, 0, 0, 118, 119, - 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, + 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, + 0, 0, 0, 0, 0, 0, 0, 1441, 1146, 0, + 0, 0, 0, 0, 1802, 1803, 157, 158, 159, 160, + 0, 0, 0, 0, 165, 0, 1441, 0, 0, 0, + 0, 0, 0, 0, 0, 170, 171, 172, 0, 0, + 0, 0, 0, 173, 0, 1836, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 603, 459, 460, + 0, 0, 0, 0, 461, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 485, 0, + 485, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 762, 459, 460, 1014, 0, 0, 0, 461, + 0, 0, 0, 0, 1874, 0, 0, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 1158, 0, 1891, 0, 461, 0, 0, 0, 0, + 0, 0, 0, 0, 176, 0, 0, 0, 180, 0, + 0, 0, 181, 182, 183, 184, 185, 0, 0, 0, + 95, 1239, 0, 0, 0, 0, 0, 0, 485, 0, + 0, 0, 0, 0, 544, 545, 0, 0, 0, 190, + 0, 0, 0, 0, 546, 0, 0, 0, 0, 194, + 0, 270, 0, 0, 1261, 1262, 0, 0, 0, 0, + 0, 0, 0, 0, 119, 120, 121, 0, 0, 0, + 122, 123, 124, 0, 1441, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 140, 296, 297, 298, 299, 300, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 150, 151, 152, - 153, 0, 0, 0, 0, 158, 7, 8, 0, 0, - 0, 0, 0, 0, 0, 0, 163, 164, 165, 0, - 0, 0, 0, 0, 166, 0, 0, 0, 301, 0, - 0, 302, 0, 0, 303, 0, 304, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 305, 0, - 0, 0, 0, 585, 0, 48, 49, 50, 51, 52, - 0, 0, 0, 0, 56, 0, 0, 59, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 474, 702, 24, - 25, 703, 27, 28, 704, 30, 705, 32, 0, 33, - 0, 0, 1756, 0, 38, 39, 0, 41, 42, 43, - 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, - 169, 0, 0, 0, 173, 1345, 0, 0, 174, 175, - 176, 177, 178, 0, 0, 0, 90, 0, 0, 0, - 0, 0, 0, 0, 0, 474, 0, 67, 68, 69, - 531, 1627, 0, 0, 0, 183, 0, 0, 0, 0, - 533, 0, 0, 112, 294, 187, 474, 261, 587, 115, - 116, 117, 0, 0, 118, 119, 120, 121, 122, 123, - 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 137, 138, 139, 140, 296, 297, 298, - 299, 300, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 150, 151, 152, 153, 0, 1154, 0, - 0, 158, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 163, 164, 165, 0, 0, 0, 0, 0, - 166, 0, 0, 0, 301, 0, 0, 302, 0, 0, - 303, 0, 304, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 305, 0, 0, 0, 0, 0, - 0, 48, 49, 50, 51, 52, 0, 0, 0, 0, - 56, 0, 0, 59, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 0, 0, - 0, 474, 450, 474, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 0, 0, - 0, 0, 450, 0, 0, 0, 169, 0, 0, 0, - 173, 0, 0, 0, 174, 175, 176, 177, 178, 0, - 0, 0, 90, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 181, 472, 0, 0, - 0, 183, 0, 0, 0, 0, 307, 0, 0, 0, - 0, 187, 0, 0, 587, 0, 0, 0, 0, 0, - 0, 474, 0, 0, 0, 0, 112, 294, 114, 1192, - 1193, 0, 115, 116, 117, 1197, 1198, 118, 119, 120, - 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, + 140, 141, 142, 143, 144, 145, 146, 147, 1523, 0, + 0, 0, 0, 0, 0, 148, 149, 150, 151, 152, + 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, + 163, 164, 165, 0, 0, 0, 166, 167, 168, 0, + 0, 169, 0, 170, 171, 172, 0, 0, 0, 0, + 0, 173, 174, 0, 0, 0, 0, 0, 0, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 1441, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 1389, 0, 0, 0, 0, 0, 1393, 1394, 1395, 1396, + 1397, 0, 1400, 0, 1402, 1403, 0, 1406, 1409, 0, + 0, 1413, 1414, 1415, 0, 175, 0, 0, 1419, 0, + 0, 0, 176, 177, 178, 179, 180, 0, 0, 0, + 181, 182, 183, 184, 185, 186, 0, 187, 95, 1629, + 1630, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 188, 189, 0, 0, 0, 190, 0, 0, + 0, 0, 191, 0, 192, 0, 193, 194, 0, 195, + 0, 196, 0, 119, 303, 0, 0, 0, 0, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 296, 297, 298, 299, 300, 0, 0, 141, 142, 143, - 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, - 154, 155, 156, 157, 158, 0, 0, 0, 159, 160, - 161, 0, 0, 162, 0, 163, 164, 165, 0, 0, - 0, 0, 0, 166, 167, 0, 0, 301, 0, 0, - 302, 0, 0, 303, 0, 304, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 305, 0, 0, - 0, 0, 0, 0, 48, 49, 50, 51, 52, 0, - 0, 0, 0, 56, 0, 0, 59, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 1607, 0, 1608, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, - 170, 171, 172, 173, 0, 0, 0, 174, 175, 176, - 177, 178, 179, 0, 180, 90, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1353, 1354, 181, - 306, 0, 1358, 1359, 183, 0, 0, 0, 0, 307, - 0, 112, 294, 114, 187, 0, 308, 115, 116, 117, - 0, 0, 118, 119, 120, 121, 122, 123, 124, 125, - 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, - 136, 137, 138, 139, 140, 296, 297, 298, 299, 300, - 0, 0, 141, 142, 143, 144, 145, 146, 147, 148, - 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, - 0, 0, 0, 159, 160, 161, 0, 0, 162, 0, - 163, 164, 165, 0, 0, 0, 0, 0, 166, 167, - 0, 0, 301, 0, 0, 302, 0, 0, 303, 0, - 304, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 305, 0, 0, 0, 0, 0, 0, 48, - 49, 50, 51, 52, 0, 0, 0, 0, 56, 0, - 0, 59, 436, 437, 438, 439, 440, 441, 442, 443, - 444, 445, 446, 447, 448, 449, 0, 0, 0, 0, - 450, 0, 0, 0, 0, 0, 0, 1646, 0, 1647, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 1285, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 1528, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 1538, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 1552, 0, 0, + 0, 0, 1556, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 1569, 1570, 0, 461, 1572, 1573, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1775, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1369, 0, 0, + 0, 544, 1656, 0, 0, 0, 190, 0, 0, 0, + 0, 546, 0, 0, 0, 0, 194, 0, 270, 600, + 0, 1820, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 0, 119, 303, 0, + 461, 0, 1841, 122, 123, 124, 0, 751, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 305, 306, 307, 308, 309, 0, 0, 0, 0, + 0, 1687, 1688, 0, 0, 1690, 1691, 157, 158, 159, + 160, 1694, 1695, 0, 0, 165, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 170, 171, 172, 0, + 0, 0, 0, 0, 173, 0, 0, 0, 310, 0, + 0, 311, 0, 0, 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 169, 170, 171, 172, 173, 0, - 0, 0, 174, 175, 176, 177, 178, 179, 0, 180, - 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 181, 306, 0, 0, 0, 183, - 0, 0, 0, 0, 307, 0, 112, 342, 114, 187, - 0, 1666, 115, 116, 117, 0, 0, 118, 119, 120, - 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, + 314, 0, 0, 0, 0, 0, 0, 50, 51, 52, + 53, 54, 0, 0, 56, 57, 58, 0, 0, 61, + 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1944, 0, + 1947, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 1765, 1766, 0, 0, 461, + 0, 0, 0, 0, 0, 176, 0, 0, 0, 180, + 0, 0, 0, 181, 182, 183, 184, 185, 0, 0, + 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 188, 483, 0, 0, 0, + 190, 0, 0, 0, 0, 316, 0, 0, 0, 0, + 194, 0, 0, 600, 119, 303, 121, 0, 2005, 0, + 122, 123, 124, 0, 0, 125, 126, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 305, 306, + 307, 308, 309, 0, 0, 148, 149, 150, 151, 152, + 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, + 163, 164, 165, 7, 8, 0, 166, 167, 168, 0, + 0, 169, 0, 170, 171, 172, 0, 0, 0, 0, + 0, 173, 174, 0, 0, 310, 0, 0, 311, 0, + 0, 312, 0, 313, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 314, 0, 0, + 0, 0, 0, 0, 50, 51, 52, 53, 54, 0, + 0, 56, 57, 58, 0, 0, 61, 0, 0, 64, + 0, 0, 0, 0, 0, 716, 24, 25, 717, 27, + 28, 718, 30, 719, 32, 0, 33, 0, 0, 0, + 0, 38, 39, 40, 41, 0, 43, 44, 45, 0, + 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 176, 177, 178, 179, 180, 912, 0, 0, + 181, 182, 183, 184, 185, 186, 0, 187, 95, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, + 73, 74, 188, 315, 0, 0, 0, 190, 0, 0, + 0, 0, 316, 0, 0, 0, 0, 194, 0, 317, + 119, 303, 121, 0, 0, 0, 122, 123, 124, 0, + 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, + 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 305, 306, 307, 308, 309, 0, + 0, 148, 149, 150, 151, 152, 153, 154, 155, 156, + 157, 158, 159, 160, 161, 162, 163, 164, 165, 7, + 8, 0, 166, 167, 168, 2028, 0, 169, 0, 170, + 171, 172, 0, 0, 0, 0, 0, 173, 174, 0, + 0, 310, 0, 0, 311, 0, 0, 312, 0, 313, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 314, 0, 0, 0, 0, 0, 0, + 50, 51, 52, 53, 54, 0, 0, 56, 57, 58, + 0, 0, 61, 0, 0, 64, 0, 0, 0, 0, + 0, 716, 24, 25, 717, 27, 28, 718, 30, 719, + 32, 0, 33, 0, 0, 0, 0, 38, 39, 40, + 41, 0, 43, 44, 45, 0, 0, 0, 48, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 176, 177, + 178, 179, 180, 0, 0, 0, 181, 182, 183, 184, + 185, 186, 0, 187, 95, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 72, 73, 74, 188, 315, + 0, 0, 0, 190, 0, 0, 0, 0, 316, 0, + 119, 352, 121, 194, 0, 1696, 122, 123, 124, 0, + 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, + 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 0, 0, 0, 0, 0, 0, + 0, 148, 149, 150, 151, 152, 153, 154, 155, 156, + 157, 158, 159, 160, 161, 162, 163, 164, 165, 0, + 0, 0, 166, 167, 168, 0, 0, 169, 0, 170, + 171, 172, 0, 119, 352, 121, 0, 173, 174, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 0, 0, 0, 0, 0, 0, 0, 141, 142, 143, - 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, - 154, 155, 156, 157, 158, 0, 0, 0, 159, 160, - 161, 0, 0, 162, 0, 163, 164, 165, 0, 112, - 342, 114, 0, 166, 167, 115, 116, 117, 0, 0, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 0, 0, 0, 0, 0, 0, 0, - 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, - 151, 152, 153, 154, 155, 156, 157, 158, 0, 0, - 0, 159, 160, 161, 0, 0, 162, 0, 163, 164, - 165, 0, 0, 0, 0, 0, 166, 167, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, - 170, 171, 172, 173, 0, 0, 0, 174, 175, 176, - 177, 178, 179, 0, 180, 90, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, - 182, 0, 0, 0, 183, 0, 0, 0, 0, 307, - 0, 0, 0, 0, 187, 0, 1423, 0, 0, 0, - 0, 0, 436, 437, 438, 439, 440, 441, 442, 443, - 444, 445, 446, 447, 448, 449, 0, 0, 0, 0, - 450, 0, 169, 170, 171, 172, 173, 1790, 0, 1791, - 174, 175, 176, 177, 178, 179, 0, 180, 90, 0, + 141, 142, 143, 144, 145, 146, 147, 0, 0, 0, + 0, 0, 0, 0, 148, 149, 150, 151, 152, 153, + 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, + 164, 165, 0, 0, 0, 166, 167, 168, 0, 0, + 169, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 174, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 176, 177, + 178, 179, 180, 0, 0, 0, 181, 182, 183, 184, + 185, 186, 0, 187, 95, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 188, 189, + 0, 0, 0, 190, 0, 0, 0, 0, 316, 0, + 0, 0, 0, 194, 0, 1449, 0, 0, 0, 0, + 0, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 176, 177, 178, 179, 180, 1675, 0, 1676, 181, + 182, 183, 184, 185, 186, 0, 187, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 181, 182, 0, 0, 0, 183, 0, 0, - 0, 0, 307, 0, 112, 342, 114, 187, 0, 1651, - 115, 116, 117, 0, 0, 118, 119, 120, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 0, 0, - 0, 0, 0, 0, 0, 141, 142, 143, 144, 145, - 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, - 156, 157, 158, 7, 8, 0, 159, 160, 161, 0, - 0, 162, 0, 163, 164, 165, 0, 0, 0, 0, - 0, 166, 167, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 0, 0, - 994, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 842, 0, 843, 0, 702, 24, 25, 703, 27, - 28, 704, 30, 705, 32, 0, 33, 0, 0, 0, - 0, 38, 39, 0, 41, 42, 43, 0, 0, 0, - 46, 0, 0, 0, 0, 0, 0, 169, 170, 171, - 172, 173, 0, 0, 0, 174, 175, 176, 177, 178, - 179, 0, 180, 90, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 67, 68, 69, 181, 182, 0, - 0, 0, 183, 0, 0, 0, 0, 307, 0, 112, - 294, 295, 187, 0, 1669, 115, 116, 117, 0, 0, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 296, 297, 298, 299, 300, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, - 151, 152, 153, 0, 0, 1280, 0, 158, 7, 8, - 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, - 165, 0, 0, 0, 0, 0, 166, 0, 0, 0, - 301, 0, 0, 302, 0, 0, 303, 0, 304, 0, + 0, 188, 189, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 119, 352, 121, 194, 0, 1680, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 0, 0, 0, + 0, 0, 0, 0, 148, 149, 150, 151, 152, 153, + 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, + 164, 165, 7, 8, 0, 166, 167, 168, 0, 0, + 169, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 174, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 0, 0, 0, 0, + 461, 0, 0, 0, 0, 0, 0, 1822, 0, 1823, + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 0, 0, 0, 0, 461, 0, + 858, 0, 859, 0, 716, 24, 25, 717, 27, 28, + 718, 30, 719, 32, 0, 33, 0, 0, 0, 0, + 38, 39, 40, 41, 0, 43, 44, 45, 0, 0, + 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 176, 177, 178, 179, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 186, 0, 187, 95, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 72, 73, + 74, 188, 189, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 119, 303, 304, 194, 0, 1699, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 1974, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 346, + 121, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, + 149, 150, 151, 152, 153, 154, 155, 156, 0, 0, + 0, 0, 161, 162, 163, 164, 0, 0, 0, 0, + 166, 167, 168, 0, 0, 169, 0, 0, 0, 0, + 0, 176, 0, 0, 0, 180, 174, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 305, 0, 0, 0, 0, 0, 0, 48, 49, 50, - 51, 52, 0, 0, 0, 0, 56, 0, 0, 59, + 0, 188, 315, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 119, 303, 1516, 194, 0, 317, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 177, 178, 179, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 186, + 0, 187, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 121, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 0, + 148, 149, 150, 151, 152, 153, 154, 155, 156, 0, + 0, 0, 0, 161, 162, 163, 164, 0, 0, 0, + 0, 166, 167, 168, 0, 0, 169, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 174, 0, 0, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 702, 24, 25, 703, 27, 28, 704, 30, 705, 32, - 0, 33, 0, 0, 0, 0, 38, 39, 0, 41, - 42, 43, 0, 0, 0, 46, 0, 0, 0, 0, - 0, 0, 169, 0, 0, 0, 173, 0, 0, 0, - 174, 175, 176, 177, 178, 0, 0, 0, 90, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, - 68, 69, 181, 306, 0, 0, 0, 183, 0, 0, - 0, 0, 307, 0, 112, 294, 1489, 187, 0, 308, - 115, 116, 117, 0, 0, 118, 119, 120, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 296, 297, - 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 150, 151, 152, 153, 0, 0, - 1862, 0, 158, 7, 8, 0, 0, 0, 0, 0, - 0, 0, 0, 163, 164, 165, 0, 0, 0, 0, - 0, 166, 0, 0, 0, 301, 0, 0, 302, 0, - 0, 303, 0, 304, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 305, 0, 0, 0, 0, - 0, 0, 48, 49, 50, 51, 52, 0, 0, 0, - 0, 56, 0, 0, 59, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 702, 24, 25, 703, 27, - 28, 704, 30, 705, 32, 0, 33, 0, 0, 0, - 0, 38, 39, 0, 41, 42, 43, 0, 0, 0, - 46, 0, 0, 0, 0, 0, 0, 169, 0, 0, - 0, 173, 0, 0, 0, 174, 175, 176, 177, 178, - 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 67, 68, 69, 181, 306, 0, - 0, 0, 183, 0, 0, 0, 0, 307, 0, 112, - 294, 0, 187, 0, 1490, 115, 116, 117, 0, 0, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 296, 297, 298, 299, 300, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, - 151, 152, 153, 0, 0, 1942, 0, 158, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, - 165, 0, 0, 0, 0, 0, 166, 0, 0, 0, - 301, 0, 0, 302, 0, 0, 303, 0, 304, 0, + 0, 188, 315, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 119, 303, 0, 194, 0, 1517, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 177, 178, + 179, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 186, 165, 187, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 0, 0, 1065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 305, 0, 332, 114, 0, 0, 0, 48, 49, 50, - 51, 52, 0, 0, 0, 0, 56, 0, 0, 59, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 0, - 690, 0, 141, 142, 143, 144, 145, 146, 147, 148, - 149, 0, 0, 0, 0, 154, 155, 156, 157, 0, - 0, 0, 169, 159, 160, 161, 173, 0, 162, 0, - 174, 175, 176, 177, 178, 0, 0, 0, 90, 167, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 181, 306, 0, 0, 0, 183, 0, 0, - 0, 0, 307, 0, 112, 294, 0, 187, 0, 308, - 115, 116, 117, 0, 0, 118, 119, 120, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 296, 297, - 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 150, 151, 152, 153, 0, 0, - 0, 0, 158, 0, 0, 170, 171, 172, 0, 0, - 0, 0, 0, 163, 164, 165, 0, 179, 0, 180, - 90, 166, 0, 0, 0, 301, 0, 0, 302, 0, - 0, 303, 0, 304, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 305, 0, 458, 114, 0, - 0, 0, 48, 49, 50, 51, 52, 0, 0, 0, - 0, 56, 0, 0, 59, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 747, 0, 141, 142, 143, - 144, 145, 146, 147, 148, 149, 0, 0, 0, 0, - 154, 155, 156, 157, 0, 0, 0, 169, 159, 160, - 161, 173, 0, 162, 0, 174, 175, 176, 177, 178, - 0, 0, 0, 90, 167, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 181, 306, 0, - 0, 0, 183, 0, 0, 0, 0, 504, 0, 112, - 294, 0, 187, 0, 308, 115, 116, 117, 0, 0, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 296, 297, 298, 299, 300, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, - 151, 152, 153, 0, 0, 0, 0, 158, 0, 0, - 170, 171, 172, 0, 0, 0, 0, 0, 163, 164, - 165, 0, 179, 0, 180, 90, 166, 0, 0, 0, - 301, 0, 0, 302, 336, 114, 303, 0, 304, 0, + 0, 188, 315, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 119, 303, 0, 194, 0, 317, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 0, 0, 1120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 305, 0, 0, 0, 0, 0, 0, 48, 49, 50, - 51, 52, 0, 0, 0, 0, 56, 0, 0, 59, - 0, 0, 0, 0, 141, 142, 143, 144, 145, 146, - 147, 148, 149, 0, 0, 0, 0, 154, 155, 156, - 157, 0, 0, 0, 0, 159, 160, 161, 0, 0, - 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 167, 169, 0, 0, 0, 173, 0, 0, 0, - 174, 175, 176, 177, 178, 0, 0, 0, 90, 0, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 181, 306, 0, 0, 0, 183, 0, 0, - 0, 0, 506, 0, 112, 294, 0, 187, 0, 308, - 115, 116, 117, 0, 0, 118, 119, 120, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 296, 297, - 298, 299, 300, 0, 0, 0, 0, 170, 171, 172, - 0, 0, 0, 0, 150, 151, 152, 153, 0, 179, - 0, 180, 158, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 163, 164, 165, 0, 0, 0, 0, - 0, 166, 0, 0, 0, 301, 0, 0, 302, 114, - 0, 303, 0, 304, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 305, 0, 0, 0, 0, - 0, 0, 48, 49, 50, 51, 52, 0, 0, 0, - 0, 56, 0, 0, 59, 0, 0, 0, 141, 142, - 143, 144, 145, 146, 147, 148, 149, 0, 0, 0, - 0, 154, 155, 156, 157, 0, 0, 0, 0, 159, - 160, 161, 0, 0, 162, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 167, 0, 169, 0, 0, - 0, 173, 0, 0, 0, 174, 175, 176, 177, 178, - 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 181, 306, 0, - 0, 0, 183, 0, 0, 0, 0, 508, 0, 112, - 294, 0, 187, 0, 308, 115, 116, 117, 0, 0, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 296, 297, 298, 299, 300, 0, 0, - 0, 170, 171, 172, 0, 0, 0, 0, 0, 150, - 151, 152, 153, 179, 0, 180, 0, 158, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, - 165, 0, 0, 0, 0, 0, 166, 0, 0, 0, - 301, 0, 0, 302, 0, 0, 303, 0, 304, 0, + 0, 188, 315, 0, 0, 0, 190, 0, 0, 0, + 0, 517, 0, 119, 303, 0, 194, 0, 317, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 0, 0, 1149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 305, 0, 0, 0, 0, 0, 0, 48, 49, 50, - 51, 52, 0, 0, 0, 0, 56, 0, 0, 59, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 0, - 0, 0, 0, 0, 0, 0, 0, 1047, 0, 0, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 169, 0, 0, 0, 173, 0, 0, 0, - 174, 175, 176, 177, 178, 0, 0, 0, 90, 0, + 0, 188, 315, 0, 0, 0, 190, 0, 0, 0, + 0, 519, 0, 119, 303, 0, 194, 0, 317, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 0, 0, 1191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 181, 472, 0, 0, 0, 183, 0, 0, - 0, 0, 307, 0, 112, 294, 0, 187, 0, 583, - 115, 116, 117, 0, 0, 118, 119, 120, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 296, 297, - 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 150, 151, 152, 153, 0, 0, - 0, 0, 158, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 163, 164, 165, 0, 0, 0, 0, - 0, 166, 0, 0, 0, 301, 0, 0, 302, 0, - 0, 303, 0, 304, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 305, 0, 0, 0, 0, - 0, 0, 48, 49, 50, 51, 52, 0, 0, 0, - 0, 56, 0, 0, 59, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 0, 0, 1100, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 169, 0, 0, - 0, 173, 0, 0, 0, 174, 175, 176, 177, 178, - 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 181, 472, 0, - 0, 0, 183, 0, 0, 0, 0, 307, 0, 112, - 294, 0, 187, 0, 846, 115, 116, 117, 0, 0, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 296, 297, 298, 299, 300, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, - 151, 152, 153, 0, 0, 0, 0, 158, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, - 165, 0, 0, 0, 0, 0, 166, 0, 0, 0, - 301, 0, 0, 302, 0, 0, 303, 0, 304, 0, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 305, 0, 0, 0, 0, 0, 0, 48, 49, 50, - 51, 52, 0, 0, 0, 0, 56, 0, 0, 59, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 0, - 0, 0, 0, 0, 0, 0, 0, 1129, 0, 0, + 0, 188, 315, 0, 0, 0, 190, 0, 0, 0, + 0, 521, 0, 119, 303, 0, 194, 0, 317, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 0, 0, 1308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 169, 0, 0, 0, 173, 0, 0, 0, - 174, 175, 176, 177, 178, 0, 0, 0, 90, 0, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 181, 472, 0, 0, 0, 183, 0, 0, - 0, 0, 307, 0, 112, 294, 0, 187, 0, 849, - 115, 116, 117, 0, 0, 118, 119, 120, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 296, 297, - 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 150, 151, 152, 153, 0, 0, - 0, 0, 158, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 163, 164, 165, 0, 0, 0, 0, - 0, 166, 0, 0, 0, 301, 0, 0, 302, 0, - 0, 303, 0, 304, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 305, 0, 0, 0, 0, - 0, 0, 48, 49, 50, 51, 52, 0, 0, 0, - 0, 56, 0, 0, 59, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 0, 0, 1168, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 169, 0, 0, - 0, 173, 0, 0, 0, 174, 175, 176, 177, 178, - 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 181, 472, 0, - 0, 0, 183, 0, 0, 0, 0, 307, 0, 112, - 294, 0, 187, 0, 873, 115, 116, 117, 0, 0, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 296, 297, 298, 299, 300, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, - 151, 152, 153, 0, 0, 0, 0, 158, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, - 165, 0, 0, 0, 0, 0, 166, 0, 0, 0, - 301, 0, 0, 302, 0, 0, 303, 0, 304, 0, + 0, 188, 483, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 119, 303, 0, 194, 0, 596, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 0, 0, 1634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 305, 0, 0, 0, 0, 0, 0, 48, 49, 50, - 51, 52, 0, 0, 0, 0, 56, 0, 0, 59, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 0, - 0, 0, 0, 0, 0, 0, 0, 1284, 0, 0, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 169, 0, 0, 0, 173, 0, 0, 0, - 174, 175, 176, 177, 178, 0, 0, 0, 90, 0, + 0, 188, 483, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 119, 303, 0, 194, 0, 862, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 0, 0, 1653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 181, 306, 0, 0, 0, 183, 0, 0, - 0, 0, 307, 0, 112, 294, 0, 187, 0, 1494, - 115, 116, 117, 0, 0, 118, 119, 120, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 138, 139, 140, 296, 297, - 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 150, 151, 152, 153, 0, 0, - 0, 0, 158, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 163, 164, 165, 0, 0, 0, 0, - 0, 166, 0, 0, 0, 301, 0, 0, 302, 0, - 0, 303, 0, 304, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 305, 0, 0, 0, 0, - 0, 0, 48, 49, 50, 51, 52, 0, 0, 0, - 0, 56, 0, 0, 59, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 0, 0, 1605, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 169, 0, 0, - 0, 173, 0, 0, 0, 174, 175, 176, 177, 178, - 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 531, 1627, 0, - 0, 0, 183, 0, 0, 0, 0, 533, 0, 112, - 342, 0, 187, 0, 261, 115, 116, 117, 0, 0, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 0, 0, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 150, - 151, 152, 153, 450, 0, 0, 0, 158, 0, 0, - 0, 0, 1624, 0, 0, 0, 112, 342, 163, 164, - 165, 0, 115, 116, 117, 0, 166, 118, 119, 120, - 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 188, 483, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 119, 303, 0, 194, 0, 865, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 0, 0, 436, 437, 438, 439, 440, 441, 442, 443, - 444, 445, 446, 447, 448, 449, 150, 151, 152, 153, - 450, 0, 0, 0, 158, 0, 0, 0, 0, 1697, - 0, 0, 0, 0, 0, 163, 164, 165, 0, 0, - 0, 0, 0, 166, 0, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 169, 450, 0, 0, 173, 694, 0, 0, - 174, 175, 176, 177, 178, 0, 0, 0, 90, 0, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 0, 0, 1727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 181, 182, 0, 0, 0, 183, 0, 0, - 0, 0, 307, 0, 0, 0, 0, 187, 0, 511, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 169, - 0, 0, 0, 173, 0, 0, 616, 174, 175, 176, - 177, 178, 0, 0, 0, 90, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 531, - 532, 0, 0, 0, 183, 0, 0, 0, 0, 533, - 0, 112, 342, 114, 187, 0, 261, 115, 116, 117, - 0, 0, 118, 119, 120, 121, 122, 123, 124, 125, - 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, - 136, 137, 138, 139, 140, 0, 0, 0, 0, 0, - 0, 0, 141, 142, 143, 144, 145, 146, 147, 148, - 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, - 0, 0, 0, 159, 160, 161, 0, 0, 162, 0, - 163, 164, 165, 0, 0, 0, 0, 0, 166, 167, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 0, - 0, 0, 0, 0, 0, 0, 0, 1698, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 0, 0, 0, 0, 450, 0, 0, 0, - 0, 0, 0, 0, 0, 1699, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 0, 0, 450, 0, 0, 0, 0, 0, - 0, 0, 0, 1700, 169, 170, 171, 172, 173, 0, - 0, 0, 174, 175, 176, 177, 178, 179, 0, 180, - 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 181, 182, 0, 0, 0, 183, - 112, 294, 0, 0, 307, 0, 115, 116, 117, 187, - 0, 118, 119, 120, 121, 122, 123, 124, 125, 126, - 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, - 137, 138, 139, 140, 296, 297, 298, 299, 300, 0, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 150, 151, 152, 153, 0, 0, 0, 0, 158, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, - 164, 165, 0, 0, 0, 0, 0, 166, 0, 0, - 0, 301, 0, 0, 302, 0, 0, 303, 0, 304, + 0, 188, 483, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 119, 303, 0, 194, 0, 889, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 0, 0, 1728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 305, 0, 0, 0, 0, 0, 0, 48, 49, - 50, 51, 52, 0, 0, 0, 0, 56, 0, 0, - 59, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 0, 0, 1701, 0, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 169, 0, 0, 0, 173, 0, 0, - 0, 174, 175, 176, 177, 178, 0, 0, 0, 90, + 0, 188, 315, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 119, 303, 0, 194, 0, 1521, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 305, 306, 307, + 308, 309, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 157, 158, 159, 160, 0, 0, 0, + 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 0, 0, 0, 310, 0, 0, 311, 0, 0, + 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 314, 0, 0, 0, + 0, 0, 0, 50, 51, 52, 53, 54, 0, 0, + 56, 57, 58, 0, 0, 61, 0, 0, 64, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 0, 0, 1729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 181, 472, 0, 0, 0, 183, 112, - 342, 0, 0, 307, 0, 115, 116, 117, 187, 0, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, - 138, 139, 140, 0, 0, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 150, - 151, 152, 153, 450, 0, 0, 0, 158, 0, 0, - 0, 0, 1733, 0, 0, 0, 112, 342, 163, 164, - 165, 0, 115, 116, 117, 0, 166, 118, 119, 120, - 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, + 0, 176, 0, 0, 0, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 544, 1656, 0, 0, 0, 190, 0, 0, 0, + 0, 546, 0, 119, 352, 121, 194, 0, 270, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 0, 0, 436, 437, 438, 439, 440, 441, 442, 443, - 444, 445, 446, 447, 448, 449, 150, 151, 152, 153, - 450, 0, 0, 0, 158, 0, 0, 0, 0, 1806, - 0, 0, 0, 0, 0, 163, 164, 165, 0, 0, - 0, 0, 0, 166, 0, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 169, 450, 0, 0, 173, 890, 0, 0, - 174, 175, 176, 177, 178, 0, 0, 0, 90, 0, + 141, 142, 143, 144, 145, 146, 147, 0, 0, 0, + 0, 0, 0, 0, 148, 149, 150, 151, 152, 153, + 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, + 164, 165, 0, 0, 0, 166, 167, 168, 0, 0, + 169, 0, 170, 171, 172, 0, 0, 0, 0, 0, + 173, 174, 0, 0, 342, 121, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 0, 0, 0, 0, + 0, 0, 0, 1730, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 148, 149, 150, 151, 152, 153, + 154, 155, 156, 0, 0, 0, 0, 161, 162, 163, + 164, 0, 0, 0, 0, 166, 167, 168, 0, 0, + 169, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 174, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 176, 177, 178, 179, 180, 0, 0, 0, 181, + 182, 183, 184, 185, 186, 0, 187, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 181, 182, 0, 0, 0, 183, 0, 0, - 0, 0, 307, 421, 0, 0, 0, 187, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 0, 0, 0, 0, 450, 0, 0, 169, - 0, 0, 0, 173, 0, 1817, 0, 174, 175, 176, - 177, 178, 0, 0, 0, 90, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, - 182, 0, 0, 0, 183, 0, 0, 0, 0, 307, - 112, 342, 423, 0, 187, 0, 115, 116, 117, 0, - 0, 118, 119, 120, 121, 122, 123, 124, 125, 126, + 0, 188, 189, 0, 0, 0, 190, 119, 303, 0, + 0, 316, 0, 122, 123, 124, 194, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, - 137, 138, 139, 140, 0, 0, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 150, 151, 152, 153, 450, 0, 0, 0, 158, 0, - 0, 0, 0, 1818, 0, 0, 0, 112, 342, 163, - 164, 165, 0, 115, 116, 117, 0, 166, 118, 119, - 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, - 140, 0, 0, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 150, 151, 152, - 153, 450, 0, 0, 0, 158, 0, 0, 0, 0, - 1850, 0, 0, 0, 0, 0, 163, 164, 165, 0, - 0, 0, 0, 0, 166, 0, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 0, 169, 450, 0, 0, 173, 906, 0, - 0, 174, 175, 176, 177, 178, 0, 0, 0, 90, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 305, 306, 307, 308, 309, 0, 0, 0, 0, + 0, 0, 177, 178, 179, 0, 0, 157, 158, 159, + 160, 0, 0, 0, 186, 165, 187, 95, 0, 0, + 0, 0, 0, 0, 0, 0, 170, 171, 172, 0, + 0, 0, 0, 0, 173, 0, 0, 0, 310, 0, + 0, 311, 0, 0, 312, 0, 313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 181, 182, 0, 0, 0, 183, 0, - 0, 0, 0, 307, 622, 0, 0, 0, 187, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 169, 0, 0, 0, 173, 0, 1853, 0, 174, 175, - 176, 177, 178, 0, 0, 0, 90, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 181, 182, 0, 0, 0, 183, 0, 0, 0, 0, - 307, 112, 342, 624, 1290, 187, 0, 115, 116, 117, - 0, 0, 118, 119, 120, 121, 122, 123, 124, 125, + 314, 0, 0, 0, 0, 0, 0, 50, 51, 52, + 53, 54, 0, 0, 56, 57, 58, 0, 0, 61, + 0, 0, 64, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 0, 0, + 1731, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 176, 0, 0, 0, 180, + 0, 0, 0, 181, 182, 183, 184, 185, 0, 0, + 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 188, 483, 0, 0, 0, + 190, 119, 352, 0, 0, 316, 0, 122, 123, 124, + 194, 0, 125, 126, 127, 128, 129, 130, 131, 132, + 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, + 143, 144, 145, 146, 147, 0, 0, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 157, 158, 159, 160, 461, 0, 0, 0, 165, + 0, 0, 0, 0, 1764, 0, 0, 0, 119, 352, + 170, 171, 172, 0, 122, 123, 124, 0, 173, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, - 136, 137, 138, 139, 140, 0, 0, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 150, 151, 152, 153, 450, 0, 0, 0, 158, - 0, 0, 0, 0, 1856, 0, 0, 0, 112, 342, - 163, 164, 165, 0, 115, 116, 117, 0, 166, 118, - 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, + 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 0, 0, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 157, 158, + 159, 160, 461, 0, 0, 0, 165, 0, 0, 0, + 0, 1838, 0, 0, 0, 0, 0, 170, 171, 172, + 0, 0, 0, 0, 0, 173, 0, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 176, + 0, 0, 0, 180, 1849, 0, 0, 181, 182, 183, + 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 188, + 189, 0, 0, 0, 190, 0, 0, 0, 0, 316, + 432, 0, 0, 0, 194, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 176, 0, 0, 0, + 180, 0, 1850, 0, 181, 182, 183, 184, 185, 0, + 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 188, 189, 0, 0, + 0, 190, 0, 0, 0, 0, 316, 119, 352, 434, + 0, 194, 0, 122, 123, 124, 0, 0, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 0, 0, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 157, 158, 159, + 160, 461, 0, 0, 0, 165, 0, 0, 0, 0, + 1882, 0, 0, 0, 119, 352, 170, 171, 172, 0, + 122, 123, 124, 0, 173, 125, 126, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 0, 0, + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 157, 158, 159, 160, 461, 0, + 0, 0, 165, 0, 0, 0, 0, 1885, 0, 0, + 0, 0, 0, 170, 171, 172, 0, 0, 0, 0, + 0, 173, 0, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 176, 0, 0, 0, 180, + 1888, 0, 0, 181, 182, 183, 184, 185, 0, 0, + 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 188, 189, 0, 0, 0, + 190, 0, 0, 0, 0, 316, 636, 0, 0, 0, + 194, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 176, 0, 0, 0, 180, 0, 1920, 0, + 181, 182, 183, 184, 185, 0, 0, 0, 95, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 188, 189, 0, 0, 0, 190, 0, 0, + 0, 0, 316, 119, 352, 638, 1175, 194, 0, 122, + 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 0, 0, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 157, 158, 159, 160, 461, 0, 0, + 0, 165, 0, 0, 0, 0, 1927, 0, 0, 0, + 0, 0, 170, 171, 172, 119, 352, 0, 1314, 0, + 173, 122, 123, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, - 139, 140, 0, 0, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 150, 151, - 152, 153, 450, 0, 0, 0, 158, 0, 0, 0, - 0, 1888, 0, 0, 0, 0, 0, 163, 164, 165, - 0, 0, 0, 0, 0, 166, 0, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 169, 450, 0, 0, 173, 913, - 0, 0, 174, 175, 176, 177, 178, 0, 0, 0, - 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 181, 182, 0, 0, 0, 183, - 0, 0, 0, 0, 307, 0, -4, 1, 0, 187, - -4, 0, 0, 0, 0, 0, 0, 0, -4, -4, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 0, + 0, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 157, 158, 159, 160, 461, + 0, 0, 0, 165, 0, 0, 0, 0, 1966, 0, + 0, 0, 0, 0, 170, 171, 172, 0, 0, 0, + 0, 0, 173, 0, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 0, 0, + 0, 176, 461, 0, 0, 180, 708, 0, 0, 181, + 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 169, 0, 0, 0, 173, 0, 0, 0, 174, - 175, 176, 177, 178, 0, 0, 0, 90, -4, -4, + 0, 188, 189, 0, 0, 0, 190, 0, 0, 0, + 0, 316, 0, 0, 0, 0, 194, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 0, 176, 1968, 0, 0, 180, 0, 0, + 0, 181, 182, 183, 184, 185, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 181, 182, 0, 0, 0, 183, 0, -4, -4, - -4, 307, 0, 0, -4, -4, 187, -4, 0, 0, - 0, -4, -4, 0, -4, -4, 0, 0, -4, -4, + 0, 0, 0, 188, 189, 0, 0, 0, 190, 119, + 352, 0, 0, 316, 0, 122, 123, 124, 194, 0, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 0, 0, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 157, + 158, 159, 160, 461, 0, 0, 0, 165, 0, 0, + 0, 0, 1970, 0, 0, 0, 0, 0, 170, 171, + 172, 0, 0, 0, 0, 0, 173, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 0, 0, 1990, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 0, 0, 2017, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -4, 1, 0, 0, -4, 0, 0, 0, + 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 176, 0, 0, + 0, 180, 0, 0, 0, 181, 182, 183, 184, 185, + 0, 0, 0, 95, -4, -4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 188, 189, 0, + 0, 0, 190, 0, -4, -4, -4, 316, 0, 0, + -4, -4, 194, -4, 0, 0, 0, -4, -4, 0, + -4, -4, 0, 0, -4, -4, -4, -4, -4, -4, + -4, -4, -4, -4, -4, -4, 0, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, - 0, -4, -4, -4, -4, -4, -4, -4, -4, -4, - -4, -4, -4, 0, -4, -4, -4, -4, -4, -4, - -4, -4, -4, 0, -4, -4, -4, -4, -4, -4, - -4, -4, 0, 0, 0, -4, -4, -4, 0, 0, - 0, 0, 0, -4, 6, 0, 0, 0, -4, -4, - -4, -4, 7, 8, -4, 0, -4, 0, -4, -4, + -4, 0, -4, -4, -4, -4, -4, -4, -4, -4, + -4, 0, -4, -4, -4, -4, -4, -4, -4, -4, + -4, -4, -4, 0, 0, 0, -4, -4, -4, 0, + 0, 0, 0, 0, -4, 6, 0, 0, 0, -4, + -4, -4, -4, 7, 8, -4, 0, -4, 0, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, - -4, -4, 0, 0, 0, 0, 0, -4, -4, -4, - 0, 0, 9, 10, 0, 0, -4, 0, -4, 0, + -4, -4, -4, 0, 0, 0, 0, 0, -4, -4, + -4, 0, 0, 9, 10, 0, 0, -4, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 11, 12, 13, 0, 0, 0, 14, 15, - 0, 16, 0, 0, 0, 17, 18, 0, 19, 20, - 0, 0, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 0, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 42, 43, 44, 0, 45, 46, - 47, 48, 49, 50, 51, 52, 53, 0, 54, 55, - 56, 57, 58, 59, 60, 61, 0, 0, 0, 62, - 63, 64, 0, 0, 0, 0, 0, 65, 0, 0, - 0, 0, 66, 67, 68, 69, 0, 0, 70, 0, - 71, 0, 72, 73, 74, 75, 76, 77, 78, 79, - 80, 81, 82, 83, 84, 85, 0, 0, 0, 0, - 0, 86, 87, 88, 0, 0, 0, 0, 0, 0, - 89, 0, 90, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 0, 0, - 1895, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 0, 0, 1934, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 0, 0, 1936, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 0, 0, 1938, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 0, 0, 1958, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 0, 0, - 1985, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 0, 0, 2024, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 0, 0, 2025, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 0, 0, 2029, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 0, 0, 2030, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 0, 0, - 2031, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 0, 0, 2032, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 0, 796, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 0, 0, 450, 0, 0, 0, 0, 0, - 0, 0, 1709, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 842, 0, 843, 0, 0, 1373, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 870, - 0, 0, 0, 0, 803, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 737, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 803, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 804, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 884, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 926, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 934, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 935, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 936, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 951, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 1082, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 1083, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 1084, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 1115, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 1124, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 1125, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 1127, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 1234, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 1282, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 1283, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 1344, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 1504, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 1505, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 1506, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 1507, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 1508, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 1509, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 1510, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 1561, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 1562, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 1569, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 1736, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 1737, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 1738, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 1739, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 1740, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 1762, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 1763, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 1767, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 1868, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 1869, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 1870, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 1871, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 1872, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 1881, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 1884, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 1930, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 1947, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 1948, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 1949, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 1950, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, - 1951, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 0, 0, 0, 1997, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 0, - 0, 0, 1998, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 0, 0, 0, 1999, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 0, 0, 0, 2000, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 1009, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 0, 0, 0, 0, 450, 0, 0, 0, - 1108, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 1109, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 0, 0, - 0, 0, 450, 0, 0, 0, 1113, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 0, 0, 1114, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 0, - 0, 0, 1117, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 0, 0, 1141, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 0, 0, 450, 0, 0, 0, 1170, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 0, - 0, 1227, 436, 437, 438, 439, 440, 441, 442, 443, - 444, 445, 446, 447, 448, 449, 0, 0, 0, 0, - 450, 0, 0, 0, 1232, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 0, 0, 1499, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 0, 0, 0, 0, 450, 0, 0, 0, - 1552, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 0, 0, 1722, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 0, 0, - 0, 0, 450, 0, 751, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 752, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 0, 0, 450, 0, 754, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 756, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 0, 0, 0, 0, 450, 0, 757, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 760, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 0, - 761, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 870, 436, 437, 438, 439, 440, 441, 442, 443, - 444, 445, 446, 447, 448, 449, 0, 0, 0, 0, - 450, 0, 880, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 881, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 0, 0, - 0, 0, 450, 0, 882, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 888, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 0, 0, 450, 0, 889, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 902, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 0, 0, 0, 0, 450, 0, 912, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 1008, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 0, - 1036, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 1041, 436, 437, 438, 439, 440, 441, 442, 443, - 444, 445, 446, 447, 448, 449, 0, 0, 0, 0, - 450, 0, 1046, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 1049, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 0, 0, - 0, 0, 450, 0, 1050, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 1056, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 0, 0, 450, 0, 1065, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 1066, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 0, 0, 0, 0, 450, 0, 1067, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 1099, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 0, - 1101, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 1102, 436, 437, 438, 439, 440, 441, 442, 443, - 444, 445, 446, 447, 448, 449, 0, 0, 0, 0, - 450, 0, 1103, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 1107, 436, 437, 438, 439, 440, 441, - 442, 443, 444, 445, 446, 447, 448, 449, 0, 0, - 0, 0, 450, 0, 1116, 436, 437, 438, 439, 440, - 441, 442, 443, 444, 445, 446, 447, 448, 449, 0, - 0, 0, 0, 450, 0, 1140, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 0, 0, 0, 0, 450, 0, 1226, 436, 437, 438, - 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, - 449, 0, 0, 0, 0, 450, 0, 1231, 436, 437, - 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, - 448, 449, 0, 0, 0, 0, 450, 0, 1385, 436, - 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, - 447, 448, 449, 0, 0, 0, 0, 450, 0, 1606, - 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, - 446, 447, 448, 449, 0, 0, 0, 0, 450, 0, - 1623, 436, 437, 438, 439, 440, 441, 442, 443, 444, - 445, 446, 447, 448, 449, 0, 0, 0, 0, 450, - 0, 1650, 436, 437, 438, 439, 440, 441, 442, 443, - 444, 445, 446, 447, 448, 449, 0, 0, 0, 0, - 450, 0, 1880, 436, 437, 438, 439, 440, 441, 442, - 443, 444, 445, 446, 447, 448, 449, 0, 0, 0, - 0, 450, 0, 1956 + 0, 0, 0, 11, 12, 13, 0, 0, 0, 14, + 15, 0, 16, 0, 0, 0, 17, 18, 0, 19, + 20, 0, 0, 21, 22, 23, 24, 25, 26, 27, + 28, 29, 30, 31, 32, 0, 33, 34, 35, 36, + 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, + 0, 47, 48, 49, 50, 51, 52, 53, 54, 55, + 0, 56, 57, 58, 59, 60, 61, 62, 63, 64, + 65, 66, 0, 0, 0, 67, 68, 69, 0, 0, + 0, 0, 0, 70, 0, 0, 0, 0, 71, 72, + 73, 74, 469, 121, 75, 0, 76, 0, 77, 78, + 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, + 89, 90, 0, 0, 0, 0, 0, 91, 92, 93, + 0, 0, 0, 0, 0, 0, 94, 0, 95, 0, + 0, 0, 148, 149, 150, 151, 152, 153, 154, 155, + 156, 0, 0, 0, 0, 161, 162, 163, 164, 0, + 0, 0, 0, 166, 167, 168, 0, 0, 169, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 0, 0, 0, 0, 461, 0, + 0, 0, 0, 0, 0, 0, 0, 2056, 447, 448, + 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, + 459, 460, 0, 0, 0, 0, 461, 0, 0, 0, + 0, 0, 0, 0, 0, 2057, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 0, 0, 0, 0, + 0, 0, 0, 2061, 0, 0, 0, 0, 0, 0, + 177, 178, 179, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 186, 0, 187, 95, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 0, 0, 0, 0, + 0, 0, 0, 2062, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 0, 0, + 0, 0, 461, 0, 0, 0, 0, 0, 0, 0, + 0, 2063, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 0, 0, 0, 0, + 461, 0, 0, 0, 0, 0, 0, 0, 0, 2064, + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 0, 0, 0, 0, 461, 0, + 0, 0, 0, 0, 0, 0, 629, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 0, 812, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 0, 0, + 0, 0, 461, 0, 0, 0, 0, 0, 0, 0, + 1740, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 858, 0, 859, 0, 0, 1399, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 886, 0, 0, + 0, 0, 819, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 819, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 820, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 900, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 944, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 952, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 953, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 954, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 969, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 1102, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 1103, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 1104, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 1135, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 1144, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 1145, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 1147, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 1257, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 1306, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 1307, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 1368, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 1531, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 1532, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 1533, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 1534, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 1535, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 1536, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 1537, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 1589, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 1590, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 1597, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 1767, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 1768, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 1769, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 1770, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 1771, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 1794, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 1795, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 1799, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 1900, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 1901, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 1902, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 1903, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 1904, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 1913, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 1916, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 1962, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 1979, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 1980, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 1981, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 1982, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 0, + 0, 0, 1983, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 0, 0, 0, 2029, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 0, 0, 0, 2030, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 0, 0, 0, + 2031, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 0, 0, 0, 2032, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 906, + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 0, 0, 0, 0, 461, 0, + 0, 0, 924, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 931, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 0, 0, 1027, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 1128, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 0, 0, 0, 0, + 461, 0, 0, 0, 1129, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 0, 0, 1133, 447, 448, + 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, + 459, 460, 0, 0, 0, 0, 461, 0, 0, 0, + 1134, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 0, 0, 1137, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 0, 0, + 0, 0, 461, 0, 0, 0, 1161, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 0, 0, 1193, + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 0, 0, 0, 0, 461, 0, + 0, 0, 1250, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 0, 0, 1255, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 0, 0, 1526, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 0, + 0, 1580, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 0, 0, 0, 0, + 461, 0, 0, 0, 1753, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 704, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 761, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 765, 447, 448, + 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, + 459, 460, 0, 0, 0, 0, 461, 0, 766, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 768, + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 0, 0, 0, 0, 461, 0, + 770, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 771, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 0, 0, 0, 0, + 461, 0, 774, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 775, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 0, 0, + 0, 0, 461, 0, 784, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 886, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 896, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 897, 447, 448, + 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, + 459, 460, 0, 0, 0, 0, 461, 0, 898, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 904, + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 0, 0, 0, 0, 461, 0, + 905, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 920, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 0, 0, 0, 0, + 461, 0, 930, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 1026, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 0, 0, + 0, 0, 461, 0, 1054, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 1059, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 1064, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 1069, 447, 448, + 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, + 459, 460, 0, 0, 0, 0, 461, 0, 1070, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 1076, + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 0, 0, 0, 0, 461, 0, + 1085, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 1086, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 0, 0, 0, 0, + 461, 0, 1087, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 1119, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 0, 0, + 0, 0, 461, 0, 1121, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 1122, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 1123, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 1127, 447, 448, + 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, + 459, 460, 0, 0, 0, 0, 461, 0, 1136, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 0, 0, 0, 0, 461, 0, 1160, + 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, + 457, 458, 459, 460, 0, 0, 0, 0, 461, 0, + 1249, 447, 448, 449, 450, 451, 452, 453, 454, 455, + 456, 457, 458, 459, 460, 0, 0, 0, 0, 461, + 0, 1254, 447, 448, 449, 450, 451, 452, 453, 454, + 455, 456, 457, 458, 459, 460, 0, 0, 0, 0, + 461, 0, 1411, 447, 448, 449, 450, 451, 452, 453, + 454, 455, 456, 457, 458, 459, 460, 0, 0, 0, + 0, 461, 0, 1635, 447, 448, 449, 450, 451, 452, + 453, 454, 455, 456, 457, 458, 459, 460, 0, 0, + 0, 0, 461, 0, 1652, 447, 448, 449, 450, 451, + 452, 453, 454, 455, 456, 457, 458, 459, 460, 0, + 0, 0, 0, 461, 0, 1679, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 0, 0, 0, 0, 461, 0, 1912, 447, 448, 449, + 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, + 460, 0, 0, 0, 0, 461, 0, 1988, 447, 448, + 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, + 459, 460, 0, 0, 0, 0, 461 }; static const yytype_int16 yycheck[] = { - 3, 7, 388, 6, 390, 525, 526, 4, 4, 1094, - 4, 254, 7, 1492, 3, 6, 269, 5, 4, 405, - 4, 6, 4, 6, 4, 6, 4, 6, 281, 6, - 4, 4, 4, 4, 107, 5, 1693, 5, 4, 1098, - 217, 5, 206, 5, 5, 222, 4, 6, 5, 226, - 5, 5, 5, 148, 57, 6, 233, 4, 196, 197, - 6, 6, 65, 4, 4, 13, 6, 70, 206, 164, - 165, 196, 197, 107, 87, 213, 6, 90, 81, 6, - 196, 197, 49, 50, 118, 52, 339, 212, 341, 214, - 196, 197, 126, 127, 128, 0, 6, 213, 132, 133, - 134, 135, 206, 206, 208, 6, 212, 1586, 214, 206, - 213, 215, 196, 197, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, 212, 206, - 214, 206, 205, 208, 7, 6, 213, 84, 196, 197, - 215, 88, 206, 7, 84, 196, 197, 7, 196, 197, - 206, 136, 208, 100, 90, 136, 214, 136, 138, 139, - 140, 141, 213, 159, 6, 213, 148, 149, 206, 163, - 208, 81, 210, 83, 7, 148, 149, 215, 1835, 1836, - 214, 151, 7, 151, 187, 206, 182, 151, 7, 151, - 136, 111, 213, 203, 204, 6, 199, 200, 182, 188, - 206, 6, 208, 213, 207, 196, 197, 6, 182, 1688, - 193, 208, 215, 6, 217, 210, 193, 213, 215, 222, - 206, 1306, 208, 226, 210, 213, 229, 1706, 206, 215, - 233, 234, 235, 236, 214, 213, 239, 240, 241, 213, - 3, 213, 213, 6, 247, 248, 249, 213, 206, 213, - 253, 254, 213, 6, 213, 213, 213, 434, 213, 213, - 213, 206, 213, 516, 517, 206, 196, 197, 213, 196, - 197, 206, 275, 276, 277, 421, 8, 423, 213, 425, - 196, 197, 208, 536, 196, 197, 289, 290, 203, 204, - 257, 258, 203, 204, 57, 210, 212, 206, 265, 208, - 212, 210, 269, 306, 214, 308, 215, 70, 7, 4, - 183, 184, 185, 186, 87, 208, 7, 90, 81, 183, - 184, 185, 186, 183, 184, 185, 186, 210, 199, 200, - 203, 204, 215, 510, 511, 203, 204, 210, 7, 203, - 204, 209, 345, 206, 347, 348, 196, 197, 601, 207, - 183, 184, 185, 186, 212, 6, 7, 360, 183, 184, - 185, 186, 212, 616, 183, 184, 185, 186, 196, 197, - 203, 204, 203, 204, 206, 552, 553, 554, 203, 204, - 209, 94, 213, 212, 212, 388, 389, 390, 391, 392, - 393, 394, 395, 396, 397, 398, 399, 400, 7, 402, - 403, 404, 405, 406, 1883, 206, 583, 410, 411, 412, - 413, 414, 415, 90, 417, 207, 111, 112, 113, 114, - 212, 206, 196, 197, 187, 120, 196, 197, 123, 196, - 197, 434, 609, 90, 206, 92, 199, 200, 212, 203, - 204, 206, 212, 353, 207, 212, 198, 199, 200, 213, - 627, 209, 215, 205, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, 472, - 206, 6, 208, 205, 345, 206, 622, 208, 624, 215, - 196, 197, 214, 207, 183, 184, 185, 186, 212, 203, - 204, 254, 183, 184, 185, 186, 212, 207, 408, 213, - 203, 204, 212, 90, 1983, 425, 416, 510, 511, 207, - 213, 209, 203, 204, 183, 184, 185, 186, 389, 213, - 391, 392, 393, 394, 395, 396, 397, 90, 399, 400, - 90, 402, 403, 404, 92, 406, 525, 526, 206, 410, - 411, 412, 413, 414, 690, 206, 799, 208, 694, 552, - 553, 554, 196, 197, 215, 732, 523, 524, 206, 736, - 208, 564, 565, 213, 531, 568, 84, 215, 212, 87, - 196, 197, 90, 213, 183, 184, 185, 186, 203, 204, - 583, 87, 345, 107, 196, 197, 212, 590, 213, 90, - 500, 501, 502, 503, 118, 87, 196, 197, 196, 197, - 212, 87, 126, 127, 128, 212, 609, 214, 132, 133, - 134, 135, 212, 207, 212, 234, 235, 236, 212, 796, - 239, 240, 241, 90, 627, 388, 389, 390, 391, 392, - 393, 394, 395, 396, 397, 206, 399, 400, 206, 402, - 403, 404, 405, 406, 4, 196, 197, 410, 411, 412, - 413, 414, 415, 4, 417, 107, 275, 276, 1717, 207, - 1719, 212, 1721, 207, 212, 209, 118, 844, 212, 846, - 289, 290, 849, 4, 126, 127, 128, 4, 196, 197, - 132, 133, 134, 135, 206, 862, 689, 864, 206, 866, - 693, 868, 196, 197, 207, 213, 873, 568, 212, 212, - 214, 878, 196, 197, 198, 199, 200, 84, 212, 1794, - 87, 205, 1797, 90, 634, 1800, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, 212, 732, - 214, 206, 205, 736, 196, 197, 739, 87, 107, 742, - 90, 744, 92, 206, 987, 748, 749, 111, 112, 118, - 212, 196, 197, 117, 6, 7, 902, 126, 127, 128, - 906, 938, 214, 132, 133, 134, 135, 212, 6, 772, - 690, 196, 197, 6, 694, 196, 197, 208, 196, 197, - 196, 197, 196, 197, 207, 695, 209, 212, 208, 84, - 213, 212, 87, 796, 212, 90, 212, 92, 212, 212, - 206, 214, 565, 206, 1863, 568, 1192, 1193, 212, 206, - 214, 1197, 1198, 990, 991, 992, 993, 8, 207, 212, - 209, 214, 206, 206, 213, 1910, 192, 193, 194, 195, - 196, 197, 198, 199, 200, 802, 746, 7, 212, 205, - 214, 844, 809, 846, 206, 214, 849, 206, 815, 208, - 206, 210, 84, 206, 213, 87, 215, 206, 90, 862, - 92, 864, 90, 866, 92, 868, 111, 112, 739, 206, - 873, 1048, 117, 744, 1933, 878, 1935, 1962, 1937, 212, - 1965, 214, 87, 1968, 1943, 90, 1971, 92, 207, 212, - 209, 214, 206, 212, 897, 207, 213, 209, 901, 207, - 212, 209, 905, 207, 212, 209, 208, 207, 212, 209, - 913, 1057, 212, 1059, 8, 1061, 213, 1063, 207, 213, - 209, 841, 6, 212, 2009, 212, 2011, 214, 2013, 212, - 1989, 214, 1991, 6, 1993, 938, 213, 212, 6, 214, - 943, 212, 212, 214, 214, 948, 949, 950, 951, 1469, - 1470, 212, 90, 214, 92, 212, 206, 214, 961, 212, - 963, 214, 206, 212, 1207, 214, 206, 1353, 1354, 212, - 206, 214, 1358, 1359, 213, 212, 739, 214, 212, 742, - 214, 744, 902, 6, 987, 206, 906, 990, 991, 992, - 993, 206, 912, 913, 196, 197, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - 4, 212, 1015, 214, 205, 212, 212, 214, 214, 212, - 212, 214, 214, 214, 212, 212, 214, 214, 212, 206, - 214, 1034, 1035, 212, 1037, 214, 1039, 1040, 206, 206, - 1043, 1044, 913, 206, 6, 1048, 206, 212, 107, 214, - 212, 4, 214, 6, 1200, 212, 212, 214, 214, 118, - 212, 206, 214, 1030, 212, 206, 214, 126, 127, 128, - 1216, 213, 943, 132, 133, 134, 135, 213, 949, 950, - 951, 212, 212, 214, 214, 212, 206, 214, 1008, 1009, - 961, 213, 963, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, 212, 212, 214, - 214, 205, 212, 207, 214, 1082, 1083, 1084, 213, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, 212, 208, 214, 1313, 205, 213, 215, - 1143, 1144, 1145, 212, 1015, 214, 212, 212, 214, 214, - 913, 212, 1155, 214, 212, 214, 214, 212, 212, 214, - 214, 1404, 6, 6, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, 213, 212, - 943, 214, 205, 212, 208, 214, 949, 950, 951, 1192, - 1193, 212, 1712, 214, 1197, 1198, 1116, 1117, 961, 6, - 963, 212, 6, 214, 1207, 212, 212, 214, 214, 212, - 212, 214, 214, 213, 213, 208, 208, 1363, 1221, 6, - 1140, 1141, 213, 151, 987, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, 12, - 13, 215, 1245, 205, 6, 6, 213, 6, 1251, 6, - 213, 6, 1015, 213, 1257, 4, 1259, 1260, 208, 205, - 7, 1264, 1265, 210, 1267, 213, 1269, 107, 1271, 214, - 1273, 1274, 1275, 212, 212, 7, 6, 6, 118, 6, - 1200, 7, 7, 1669, 1461, 1462, 126, 127, 128, 1292, - 6, 6, 132, 133, 134, 135, 6, 207, 6, 213, - 7, 6, 4, 7, 1307, 6, 6, 6, 1311, 62, - 1313, 84, 85, 86, 87, 88, 89, 90, 91, 92, - 93, 62, 95, 62, 62, 1235, 148, 100, 101, 213, - 103, 104, 105, 209, 207, 6, 109, 6, 1305, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - 1353, 1354, 207, 207, 205, 1358, 1359, 44, 44, 212, - 212, 44, 212, 212, 212, 212, 212, 209, 207, 1372, - 143, 144, 145, 207, 214, 1378, 207, 44, 6, 4, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, 4, 6, 213, 6, 205, 6, - 6, 1404, 7, 151, 7, 7, 7, 1410, 151, 7, - 7, 151, 7, 7, 4, 6, 207, 1420, 212, 207, - 1423, 207, 212, 212, 207, 6, 210, 212, 107, 1192, - 1193, 207, 214, 214, 1197, 1198, 1679, 209, 213, 118, - 1350, 214, 213, 213, 1207, 1365, 213, 126, 127, 128, - 107, 7, 7, 132, 133, 134, 135, 7, 1461, 1462, - 210, 118, 213, 6, 44, 44, 1433, 44, 44, 126, - 127, 128, 7, 1726, 1651, 132, 133, 134, 135, 6, - 1469, 1470, 6, 6, 6, 6, 1396, 1490, 208, 1492, - 6, 1494, 206, 206, 213, 6, 193, 7, 7, 92, - 7, 1372, 7, 7, 1471, 7, 1473, 1378, 1475, 6, - 4, 1514, 7, 1423, 7, 7, 7, 7, 7, 1522, - 4, 213, 206, 1490, 6, 6, 1493, 1494, 7, 1532, - 7, 7, 1709, 7, 1537, 214, 7, 213, 6, 6, - 6, 90, 7, 107, 6, 6, 4, 6, 4, 1420, - 4, 212, 214, 1730, 118, 1465, 6, 214, 6, 6, - 1563, 6, 126, 127, 128, 6, 4, 6, 132, 133, - 134, 135, 212, 107, 207, 212, 207, 7, 210, 206, - 1500, 210, 6, 1586, 118, 6, 207, 213, 6, 209, - 1353, 1354, 126, 127, 128, 1358, 1359, 6, 132, 133, - 134, 135, 100, 6, 6, 213, 6, 6, 6, 1372, - 1520, 1864, 5, 213, 213, 1378, 4, 213, 7, 1622, - 6, 213, 208, 6, 1627, 213, 213, 1537, 1538, 1539, - 213, 213, 6, 6, 6, 213, 4, 207, 213, 213, - 209, 1404, 6, 6, 6, 6, 147, 212, 1651, 6, - 214, 4, 6, 213, 6, 4, 6, 1420, 6, 6, - 6, 6, 6, 1666, 4, 7, 1669, 5, 7, 6, - 6, 6, 6, 6, 6, 6, 1679, 6, 151, 6, - 214, 6, 6, 6, 6, 1688, 6, 6, 1865, 6, - 1867, 6, 1695, 1696, 212, 6, 6, 6, 212, 6, - 6, 207, 6, 1706, 6, 6, 1709, 6, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, 1725, 1712, 6, 6, 205, 1730, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, 7, 6, 1654, 6, 205, 4, 5, 1716, - 210, 1718, 6, 1720, 5, 7, 107, 6, 213, 6, - 213, 1728, 213, 6, 1731, 214, 6, 118, 1945, 213, - 88, 213, 6, 6, 214, 126, 127, 128, 213, 213, - 1783, 132, 133, 134, 135, 213, 213, 44, 45, 46, - 47, 48, 49, 50, 51, 52, 6, 214, 6, 1802, - 57, 58, 59, 60, 4, 5, 149, 213, 65, 66, - 67, 6, 6, 70, 6, 1782, 146, 6, 6, 1786, - 6, 6, 1825, 6, 81, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, 6, - 6, 6, 207, 205, 44, 45, 46, 47, 48, 49, - 50, 51, 52, 6, 213, 7, 6, 57, 58, 59, - 60, 6, 1865, 214, 1867, 65, 66, 67, 6, 6, - 70, 6, 213, 1840, 6, 107, 6, 1844, 6, 6, - 1883, 81, 6, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, 213, 6, 213, - 1867, 205, 214, 6, 6, 213, 1669, 6, 107, 6, - 167, 168, 169, 6, 1824, 6, 1679, 214, 206, 118, - 213, 213, 179, 213, 181, 182, 6, 126, 127, 128, - 207, 6, 6, 132, 133, 134, 135, 213, 6, 89, - 6, 6, 1945, 6, 213, 6, 203, 204, 6, 213, - 6, 213, 1955, 210, 6, 213, 213, 213, 6, 6, - 6, 6, 6, 6, 1931, 1932, 6, 167, 168, 169, - 6, 6, 6, 6, 1230, 1828, 1694, 1244, 3, 179, - 1983, 181, 182, 468, 3, 498, 1708, -1, 1400, -1, - -1, -1, -1, 107, -1, -1, -1, -1, 2001, -1, - 2003, -1, -1, -1, 118, -1, -1, 207, -1, 209, - -1, 1921, 126, 127, 128, 214, -1, -1, 132, 133, - 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, - 2033, 181, 182, 183, 184, 185, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 198, -1, - -1, -1, 202, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 1825, -1, -1, -1, 216, 217, 218, 219, - -1, 221, 222, 223, 224, -1, 226, 227, 228, -1, - -1, -1, -1, 233, 1955, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - 214, 251, -1, 205, -1, -1, -1, -1, -1, -1, - 260, 261, -1, -1, -1, -1, -1, -1, -1, 269, - -1, -1, -1, -1, 6, -1, -1, -1, -1, -1, - 2001, -1, 2003, -1, -1, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, 306, 307, 308, -1, - -1, -1, 2033, -1, -1, -1, -1, -1, 318, 319, - 320, -1, 322, -1, -1, -1, 326, 327, 328, -1, - -1, 331, -1, -1, -1, -1, -1, -1, 12, 13, - -1, -1, 1955, -1, -1, -1, -1, -1, -1, 349, - 350, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 363, 364, -1, 366, 367, 368, 369, - 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, - 380, 381, 382, 383, 384, 385, 386, 387, 2001, -1, - 2003, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 401, -1, -1, -1, -1, -1, 407, -1, 409, - 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, - 2033, 95, -1, -1, -1, -1, 100, 101, -1, 103, - 104, 105, -1, 433, 434, 109, 436, 437, 438, 439, - 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, - 450, -1, -1, 453, 454, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, 143, - 144, 145, 472, 205, -1, -1, -1, -1, 478, -1, - -1, -1, -1, 483, -1, -1, -1, -1, 488, 489, - -1, -1, -1, -1, 494, 495, 107, -1, -1, 499, - 500, 501, 502, 503, 504, -1, 506, 118, 508, -1, - 510, 511, -1, -1, -1, 126, 127, 128, -1, -1, - -1, 132, 133, 134, 135, -1, -1, -1, 528, 529, - 530, 531, 532, 533, -1, -1, -1, 537, 538, 539, - 540, 541, -1, -1, -1, 545, -1, 547, 548, -1, - -1, -1, 552, 553, 554, -1, -1, 557, 558, 559, - 560, 561, -1, -1, 564, 565, 566, 567, -1, 569, - -1, -1, 572, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 583, -1, -1, -1, -1, -1, 589, - 590, -1, 592, 593, -1, -1, -1, -1, 594, -1, - -1, -1, -1, 214, -1, -1, -1, -1, -1, 609, - -1, -1, -1, -1, 614, 615, -1, 617, 618, -1, - -1, -1, -1, -1, -1, -1, 626, 627, -1, -1, - -1, 631, -1, 12, 13, -1, -1, -1, -1, 635, - 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, - -1, 647, 648, 649, 650, 651, 652, 653, -1, -1, - -1, 657, 658, 659, -1, -1, -1, 663, 664, -1, - 666, -1, -1, -1, -1, 671, 672, 673, -1, 675, - -1, -1, -1, -1, -1, -1, 682, 683, -1, -1, - -1, -1, -1, -1, -1, -1, 696, -1, -1, -1, - -1, -1, -1, -1, 700, 84, 85, 86, 87, 88, - 89, 90, 91, 92, 93, -1, 95, -1, -1, -1, - -1, 100, 101, -1, 103, 104, 105, -1, 728, 729, - 109, -1, 732, 733, 734, -1, 736, 737, -1, -1, - -1, -1, -1, -1, -1, 745, -1, -1, 748, 749, + 3, 5, 263, 6, 399, 7, 401, 1282, 4, 538, + 539, 4, 6, 4, 3, 1114, 1118, 4, 4, 4, + 4, 416, 4, 6, 5, 5, 5, 1723, 118, 4, + 6, 90, 6, 6, 4, 4, 278, 4, 4, 4, + 4, 215, 0, 5, 5, 5, 220, 6, 290, 5, + 5, 5, 211, 6, 6, 6, 201, 202, 6, 62, + 4, 201, 202, 109, 13, 7, 4, 70, 6, 211, + 201, 202, 75, 218, 6, 212, 218, 123, 218, 6, + 217, 201, 202, 86, 153, 131, 132, 133, 219, 6, + 212, 137, 138, 139, 140, 217, 7, 217, 212, 219, + 169, 170, 211, 217, 213, 201, 202, 349, 6, 351, + 7, 220, 201, 202, 356, 201, 202, 211, 7, 432, + 84, 434, 218, 436, 88, 201, 202, 7, 217, 211, + 219, 217, 211, 219, 7, 211, 218, 6, 102, 201, + 202, 211, 218, 6, 51, 52, 84, 54, 218, 7, + 201, 202, 156, 6, 86, 217, 88, 212, 143, 144, + 145, 146, 217, 201, 202, 141, 217, 141, 6, 153, + 154, 1867, 1868, 219, 6, 156, 156, 156, 164, 217, + 7, 168, 141, 201, 202, 208, 209, 6, 153, 154, + 141, 194, 215, 201, 202, 7, 187, 87, 211, 217, + 90, 187, 7, 206, 207, 218, 195, 201, 202, 217, + 6, 214, 187, 215, 218, 6, 7, 213, 211, 222, + 213, 224, 215, 213, 220, 198, 229, 220, 211, 211, + 233, 1330, 218, 236, 219, 218, 218, 240, 241, 242, + 243, 244, 211, 218, 1519, 248, 249, 250, 218, 218, + 198, 218, 218, 256, 257, 258, 218, 218, 218, 262, + 263, 8, 218, 218, 218, 218, 218, 211, 213, 211, + 3, 213, 211, 6, 201, 202, 211, 188, 189, 190, + 191, 284, 285, 286, 201, 202, 7, 529, 530, 221, + 211, 188, 189, 190, 191, 298, 299, 208, 209, 188, + 189, 190, 191, 211, 215, 201, 202, 549, 188, 189, + 190, 191, 315, 8, 317, 188, 189, 190, 191, 208, + 209, 217, 94, 636, 211, 638, 213, 201, 202, 62, + 188, 189, 190, 191, 211, 208, 209, 206, 207, 1614, + 208, 209, 75, 217, 208, 209, 436, 217, 6, 219, + 208, 209, 355, 86, 218, 358, 359, 201, 202, 266, + 267, 188, 189, 190, 191, 212, 211, 274, 371, 212, + 217, 278, 614, 217, 217, 244, 188, 189, 190, 191, + 90, 208, 209, 188, 189, 190, 191, 629, 90, 87, + 92, 704, 90, 201, 202, 708, 399, 400, 401, 402, + 403, 404, 405, 406, 407, 408, 409, 410, 411, 217, + 413, 414, 415, 416, 417, 201, 202, 90, 421, 422, + 423, 424, 425, 426, 218, 428, 208, 209, 201, 202, + 211, 217, 364, 203, 204, 205, 218, 211, 214, 213, + 210, 217, 445, 1718, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, 201, + 202, 194, 1737, 210, 90, 208, 209, 188, 189, 190, + 191, 214, 219, 206, 207, 217, 217, 4, 219, 84, + 483, 214, 87, 208, 209, 90, 355, 419, 84, 222, + 217, 87, 219, 218, 90, 427, 92, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, 244, 201, 202, 211, 210, 201, 202, 212, 84, + 523, 524, 87, 217, 219, 90, 214, 6, 217, 217, + 263, 400, 217, 402, 403, 404, 405, 406, 407, 408, + 90, 410, 411, 92, 413, 414, 415, 211, 417, 538, + 539, 87, 421, 422, 423, 424, 425, 218, 648, 241, + 242, 243, 565, 566, 567, 218, 248, 249, 250, 201, + 202, 6, 7, 815, 577, 578, 201, 202, 581, 201, + 202, 513, 514, 515, 516, 217, 113, 114, 115, 116, + 201, 202, 217, 596, 90, 217, 201, 202, 125, 87, + 603, 128, 284, 285, 201, 202, 211, 920, 201, 202, + 8, 924, 4, 218, 704, 87, 298, 299, 708, 622, + 217, 212, 355, 214, 217, 201, 202, 201, 202, 536, + 537, 109, 90, 201, 202, 4, 211, 544, 641, 4, + 1915, 217, 211, 217, 213, 123, 1748, 4, 1750, 217, + 1752, 220, 211, 131, 132, 133, 211, 211, 213, 137, + 138, 139, 140, 211, 211, 220, 399, 400, 401, 402, + 403, 404, 405, 406, 407, 408, 6, 410, 411, 213, + 413, 414, 415, 416, 417, 6, 208, 209, 421, 422, + 423, 424, 425, 426, 211, 428, 218, 208, 209, 213, + 703, 208, 209, 212, 707, 214, 218, 218, 90, 218, + 92, 218, 581, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, 1826, 113, 114, + 1829, 210, 7, 1832, 119, 211, 211, 211, 213, 213, + 2015, 219, 211, 746, 1005, 220, 220, 750, 211, 211, + 753, 109, 211, 756, 211, 758, 213, 211, 215, 762, + 763, 218, 211, 220, 1077, 123, 1079, 857, 1081, 217, + 1083, 219, 211, 131, 132, 133, 217, 709, 219, 137, + 138, 139, 140, 84, 211, 788, 87, 87, 211, 90, + 90, 92, 92, 1895, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, 87, 812, + 213, 90, 210, 92, 212, 201, 202, 203, 204, 205, + 1215, 1216, 218, 218, 210, 1220, 1221, 211, 760, 213, + 920, 215, 6, 211, 924, 213, 220, 215, 218, 6, + 930, 931, 220, 1942, 212, 578, 214, 211, 581, 212, + 218, 214, 113, 114, 217, 211, 211, 860, 119, 862, + 211, 219, 865, 1965, 212, 1967, 214, 1969, 217, 217, + 219, 218, 217, 1975, 219, 878, 211, 880, 212, 882, + 214, 884, 211, 217, 753, 212, 889, 214, 211, 758, + 217, 894, 212, 211, 214, 1994, 211, 217, 1997, 218, + 212, 2000, 214, 211, 2003, 217, 217, 217, 219, 219, + 1223, 818, 915, 217, 4, 219, 919, 211, 825, 2021, + 923, 2023, 218, 2025, 831, 212, 1239, 214, 931, 217, + 217, 219, 6, 217, 211, 219, 1026, 1027, 90, 217, + 92, 219, 2041, 217, 2043, 219, 2045, 217, 217, 219, + 219, 218, 217, 956, 219, 217, 211, 219, 961, 6, + 217, 211, 219, 966, 967, 968, 969, 1496, 1497, 1230, + 217, 217, 219, 219, 218, 217, 979, 219, 981, 217, + 217, 219, 219, 218, 1379, 1380, 217, 109, 219, 1384, + 1385, 197, 198, 199, 200, 201, 202, 203, 204, 205, + 218, 123, 1005, 213, 210, 1008, 1009, 1010, 1011, 131, + 132, 133, 220, 6, 109, 137, 138, 139, 140, 217, + 753, 219, 217, 756, 219, 758, 6, 217, 123, 219, + 1033, 217, 217, 219, 219, 218, 131, 132, 133, 218, + 4, 5, 137, 138, 139, 140, 1136, 1137, 218, 1052, + 1053, 217, 1055, 219, 1057, 1058, 213, 213, 1061, 1062, + 6, 6, 931, 1066, 217, 213, 219, 217, 156, 219, + 1160, 1161, 4, 217, 6, 219, 1389, 217, 220, 219, + 44, 45, 46, 47, 48, 49, 50, 51, 52, 217, + 6, 219, 961, 57, 58, 59, 60, 219, 967, 968, + 969, 65, 66, 67, 218, 217, 70, 219, 6, 217, + 979, 219, 981, 217, 217, 219, 219, 81, 192, 193, + 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, + 204, 205, 218, 1223, 1376, 217, 210, 219, 4, 5, + 217, 1048, 219, 6, 6, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, 218, + 1163, 1164, 1165, 210, 1033, 6, 217, 6, 219, 1430, + 218, 217, 217, 219, 219, 1178, 213, 4, 44, 45, + 46, 47, 48, 49, 50, 51, 52, 217, 217, 219, + 219, 57, 58, 59, 60, 1102, 1103, 1104, 931, 65, + 66, 67, 109, 217, 70, 219, 210, 215, 172, 173, + 174, 7, 1215, 1216, 1743, 81, 123, 1220, 1221, 217, + 184, 219, 186, 187, 131, 132, 133, 1230, 961, 218, + 137, 138, 139, 140, 967, 968, 969, 219, 217, 109, + 219, 1244, 217, 217, 208, 209, 979, 217, 981, 219, + 217, 215, 219, 123, 218, 217, 217, 219, 219, 7, + 6, 131, 132, 133, 6, 1268, 6, 137, 138, 139, + 140, 1274, 1005, 217, 217, 219, 219, 1280, 6, 1282, + 1283, 1284, 217, 212, 219, 1288, 1289, 217, 1291, 219, + 1293, 217, 1295, 219, 1297, 1298, 1299, 7, 7, 6, + 1033, 1391, 6, 6, 1699, 6, 172, 173, 174, 212, + 218, 7, 219, 1316, 6, 62, 7, 6, 184, 6, + 186, 187, 6, 4, 62, 62, 1258, 62, 1331, 153, + 12, 13, 1335, 218, 1337, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, 212, 214, 214, 219, + 210, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, 212, 6, 6, 212, 210, + 212, 217, 217, 44, 217, 44, 1379, 1380, 212, 217, + 217, 1384, 1385, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, 1398, 217, 217, 212, 210, + 212, 1404, 84, 85, 86, 87, 88, 89, 90, 91, + 92, 93, 214, 95, 44, 44, 6, 4, 100, 101, + 102, 103, 1329, 105, 106, 107, 4, 1430, 7, 111, + 6, 6, 6, 1436, 6, 156, 7, 1527, 7, 7, + 156, 7, 1374, 1446, 7, 156, 1449, 7, 1709, 7, + 218, 6, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, 148, 149, 150, 7, + 210, 4, 217, 212, 6, 219, 212, 6, 212, 7, + 212, 212, 1215, 1216, 217, 1488, 1489, 1220, 1221, 215, + 1422, 12, 13, 217, 217, 214, 218, 1230, 7, 219, + 218, 218, 7, 218, 6, 219, 218, 1496, 1497, 215, + 6, 6, 6, 44, 1517, 1757, 1519, 1449, 1521, 44, + 109, 44, 44, 6, 6, 213, 7, 6, 211, 1398, + 6, 211, 218, 198, 123, 1404, 7, 219, 1541, 7, + 92, 7, 131, 132, 133, 7, 218, 1550, 137, 138, + 139, 140, 1459, 7, 7, 6, 218, 1560, 7, 7, + 1492, 7, 1565, 84, 85, 86, 87, 88, 89, 90, + 91, 92, 93, 7, 95, 109, 7, 1446, 7, 100, + 101, 102, 103, 4, 105, 106, 107, 4, 1591, 123, + 111, 1498, 6, 1500, 109, 1502, 211, 131, 132, 133, + 7, 6, 218, 137, 138, 139, 140, 7, 123, 7, + 1517, 1614, 7, 1520, 1521, 1547, 131, 132, 133, 6, + 6, 6, 137, 138, 139, 140, 7, 148, 149, 150, + 219, 90, 6, 1565, 1566, 1567, 6, 4, 4, 219, + 4, 218, 4, 6, 217, 109, 1379, 1380, 1651, 6, + 6, 1384, 1385, 1656, 1896, 6, 21, 22, 6, 123, + 6, 217, 212, 217, 212, 1398, 215, 131, 132, 133, + 6, 1404, 7, 137, 138, 139, 140, 1680, 218, 215, + 6, 211, 6, 6, 6, 219, 212, 214, 6, 102, + 6, 6, 6, 1696, 218, 6, 1699, 1430, 219, 218, + 218, 218, 218, 5, 219, 4, 1709, 218, 6, 6, + 218, 7, 218, 1446, 218, 1718, 213, 6, 109, 6, + 6, 4, 1725, 1726, 212, 218, 218, 218, 214, 6, + 6, 6, 123, 152, 1737, 6, 6, 1740, 4, 217, + 131, 132, 133, 6, 12, 13, 137, 138, 139, 140, + 6, 1683, 117, 1756, 1743, 219, 4, 6, 1761, 6, + 6, 126, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, 6, 6, 4, 154, + 155, 156, 157, 7, 159, 160, 161, 162, 163, 164, + 7, 6, 167, 6, 6, 6, 6, 6, 173, 174, + 5, 156, 1815, 6, 179, 180, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, 218, 95, 219, 6, + 6, 1834, 100, 101, 102, 103, 6, 105, 106, 107, + 1747, 6, 1749, 111, 1751, 6, 217, 6, 6, 6, + 6, 6, 1759, 6, 1857, 1762, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + 6, 6, 6, 6, 210, 109, 217, 6, 6, 212, + 148, 149, 150, 6, 6, 6, 6, 6, 6, 123, + 7, 6, 6, 218, 1897, 215, 1899, 131, 132, 133, + 5, 218, 6, 137, 138, 139, 140, 1814, 218, 88, + 6, 1818, 1915, 218, 6, 218, 6, 6, 219, 219, + 7, 151, 6, 218, 1856, 218, 218, 218, 6, 219, + 6, 219, 6, 6, 6, 6, 154, 6, 303, 6, + 6, 306, 307, 308, 309, 6, 6, 6, 6, 109, + 6, 219, 212, 218, 6, 219, 7, 6, 6, 218, + 325, 218, 6, 123, 218, 1872, 1699, 218, 6, 1876, + 109, 131, 132, 133, 1977, 6, 1709, 137, 138, 139, + 140, 218, 6, 6, 1987, 219, 6, 6, 6, 6, + 6, 6, 1899, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, 6, 6, 219, + 6, 210, 2015, 211, 218, 6, 6, 6, 6, 6, + 212, 1953, 218, 6, 218, 6, 6, 218, 218, 6, + 2033, 218, 2035, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, 218, 6, 218, + 218, 210, 6, 6, 6, 6, 1963, 1964, 6, 219, + 6, 6, 2065, 94, 3, 4, 6, 1860, 6, 6, + 9, 10, 11, 6, 439, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, + 29, 30, 31, 32, 33, 34, 35, 36, 6, 1253, + 479, 1724, 1267, 3, 3, 1549, 3, 511, 1739, 1426, + -1, -1, -1, -1, 53, 54, 55, 56, 1987, -1, + -1, -1, 61, -1, 1857, -1, -1, 6, -1, -1, + -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, + -1, 80, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 188, 189, 190, + 191, 192, -1, -1, 2033, -1, 2035, -1, -1, -1, + -1, -1, -1, -1, 205, -1, -1, -1, 209, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 762, -1, 143, 144, 145, -1, -1, -1, - -1, 771, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 229, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 796, -1, -1, 247, - 248, 249, -1, 803, 804, 253, -1, -1, -1, 809, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 6, - -1, -1, 822, -1, -1, 825, -1, -1, -1, 277, - -1, -1, -1, -1, -1, 214, -1, -1, -1, -1, - -1, -1, -1, -1, 844, -1, 846, -1, -1, 849, - -1, -1, -1, -1, -1, -1, -1, -1, 854, -1, - -1, -1, 862, -1, 864, -1, 866, -1, 868, -1, - -1, -1, -1, 873, -1, -1, -1, -1, 878, -1, - -1, -1, -1, -1, 884, -1, 886, 887, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 347, - 348, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 360, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 926, -1, -1, -1, - -1, -1, -1, -1, 934, 935, 936, -1, 938, -1, - -1, -1, -1, -1, -1, -1, 946, 12, 13, -1, - 398, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 960, -1, -1, -1, -1, 965, -1, -1, -1, -1, - -1, -1, -1, -1, 974, -1, -1, -1, -1, -1, - 980, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 990, 991, 992, 993, -1, -1, 996, -1, -1, 995, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, 12, 13, -1, 205, 84, - 85, 86, 87, 88, 89, 90, 91, 92, 93, -1, - 95, -1, 1028, 1029, -1, 100, 101, -1, 103, 104, - 105, -1, -1, -1, 109, -1, -1, -1, 1048, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 1058, -1, - 1060, -1, 1062, -1, 1064, 6, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 143, 144, - 145, -1, -1, -1, -1, -1, 1086, 84, 85, 86, - 87, 88, 89, 90, 91, 92, 93, -1, 95, -1, - -1, -1, -1, 100, 101, -1, 103, 104, 105, -1, - -1, -1, 109, -1, -1, 1115, -1, -1, -1, -1, - -1, -1, -1, -1, 1124, 1125, -1, 1127, 1128, -1, - 1130, 1131, 1132, -1, -1, -1, -1, -1, 1138, -1, - -1, -1, -1, -1, -1, -1, 143, 144, 145, 214, - 8, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 1161, -1, -1, -1, -1, 1166, -1, -1, -1, - -1, -1, -1, 1169, -1, -1, -1, -1, -1, 1175, - 1176, 1177, 1178, 1179, -1, 1181, -1, 1183, 1184, -1, - 1186, 1187, -1, 6, 1190, 1191, 1192, -1, -1, -1, - -1, 1197, -1, -1, -1, -1, -1, -1, 1208, -1, - -1, -1, -1, -1, -1, -1, -1, 214, -1, 1219, - 1220, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 1234, 1235, 6, -1, -1, -1, - -1, 689, -1, -1, -1, 693, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, -1, 217, 205, -1, -1, -1, 222, -1, - -1, -1, 226, -1, -1, -1, -1, -1, -1, 233, - -1, 1281, 1282, 1283, -1, -1, -1, -1, -1, -1, - -1, -1, 1292, -1, 1294, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 1305, -1, -1, -1, -1, - -1, -1, -1, 1313, -1, -1, -1, -1, 1318, -1, - -1, -1, -1, -1, 772, -1, -1, 1323, -1, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, 1339, 1344, 1345, 1346, 205, -1, -1, - -1, -1, 306, -1, 308, -1, -1, 1353, -1, -1, - 6, -1, 1358, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 1373, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, -1, 6, - -1, -1, 205, -1, 1390, 1391, -1, 1397, 1394, 1395, + -1, -1, 223, 224, 225, 226, 2065, 228, 229, 230, + 231, -1, 233, 234, 235, 6, -1, -1, -1, 240, + -1, -1, -1, -1, 245, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, 260, + -1, -1, 171, 210, -1, -1, 175, -1, 269, 270, + 179, 180, 181, 182, 183, -1, -1, 278, 187, 6, + -1, -1, -1, -1, 1987, -1, -1, -1, -1, -1, + -1, -1, 201, 202, -1, -1, -1, 206, -1, -1, + -1, -1, 211, -1, -1, -1, -1, 216, -1, 218, + -1, -1, -1, -1, 315, 316, 317, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 328, 329, 330, + 2033, 332, 2035, -1, -1, 336, 337, 338, -1, -1, + 341, -1, -1, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, 360, + 361, 210, 2065, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 374, 375, -1, 377, 378, 379, 380, + 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, + 391, 392, 393, 394, 395, 396, 397, 398, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 412, -1, -1, -1, -1, -1, 418, -1, 420, + 6, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, 444, 445, -1, 447, 448, 449, 450, + 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, + 461, -1, -1, 464, 465, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, 483, 210, -1, -1, -1, -1, 489, -1, + -1, -1, -1, 494, -1, -1, -1, -1, 499, 500, + -1, -1, -1, -1, -1, -1, 507, 508, 6, -1, + -1, 512, 513, 514, 515, 516, 517, -1, 519, -1, + 521, -1, 523, 524, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 1411, -1, -1, -1, -1, 1416, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, 1431, 1432, -1, -1, 205, -1, -1, 1438, 1439, - -1, -1, -1, 1443, -1, -1, -1, -1, -1, 897, - -1, 1451, -1, 901, -1, -1, -1, 905, -1, -1, - -1, 1461, 1462, 1463, -1, 1465, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 1477, -1, -1, - 434, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 1490, -1, -1, -1, 1494, -1, -1, 1497, -1, -1, - 948, -1, -1, -1, 1504, 1505, 1506, 1507, 1508, 1509, - 1510, -1, -1, -1, -1, -1, -1, -1, 472, -1, - 1520, -1, -1, -1, -1, -1, -1, -1, -1, 1525, - 1526, -1, -1, 1529, 1530, -1, -1, -1, 1538, 1535, - 1536, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, 510, 511, -1, 205, - -1, 1561, 1562, -1, -1, 6, -1, -1, -1, 1569, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, 1034, 1035, 205, 1037, - -1, 1039, 1040, -1, -1, 1043, 1044, -1, 552, 553, - 554, -1, -1, -1, -1, -1, -1, 1607, -1, -1, - 564, 565, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 1625, -1, 1627, -1, 583, - -1, -1, -1, -1, -1, -1, 590, -1, -1, -1, - -1, -1, 1638, 1639, -1, -1, 1646, -1, 1648, -1, - -1, 1651, -1, -1, -1, 609, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 1666, -1, -1, -1, - -1, -1, -1, 627, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 1684, -1, -1, -1, -1, 1689, - -1, -1, -1, -1, -1, 1143, 1144, 1145, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 1155, -1, 1709, - -1, -1, -1, -1, -1, -1, 1716, -1, 1718, -1, - 1720, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 1730, -1, -1, -1, -1, -1, 1736, 1737, 1738, 1739, - 1740, 1741, -1, -1, -1, -1, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, 1762, 1763, 205, -1, -1, 1767, -1, -1, - -1, -1, -1, 1221, -1, -1, -1, -1, 732, 1779, - -1, -1, 736, -1, -1, -1, -1, -1, -1, -1, - 1790, -1, -1, -1, 748, 749, -1, 1245, -1, -1, - -1, -1, -1, 1251, -1, -1, -1, -1, -1, 1257, - -1, 1259, 1260, -1, -1, -1, 1264, 1265, -1, 1267, - -1, 1269, 1822, 1271, -1, 1273, 1274, 1275, 1828, -1, - -1, -1, -1, -1, -1, -1, -1, 1837, -1, -1, - -1, -1, 796, -1, 1292, -1, -1, -1, -1, -1, - -1, 1851, -1, -1, 1854, -1, -1, 1857, -1, 1307, - -1, 1861, -1, 1311, -1, 1865, -1, 1867, 1868, 1869, - 1870, 1871, 1872, -1, -1, -1, -1, -1, -1, -1, - -1, 1881, -1, -1, 1884, -1, -1, -1, -1, -1, - 844, -1, 846, -1, -1, 849, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 862, -1, - 864, -1, 866, -1, 868, 7, 8, -1, -1, 873, - -1, -1, -1, -1, 878, -1, -1, -1, -1, -1, - 1930, 12, 13, -1, -1, -1, -1, 8, -1, -1, - -1, -1, -1, -1, -1, 1945, -1, 1947, 1948, 1949, - 1950, 1951, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 1410, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 1423, -1, -1, -1, 1975, - -1, -1, -1, -1, 938, -1, 1986, 1987, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 1997, 1998, 1999, - 2000, -1, -1, 84, 85, 86, 87, 88, 89, 90, + 541, 542, 543, 544, 545, 546, -1, -1, -1, 550, + 551, 552, 553, 554, -1, -1, -1, 558, -1, 560, + 561, -1, -1, -1, 565, 566, 567, -1, -1, 570, + 571, 572, 573, 574, -1, -1, 577, 578, 579, 580, + -1, 582, -1, -1, 585, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, + -1, 602, 603, -1, 605, 606, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, 622, -1, -1, 210, -1, 627, 628, -1, 630, + 631, -1, -1, -1, -1, -1, -1, -1, -1, 640, + 641, 12, 13, -1, 645, -1, -1, -1, -1, -1, + -1, -1, -1, 988, 989, -1, -1, -1, -1, 994, + 995, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, 224, -1, -1, -1, 210, + 229, -1, -1, -1, 233, -1, 217, -1, 219, -1, + -1, 240, -1, -1, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, -1, 710, + -1, -1, 210, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, -1, 95, -1, -1, -1, -1, 100, - 101, -1, 103, 104, 105, -1, -1, -1, 109, -1, - -1, -1, -1, -1, -1, -1, 990, 991, 992, 993, - -1, -1, -1, -1, 1492, -1, -1, -1, -1, -1, - 21, 22, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 143, 144, 145, -1, 1514, -1, -1, -1, - -1, -1, -1, -1, 1522, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 1532, -1, -1, -1, -1, 1537, - -1, -1, -1, -1, 1048, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, 1563, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, 12, 13, 214, 205, -1, -1, -1, 1586, 110, - -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, - 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, - 141, 142, 143, -1, 1622, -1, 147, 148, 149, 150, - -1, 152, 153, 154, 155, 156, 157, -1, -1, 160, - -1, -1, -1, -1, -1, 166, 167, -1, -1, -1, - -1, 172, 173, 84, 85, 86, 87, 88, 89, 90, - 91, 92, 93, -1, 95, 12, 13, -1, -1, 100, - 101, -1, 103, 104, 105, -1, -1, -1, 109, -1, + 101, 102, 103, -1, 105, 106, 107, -1, -1, -1, + 111, 742, 743, -1, -1, 746, 747, 748, -1, 750, + 751, -1, -1, -1, -1, -1, -1, -1, 759, -1, + -1, 762, 763, -1, -1, -1, 315, -1, 317, -1, + -1, -1, -1, -1, -1, 776, -1, 148, 149, 150, + -1, -1, -1, -1, -1, -1, 787, -1, -1, -1, + -1, -1, -1, -1, -1, 236, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, 812, -1, -1, 210, 256, 257, 258, 819, 820, + -1, 262, -1, 219, 825, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 838, -1, -1, + 841, -1, -1, -1, -1, 286, 1181, 1182, 219, -1, + -1, 1186, 1187, -1, -1, -1, -1, -1, -1, 860, + -1, 862, -1, -1, 865, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 878, -1, 880, + -1, 882, -1, 884, -1, -1, -1, -1, 889, -1, + -1, -1, -1, 894, -1, -1, 445, -1, -1, 900, + -1, 902, 903, -1, -1, -1, -1, -1, -1, -1, + -1, 912, -1, -1, -1, -1, -1, 358, 359, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 1688, -1, -1, -1, -1, -1, -1, 1695, 1696, -1, - -1, -1, -1, -1, -1, -1, -1, 8, 1706, -1, - -1, -1, 143, 144, 145, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 1725, -1, 8, - -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, - 87, 88, 89, 90, 91, 92, 93, -1, 95, 8, - -1, -1, -1, 100, 101, -1, 103, 104, 105, -1, - -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 294, -1, -1, 297, 298, 299, 300, - -1, -1, -1, 214, -1, 1783, -1, -1, -1, -1, - -1, -1, -1, -1, 315, -1, 143, 144, 145, 3, - 4, 5, -1, -1, 1802, 9, 10, 11, -1, 1313, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, -1, -1, -1, -1, -1, -1, -1, - 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, - 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, - -1, 65, 66, 67, -1, -1, 70, 214, 72, 73, - 74, -1, -1, -1, -1, -1, 80, 81, -1, -1, - -1, -1, -1, -1, -1, 1883, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, -1, -1, 205, -1, -1, 428, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, -1, -1, -1, -1, 205, -1, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, -1, -1, -1, -1, 205, -1, -1, -1, - -1, -1, -1, -1, -1, 159, -1, 1461, 1462, -1, - -1, -1, 166, 167, 168, 169, 170, -1, -1, -1, - 174, 175, 176, 177, 178, 179, -1, 181, 182, -1, - -1, -1, -1, -1, -1, 1983, 1490, -1, -1, -1, - 1494, -1, 196, 197, -1, -1, -1, 201, -1, -1, - -1, -1, 206, -1, 208, -1, 210, 211, -1, 213, - -1, 215, -1, -1, -1, -1, -1, 3, 4, -1, - -1, -1, -1, 9, 10, 11, -1, -1, 14, 15, + 371, -1, -1, -1, 483, -1, -1, -1, -1, -1, + -1, -1, -1, 944, -1, -1, -1, -1, -1, -1, + -1, 952, 953, 954, -1, 956, -1, -1, -1, -1, + -1, -1, -1, 964, -1, -1, -1, -1, 409, -1, + -1, -1, -1, -1, 523, 524, -1, 978, -1, -1, + -1, -1, 983, -1, -1, -1, -1, -1, -1, -1, + -1, 992, -1, -1, -1, -1, -1, 998, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 1008, 1009, 1010, + 1011, -1, -1, 1014, -1, -1, 565, 566, 567, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 577, 578, + -1, -1, -1, -1, -1, -1, 12, 13, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, + -1, -1, -1, -1, 603, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 1066, -1, -1, -1, -1, + -1, -1, -1, 622, -1, -1, -1, 1078, -1, 1080, + -1, 1082, 6, 1084, -1, -1, -1, 12, 13, -1, + -1, -1, 641, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 1106, -1, -1, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, 95, + -1, -1, -1, -1, 100, 101, 102, 103, -1, 105, + 106, 107, -1, -1, 1135, 111, -1, -1, -1, -1, + -1, -1, -1, 1144, 1145, -1, 1147, 1148, -1, 1150, + 1151, 1152, -1, -1, -1, -1, -1, 1158, -1, 84, + 85, 86, 87, 88, 89, 90, 91, 92, 93, -1, + 95, -1, 148, 149, 150, 100, 101, 102, 103, -1, + 105, 106, 107, 1184, -1, -1, 111, -1, 1189, -1, + -1, -1, -1, -1, -1, -1, -1, 746, -1, -1, + -1, 750, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 762, 763, -1, -1, -1, -1, -1, + -1, -1, -1, 148, 149, 150, -1, -1, -1, -1, + 1231, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 1242, 1243, 219, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 1257, 1258, -1, -1, + -1, -1, 703, 812, -1, -1, 707, -1, 192, 193, + 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, + 204, 205, -1, 12, 13, -1, 210, -1, -1, -1, + -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 1305, 1306, 1307, -1, -1, -1, + -1, 860, -1, 862, -1, 1316, 865, 1318, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 1329, 878, + -1, 880, -1, 882, -1, 884, 1337, -1, -1, -1, + 889, 1342, -1, -1, -1, 894, -1, 788, -1, -1, + -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, + 89, 90, 91, 92, 93, 6, 95, 1368, 1369, 1370, + -1, 100, 101, 102, 103, -1, 105, 106, 107, -1, + -1, -1, 111, -1, -1, 224, -1, -1, -1, -1, + 229, -1, -1, -1, 233, -1, -1, -1, 1399, -1, + -1, 240, -1, -1, -1, -1, -1, 956, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 148, + 149, 150, 1423, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 1437, -1, -1, -1, + -1, 1442, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 1457, 1458, -1, 1008, + 1009, 1010, 1011, 1464, 1465, -1, -1, -1, 1469, -1, + -1, -1, -1, -1, 915, -1, -1, 1478, 919, -1, + -1, -1, 923, -1, -1, -1, -1, 1488, 1489, 1490, + 219, 1492, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 1504, 12, 13, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 1517, 1066, -1, -1, + 1521, -1, -1, 1524, -1, 966, -1, -1, -1, -1, + 1531, 1532, 1533, 1534, 1535, 1536, 1537, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 1547, -1, -1, -1, + -1, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, 1566, -1, -1, -1, 210, + -1, 12, 13, -1, -1, -1, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, -1, 95, 1589, 1590, + -1, -1, 100, 101, 102, 103, 1597, 105, 106, 107, + -1, -1, -1, 111, -1, -1, 445, -1, -1, -1, + -1, 1052, 1053, -1, 1055, -1, 1057, 1058, -1, -1, + 1061, 1062, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 1636, -1, -1, -1, -1, + 148, 149, 150, 84, 85, 86, 87, 88, 89, 90, + 91, 92, 93, 1654, 95, 1656, -1, -1, -1, 100, + 101, 102, 103, -1, 105, 106, 107, -1, -1, -1, + 111, -1, -1, -1, 1675, -1, 1677, -1, -1, 1680, + -1, -1, -1, -1, 523, 524, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 1696, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 148, 149, 150, + -1, 219, -1, 1714, -1, -1, -1, -1, 1719, -1, + -1, -1, 1163, 1164, 1165, -1, 565, 566, 567, -1, + 6, -1, -1, -1, -1, -1, -1, 1178, -1, 1740, + -1, -1, -1, -1, -1, -1, 1747, -1, 1749, -1, + 1751, -1, -1, -1, -1, -1, -1, 596, -1, -1, + 1761, -1, -1, -1, -1, -1, 1767, 1768, 1769, 1770, + 1771, 1772, -1, -1, -1, -1, -1, -1, 219, -1, + -1, -1, -1, 622, -1, -1, -1, -1, 1337, -1, + -1, -1, -1, 1794, 1795, -1, -1, -1, 1799, -1, + -1, -1, 641, 1244, -1, -1, -1, -1, -1, -1, + 1811, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 1822, -1, -1, -1, -1, -1, 1268, -1, -1, + -1, -1, -1, 1274, -1, -1, -1, -1, -1, 1280, + -1, 1282, 1283, 1284, -1, -1, -1, 1288, 1289, -1, + 1291, -1, 1293, 1854, 1295, -1, 1297, 1298, 1299, 1860, + -1, -1, -1, -1, -1, -1, -1, -1, 1869, -1, + -1, -1, -1, -1, -1, 1316, 12, 13, -1, -1, + -1, -1, 1883, -1, -1, 1886, -1, -1, 1889, -1, + 1331, -1, 1893, -1, 1335, -1, 1897, -1, 1899, 1900, + 1901, 1902, 1903, 1904, -1, -1, -1, 746, -1, -1, + -1, 750, 1913, -1, -1, 1916, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, -1, -1, -1, 1488, + 1489, -1, -1, -1, -1, -1, -1, 6, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, -1, 95, + -1, 1962, -1, -1, 100, 101, 102, 103, 1517, 105, + 106, 107, 1521, 812, -1, 111, 1977, -1, 1979, 1980, + 1981, 1982, 1983, -1, -1, -1, -1, -1, -1, 7, + 8, -1, -1, -1, -1, 1436, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 1449, -1, + 7, -1, 148, 149, 150, 607, -1, 2018, 2019, -1, + -1, 860, -1, 862, -1, -1, 865, -1, 2029, 2030, + 2031, 2032, -1, -1, -1, -1, -1, -1, -1, 878, + -1, 880, -1, 882, -1, 884, -1, -1, -1, -1, + 889, -1, -1, -1, -1, 894, -1, 649, 650, 651, + 652, 653, 654, 655, 656, 657, 658, 659, -1, 661, + 662, 663, 664, 665, 666, 667, -1, -1, 1519, 671, + 672, 673, -1, 219, -1, 677, 678, -1, 680, -1, + -1, -1, -1, 685, 686, 687, -1, 689, -1, -1, + 1541, -1, -1, -1, 696, 697, -1, 1656, -1, 1550, + -1, -1, -1, -1, -1, -1, -1, 956, -1, 1560, + -1, -1, 714, -1, 1565, -1, -1, -1, -1, -1, + -1, 1680, 8, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, 1696, -1, -1, + 1591, 210, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 8, -1, 1008, + 1009, 1010, 1011, 1614, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, -1, -1, + -1, 1740, 210, 8, -1, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + 1651, -1, 1761, 210, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 1066, -1, -1, + -1, -1, -1, -1, -1, -1, 3, 4, -1, -1, + -1, -1, 9, 10, 11, -1, -1, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, + -1, -1, -1, -1, -1, -1, -1, 1718, 870, -1, + -1, -1, -1, -1, 1725, 1726, 53, 54, 55, 56, + -1, -1, -1, -1, 61, -1, 1737, -1, -1, -1, + -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, + -1, -1, -1, 80, -1, 1756, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 1897, -1, + 1899, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, 8, -1, -1, -1, 210, + -1, -1, -1, -1, 1815, -1, -1, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, 8, -1, 1834, -1, 210, -1, -1, -1, -1, + -1, -1, -1, -1, 171, -1, -1, -1, 175, -1, + -1, -1, 179, 180, 181, 182, 183, -1, -1, -1, + 187, 1013, -1, -1, -1, -1, -1, -1, 1977, -1, + -1, -1, -1, -1, 201, 202, -1, -1, -1, 206, + -1, -1, -1, -1, 211, -1, -1, -1, -1, 216, + -1, 218, -1, -1, 1046, 1047, -1, -1, -1, -1, + -1, -1, -1, -1, 3, 4, 5, -1, -1, -1, + 9, 10, 11, -1, 1915, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, + 29, 30, 31, 32, 33, 34, 35, 36, 1337, -1, + -1, -1, -1, -1, -1, 44, 45, 46, 47, 48, + 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + 59, 60, 61, -1, -1, -1, 65, 66, 67, -1, + -1, 70, -1, 72, 73, 74, -1, -1, -1, -1, + -1, 80, 81, -1, -1, -1, -1, -1, -1, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 2015, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 1192, -1, -1, -1, -1, -1, 1198, 1199, 1200, 1201, + 1202, -1, 1204, -1, 1206, 1207, -1, 1209, 1210, -1, + -1, 1213, 1214, 1215, -1, 164, -1, -1, 1220, -1, + -1, -1, 171, 172, 173, 174, 175, -1, -1, -1, + 179, 180, 181, 182, 183, 184, -1, 186, 187, 1488, + 1489, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 201, 202, -1, -1, -1, 206, -1, -1, + -1, -1, 211, -1, 213, -1, 215, 216, -1, 218, + -1, 220, -1, 3, 4, -1, -1, -1, -1, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, 109, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, 1347, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, 1363, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, 1379, -1, -1, + -1, -1, 1384, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, 1416, 1417, -1, 210, 1420, 1421, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 1680, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 8, -1, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, -1, -1, -1, 216, -1, 218, 219, + -1, 1740, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, -1, 3, 4, -1, + 210, -1, 1761, 9, 10, 11, -1, 217, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 53, 54, 55, - 56, -1, -1, -1, -1, 61, 12, 13, -1, -1, + -1, 1553, 1554, -1, -1, 1557, 1558, 53, 54, 55, + 56, 1563, 1564, -1, -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, 90, -1, 92, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 104, -1, - -1, -1, -1, 1627, -1, 111, 112, 113, 114, 115, - -1, -1, -1, -1, 120, -1, -1, 123, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 1651, 84, 85, - 86, 87, 88, 89, 90, 91, 92, 93, -1, 95, - -1, -1, 1666, -1, 100, 101, -1, 103, 104, 105, - -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, - 166, -1, -1, -1, 170, 8, -1, -1, 174, 175, - 176, 177, 178, -1, -1, -1, 182, -1, -1, -1, - -1, -1, -1, -1, -1, 1709, -1, 143, 144, 145, - 196, 197, -1, -1, -1, 201, -1, -1, -1, -1, - 206, -1, -1, 3, 4, 211, 1730, 213, 214, 9, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 106, -1, -1, -1, -1, -1, -1, 113, 114, 115, + 116, 117, -1, -1, 120, 121, 122, -1, -1, 125, + -1, -1, 128, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 1897, -1, + 1899, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, 1667, 1668, -1, -1, 210, + -1, -1, -1, -1, -1, 171, -1, -1, -1, 175, + -1, -1, -1, 179, 180, 181, 182, 183, -1, -1, + -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 201, 202, -1, -1, -1, + 206, -1, -1, -1, -1, 211, -1, -1, -1, -1, + 216, -1, -1, 219, 3, 4, 5, -1, 1977, -1, + 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, + 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, + 39, 40, 41, -1, -1, 44, 45, 46, 47, 48, + 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + 59, 60, 61, 12, 13, -1, 65, 66, 67, -1, + -1, 70, -1, 72, 73, 74, -1, -1, -1, -1, + -1, 80, 81, -1, -1, 84, -1, -1, 87, -1, + -1, 90, -1, 92, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 106, -1, -1, + -1, -1, -1, -1, 113, 114, 115, 116, 117, -1, + -1, 120, 121, 122, -1, -1, 125, -1, -1, 128, + -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, + 89, 90, 91, 92, 93, -1, 95, -1, -1, -1, + -1, 100, 101, 102, 103, -1, 105, 106, 107, -1, + -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 171, 172, 173, 174, 175, 126, -1, -1, + 179, 180, 181, 182, 183, 184, -1, 186, 187, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 148, + 149, 150, 201, 202, -1, -1, -1, 206, -1, -1, + -1, -1, 211, -1, -1, -1, -1, 216, -1, 218, + 3, 4, 5, -1, -1, -1, 9, 10, 11, -1, + -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, + 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, -1, + -1, 44, 45, 46, 47, 48, 49, 50, 51, 52, + 53, 54, 55, 56, 57, 58, 59, 60, 61, 12, + 13, -1, 65, 66, 67, 2007, -1, 70, -1, 72, + 73, 74, -1, -1, -1, -1, -1, 80, 81, -1, + -1, 84, -1, -1, 87, -1, -1, 90, -1, 92, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 106, -1, -1, -1, -1, -1, -1, + 113, 114, 115, 116, 117, -1, -1, 120, 121, 122, + -1, -1, 125, -1, -1, 128, -1, -1, -1, -1, + -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, + 93, -1, 95, -1, -1, -1, -1, 100, 101, 102, + 103, -1, 105, 106, 107, -1, -1, -1, 111, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 171, 172, + 173, 174, 175, -1, -1, -1, 179, 180, 181, 182, + 183, 184, -1, 186, 187, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 148, 149, 150, 201, 202, + -1, -1, -1, 206, -1, -1, -1, -1, 211, -1, + 3, 4, 5, 216, -1, 218, 9, 10, 11, -1, + -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, + 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, -1, -1, -1, -1, -1, -1, + -1, 44, 45, 46, 47, 48, 49, 50, 51, 52, + 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, + -1, -1, 65, 66, 67, -1, -1, 70, -1, 72, + 73, 74, -1, 3, 4, 5, -1, 80, 81, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, -1, -1, -1, + -1, -1, -1, -1, 44, 45, 46, 47, 48, 49, + 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, -1, -1, -1, 65, 66, 67, -1, -1, + 70, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, 81, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 171, 172, + 173, 174, 175, -1, -1, -1, 179, 180, 181, 182, + 183, 184, -1, 186, 187, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 201, 202, + -1, -1, -1, 206, -1, -1, -1, -1, 211, -1, + -1, -1, -1, 216, -1, 218, -1, -1, -1, -1, + -1, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, 171, 172, 173, 174, 175, 217, -1, 219, 179, + 180, 181, 182, 183, 184, -1, 186, 187, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, 5, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, -1, -1, -1, + -1, -1, -1, -1, 44, 45, 46, 47, 48, 49, + 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, 12, 13, -1, 65, 66, 67, -1, -1, + 70, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, 81, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, -1, -1, -1, -1, + 210, -1, -1, -1, -1, -1, -1, 217, -1, 219, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, + 202, 203, 204, 205, -1, -1, -1, -1, 210, -1, + 212, -1, 214, -1, 84, 85, 86, 87, 88, 89, + 90, 91, 92, 93, -1, 95, -1, -1, -1, -1, + 100, 101, 102, 103, -1, 105, 106, 107, -1, -1, + -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 171, 172, 173, 174, 175, -1, -1, -1, 179, + 180, 181, 182, 183, 184, -1, 186, 187, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 148, 149, + 150, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, 5, 216, -1, 218, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 53, 54, 55, 56, -1, 214, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, 219, -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, - 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 104, -1, -1, -1, -1, -1, - -1, 111, 112, 113, 114, 115, -1, -1, -1, -1, - 120, -1, -1, 123, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, -1, -1, - -1, 1865, 205, 1867, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, -1, -1, - -1, -1, 205, -1, -1, -1, 166, -1, -1, -1, - 170, -1, -1, -1, 174, 175, 176, 177, 178, -1, - -1, -1, 182, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 196, 197, -1, -1, - -1, 201, -1, -1, -1, -1, 206, -1, -1, -1, - -1, 211, -1, -1, 214, -1, -1, -1, -1, -1, - -1, 1945, -1, -1, -1, -1, 3, 4, 5, 970, - 971, -1, 9, 10, 11, 976, 977, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, - 37, 38, 39, 40, 41, -1, -1, 44, 45, 46, - 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, - 57, 58, 59, 60, 61, -1, -1, -1, 65, 66, - 67, -1, -1, 70, -1, 72, 73, 74, -1, -1, - -1, -1, -1, 80, 81, -1, -1, 84, -1, -1, - 87, -1, -1, 90, -1, 92, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 104, -1, -1, - -1, -1, -1, -1, 111, 112, 113, 114, 115, -1, - -1, -1, -1, 120, -1, -1, 123, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, -1, 214, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 166, - 167, 168, 169, 170, -1, -1, -1, 174, 175, 176, - 177, 178, 179, -1, 181, 182, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 1158, 1159, 196, - 197, -1, 1163, 1164, 201, -1, -1, -1, -1, 206, - -1, 3, 4, 5, 211, -1, 213, 9, 10, 11, - -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, - 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, - -1, -1, -1, 65, 66, 67, -1, -1, 70, -1, - 72, 73, 74, -1, -1, -1, -1, -1, 80, 81, - -1, -1, 84, -1, -1, 87, -1, -1, 90, -1, - 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 104, -1, -1, -1, -1, -1, -1, 111, - 112, 113, 114, 115, -1, -1, -1, -1, 120, -1, - -1, 123, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, -1, -1, -1, -1, - 205, -1, -1, -1, -1, -1, -1, 212, -1, 214, + 90, -1, 92, -1, -1, -1, -1, -1, -1, 4, + 5, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 44, + 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, + -1, -1, 57, 58, 59, 60, -1, -1, -1, -1, + 65, 66, 67, -1, -1, 70, -1, -1, -1, -1, + -1, 171, -1, -1, -1, 175, 81, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 166, 167, 168, 169, 170, -1, - -1, -1, 174, 175, 176, 177, 178, 179, -1, 181, - 182, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 196, 197, -1, -1, -1, 201, - -1, -1, -1, -1, 206, -1, 3, 4, 5, 211, - -1, 213, 9, 10, 11, -1, -1, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, - -1, -1, -1, -1, -1, -1, -1, 44, 45, 46, - 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, - 57, 58, 59, 60, 61, -1, -1, -1, 65, 66, - 67, -1, -1, 70, -1, 72, 73, 74, -1, 3, - 4, 5, -1, 80, 81, 9, 10, 11, -1, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, -1, -1, -1, -1, -1, -1, -1, - 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, - 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, - -1, 65, 66, 67, -1, -1, 70, -1, 72, 73, - 74, -1, -1, -1, -1, -1, 80, 81, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 166, - 167, 168, 169, 170, -1, -1, -1, 174, 175, 176, - 177, 178, 179, -1, 181, 182, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 196, - 197, -1, -1, -1, 201, -1, -1, -1, -1, 206, - -1, -1, -1, -1, 211, -1, 213, -1, -1, -1, - -1, -1, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, -1, -1, -1, -1, - 205, -1, 166, 167, 168, 169, 170, 212, -1, 214, - 174, 175, 176, 177, 178, 179, -1, 181, 182, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, 5, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, 172, 173, 174, + -1, 61, -1, -1, -1, -1, -1, -1, -1, 184, + -1, 186, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, 5, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, -1, + 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, + -1, -1, -1, 57, 58, 59, 60, -1, -1, -1, + -1, 65, 66, 67, -1, -1, 70, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 81, -1, -1, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 196, 197, -1, -1, -1, 201, -1, -1, - -1, -1, 206, -1, 3, 4, 5, 211, -1, 213, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, -1, -1, - -1, -1, -1, -1, -1, 44, 45, 46, 47, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 12, 13, -1, 65, 66, 67, -1, - -1, 70, -1, 72, 73, 74, -1, -1, -1, -1, - -1, 80, 81, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, -1, -1, - 214, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, 207, -1, 209, -1, 84, 85, 86, 87, 88, - 89, 90, 91, 92, 93, -1, 95, -1, -1, -1, - -1, 100, 101, -1, 103, 104, 105, -1, -1, -1, - 109, -1, -1, -1, -1, -1, -1, 166, 167, 168, - 169, 170, -1, -1, -1, 174, 175, 176, 177, 178, - 179, -1, 181, 182, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 143, 144, 145, 196, 197, -1, - -1, -1, 201, -1, -1, -1, -1, 206, -1, 3, - 4, 5, 211, -1, 213, 9, 10, 11, -1, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, 41, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 53, - 54, 55, 56, -1, -1, 214, -1, 61, 12, 13, - -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, - 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, - 84, -1, -1, 87, -1, -1, 90, -1, 92, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, -1, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, 172, 173, + 174, -1, -1, 53, 54, 55, 56, -1, -1, -1, + 184, 61, 186, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 104, -1, -1, -1, -1, -1, -1, 111, 112, 113, - 114, 115, -1, -1, -1, -1, 120, -1, -1, 123, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, - -1, 95, -1, -1, -1, -1, 100, 101, -1, 103, - 104, 105, -1, -1, -1, 109, -1, -1, -1, -1, - -1, -1, 166, -1, -1, -1, 170, -1, -1, -1, - 174, 175, 176, 177, 178, -1, -1, -1, 182, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 143, - 144, 145, 196, 197, -1, -1, -1, 201, -1, -1, - -1, -1, 206, -1, 3, 4, 5, 211, -1, 213, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 53, 54, 55, 56, -1, -1, - 214, -1, 61, 12, 13, -1, -1, -1, -1, -1, - -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, - -1, 80, -1, -1, -1, 84, -1, -1, 87, -1, - -1, 90, -1, 92, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 104, -1, -1, -1, -1, - -1, -1, 111, 112, 113, 114, 115, -1, -1, -1, - -1, 120, -1, -1, 123, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, - 89, 90, 91, 92, 93, -1, 95, -1, -1, -1, - -1, 100, 101, -1, 103, 104, 105, -1, -1, -1, - 109, -1, -1, -1, -1, -1, -1, 166, -1, -1, - -1, 170, -1, -1, -1, 174, 175, 176, 177, 178, - -1, -1, -1, 182, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 143, 144, 145, 196, 197, -1, - -1, -1, 201, -1, -1, -1, -1, 206, -1, 3, - 4, -1, 211, -1, 213, 9, 10, 11, -1, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, 41, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 53, - 54, 55, 56, -1, -1, 214, -1, 61, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, - 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, - 84, -1, -1, 87, -1, -1, 90, -1, 92, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, -1, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 104, -1, 4, 5, -1, -1, -1, 111, 112, 113, - 114, 115, -1, -1, -1, -1, 120, -1, -1, 123, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, -1, - 207, -1, 44, 45, 46, 47, 48, 49, 50, 51, - 52, -1, -1, -1, -1, 57, 58, 59, 60, -1, - -1, -1, 166, 65, 66, 67, 170, -1, 70, -1, - 174, 175, 176, 177, 178, -1, -1, -1, 182, 81, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 196, 197, -1, -1, -1, 201, -1, -1, - -1, -1, 206, -1, 3, 4, -1, 211, -1, 213, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 53, 54, 55, 56, -1, -1, - -1, -1, 61, -1, -1, 167, 168, 169, -1, -1, - -1, -1, -1, 72, 73, 74, -1, 179, -1, 181, - 182, 80, -1, -1, -1, 84, -1, -1, 87, -1, - -1, 90, -1, 92, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 104, -1, 4, 5, -1, - -1, -1, 111, 112, 113, 114, 115, -1, -1, -1, - -1, 120, -1, -1, 123, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, 207, -1, 44, 45, 46, - 47, 48, 49, 50, 51, 52, -1, -1, -1, -1, - 57, 58, 59, 60, -1, -1, -1, 166, 65, 66, - 67, 170, -1, 70, -1, 174, 175, 176, 177, 178, - -1, -1, -1, 182, 81, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 196, 197, -1, - -1, -1, 201, -1, -1, -1, -1, 206, -1, 3, - 4, -1, 211, -1, 213, 9, 10, 11, -1, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, 41, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 53, - 54, 55, 56, -1, -1, -1, -1, 61, -1, -1, - 167, 168, 169, -1, -1, -1, -1, -1, 72, 73, - 74, -1, 179, -1, 181, 182, 80, -1, -1, -1, - 84, -1, -1, 87, 4, 5, 90, -1, 92, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, -1, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 104, -1, -1, -1, -1, -1, -1, 111, 112, 113, - 114, 115, -1, -1, -1, -1, 120, -1, -1, 123, - -1, -1, -1, -1, 44, 45, 46, 47, 48, 49, - 50, 51, 52, -1, -1, -1, -1, 57, 58, 59, - 60, -1, -1, -1, -1, 65, 66, 67, -1, -1, - 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 81, 166, -1, -1, -1, 170, -1, -1, -1, - 174, 175, 176, 177, 178, -1, -1, -1, 182, -1, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 196, 197, -1, -1, -1, 201, -1, -1, - -1, -1, 206, -1, 3, 4, -1, 211, -1, 213, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, -1, -1, -1, -1, 167, 168, 169, - -1, -1, -1, -1, 53, 54, 55, 56, -1, 179, - -1, 181, 61, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, - -1, 80, -1, -1, -1, 84, -1, -1, 87, 5, - -1, 90, -1, 92, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 104, -1, -1, -1, -1, - -1, -1, 111, 112, 113, 114, 115, -1, -1, -1, - -1, 120, -1, -1, 123, -1, -1, -1, 44, 45, - 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, - -1, 57, 58, 59, 60, -1, -1, -1, -1, 65, - 66, 67, -1, -1, 70, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 81, -1, 166, -1, -1, - -1, 170, -1, -1, -1, 174, 175, 176, 177, 178, - -1, -1, -1, 182, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 196, 197, -1, - -1, -1, 201, -1, -1, -1, -1, 206, -1, 3, - 4, -1, 211, -1, 213, 9, 10, 11, -1, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, 41, -1, -1, - -1, 167, 168, 169, -1, -1, -1, -1, -1, 53, - 54, 55, 56, 179, -1, 181, -1, 61, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, - 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, - 84, -1, -1, 87, -1, -1, 90, -1, 92, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, -1, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 104, -1, -1, -1, -1, -1, -1, 111, 112, 113, - 114, 115, -1, -1, -1, -1, 120, -1, -1, 123, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, -1, - -1, -1, -1, -1, -1, -1, -1, 214, -1, -1, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 166, -1, -1, -1, 170, -1, -1, -1, - 174, 175, 176, 177, 178, -1, -1, -1, 182, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, -1, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 196, 197, -1, -1, -1, 201, -1, -1, - -1, -1, 206, -1, 3, 4, -1, 211, -1, 213, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 53, 54, 55, 56, -1, -1, - -1, -1, 61, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, - -1, 80, -1, -1, -1, 84, -1, -1, 87, -1, - -1, 90, -1, 92, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 104, -1, -1, -1, -1, - -1, -1, 111, 112, 113, 114, 115, -1, -1, -1, - -1, 120, -1, -1, 123, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - -1, -1, 214, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 166, -1, -1, - -1, 170, -1, -1, -1, 174, 175, 176, 177, 178, - -1, -1, -1, 182, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 196, 197, -1, - -1, -1, 201, -1, -1, -1, -1, 206, -1, 3, - 4, -1, 211, -1, 213, 9, 10, 11, -1, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, 41, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 53, - 54, 55, 56, -1, -1, -1, -1, 61, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, - 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, - 84, -1, -1, 87, -1, -1, 90, -1, 92, -1, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 104, -1, -1, -1, -1, -1, -1, 111, 112, 113, - 114, 115, -1, -1, -1, -1, 120, -1, -1, 123, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, -1, - -1, -1, -1, -1, -1, -1, -1, 214, -1, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, -1, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 166, -1, -1, -1, 170, -1, -1, -1, - 174, 175, 176, 177, 178, -1, -1, -1, 182, -1, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 196, 197, -1, -1, -1, 201, -1, -1, - -1, -1, 206, -1, 3, 4, -1, 211, -1, 213, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 53, 54, 55, 56, -1, -1, - -1, -1, 61, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, - -1, 80, -1, -1, -1, 84, -1, -1, 87, -1, - -1, 90, -1, 92, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 104, -1, -1, -1, -1, - -1, -1, 111, 112, 113, 114, 115, -1, -1, -1, - -1, 120, -1, -1, 123, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - -1, -1, 214, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 166, -1, -1, - -1, 170, -1, -1, -1, 174, 175, 176, 177, 178, - -1, -1, -1, 182, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 196, 197, -1, - -1, -1, 201, -1, -1, -1, -1, 206, -1, 3, - 4, -1, 211, -1, 213, 9, 10, 11, -1, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, 41, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 53, - 54, 55, 56, -1, -1, -1, -1, 61, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 72, 73, - 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, - 84, -1, -1, 87, -1, -1, 90, -1, 92, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, -1, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 104, -1, -1, -1, -1, -1, -1, 111, 112, 113, - 114, 115, -1, -1, -1, -1, 120, -1, -1, 123, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, -1, - -1, -1, -1, -1, -1, -1, -1, 214, -1, -1, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 166, -1, -1, -1, 170, -1, -1, -1, - 174, 175, 176, 177, 178, -1, -1, -1, 182, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, -1, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 196, 197, -1, -1, -1, 201, -1, -1, - -1, -1, 206, -1, 3, 4, -1, 211, -1, 213, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 53, 54, 55, 56, -1, -1, - -1, -1, 61, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, - -1, 80, -1, -1, -1, 84, -1, -1, 87, -1, - -1, 90, -1, 92, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 104, -1, -1, -1, -1, - -1, -1, 111, 112, 113, 114, 115, -1, -1, -1, - -1, 120, -1, -1, 123, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - -1, -1, 214, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 166, -1, -1, - -1, 170, -1, -1, -1, 174, 175, 176, 177, 178, - -1, -1, -1, 182, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 196, 197, -1, - -1, -1, 201, -1, -1, -1, -1, 206, -1, 3, - 4, -1, 211, -1, 213, 9, 10, 11, -1, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, -1, -1, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, 53, - 54, 55, 56, 205, -1, -1, -1, 61, -1, -1, - -1, -1, 214, -1, -1, -1, 3, 4, 72, 73, - 74, -1, 9, 10, 11, -1, 80, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, - -1, -1, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, 53, 54, 55, 56, - 205, -1, -1, -1, 61, -1, -1, -1, -1, 214, - -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, - -1, -1, -1, 80, -1, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, 166, 205, -1, -1, 170, 209, -1, -1, - 174, 175, 176, 177, 178, -1, -1, -1, 182, -1, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 196, 197, -1, -1, -1, 201, -1, -1, - -1, -1, 206, -1, -1, -1, -1, 211, -1, 213, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, 166, - -1, -1, -1, 170, -1, -1, 213, 174, 175, 176, - 177, 178, -1, -1, -1, 182, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 196, - 197, -1, -1, -1, 201, -1, -1, -1, -1, 206, - -1, 3, 4, 5, 211, -1, 213, 9, 10, 11, - -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, -1, -1, -1, -1, -1, - -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, - 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, - -1, -1, -1, 65, 66, 67, -1, -1, 70, -1, - 72, 73, 74, -1, -1, -1, -1, -1, 80, 81, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, -1, - -1, -1, -1, -1, -1, -1, -1, 214, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, -1, -1, -1, -1, 205, -1, -1, -1, - -1, -1, -1, -1, -1, 214, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, -1, -1, 205, -1, -1, -1, -1, -1, - -1, -1, -1, 214, 166, 167, 168, 169, 170, -1, - -1, -1, 174, 175, 176, 177, 178, 179, -1, 181, - 182, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 196, 197, -1, -1, -1, 201, - 3, 4, -1, -1, 206, -1, 9, 10, 11, 211, - -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 35, 36, 37, 38, 39, 40, 41, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, -1, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 53, 54, 55, 56, -1, -1, -1, -1, 61, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 72, - 73, 74, -1, -1, -1, -1, -1, 80, -1, -1, - -1, 84, -1, -1, 87, -1, -1, 90, -1, 92, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 104, -1, -1, -1, -1, -1, -1, 111, 112, - 113, 114, 115, -1, -1, -1, -1, 120, -1, -1, - 123, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, -1, -1, 214, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, -1, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, -1, -1, -1, 84, -1, -1, 87, -1, -1, + 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 106, -1, -1, -1, + -1, -1, -1, 113, 114, 115, 116, 117, -1, -1, + 120, 121, 122, -1, -1, 125, -1, -1, 128, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 166, -1, -1, -1, 170, -1, -1, - -1, 174, 175, 176, 177, 178, -1, -1, -1, 182, + -1, 171, -1, -1, -1, 175, -1, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 196, 197, -1, -1, -1, 201, 3, - 4, -1, -1, 206, -1, 9, 10, 11, 211, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, -1, -1, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, 53, - 54, 55, 56, 205, -1, -1, -1, 61, -1, -1, - -1, -1, 214, -1, -1, -1, 3, 4, 72, 73, - 74, -1, 9, 10, 11, -1, 80, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, - -1, -1, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, 53, 54, 55, 56, - 205, -1, -1, -1, 61, -1, -1, -1, -1, 214, - -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, - -1, -1, -1, 80, -1, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, 166, 205, -1, -1, 170, 209, -1, -1, - 174, 175, 176, 177, 178, -1, -1, -1, 182, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, 3, 4, 5, 216, -1, 218, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, -1, -1, -1, + -1, -1, -1, -1, 44, 45, 46, 47, 48, 49, + 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, + 60, 61, -1, -1, -1, 65, 66, 67, -1, -1, + 70, -1, 72, 73, 74, -1, -1, -1, -1, -1, + 80, 81, -1, -1, 4, 5, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, -1, -1, -1, -1, + -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 44, 45, 46, 47, 48, 49, + 50, 51, 52, -1, -1, -1, -1, 57, 58, 59, + 60, -1, -1, -1, -1, 65, 66, 67, -1, -1, + 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 171, 172, 173, 174, 175, -1, -1, -1, 179, + 180, 181, 182, 183, 184, -1, 186, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 196, 197, -1, -1, -1, 201, -1, -1, - -1, -1, 206, 207, -1, -1, -1, 211, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, -1, -1, -1, -1, 205, -1, -1, 166, - -1, -1, -1, 170, -1, 214, -1, 174, 175, 176, - 177, 178, -1, -1, -1, 182, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 196, - 197, -1, -1, -1, 201, -1, -1, -1, -1, 206, - 3, 4, 209, -1, 211, -1, 9, 10, 11, -1, - -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 35, 36, -1, -1, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - 53, 54, 55, 56, 205, -1, -1, -1, 61, -1, - -1, -1, -1, 214, -1, -1, -1, 3, 4, 72, - 73, 74, -1, 9, 10, 11, -1, 80, 14, 15, + -1, 201, 202, -1, -1, -1, 206, 3, 4, -1, + -1, 211, -1, 9, 10, 11, 216, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, - 36, -1, -1, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, 53, 54, 55, - 56, 205, -1, -1, -1, 61, -1, -1, -1, -1, - 214, -1, -1, -1, -1, -1, 72, 73, 74, -1, - -1, -1, -1, -1, 80, -1, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, -1, 166, 205, -1, -1, 170, 209, -1, - -1, 174, 175, 176, 177, 178, -1, -1, -1, 182, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 196, 197, -1, -1, -1, 201, -1, - -1, -1, -1, 206, 207, -1, -1, -1, 211, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - 166, -1, -1, -1, 170, -1, 214, -1, 174, 175, - 176, 177, 178, -1, -1, -1, 182, -1, -1, -1, + 36, 37, 38, 39, 40, 41, -1, -1, -1, -1, + -1, -1, 172, 173, 174, -1, -1, 53, 54, 55, + 56, -1, -1, -1, 184, 61, 186, 187, -1, -1, + -1, -1, -1, -1, -1, -1, 72, 73, 74, -1, + -1, -1, -1, -1, 80, -1, -1, -1, 84, -1, + -1, 87, -1, -1, 90, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 196, 197, -1, -1, -1, 201, -1, -1, -1, -1, - 206, 3, 4, 209, 6, 211, -1, 9, 10, 11, - -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, + 106, -1, -1, -1, -1, -1, -1, 113, 114, 115, + 116, 117, -1, -1, 120, 121, 122, -1, -1, 125, + -1, -1, 128, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, -1, -1, + 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 171, -1, -1, -1, 175, + -1, -1, -1, 179, 180, 181, 182, 183, -1, -1, + -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 201, 202, -1, -1, -1, + 206, 3, 4, -1, -1, 211, -1, 9, 10, 11, + 216, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, -1, -1, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, 53, 54, 55, 56, 205, -1, -1, -1, 61, - -1, -1, -1, -1, 214, -1, -1, -1, 3, 4, + 32, 33, 34, 35, 36, -1, -1, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, 53, 54, 55, 56, 210, -1, -1, -1, 61, + -1, -1, -1, -1, 219, -1, -1, -1, 3, 4, 72, 73, 74, -1, 9, 10, 11, -1, 80, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, - 35, 36, -1, -1, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, 53, 54, - 55, 56, 205, -1, -1, -1, 61, -1, -1, -1, - -1, 214, -1, -1, -1, -1, -1, 72, 73, 74, - -1, -1, -1, -1, -1, 80, -1, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, 166, 205, -1, -1, 170, 209, - -1, -1, 174, 175, 176, 177, 178, -1, -1, -1, - 182, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 196, 197, -1, -1, -1, 201, - -1, -1, -1, -1, 206, -1, 0, 1, -1, 211, - 4, -1, -1, -1, -1, -1, -1, -1, 12, 13, + 35, 36, -1, -1, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, 53, 54, + 55, 56, 210, -1, -1, -1, 61, -1, -1, -1, + -1, 219, -1, -1, -1, -1, -1, 72, 73, 74, + -1, -1, -1, -1, -1, 80, -1, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, 171, + -1, -1, -1, 175, 219, -1, -1, 179, 180, 181, + 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 201, + 202, -1, -1, -1, 206, -1, -1, -1, -1, 211, + 212, -1, -1, -1, 216, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, 171, -1, -1, -1, + 175, -1, 219, -1, 179, 180, 181, 182, 183, -1, + -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 201, 202, -1, -1, + -1, 206, -1, -1, -1, -1, 211, 3, 4, 214, + -1, 216, -1, 9, 10, 11, -1, -1, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, + 36, -1, -1, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, 53, 54, 55, + 56, 210, -1, -1, -1, 61, -1, -1, -1, -1, + 219, -1, -1, -1, 3, 4, 72, 73, 74, -1, + 9, 10, 11, -1, 80, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, + 29, 30, 31, 32, 33, 34, 35, 36, -1, -1, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, + 202, 203, 204, 205, 53, 54, 55, 56, 210, -1, + -1, -1, 61, -1, -1, -1, -1, 219, -1, -1, + -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, + -1, 80, -1, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, 171, -1, -1, -1, 175, + 219, -1, -1, 179, 180, 181, 182, 183, -1, -1, + -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 201, 202, -1, -1, -1, + 206, -1, -1, -1, -1, 211, 212, -1, -1, -1, + 216, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, 171, -1, -1, -1, 175, -1, 219, -1, + 179, 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 166, -1, -1, -1, 170, -1, -1, -1, 174, - 175, 176, 177, 178, -1, -1, -1, 182, 42, 43, + -1, -1, 201, 202, -1, -1, -1, 206, -1, -1, + -1, -1, 211, 3, 4, 214, 6, 216, -1, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, -1, -1, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, 53, 54, 55, 56, 210, -1, -1, + -1, 61, -1, -1, -1, -1, 219, -1, -1, -1, + -1, -1, 72, 73, 74, 3, 4, -1, 6, -1, + 80, 9, 10, 11, -1, -1, 14, 15, 16, 17, + 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, + 28, 29, 30, 31, 32, 33, 34, 35, 36, -1, + -1, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, 53, 54, 55, 56, 210, + -1, -1, -1, 61, -1, -1, -1, -1, 219, -1, + -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, + -1, -1, 80, -1, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, -1, -1, + -1, 171, 210, -1, -1, 175, 214, -1, -1, 179, + 180, 181, 182, 183, -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 196, 197, -1, -1, -1, 201, -1, 62, 63, - 64, 206, -1, -1, 68, 69, 211, 71, -1, -1, - -1, 75, 76, -1, 78, 79, -1, -1, 82, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, - -1, 95, 96, 97, 98, 99, 100, 101, 102, 103, - 104, 105, 106, -1, 108, 109, 110, 111, 112, 113, - 114, 115, 116, -1, 118, 119, 120, 121, 122, 123, - 124, 125, -1, -1, -1, 129, 130, 131, -1, -1, - -1, -1, -1, 137, 4, -1, -1, -1, 142, 143, - 144, 145, 12, 13, 148, -1, 150, -1, 152, 153, - 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, - 164, 165, -1, -1, -1, -1, -1, 171, 172, 173, - -1, -1, 42, 43, -1, -1, 180, -1, 182, -1, + -1, 201, 202, -1, -1, -1, 206, -1, -1, -1, + -1, 211, -1, -1, -1, -1, 216, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, -1, 171, 219, -1, -1, 175, -1, -1, + -1, 179, 180, 181, 182, 183, -1, -1, -1, 187, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 201, 202, -1, -1, -1, 206, 3, + 4, -1, -1, 211, -1, 9, 10, 11, 216, -1, + 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, + 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, + 34, 35, 36, -1, -1, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, 53, + 54, 55, 56, 210, -1, -1, -1, 61, -1, -1, + -1, -1, 219, -1, -1, -1, -1, -1, 72, 73, + 74, -1, -1, -1, -1, -1, 80, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, -1, -1, 219, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 0, 1, -1, -1, 4, -1, -1, -1, + -1, -1, -1, -1, 12, 13, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 171, -1, -1, + -1, 175, -1, -1, -1, 179, 180, 181, 182, 183, + -1, -1, -1, 187, 42, 43, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 201, 202, -1, + -1, -1, 206, -1, 62, 63, 64, 211, -1, -1, + 68, 69, 216, 71, -1, -1, -1, 75, 76, -1, + 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, + 88, 89, 90, 91, 92, 93, -1, 95, 96, 97, + 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, + 108, -1, 110, 111, 112, 113, 114, 115, 116, 117, + 118, -1, 120, 121, 122, 123, 124, 125, 126, 127, + 128, 129, 130, -1, -1, -1, 134, 135, 136, -1, + -1, -1, -1, -1, 142, 4, -1, -1, -1, 147, + 148, 149, 150, 12, 13, 153, -1, 155, -1, 157, + 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, + 168, 169, 170, -1, -1, -1, -1, -1, 176, 177, + 178, -1, -1, 42, 43, -1, -1, 185, -1, 187, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 62, 63, 64, -1, -1, -1, 68, 69, - -1, 71, -1, -1, -1, 75, 76, -1, 78, 79, - -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, - 90, 91, 92, 93, -1, 95, 96, 97, 98, 99, - 100, 101, 102, 103, 104, 105, 106, -1, 108, 109, - 110, 111, 112, 113, 114, 115, 116, -1, 118, 119, - 120, 121, 122, 123, 124, 125, -1, -1, -1, 129, - 130, 131, -1, -1, -1, -1, -1, 137, -1, -1, - -1, -1, 142, 143, 144, 145, -1, -1, 148, -1, - 150, -1, 152, 153, 154, 155, 156, 157, 158, 159, - 160, 161, 162, 163, 164, 165, -1, -1, -1, -1, - -1, 171, 172, 173, -1, -1, -1, -1, -1, -1, - 180, -1, 182, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, -1, -1, - 214, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, -1, -1, 214, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, -1, -1, 214, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, -1, -1, 214, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - -1, -1, 214, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, -1, -1, - 214, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, -1, -1, 214, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, -1, -1, 214, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, -1, -1, 214, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - -1, -1, 214, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, -1, -1, - 214, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, -1, -1, 214, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, -1, 213, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, -1, -1, 205, -1, -1, -1, -1, -1, - -1, -1, 213, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, 207, -1, 209, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, 207, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, - 212, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, -1, -1, -1, 212, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, -1, - -1, -1, 212, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, -1, -1, -1, 212, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, -1, -1, -1, 212, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, 209, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, -1, -1, -1, -1, 205, -1, -1, -1, - 209, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, 209, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, -1, -1, - -1, -1, 205, -1, -1, -1, 209, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, -1, -1, 209, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, -1, - -1, -1, 209, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, -1, -1, 209, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, -1, -1, 205, -1, -1, -1, 209, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, -1, - -1, 209, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, -1, -1, -1, -1, - 205, -1, -1, -1, 209, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, -1, -1, 209, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, -1, -1, -1, -1, 205, -1, -1, -1, - 209, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, -1, -1, 209, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, -1, -1, - -1, -1, 205, -1, 207, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, 207, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, -1, -1, 205, -1, 207, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, 207, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, -1, -1, -1, -1, 205, -1, 207, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, 207, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, -1, - 207, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, 207, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, -1, -1, -1, -1, - 205, -1, 207, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, 207, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, -1, -1, - -1, -1, 205, -1, 207, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, 207, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, -1, -1, 205, -1, 207, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, 207, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, -1, -1, -1, -1, 205, -1, 207, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, 207, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, -1, - 207, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, 207, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, -1, -1, -1, -1, - 205, -1, 207, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, 207, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, -1, -1, - -1, -1, 205, -1, 207, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, 207, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, -1, -1, 205, -1, 207, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, 207, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, -1, -1, -1, -1, 205, -1, 207, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, 207, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, -1, - 207, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, 207, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, -1, -1, -1, -1, - 205, -1, 207, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, 207, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, -1, -1, - -1, -1, 205, -1, 207, 187, 188, 189, 190, 191, - 192, 193, 194, 195, 196, 197, 198, 199, 200, -1, - -1, -1, -1, 205, -1, 207, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - -1, -1, -1, -1, 205, -1, 207, 187, 188, 189, - 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, - 200, -1, -1, -1, -1, 205, -1, 207, 187, 188, - 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, - 199, 200, -1, -1, -1, -1, 205, -1, 207, 187, - 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, - 198, 199, 200, -1, -1, -1, -1, 205, -1, 207, - 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, - 197, 198, 199, 200, -1, -1, -1, -1, 205, -1, - 207, 187, 188, 189, 190, 191, 192, 193, 194, 195, - 196, 197, 198, 199, 200, -1, -1, -1, -1, 205, - -1, 207, 187, 188, 189, 190, 191, 192, 193, 194, - 195, 196, 197, 198, 199, 200, -1, -1, -1, -1, - 205, -1, 207, 187, 188, 189, 190, 191, 192, 193, - 194, 195, 196, 197, 198, 199, 200, -1, -1, -1, - -1, 205, -1, 207 + -1, -1, -1, 62, 63, 64, -1, -1, -1, 68, + 69, -1, 71, -1, -1, -1, 75, 76, -1, 78, + 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, + 89, 90, 91, 92, 93, -1, 95, 96, 97, 98, + 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, + -1, 110, 111, 112, 113, 114, 115, 116, 117, 118, + -1, 120, 121, 122, 123, 124, 125, 126, 127, 128, + 129, 130, -1, -1, -1, 134, 135, 136, -1, -1, + -1, -1, -1, 142, -1, -1, -1, -1, 147, 148, + 149, 150, 4, 5, 153, -1, 155, -1, 157, 158, + 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, + 169, 170, -1, -1, -1, -1, -1, 176, 177, 178, + -1, -1, -1, -1, -1, -1, 185, -1, 187, -1, + -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, + 52, -1, -1, -1, -1, 57, 58, 59, 60, -1, + -1, -1, -1, 65, 66, 67, -1, -1, 70, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 81, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, + 202, 203, 204, 205, -1, -1, -1, -1, 210, -1, + -1, -1, -1, -1, -1, -1, -1, 219, 192, 193, + 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, + 204, 205, -1, -1, -1, -1, 210, -1, -1, -1, + -1, -1, -1, -1, -1, 219, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, -1, -1, -1, -1, + -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, + 172, 173, 174, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 184, -1, 186, 187, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, -1, -1, -1, -1, + -1, -1, -1, 219, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, -1, -1, + -1, -1, 210, -1, -1, -1, -1, -1, -1, -1, + -1, 219, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, -1, -1, -1, -1, + 210, -1, -1, -1, -1, -1, -1, -1, -1, 219, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, + 202, 203, 204, 205, -1, -1, -1, -1, 210, -1, + -1, -1, -1, -1, -1, -1, 218, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, -1, 218, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, -1, -1, + -1, -1, 210, -1, -1, -1, -1, -1, -1, -1, + 218, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, 212, -1, 214, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, 212, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, -1, + -1, -1, 217, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, 217, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, -1, -1, -1, 217, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, -1, -1, -1, + 217, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, -1, -1, -1, 217, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, 214, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, + 202, 203, 204, 205, -1, -1, -1, -1, 210, -1, + -1, -1, 214, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, 214, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, -1, -1, 214, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, 214, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, -1, -1, -1, -1, + 210, -1, -1, -1, 214, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, -1, -1, 214, 192, 193, + 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, + 204, 205, -1, -1, -1, -1, 210, -1, -1, -1, + 214, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, -1, -1, 214, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, -1, -1, + -1, -1, 210, -1, -1, -1, 214, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, -1, -1, 214, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, + 202, 203, 204, 205, -1, -1, -1, -1, 210, -1, + -1, -1, 214, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, -1, -1, 214, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, -1, -1, 214, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, -1, + -1, 214, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, -1, -1, -1, -1, + 210, -1, -1, -1, 214, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, 212, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, 212, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, 212, 192, 193, + 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, + 204, 205, -1, -1, -1, -1, 210, -1, 212, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, 212, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, + 202, 203, 204, 205, -1, -1, -1, -1, 210, -1, + 212, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, 212, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, -1, -1, -1, -1, + 210, -1, 212, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, 212, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, -1, -1, + -1, -1, 210, -1, 212, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, 212, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, 212, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, 212, 192, 193, + 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, + 204, 205, -1, -1, -1, -1, 210, -1, 212, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, 212, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, + 202, 203, 204, 205, -1, -1, -1, -1, 210, -1, + 212, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, 212, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, -1, -1, -1, -1, + 210, -1, 212, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, 212, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, -1, -1, + -1, -1, 210, -1, 212, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, 212, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, 212, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, 212, 192, 193, + 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, + 204, 205, -1, -1, -1, -1, 210, -1, 212, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, 212, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, + 202, 203, 204, 205, -1, -1, -1, -1, 210, -1, + 212, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, 212, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, -1, -1, -1, -1, + 210, -1, 212, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, 212, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, -1, -1, + -1, -1, 210, -1, 212, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, 212, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, 212, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, 212, 192, 193, + 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, + 204, 205, -1, -1, -1, -1, 210, -1, 212, 192, + 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, + 203, 204, 205, -1, -1, -1, -1, 210, -1, 212, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, + 202, 203, 204, 205, -1, -1, -1, -1, 210, -1, + 212, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, -1, -1, -1, -1, 210, + -1, 212, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, -1, -1, -1, -1, + 210, -1, 212, 192, 193, 194, 195, 196, 197, 198, + 199, 200, 201, 202, 203, 204, 205, -1, -1, -1, + -1, 210, -1, 212, 192, 193, 194, 195, 196, 197, + 198, 199, 200, 201, 202, 203, 204, 205, -1, -1, + -1, -1, 210, -1, 212, 192, 193, 194, 195, 196, + 197, 198, 199, 200, 201, 202, 203, 204, 205, -1, + -1, -1, -1, 210, -1, 212, 192, 193, 194, 195, + 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, + -1, -1, -1, -1, 210, -1, 212, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, -1, -1, -1, -1, 210, -1, 212, 192, 193, + 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, + 204, 205, -1, -1, -1, -1, 210 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { - 0, 1, 217, 218, 6, 0, 4, 12, 13, 42, + 0, 1, 222, 223, 6, 0, 4, 12, 13, 42, 43, 62, 63, 64, 68, 69, 71, 75, 76, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 101, - 102, 103, 104, 105, 106, 108, 109, 110, 111, 112, - 113, 114, 115, 116, 118, 119, 120, 121, 122, 123, - 124, 125, 129, 130, 131, 137, 142, 143, 144, 145, - 148, 150, 152, 153, 154, 155, 156, 157, 158, 159, - 160, 161, 162, 163, 164, 165, 171, 172, 173, 180, - 182, 219, 221, 222, 242, 261, 262, 265, 266, 267, - 268, 269, 270, 271, 272, 273, 294, 295, 296, 297, - 315, 316, 3, 4, 5, 9, 10, 11, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, - 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, - 36, 44, 45, 46, 47, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 65, - 66, 67, 70, 72, 73, 74, 80, 81, 159, 166, - 167, 168, 169, 170, 174, 175, 176, 177, 178, 179, - 181, 196, 197, 201, 206, 208, 210, 211, 213, 215, - 240, 298, 299, 311, 312, 315, 316, 13, 90, 206, - 206, 6, 213, 6, 6, 6, 6, 206, 6, 6, - 208, 208, 206, 208, 240, 240, 206, 213, 206, 206, - 4, 206, 213, 206, 206, 4, 213, 206, 206, 94, - 90, 90, 6, 213, 84, 87, 90, 90, 90, 87, - 90, 92, 92, 84, 87, 90, 92, 87, 90, 92, - 87, 90, 206, 87, 148, 164, 165, 213, 196, 197, - 206, 213, 301, 302, 301, 213, 84, 87, 90, 213, - 301, 4, 84, 88, 100, 90, 92, 90, 87, 4, - 159, 213, 315, 316, 4, 6, 84, 87, 90, 87, - 90, 4, 4, 4, 4, 5, 37, 38, 39, 40, - 41, 84, 87, 90, 92, 104, 197, 206, 213, 262, - 273, 298, 304, 305, 306, 315, 316, 4, 206, 206, - 206, 4, 213, 308, 316, 4, 206, 206, 206, 6, - 6, 208, 4, 312, 316, 206, 4, 312, 5, 213, - 5, 213, 4, 298, 315, 208, 6, 206, 213, 206, - 208, 215, 240, 7, 183, 184, 185, 186, 203, 204, - 238, 239, 4, 206, 208, 210, 240, 240, 240, 240, - 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, - 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, - 240, 206, 206, 206, 240, 240, 240, 240, 206, 240, - 240, 240, 240, 240, 240, 206, 240, 240, 240, 7, - 206, 206, 206, 240, 240, 206, 206, 208, 298, 298, - 298, 207, 298, 209, 298, 4, 148, 149, 316, 4, - 262, 263, 264, 213, 213, 6, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - 205, 213, 6, 206, 208, 239, 6, 298, 4, 311, - 312, 315, 316, 311, 298, 311, 314, 244, 249, 312, - 316, 298, 197, 298, 306, 307, 298, 298, 206, 298, - 307, 298, 298, 206, 307, 298, 298, 304, 206, 213, - 307, 305, 305, 305, 206, 206, 305, 305, 305, 206, - 206, 206, 206, 206, 206, 304, 206, 304, 206, 304, - 213, 213, 298, 4, 304, 308, 213, 213, 301, 301, - 301, 298, 298, 196, 197, 213, 213, 301, 213, 213, - 213, 196, 197, 206, 264, 301, 213, 206, 213, 206, - 206, 206, 305, 305, 304, 206, 4, 208, 208, 264, - 6, 6, 213, 213, 213, 305, 305, 208, 208, 208, - 206, 208, 210, 240, 206, 208, 240, 240, 240, 240, - 5, 151, 213, 5, 151, 5, 151, 5, 151, 84, - 87, 90, 92, 213, 298, 306, 298, 214, 307, 8, - 198, 6, 206, 208, 240, 6, 298, 298, 298, 210, - 298, 213, 151, 298, 298, 298, 298, 6, 6, 213, - 6, 264, 6, 264, 206, 208, 213, 206, 208, 311, - 304, 304, 207, 298, 209, 298, 213, 213, 312, 304, - 6, 208, 298, 298, 4, 298, 298, 298, 298, 298, - 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, - 298, 298, 298, 298, 298, 298, 298, 314, 311, 314, - 311, 311, 311, 311, 311, 311, 311, 304, 311, 311, - 298, 311, 311, 311, 314, 311, 298, 312, 298, 311, - 311, 311, 311, 311, 316, 312, 316, 7, 186, 238, - 207, 7, 186, 238, 209, 7, 238, 239, 210, 7, - 240, 214, 84, 87, 90, 92, 261, 298, 307, 298, - 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, - 298, 298, 298, 298, 223, 298, 298, 6, 206, 208, - 210, 207, 212, 206, 208, 207, 212, 212, 207, 212, - 209, 212, 243, 209, 243, 212, 212, 207, 198, 212, - 214, 207, 207, 298, 207, 214, 207, 207, 298, 214, - 207, 207, 7, 298, 298, 214, 6, 6, 6, 298, - 298, 7, 7, 291, 291, 298, 255, 298, 312, 256, - 298, 312, 257, 298, 312, 258, 298, 312, 298, 6, - 298, 6, 298, 6, 307, 307, 213, 207, 6, 213, - 264, 264, 212, 212, 212, 301, 301, 263, 263, 212, - 298, 298, 298, 298, 277, 212, 264, 298, 298, 298, - 298, 298, 7, 292, 6, 7, 298, 6, 298, 298, - 214, 307, 307, 307, 6, 6, 298, 298, 298, 298, - 298, 4, 207, 209, 213, 241, 213, 298, 306, 213, - 306, 316, 298, 298, 311, 298, 62, 298, 62, 62, - 62, 5, 213, 5, 213, 5, 213, 5, 213, 307, - 207, 214, 298, 213, 298, 306, 298, 298, 213, 241, - 207, 207, 207, 148, 212, 264, 213, 8, 207, 207, - 209, 307, 214, 214, 264, 209, 207, 212, 214, 7, - 186, 238, 207, 7, 186, 238, 209, 298, 307, 6, - 6, 298, 207, 209, 239, 241, 241, 241, 241, 241, - 241, 241, 241, 241, 241, 241, 212, 241, 241, 241, - 241, 241, 241, 241, 212, 212, 212, 241, 212, 241, - 241, 207, 207, 212, 241, 241, 212, 241, 212, 212, - 212, 212, 241, 241, 241, 207, 241, 300, 313, 6, - 212, 212, 207, 212, 241, 212, 241, 207, 207, 209, - 44, 44, 304, 7, 238, 239, 44, 44, 304, 210, - 238, 239, 312, 298, 6, 4, 4, 213, 309, 241, - 213, 213, 213, 213, 214, 214, 8, 4, 138, 139, - 140, 141, 214, 226, 230, 233, 235, 236, 207, 209, - 298, 298, 4, 6, 193, 220, 307, 298, 298, 6, - 307, 298, 6, 311, 6, 316, 6, 311, 298, 312, - 7, 298, 306, 151, 7, 7, 207, 7, 151, 7, - 7, 207, 151, 7, 7, 298, 207, 214, 213, 207, - 207, 298, 304, 4, 290, 6, 207, 207, 212, 207, - 212, 207, 212, 207, 212, 207, 207, 207, 214, 214, - 307, 210, 264, 214, 214, 301, 298, 298, 214, 214, - 298, 301, 212, 212, 212, 107, 118, 126, 127, 128, - 132, 133, 134, 135, 287, 288, 301, 214, 274, 207, - 214, 207, 207, 207, 298, 6, 298, 207, 209, 209, - 214, 214, 214, 209, 209, 212, 207, 209, 307, 307, - 207, 307, 209, 209, 212, 212, 241, 212, 213, 214, - 213, 213, 213, 307, 307, 307, 307, 214, 8, 307, - 207, 209, 307, 7, 7, 7, 210, 298, 214, 298, - 298, 7, 210, 214, 214, 213, 304, 6, 44, 44, - 304, 238, 239, 44, 44, 304, 238, 239, 214, 214, - 209, 239, 210, 239, 311, 298, 298, 298, 298, 307, - 311, 298, 304, 311, 311, 311, 251, 253, 298, 311, - 311, 298, 240, 240, 6, 298, 6, 240, 240, 6, - 4, 148, 149, 298, 6, 6, 6, 7, 208, 308, - 310, 6, 307, 307, 307, 307, 241, 298, 227, 206, - 206, 213, 237, 6, 239, 239, 207, 209, 193, 311, - 207, 207, 209, 207, 212, 7, 206, 208, 241, 241, - 301, 90, 92, 304, 304, 7, 304, 90, 92, 304, - 304, 7, 92, 304, 304, 6, 7, 7, 307, 7, - 7, 107, 289, 6, 7, 238, 298, 238, 298, 238, - 298, 238, 298, 7, 7, 7, 7, 7, 214, 4, - 214, 212, 212, 212, 214, 214, 301, 301, 301, 4, - 6, 298, 213, 6, 206, 6, 136, 6, 136, 6, - 136, 6, 136, 214, 288, 212, 287, 7, 6, 7, - 7, 7, 6, 213, 6, 6, 6, 90, 7, 6, - 6, 298, 210, 214, 214, 214, 298, 298, 298, 298, - 298, 298, 298, 214, 214, 214, 214, 298, 214, 214, - 304, 304, 304, 4, 212, 8, 8, 207, 4, 4, - 212, 304, 214, 240, 240, 6, 298, 6, 240, 240, - 6, 298, 6, 241, 6, 4, 6, 241, 241, 241, - 241, 241, 212, 212, 241, 207, 241, 241, 212, 212, - 241, 252, 212, 241, 254, 207, 207, 241, 241, 241, - 314, 314, 6, 241, 314, 314, 7, 238, 239, 210, - 7, 6, 308, 298, 212, 214, 214, 214, 214, 214, - 238, 206, 298, 298, 303, 304, 213, 210, 6, 6, - 220, 6, 298, 213, 298, 312, 207, 209, 6, 6, - 6, 213, 213, 100, 260, 260, 304, 6, 213, 213, - 6, 6, 304, 213, 6, 6, 5, 304, 214, 304, - 304, 4, 6, 304, 304, 304, 304, 304, 304, 304, - 304, 213, 213, 7, 6, 7, 298, 298, 298, 213, - 213, 212, 214, 212, 214, 212, 214, 208, 6, 298, - 304, 298, 6, 6, 6, 6, 298, 301, 214, 5, - 213, 304, 213, 213, 213, 304, 307, 213, 298, 209, - 4, 241, 207, 209, 212, 212, 212, 212, 212, 212, - 212, 241, 6, 6, 147, 298, 298, 298, 6, 6, - 7, 312, 212, 6, 241, 314, 314, 6, 241, 314, - 314, 6, 238, 239, 311, 298, 311, 4, 4, 163, - 6, 241, 241, 6, 241, 241, 312, 298, 6, 4, - 309, 6, 209, 308, 6, 6, 6, 6, 304, 224, - 298, 212, 212, 212, 214, 225, 298, 4, 311, 212, - 304, 312, 7, 7, 298, 298, 301, 6, 6, 6, - 298, 298, 6, 298, 5, 6, 213, 6, 151, 259, - 298, 6, 6, 6, 6, 6, 6, 4, 6, 6, - 307, 307, 298, 298, 312, 214, 207, 212, 214, 263, - 263, 301, 6, 278, 301, 6, 279, 301, 6, 280, - 298, 214, 212, 207, 214, 212, 6, 197, 301, 6, - 303, 301, 301, 6, 214, 298, 6, 6, 298, 298, - 298, 298, 298, 298, 298, 304, 212, 214, 8, 214, - 207, 213, 298, 312, 212, 304, 6, 241, 241, 6, - 241, 241, 304, 207, 241, 241, 213, 304, 312, 213, - 298, 312, 312, 6, 6, 6, 6, 6, 6, 7, - 6, 210, 6, 207, 212, 298, 298, 304, 213, 212, - 214, 6, 298, 245, 248, 213, 213, 214, 214, 214, - 214, 214, 5, 303, 88, 6, 213, 214, 214, 213, - 6, 6, 213, 298, 214, 214, 212, 213, 212, 213, - 212, 213, 209, 6, 304, 7, 213, 298, 212, 214, - 212, 212, 6, 214, 241, 241, 212, 212, 212, 212, - 212, 146, 298, 298, 307, 6, 6, 312, 214, 6, - 6, 6, 6, 6, 250, 298, 306, 314, 308, 149, - 228, 298, 212, 212, 303, 298, 6, 212, 251, 253, - 304, 304, 6, 6, 6, 6, 6, 6, 214, 213, - 303, 111, 112, 117, 293, 111, 112, 293, 307, 263, - 212, 214, 298, 301, 287, 298, 301, 287, 298, 301, - 287, 6, 212, 214, 304, 264, 214, 301, 6, 307, - 301, 298, 298, 298, 298, 298, 298, 214, 214, 214, - 207, 6, 212, 214, 7, 7, 214, 6, 213, 298, - 298, 214, 298, 214, 214, 247, 246, 213, 298, 214, - 213, 301, 304, 6, 213, 301, 6, 214, 214, 298, - 214, 212, 214, 214, 212, 214, 214, 212, 214, 304, - 6, 107, 214, 275, 213, 212, 214, 212, 212, 212, - 212, 212, 212, 6, 6, 6, 298, 312, 316, 225, - 207, 212, 6, 213, 212, 251, 251, 298, 214, 6, - 301, 6, 301, 6, 6, 214, 6, 281, 298, 6, - 6, 282, 298, 6, 6, 283, 298, 6, 214, 298, - 287, 264, 307, 6, 301, 307, 298, 298, 298, 298, - 298, 7, 206, 214, 231, 298, 303, 298, 214, 214, - 212, 212, 212, 213, 214, 213, 214, 213, 214, 6, - 6, 214, 214, 276, 214, 212, 214, 212, 212, 212, - 212, 212, 312, 207, 6, 213, 207, 214, 214, 298, - 301, 301, 287, 6, 284, 287, 6, 285, 287, 6, - 286, 287, 6, 307, 6, 298, 298, 298, 298, 298, - 229, 311, 234, 213, 6, 214, 212, 212, 214, 213, - 214, 213, 214, 213, 214, 214, 241, 212, 212, 212, - 212, 212, 214, 213, 303, 6, 298, 298, 6, 287, - 6, 287, 6, 287, 6, 298, 298, 298, 298, 311, - 6, 232, 311, 214, 214, 214, 214, 214, 214, 214, - 214, 214, 214, 212, 214, 6, 6, 6, 6, 6, - 6, 311, 6 + 102, 103, 104, 105, 106, 107, 108, 110, 111, 112, + 113, 114, 115, 116, 117, 118, 120, 121, 122, 123, + 124, 125, 126, 127, 128, 129, 130, 134, 135, 136, + 142, 147, 148, 149, 150, 153, 155, 157, 158, 159, + 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, + 170, 176, 177, 178, 185, 187, 224, 226, 227, 247, + 266, 267, 270, 271, 272, 273, 274, 275, 276, 277, + 278, 294, 296, 302, 303, 304, 305, 323, 324, 3, + 4, 5, 9, 10, 11, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, + 29, 30, 31, 32, 33, 34, 35, 36, 44, 45, + 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, + 56, 57, 58, 59, 60, 61, 65, 66, 67, 70, + 72, 73, 74, 80, 81, 164, 171, 172, 173, 174, + 175, 179, 180, 181, 182, 183, 184, 186, 201, 202, + 206, 211, 213, 215, 216, 218, 220, 245, 306, 307, + 319, 320, 323, 324, 13, 90, 211, 211, 6, 218, + 6, 6, 6, 6, 211, 6, 6, 213, 213, 211, + 213, 245, 245, 211, 218, 211, 211, 4, 211, 218, + 211, 211, 4, 218, 211, 211, 94, 90, 90, 6, + 218, 84, 87, 90, 211, 211, 90, 90, 87, 90, + 92, 92, 84, 87, 90, 92, 87, 90, 92, 87, + 90, 211, 87, 153, 169, 170, 218, 201, 202, 211, + 218, 309, 310, 309, 218, 84, 87, 90, 218, 309, + 4, 84, 88, 102, 90, 92, 90, 87, 4, 164, + 218, 323, 324, 4, 6, 84, 87, 90, 87, 90, + 4, 4, 4, 4, 5, 37, 38, 39, 40, 41, + 84, 87, 90, 92, 106, 202, 211, 218, 267, 278, + 296, 306, 312, 313, 314, 323, 324, 4, 211, 211, + 211, 4, 218, 316, 324, 4, 211, 211, 211, 6, + 6, 213, 4, 320, 324, 211, 4, 320, 5, 218, + 5, 218, 4, 306, 323, 213, 218, 6, 211, 218, + 211, 213, 220, 245, 7, 188, 189, 190, 191, 208, + 209, 243, 244, 4, 211, 213, 215, 245, 245, 245, + 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, + 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, + 245, 245, 211, 211, 211, 245, 245, 245, 245, 211, + 245, 245, 245, 245, 245, 245, 211, 245, 245, 245, + 7, 211, 211, 211, 245, 245, 211, 211, 213, 306, + 306, 306, 212, 306, 214, 306, 4, 153, 154, 324, + 4, 267, 268, 269, 218, 218, 6, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, 210, 218, 6, 211, 213, 244, 6, 306, 4, + 319, 320, 323, 324, 319, 306, 319, 322, 249, 254, + 320, 324, 306, 202, 306, 314, 315, 306, 306, 211, + 306, 315, 306, 306, 211, 315, 306, 306, 312, 211, + 218, 315, 313, 313, 313, 319, 306, 211, 211, 313, + 313, 313, 211, 211, 211, 211, 211, 211, 312, 211, + 312, 211, 312, 218, 218, 306, 4, 312, 316, 218, + 218, 309, 309, 309, 306, 306, 201, 202, 218, 218, + 309, 218, 218, 218, 201, 202, 211, 269, 309, 218, + 211, 218, 211, 211, 211, 313, 313, 312, 211, 4, + 213, 213, 269, 6, 6, 218, 218, 218, 313, 313, + 213, 213, 213, 211, 213, 215, 245, 211, 213, 245, + 245, 245, 245, 5, 156, 218, 5, 156, 5, 156, + 5, 156, 84, 87, 90, 92, 218, 306, 314, 306, + 219, 315, 8, 203, 6, 211, 213, 245, 6, 306, + 306, 306, 215, 306, 218, 156, 306, 306, 306, 306, + 6, 6, 218, 6, 269, 6, 269, 211, 213, 218, + 211, 213, 319, 269, 312, 312, 212, 306, 214, 306, + 218, 218, 320, 312, 6, 213, 306, 306, 4, 306, + 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, + 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, + 306, 322, 319, 322, 319, 319, 319, 319, 319, 319, + 319, 312, 319, 319, 306, 319, 319, 319, 322, 319, + 306, 320, 306, 319, 319, 319, 319, 319, 324, 320, + 324, 7, 191, 243, 212, 7, 191, 243, 214, 7, + 243, 244, 215, 7, 245, 219, 84, 87, 90, 92, + 266, 306, 315, 306, 306, 306, 306, 306, 306, 306, + 306, 306, 306, 306, 306, 306, 306, 306, 228, 306, + 306, 6, 211, 213, 215, 212, 217, 211, 213, 212, + 217, 217, 212, 217, 214, 217, 248, 214, 248, 217, + 217, 212, 203, 217, 219, 212, 212, 306, 212, 219, + 212, 212, 306, 219, 212, 212, 7, 306, 306, 219, + 6, 6, 6, 212, 212, 306, 306, 7, 7, 299, + 299, 306, 260, 306, 320, 261, 306, 320, 262, 306, + 320, 263, 306, 320, 306, 6, 306, 6, 306, 6, + 315, 315, 218, 212, 6, 218, 269, 269, 217, 217, + 217, 309, 309, 268, 268, 217, 306, 306, 306, 306, + 282, 217, 269, 306, 306, 306, 306, 306, 7, 300, + 6, 7, 306, 6, 306, 306, 219, 315, 315, 315, + 6, 6, 306, 306, 306, 306, 306, 4, 212, 214, + 218, 246, 218, 306, 314, 218, 314, 324, 306, 306, + 319, 306, 62, 306, 62, 62, 62, 5, 218, 5, + 218, 5, 218, 5, 218, 315, 212, 219, 306, 218, + 306, 314, 306, 306, 218, 246, 212, 212, 212, 153, + 217, 269, 218, 8, 212, 212, 214, 315, 219, 219, + 269, 214, 126, 295, 212, 217, 219, 7, 191, 243, + 212, 7, 191, 243, 214, 306, 315, 6, 6, 306, + 212, 214, 244, 246, 246, 246, 246, 246, 246, 246, + 246, 246, 246, 246, 217, 246, 246, 246, 246, 246, + 246, 246, 217, 217, 217, 246, 217, 246, 246, 212, + 212, 217, 246, 246, 217, 246, 217, 217, 217, 217, + 246, 246, 246, 212, 246, 308, 321, 6, 217, 217, + 212, 217, 246, 217, 246, 212, 212, 214, 44, 44, + 312, 7, 243, 244, 44, 44, 312, 215, 243, 244, + 320, 306, 6, 4, 4, 218, 317, 246, 218, 218, + 218, 218, 219, 219, 8, 4, 143, 144, 145, 146, + 219, 231, 235, 238, 240, 241, 212, 214, 306, 306, + 4, 6, 198, 225, 315, 306, 306, 6, 315, 306, + 6, 319, 6, 324, 6, 319, 306, 320, 7, 306, + 314, 156, 7, 7, 212, 7, 156, 7, 7, 212, + 156, 7, 7, 306, 212, 219, 218, 6, 7, 212, + 212, 306, 312, 4, 298, 6, 212, 212, 217, 212, + 217, 212, 217, 212, 217, 212, 212, 212, 219, 219, + 315, 215, 269, 219, 219, 309, 306, 306, 219, 219, + 306, 309, 217, 217, 217, 109, 123, 131, 132, 133, + 137, 138, 139, 140, 292, 293, 309, 219, 279, 212, + 219, 212, 212, 212, 306, 6, 306, 212, 214, 214, + 219, 219, 219, 214, 214, 217, 212, 214, 315, 315, + 212, 315, 214, 214, 217, 217, 246, 217, 218, 219, + 218, 218, 218, 315, 315, 315, 315, 219, 8, 315, + 212, 214, 315, 7, 7, 7, 215, 306, 219, 306, + 306, 7, 215, 219, 219, 6, 306, 219, 218, 312, + 6, 44, 44, 312, 243, 244, 44, 44, 312, 243, + 244, 219, 219, 214, 244, 215, 244, 319, 306, 306, + 306, 306, 315, 319, 306, 312, 319, 319, 319, 256, + 258, 306, 319, 319, 306, 245, 245, 6, 306, 6, + 245, 245, 6, 4, 153, 154, 306, 6, 6, 6, + 7, 213, 316, 318, 6, 315, 315, 315, 315, 246, + 306, 232, 211, 211, 218, 242, 6, 244, 244, 212, + 214, 198, 319, 212, 212, 214, 212, 217, 7, 211, + 213, 246, 246, 309, 90, 92, 312, 312, 7, 312, + 90, 92, 312, 312, 7, 92, 312, 312, 6, 7, + 7, 315, 218, 7, 7, 109, 297, 6, 7, 243, + 306, 243, 306, 243, 306, 243, 306, 7, 7, 7, + 7, 7, 219, 4, 219, 217, 217, 217, 219, 219, + 309, 309, 309, 4, 6, 306, 218, 6, 211, 6, + 141, 6, 141, 6, 141, 6, 141, 219, 293, 217, + 292, 7, 6, 7, 7, 7, 6, 218, 6, 6, + 6, 90, 7, 6, 6, 306, 215, 219, 219, 219, + 306, 306, 306, 306, 306, 306, 306, 219, 219, 219, + 219, 306, 219, 219, 312, 312, 312, 4, 217, 8, + 8, 212, 4, 4, 217, 6, 218, 312, 219, 245, + 245, 6, 306, 6, 245, 245, 6, 306, 6, 246, + 6, 4, 6, 246, 246, 246, 246, 246, 217, 217, + 246, 212, 246, 246, 217, 217, 246, 257, 217, 246, + 259, 212, 212, 246, 246, 246, 322, 322, 6, 246, + 322, 322, 7, 243, 244, 215, 7, 6, 316, 306, + 217, 219, 219, 219, 219, 219, 243, 211, 306, 306, + 311, 312, 218, 215, 6, 6, 225, 6, 306, 218, + 306, 320, 212, 214, 6, 6, 6, 218, 218, 102, + 265, 265, 312, 6, 218, 218, 6, 6, 312, 218, + 6, 6, 5, 312, 219, 311, 312, 312, 4, 6, + 312, 312, 312, 312, 312, 312, 312, 312, 218, 218, + 7, 6, 7, 306, 306, 306, 218, 218, 217, 219, + 217, 219, 217, 219, 213, 6, 306, 312, 306, 6, + 6, 6, 6, 306, 309, 219, 5, 218, 312, 218, + 218, 218, 312, 315, 218, 306, 214, 4, 246, 212, + 214, 217, 217, 217, 217, 217, 217, 217, 246, 6, + 6, 152, 306, 306, 306, 6, 6, 7, 320, 269, + 217, 6, 246, 322, 322, 6, 246, 322, 322, 6, + 243, 244, 319, 306, 319, 4, 4, 168, 6, 246, + 246, 6, 246, 246, 320, 306, 6, 4, 317, 6, + 214, 316, 6, 6, 6, 6, 312, 229, 306, 217, + 217, 217, 219, 230, 306, 4, 319, 217, 312, 320, + 7, 7, 306, 306, 309, 6, 6, 6, 306, 306, + 6, 306, 5, 6, 218, 219, 6, 156, 264, 306, + 6, 6, 6, 6, 6, 6, 4, 6, 6, 315, + 315, 306, 306, 320, 219, 212, 217, 219, 268, 268, + 309, 6, 283, 309, 6, 284, 309, 6, 285, 306, + 219, 217, 212, 219, 217, 6, 202, 309, 6, 311, + 309, 309, 6, 219, 306, 6, 6, 306, 306, 306, + 306, 306, 306, 306, 312, 217, 219, 8, 219, 212, + 218, 306, 320, 217, 295, 312, 6, 246, 246, 6, + 246, 246, 312, 212, 246, 246, 218, 312, 320, 218, + 306, 320, 320, 6, 6, 6, 6, 6, 6, 7, + 6, 215, 6, 212, 217, 306, 306, 312, 218, 217, + 219, 6, 306, 250, 253, 218, 218, 219, 219, 219, + 219, 219, 5, 311, 6, 88, 6, 218, 219, 219, + 218, 6, 6, 218, 306, 219, 219, 217, 218, 217, + 218, 217, 218, 214, 6, 312, 7, 218, 306, 217, + 219, 217, 217, 6, 219, 246, 246, 217, 217, 217, + 217, 217, 151, 306, 306, 315, 6, 6, 320, 219, + 219, 6, 6, 6, 6, 6, 255, 306, 314, 322, + 316, 154, 233, 306, 217, 217, 311, 306, 6, 217, + 256, 258, 312, 312, 6, 6, 6, 6, 6, 6, + 219, 218, 311, 113, 114, 119, 301, 113, 114, 301, + 315, 268, 217, 219, 306, 309, 292, 306, 309, 292, + 306, 309, 292, 6, 217, 219, 312, 269, 219, 309, + 6, 315, 309, 306, 306, 306, 306, 306, 306, 219, + 219, 219, 212, 6, 217, 219, 7, 7, 219, 6, + 218, 306, 306, 219, 306, 219, 219, 252, 251, 218, + 306, 219, 218, 309, 312, 6, 218, 309, 6, 219, + 219, 306, 219, 217, 219, 219, 217, 219, 219, 217, + 219, 312, 6, 109, 219, 280, 218, 217, 219, 217, + 217, 217, 217, 217, 217, 6, 6, 6, 306, 320, + 324, 230, 212, 217, 6, 218, 217, 256, 256, 306, + 219, 6, 309, 6, 309, 6, 6, 219, 6, 286, + 306, 6, 6, 287, 306, 6, 6, 288, 306, 6, + 219, 306, 292, 269, 315, 6, 309, 315, 306, 306, + 306, 306, 306, 7, 211, 219, 236, 306, 311, 306, + 219, 219, 217, 217, 217, 218, 219, 218, 219, 218, + 219, 6, 6, 219, 219, 281, 219, 217, 219, 217, + 217, 217, 217, 217, 320, 212, 6, 218, 212, 219, + 219, 306, 309, 309, 292, 6, 289, 292, 6, 290, + 292, 6, 291, 292, 6, 315, 6, 306, 306, 306, + 306, 306, 234, 319, 239, 218, 6, 219, 217, 217, + 219, 218, 219, 218, 219, 218, 219, 219, 246, 217, + 217, 217, 217, 217, 219, 218, 311, 6, 306, 306, + 6, 292, 6, 292, 6, 292, 6, 306, 306, 306, + 306, 319, 6, 237, 319, 219, 219, 219, 219, 219, + 219, 219, 219, 219, 219, 217, 219, 6, 6, 6, + 6, 6, 6, 319, 6 }; #define yyerrok (yyerrstatus = 0) @@ -5676,127 +5780,132 @@ yyreduce: switch (yyn) { case 3: -#line 205 "Gmsh.y" +#line 208 "Gmsh.y" { yyerrok; return 1; ;} break; case 6: -#line 216 "Gmsh.y" +#line 219 "Gmsh.y" { return 1; ;} break; case 7: -#line 217 "Gmsh.y" +#line 220 "Gmsh.y" { return 1; ;} break; case 8: -#line 218 "Gmsh.y" +#line 221 "Gmsh.y" { return 1; ;} break; case 9: -#line 219 "Gmsh.y" +#line 222 "Gmsh.y" { return 1; ;} break; case 10: -#line 220 "Gmsh.y" +#line 223 "Gmsh.y" { List_Delete((yyvsp[(1) - (1)].l)); return 1; ;} break; case 11: -#line 221 "Gmsh.y" +#line 224 "Gmsh.y" { return 1; ;} break; case 12: -#line 222 "Gmsh.y" +#line 225 "Gmsh.y" { return 1; ;} break; case 13: -#line 223 "Gmsh.y" +#line 226 "Gmsh.y" { return 1; ;} break; case 14: -#line 224 "Gmsh.y" +#line 227 "Gmsh.y" { return 1; ;} break; case 15: -#line 225 "Gmsh.y" +#line 228 "Gmsh.y" { List_Delete((yyvsp[(1) - (1)].l)); return 1; ;} break; case 16: -#line 226 "Gmsh.y" - { return 1; ;} +#line 229 "Gmsh.y" + { List_Delete((yyvsp[(1) - (1)].l)); return 1; ;} break; case 17: -#line 227 "Gmsh.y" +#line 230 "Gmsh.y" { return 1; ;} break; case 18: -#line 228 "Gmsh.y" +#line 231 "Gmsh.y" { return 1; ;} break; case 19: -#line 229 "Gmsh.y" +#line 232 "Gmsh.y" { return 1; ;} break; case 20: -#line 230 "Gmsh.y" +#line 233 "Gmsh.y" { return 1; ;} break; case 21: -#line 231 "Gmsh.y" +#line 234 "Gmsh.y" { return 1; ;} break; case 22: -#line 232 "Gmsh.y" +#line 235 "Gmsh.y" { return 1; ;} break; case 23: -#line 237 "Gmsh.y" +#line 236 "Gmsh.y" + { return 1; ;} + break; + + case 24: +#line 241 "Gmsh.y" { (yyval.c) = (char*)"w"; ;} break; - case 24: -#line 241 "Gmsh.y" + case 25: +#line 245 "Gmsh.y" { (yyval.c) = (char*)"a"; ;} break; - case 25: -#line 248 "Gmsh.y" + case 26: +#line 252 "Gmsh.y" { Msg::Direct((yyvsp[(3) - (5)].c)); Free((yyvsp[(3) - (5)].c)); ;} break; - case 26: -#line 253 "Gmsh.y" + case 27: +#line 257 "Gmsh.y" { Msg::Error((yyvsp[(3) - (5)].c)); Free((yyvsp[(3) - (5)].c)); ;} break; - case 27: -#line 258 "Gmsh.y" + case 28: +#line 262 "Gmsh.y" { std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(6) - (7)].c)); FILE *fp = Fopen(tmp.c_str(), (yyvsp[(5) - (7)].c)); @@ -5812,8 +5921,8 @@ yyreduce: ;} break; - case 28: -#line 272 "Gmsh.y" + case 29: +#line 276 "Gmsh.y" { char tmpstring[5000]; int i = PrintListOfDouble((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].l), tmpstring); @@ -5828,8 +5937,8 @@ yyreduce: ;} break; - case 29: -#line 285 "Gmsh.y" + case 30: +#line 289 "Gmsh.y" { char tmpstring[5000]; int i = PrintListOfDouble((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].l), tmpstring); @@ -5844,8 +5953,8 @@ yyreduce: ;} break; - case 30: -#line 298 "Gmsh.y" + case 31: +#line 302 "Gmsh.y" { char tmpstring[5000]; int i = PrintListOfDouble((yyvsp[(3) - (9)].c), (yyvsp[(5) - (9)].l), tmpstring); @@ -5870,8 +5979,8 @@ yyreduce: ;} break; - case 31: -#line 326 "Gmsh.y" + case 32: +#line 330 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(1) - (6)].c), "View") && ViewData->finalize()){ @@ -5887,8 +5996,8 @@ yyreduce: ;} break; - case 32: -#line 340 "Gmsh.y" + case 33: +#line 344 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (6)].c), "View")){ @@ -5903,8 +6012,8 @@ yyreduce: ;} break; - case 33: -#line 353 "Gmsh.y" + case 34: +#line 357 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (6)].c), "View")){ @@ -5919,8 +6028,8 @@ yyreduce: ;} break; - case 34: -#line 366 "Gmsh.y" + case 35: +#line 370 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (8)].c), "View")){ @@ -5937,8 +6046,8 @@ yyreduce: ;} break; - case 35: -#line 384 "Gmsh.y" + case 36: +#line 388 "Gmsh.y" { #if defined(HAVE_POST) ViewData = new PViewDataList(); @@ -5946,28 +6055,28 @@ yyreduce: ;} break; - case 41: -#line 398 "Gmsh.y" + case 42: +#line 402 "Gmsh.y" { ViewCoord.push_back((yyvsp[(1) - (1)].d)); ;} break; - case 42: -#line 400 "Gmsh.y" + case 43: +#line 404 "Gmsh.y" { ViewCoord.push_back((yyvsp[(3) - (3)].d)); ;} break; - case 43: -#line 405 "Gmsh.y" + case 44: +#line 409 "Gmsh.y" { if(ViewValueList) ViewValueList->push_back((yyvsp[(1) - (1)].d)); ;} break; - case 44: -#line 407 "Gmsh.y" + case 45: +#line 411 "Gmsh.y" { if(ViewValueList) ViewValueList->push_back((yyvsp[(3) - (3)].d)); ;} break; - case 45: -#line 412 "Gmsh.y" + case 46: +#line 416 "Gmsh.y" { #if defined(HAVE_POST) if(!strncmp((yyvsp[(1) - (1)].c), "SP", 2)){ @@ -6073,8 +6182,8 @@ yyreduce: ;} break; - case 46: -#line 516 "Gmsh.y" + case 47: +#line 520 "Gmsh.y" { #if defined(HAVE_POST) if(ViewValueList){ @@ -6086,8 +6195,8 @@ yyreduce: ;} break; - case 47: -#line 526 "Gmsh.y" + case 48: +#line 530 "Gmsh.y" { #if defined(HAVE_POST) if(ViewValueList) (*ViewNumList)++; @@ -6095,8 +6204,8 @@ yyreduce: ;} break; - case 48: -#line 535 "Gmsh.y" + case 49: +#line 539 "Gmsh.y" { #if defined(HAVE_POST) for(int i = 0; i < (int)strlen((yyvsp[(1) - (1)].c)) + 1; i++) ViewData->T2C.push_back((yyvsp[(1) - (1)].c)[i]); @@ -6105,8 +6214,8 @@ yyreduce: ;} break; - case 49: -#line 542 "Gmsh.y" + case 50: +#line 546 "Gmsh.y" { #if defined(HAVE_POST) for(int i = 0; i < (int)strlen((yyvsp[(3) - (3)].c)) + 1; i++) ViewData->T2C.push_back((yyvsp[(3) - (3)].c)[i]); @@ -6115,8 +6224,8 @@ yyreduce: ;} break; - case 50: -#line 552 "Gmsh.y" + case 51: +#line 556 "Gmsh.y" { #if defined(HAVE_POST) ViewData->T2D.push_back((yyvsp[(3) - (8)].d)); @@ -6127,8 +6236,8 @@ yyreduce: ;} break; - case 51: -#line 561 "Gmsh.y" + case 52: +#line 565 "Gmsh.y" { #if defined(HAVE_POST) ViewData->NbT2++; @@ -6136,8 +6245,8 @@ yyreduce: ;} break; - case 52: -#line 570 "Gmsh.y" + case 53: +#line 574 "Gmsh.y" { #if defined(HAVE_POST) for(int i = 0; i < (int)strlen((yyvsp[(1) - (1)].c)) + 1; i++) ViewData->T3C.push_back((yyvsp[(1) - (1)].c)[i]); @@ -6146,8 +6255,8 @@ yyreduce: ;} break; - case 53: -#line 577 "Gmsh.y" + case 54: +#line 581 "Gmsh.y" { #if defined(HAVE_POST) for(int i = 0; i < (int)strlen((yyvsp[(3) - (3)].c)) + 1; i++) ViewData->T3C.push_back((yyvsp[(3) - (3)].c)[i]); @@ -6156,8 +6265,8 @@ yyreduce: ;} break; - case 54: -#line 587 "Gmsh.y" + case 55: +#line 591 "Gmsh.y" { #if defined(HAVE_POST) ViewData->T3D.push_back((yyvsp[(3) - (10)].d)); ViewData->T3D.push_back((yyvsp[(5) - (10)].d)); @@ -6167,8 +6276,8 @@ yyreduce: ;} break; - case 55: -#line 595 "Gmsh.y" + case 56: +#line 599 "Gmsh.y" { #if defined(HAVE_POST) ViewData->NbT3++; @@ -6176,8 +6285,8 @@ yyreduce: ;} break; - case 56: -#line 605 "Gmsh.y" + case 57: +#line 609 "Gmsh.y" { #if defined(HAVE_POST) int type = @@ -6195,8 +6304,8 @@ yyreduce: ;} break; - case 57: -#line 624 "Gmsh.y" + case 58: +#line 628 "Gmsh.y" { #if defined(HAVE_POST) int type = @@ -6214,8 +6323,8 @@ yyreduce: ;} break; - case 58: -#line 643 "Gmsh.y" + case 59: +#line 647 "Gmsh.y" { #if defined(HAVE_POST) ViewValueList = &ViewData->Time; @@ -6223,77 +6332,77 @@ yyreduce: ;} break; - case 59: -#line 649 "Gmsh.y" + case 60: +#line 653 "Gmsh.y" { ;} break; - case 60: -#line 656 "Gmsh.y" + case 61: +#line 660 "Gmsh.y" { (yyval.i) = 0; ;} break; - case 61: -#line 657 "Gmsh.y" + case 62: +#line 661 "Gmsh.y" { (yyval.i) = 1; ;} break; - case 62: -#line 658 "Gmsh.y" + case 63: +#line 662 "Gmsh.y" { (yyval.i) = 2; ;} break; - case 63: -#line 659 "Gmsh.y" + case 64: +#line 663 "Gmsh.y" { (yyval.i) = 3; ;} break; - case 64: -#line 660 "Gmsh.y" + case 65: +#line 664 "Gmsh.y" { (yyval.i) = 4; ;} break; - case 65: -#line 664 "Gmsh.y" + case 66: +#line 668 "Gmsh.y" { (yyval.i) = 1; ;} break; - case 66: -#line 665 "Gmsh.y" + case 67: +#line 669 "Gmsh.y" { (yyval.i) = -1; ;} break; - case 67: -#line 671 "Gmsh.y" + case 68: +#line 675 "Gmsh.y" { (yyval.c) = (char*)"("; ;} break; - case 68: -#line 671 "Gmsh.y" + case 69: +#line 675 "Gmsh.y" { (yyval.c) = (char*)"["; ;} break; - case 69: -#line 672 "Gmsh.y" + case 70: +#line 676 "Gmsh.y" { (yyval.c) = (char*)")"; ;} break; - case 70: -#line 672 "Gmsh.y" + case 71: +#line 676 "Gmsh.y" { (yyval.c) = (char*)"]"; ;} break; - case 73: -#line 681 "Gmsh.y" + case 74: +#line 685 "Gmsh.y" { Msg::SetOnelabNumber((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].d)); Free((yyvsp[(3) - (7)].c)); ;} break; - case 74: -#line 686 "Gmsh.y" + case 75: +#line 690 "Gmsh.y" { Msg::SetOnelabString((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].c)); Free((yyvsp[(3) - (7)].c)); @@ -6301,8 +6410,8 @@ yyreduce: ;} break; - case 75: -#line 692 "Gmsh.y" + case 76: +#line 696 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c)) && (yyvsp[(2) - (4)].i) && List_Nbr((yyvsp[(3) - (4)].l)) == 1){ yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (4)].c)); @@ -6366,8 +6475,8 @@ yyreduce: ;} break; - case 76: -#line 754 "Gmsh.y" + case 77: +#line 758 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (3)].c))) yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (3)].c)); @@ -6384,8 +6493,8 @@ yyreduce: ;} break; - case 77: -#line 771 "Gmsh.y" + case 78: +#line 775 "Gmsh.y" { gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (6)].c)]); s.list = true; @@ -6416,8 +6525,8 @@ yyreduce: ;} break; - case 78: -#line 800 "Gmsh.y" + case 79: +#line 804 "Gmsh.y" { gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (6)].c)]); s.list = true; @@ -6448,40 +6557,40 @@ yyreduce: ;} break; - case 79: -#line 829 "Gmsh.y" + case 80: +#line 833 "Gmsh.y" { assignVariable((yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(5) - (7)].i), (yyvsp[(6) - (7)].d)); Free((yyvsp[(1) - (7)].c)); ;} break; - case 80: -#line 834 "Gmsh.y" + case 81: +#line 838 "Gmsh.y" { assignVariable((yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(5) - (7)].i), (yyvsp[(6) - (7)].d)); Free((yyvsp[(1) - (7)].c)); ;} break; - case 81: -#line 839 "Gmsh.y" + case 82: +#line 843 "Gmsh.y" { incrementVariable((yyvsp[(1) - (6)].c), (yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].i)); Free((yyvsp[(1) - (6)].c)); ;} break; - case 82: -#line 844 "Gmsh.y" + case 83: +#line 848 "Gmsh.y" { incrementVariable((yyvsp[(1) - (6)].c), (yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].i)); Free((yyvsp[(1) - (6)].c)); ;} break; - case 83: -#line 849 "Gmsh.y" + case 84: +#line 853 "Gmsh.y" { assignVariables((yyvsp[(1) - (9)].c), (yyvsp[(4) - (9)].l), (yyvsp[(7) - (9)].i), (yyvsp[(8) - (9)].l)); Free((yyvsp[(1) - (9)].c)); @@ -6490,8 +6599,8 @@ yyreduce: ;} break; - case 84: -#line 856 "Gmsh.y" + case 85: +#line 860 "Gmsh.y" { assignVariables((yyvsp[(1) - (9)].c), (yyvsp[(4) - (9)].l), (yyvsp[(7) - (9)].i), (yyvsp[(8) - (9)].l)); Free((yyvsp[(1) - (9)].c)); @@ -6500,8 +6609,8 @@ yyreduce: ;} break; - case 85: -#line 866 "Gmsh.y" + case 86: +#line 870 "Gmsh.y" { gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (6)].c)]); s.list = true; @@ -6532,8 +6641,8 @@ yyreduce: ;} break; - case 86: -#line 895 "Gmsh.y" + case 87: +#line 899 "Gmsh.y" { gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (6)].c)]); s.list = true; @@ -6564,40 +6673,40 @@ yyreduce: ;} break; - case 87: -#line 924 "Gmsh.y" + case 88: +#line 928 "Gmsh.y" { assignVariable((yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(5) - (7)].i), (yyvsp[(6) - (7)].d)); Free((yyvsp[(1) - (7)].c)); ;} break; - case 88: -#line 929 "Gmsh.y" + case 89: +#line 933 "Gmsh.y" { assignVariable((yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(5) - (7)].i), (yyvsp[(6) - (7)].d)); Free((yyvsp[(1) - (7)].c)); ;} break; - case 89: -#line 934 "Gmsh.y" + case 90: +#line 938 "Gmsh.y" { incrementVariable((yyvsp[(1) - (6)].c), (yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].i)); Free((yyvsp[(1) - (6)].c)); ;} break; - case 90: -#line 939 "Gmsh.y" + case 91: +#line 943 "Gmsh.y" { incrementVariable((yyvsp[(1) - (6)].c), (yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].i)); Free((yyvsp[(1) - (6)].c)); ;} break; - case 91: -#line 947 "Gmsh.y" + case 92: +#line 951 "Gmsh.y" { gmsh_yystringsymbols[(yyvsp[(1) - (4)].c)] = std::vector<std::string>(1, (yyvsp[(3) - (4)].c)); Free((yyvsp[(1) - (4)].c)); @@ -6605,24 +6714,24 @@ yyreduce: ;} break; - case 92: -#line 956 "Gmsh.y" + case 93: +#line 960 "Gmsh.y" { gmsh_yystringsymbols[(yyvsp[(1) - (8)].c)] = std::vector<std::string>(); Free((yyvsp[(1) - (8)].c)); ;} break; - case 93: -#line 962 "Gmsh.y" + case 94: +#line 966 "Gmsh.y" { gmsh_yystringsymbols[(yyvsp[(1) - (8)].c)] = std::vector<std::string>(); Free((yyvsp[(1) - (8)].c)); ;} break; - case 94: -#line 968 "Gmsh.y" + case 95: +#line 972 "Gmsh.y" { std::vector<std::string> s; for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++){ @@ -6636,8 +6745,8 @@ yyreduce: ;} break; - case 95: -#line 981 "Gmsh.y" + case 96: +#line 985 "Gmsh.y" { std::vector<std::string> s; for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++){ @@ -6651,8 +6760,8 @@ yyreduce: ;} break; - case 96: -#line 994 "Gmsh.y" + case 97: +#line 998 "Gmsh.y" { if(gmsh_yystringsymbols.count((yyvsp[(1) - (9)].c))){ for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++){ @@ -6668,8 +6777,8 @@ yyreduce: ;} break; - case 97: -#line 1009 "Gmsh.y" + case 98: +#line 1013 "Gmsh.y" { if(gmsh_yystringsymbols.count((yyvsp[(1) - (9)].c))){ for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++){ @@ -6685,24 +6794,24 @@ yyreduce: ;} break; - case 98: -#line 1026 "Gmsh.y" + case 99: +#line 1030 "Gmsh.y" { gmsh_yystringsymbols[(yyvsp[(1) - (8)].c)] = std::vector<std::string>(); Free((yyvsp[(1) - (8)].c)); ;} break; - case 99: -#line 1032 "Gmsh.y" + case 100: +#line 1036 "Gmsh.y" { gmsh_yystringsymbols[(yyvsp[(1) - (8)].c)] = std::vector<std::string>(); Free((yyvsp[(1) - (8)].c)); ;} break; - case 100: -#line 1038 "Gmsh.y" + case 101: +#line 1042 "Gmsh.y" { std::vector<std::string> s; for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++){ @@ -6716,8 +6825,8 @@ yyreduce: ;} break; - case 101: -#line 1051 "Gmsh.y" + case 102: +#line 1055 "Gmsh.y" { std::vector<std::string> s; for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++){ @@ -6731,8 +6840,8 @@ yyreduce: ;} break; - case 102: -#line 1064 "Gmsh.y" + case 103: +#line 1068 "Gmsh.y" { if(gmsh_yystringsymbols.count((yyvsp[(1) - (9)].c))){ for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++){ @@ -6748,8 +6857,8 @@ yyreduce: ;} break; - case 103: -#line 1079 "Gmsh.y" + case 104: +#line 1083 "Gmsh.y" { if(gmsh_yystringsymbols.count((yyvsp[(1) - (9)].c))){ for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++){ @@ -6765,8 +6874,8 @@ yyreduce: ;} break; - case 104: -#line 1096 "Gmsh.y" + case 105: +#line 1100 "Gmsh.y" { std::string tmp((yyvsp[(5) - (6)].c)); StringOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (6)].c), 0, (yyvsp[(3) - (6)].c), tmp); @@ -6774,8 +6883,8 @@ yyreduce: ;} break; - case 105: -#line 1102 "Gmsh.y" + case 106: +#line 1106 "Gmsh.y" { std::string tmp((yyvsp[(8) - (9)].c)); StringOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (9)].c), (int)(yyvsp[(3) - (9)].d), (yyvsp[(6) - (9)].c), tmp); @@ -6783,8 +6892,8 @@ yyreduce: ;} break; - case 106: -#line 1111 "Gmsh.y" + case 107: +#line 1115 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (6)].c), 0, (yyvsp[(3) - (6)].c), d)){ @@ -6804,8 +6913,8 @@ yyreduce: ;} break; - case 107: -#line 1129 "Gmsh.y" + case 108: +#line 1133 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (9)].c), (int)(yyvsp[(3) - (9)].d), (yyvsp[(6) - (9)].c), d)){ @@ -6825,8 +6934,8 @@ yyreduce: ;} break; - case 108: -#line 1147 "Gmsh.y" + case 109: +#line 1151 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (5)].c), 0, (yyvsp[(3) - (5)].c), d)){ @@ -6837,8 +6946,8 @@ yyreduce: ;} break; - case 109: -#line 1156 "Gmsh.y" + case 110: +#line 1160 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (8)].c), (int)(yyvsp[(3) - (8)].d), (yyvsp[(6) - (8)].c), d)){ @@ -6849,24 +6958,24 @@ yyreduce: ;} break; - case 110: -#line 1168 "Gmsh.y" + case 111: +#line 1172 "Gmsh.y" { ColorOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (8)].c), 0, (yyvsp[(5) - (8)].c), (yyvsp[(7) - (8)].u)); Free((yyvsp[(1) - (8)].c)); Free((yyvsp[(5) - (8)].c)); ;} break; - case 111: -#line 1173 "Gmsh.y" + case 112: +#line 1177 "Gmsh.y" { ColorOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (11)].c), (int)(yyvsp[(3) - (11)].d), (yyvsp[(8) - (11)].c), (yyvsp[(10) - (11)].u)); Free((yyvsp[(1) - (11)].c)); Free((yyvsp[(8) - (11)].c)); ;} break; - case 112: -#line 1181 "Gmsh.y" + case 113: +#line 1185 "Gmsh.y" { GmshColorTable *ct = GetColorTable(0); if(!ct) @@ -6888,8 +6997,8 @@ yyreduce: ;} break; - case 113: -#line 1201 "Gmsh.y" + case 114: +#line 1205 "Gmsh.y" { GmshColorTable *ct = GetColorTable((int)(yyvsp[(3) - (9)].d)); if(!ct) @@ -6911,8 +7020,8 @@ yyreduce: ;} break; - case 114: -#line 1224 "Gmsh.y" + case 115: +#line 1228 "Gmsh.y" { #if defined(HAVE_MESH) if(!strcmp((yyvsp[(1) - (5)].c),"Background")) @@ -6925,8 +7034,8 @@ yyreduce: ;} break; - case 115: -#line 1235 "Gmsh.y" + case 116: +#line 1239 "Gmsh.y" { #if defined(HAVE_MESH) if(!GModel::current()->getFields()->newField((int)(yyvsp[(3) - (7)].d), (yyvsp[(6) - (7)].c))) @@ -6936,8 +7045,8 @@ yyreduce: ;} break; - case 116: -#line 1243 "Gmsh.y" + case 117: +#line 1247 "Gmsh.y" { #if defined(HAVE_MESH) Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (9)].d)); @@ -6961,8 +7070,8 @@ yyreduce: ;} break; - case 117: -#line 1265 "Gmsh.y" + case 118: +#line 1269 "Gmsh.y" { #if defined(HAVE_MESH) Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (9)].d)); @@ -6987,8 +7096,8 @@ yyreduce: ;} break; - case 118: -#line 1288 "Gmsh.y" + case 119: +#line 1292 "Gmsh.y" { #if defined(HAVE_MESH) Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (11)].d)); @@ -7028,8 +7137,8 @@ yyreduce: ;} break; - case 119: -#line 1326 "Gmsh.y" + case 120: +#line 1330 "Gmsh.y" { #if defined(HAVE_MESH) Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (7)].d)); @@ -7049,8 +7158,8 @@ yyreduce: ;} break; - case 120: -#line 1347 "Gmsh.y" + case 121: +#line 1351 "Gmsh.y" { #if defined(HAVE_PLUGINS) try { @@ -7064,8 +7173,8 @@ yyreduce: ;} break; - case 121: -#line 1359 "Gmsh.y" + case 122: +#line 1363 "Gmsh.y" { #if defined(HAVE_PLUGINS) try { @@ -7079,8 +7188,8 @@ yyreduce: ;} break; - case 125: -#line 1377 "Gmsh.y" + case 126: +#line 1381 "Gmsh.y" { std::string key((yyvsp[(3) - (3)].c)); std::vector<double> val(1, 0.); @@ -7091,8 +7200,8 @@ yyreduce: ;} break; - case 126: -#line 1386 "Gmsh.y" + case 127: +#line 1390 "Gmsh.y" { std::string key((yyvsp[(3) - (5)].c)); std::vector<double> val(1, (yyvsp[(5) - (5)].d)); @@ -7103,13 +7212,13 @@ yyreduce: ;} break; - case 127: -#line 1395 "Gmsh.y" + case 128: +#line 1399 "Gmsh.y" { floatOptions.clear(); charOptions.clear(); ;} break; - case 128: -#line 1397 "Gmsh.y" + case 129: +#line 1401 "Gmsh.y" { if(List_Nbr((yyvsp[(6) - (9)].l)) != 1) yymsg(1, "List notation should be used to define list '%s[]'", (yyvsp[(3) - (9)].c)); @@ -7129,13 +7238,13 @@ yyreduce: ;} break; - case 129: -#line 1415 "Gmsh.y" + case 130: +#line 1419 "Gmsh.y" { floatOptions.clear(); charOptions.clear(); ;} break; - case 130: -#line 1417 "Gmsh.y" + case 131: +#line 1421 "Gmsh.y" { std::string key((yyvsp[(3) - (11)].c)); std::vector<double> val; @@ -7153,13 +7262,13 @@ yyreduce: ;} break; - case 131: -#line 1433 "Gmsh.y" + case 132: +#line 1437 "Gmsh.y" { floatOptions.clear(); charOptions.clear(); ;} break; - case 132: -#line 1435 "Gmsh.y" + case 133: +#line 1439 "Gmsh.y" { std::string key((yyvsp[(3) - (11)].c)); std::vector<double> val; @@ -7177,8 +7286,8 @@ yyreduce: ;} break; - case 133: -#line 1451 "Gmsh.y" + case 134: +#line 1455 "Gmsh.y" { std::string key((yyvsp[(3) - (5)].c)), val((yyvsp[(5) - (5)].c)); if(!gmsh_yystringsymbols.count(key)){ @@ -7189,13 +7298,13 @@ yyreduce: ;} break; - case 134: -#line 1460 "Gmsh.y" + case 135: +#line 1464 "Gmsh.y" { floatOptions.clear(); charOptions.clear(); ;} break; - case 135: -#line 1462 "Gmsh.y" + case 136: +#line 1466 "Gmsh.y" { std::string key((yyvsp[(3) - (9)].c)), val((yyvsp[(6) - (9)].c)); if(!gmsh_yysymbols.count(key)){ @@ -7207,8 +7316,8 @@ yyreduce: ;} break; - case 137: -#line 1476 "Gmsh.y" + case 138: +#line 1480 "Gmsh.y" { std::string name((yyvsp[(3) - (3)].c)); Msg::UndefineOnelabParameter(name); @@ -7216,8 +7325,8 @@ yyreduce: ;} break; - case 138: -#line 1484 "Gmsh.y" + case 139: +#line 1488 "Gmsh.y" { (yyval.l) = List_Create(20,20,sizeof(doubleXstring)); doubleXstring v = {(yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].c)}; @@ -7225,16 +7334,16 @@ yyreduce: ;} break; - case 139: -#line 1490 "Gmsh.y" + case 140: +#line 1494 "Gmsh.y" { doubleXstring v = {(yyvsp[(3) - (5)].d), (yyvsp[(5) - (5)].c)}; List_Add((yyval.l), &v); ;} break; - case 140: -#line 1495 "Gmsh.y" + case 141: +#line 1499 "Gmsh.y" { (yyval.l) = List_Create(20,20,sizeof(doubleXstring)); int n = List_Nbr((yyvsp[(1) - (5)].l)); @@ -7260,8 +7369,8 @@ yyreduce: ;} break; - case 143: -#line 1526 "Gmsh.y" + case 144: +#line 1530 "Gmsh.y" { std::string key((yyvsp[(2) - (3)].c)); for(int i = 0; i < List_Nbr((yyvsp[(3) - (3)].l)); i++){ @@ -7274,8 +7383,8 @@ yyreduce: ;} break; - case 144: -#line 1537 "Gmsh.y" + case 145: +#line 1541 "Gmsh.y" { std::string key((yyvsp[(2) - (5)].c)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -7291,8 +7400,8 @@ yyreduce: ;} break; - case 145: -#line 1552 "Gmsh.y" + case 146: +#line 1556 "Gmsh.y" { std::string key((yyvsp[(2) - (3)].c)); std::string val((yyvsp[(3) - (3)].c)); @@ -7302,8 +7411,8 @@ yyreduce: ;} break; - case 148: -#line 1568 "Gmsh.y" + case 149: +#line 1572 "Gmsh.y" { std::string key((yyvsp[(2) - (3)].c)); double val = (yyvsp[(3) - (3)].d); @@ -7312,8 +7421,8 @@ yyreduce: ;} break; - case 149: -#line 1576 "Gmsh.y" + case 150: +#line 1580 "Gmsh.y" { std::string key((yyvsp[(2) - (3)].c)); std::string val((yyvsp[(3) - (3)].c)); @@ -7323,8 +7432,8 @@ yyreduce: ;} break; - case 150: -#line 1585 "Gmsh.y" + case 151: +#line 1589 "Gmsh.y" { std::string key("Macro"); std::string val((yyvsp[(3) - (3)].c)); @@ -7333,8 +7442,8 @@ yyreduce: ;} break; - case 151: -#line 1593 "Gmsh.y" + case 152: +#line 1597 "Gmsh.y" { std::string key((yyvsp[(2) - (5)].c)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -7349,15 +7458,15 @@ yyreduce: ;} break; - case 152: -#line 1611 "Gmsh.y" + case 153: +#line 1615 "Gmsh.y" { (yyval.i) = (int)(yyvsp[(1) - (1)].d); ;} break; - case 153: -#line 1615 "Gmsh.y" + case 154: +#line 1619 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName (std::string((yyvsp[(1) - (1)].c)), 0, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); @@ -7365,23 +7474,23 @@ yyreduce: ;} break; - case 154: -#line 1621 "Gmsh.y" + case 155: +#line 1625 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[(1) - (3)].c)), 0, (yyvsp[(3) - (3)].d)); Free((yyvsp[(1) - (3)].c)); ;} break; - case 155: -#line 1629 "Gmsh.y" + case 156: +#line 1633 "Gmsh.y" { (yyval.i) = (int)(yyvsp[(1) - (1)].d); ;} break; - case 156: -#line 1633 "Gmsh.y" + case 157: +#line 1637 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName (std::string((yyvsp[(1) - (1)].c)), 1, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); @@ -7389,23 +7498,23 @@ yyreduce: ;} break; - case 157: -#line 1639 "Gmsh.y" + case 158: +#line 1643 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[(1) - (3)].c)), 1, (yyvsp[(3) - (3)].d)); Free((yyvsp[(1) - (3)].c)); ;} break; - case 158: -#line 1647 "Gmsh.y" + case 159: +#line 1651 "Gmsh.y" { (yyval.i) = (int)(yyvsp[(1) - (1)].d); ;} break; - case 159: -#line 1651 "Gmsh.y" + case 160: +#line 1655 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName (std::string((yyvsp[(1) - (1)].c)), 2, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); @@ -7413,23 +7522,23 @@ yyreduce: ;} break; - case 160: -#line 1657 "Gmsh.y" + case 161: +#line 1661 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[(1) - (3)].c)), 2, (yyvsp[(3) - (3)].d)); Free((yyvsp[(1) - (3)].c)); ;} break; - case 161: -#line 1665 "Gmsh.y" + case 162: +#line 1669 "Gmsh.y" { (yyval.i) = (int)(yyvsp[(1) - (1)].d); ;} break; - case 162: -#line 1669 "Gmsh.y" + case 163: +#line 1673 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName (std::string((yyvsp[(1) - (1)].c)), 3, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); @@ -7437,23 +7546,23 @@ yyreduce: ;} break; - case 163: -#line 1675 "Gmsh.y" + case 164: +#line 1679 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[(1) - (3)].c)), 3, (yyvsp[(3) - (3)].d)); Free((yyvsp[(1) - (3)].c)); ;} break; - case 164: -#line 1683 "Gmsh.y" + case 165: +#line 1687 "Gmsh.y" { (yyval.l) = 0; ;} break; - case 165: -#line 1687 "Gmsh.y" + case 166: +#line 1691 "Gmsh.y" { (yyval.l) = List_Create(1, 1, sizeof(Vertex*)); Vertex *v = FindPoint((int)(yyvsp[(4) - (5)].d)); @@ -7465,48 +7574,61 @@ yyreduce: ;} break; - case 166: -#line 1699 "Gmsh.y" + case 167: +#line 1703 "Gmsh.y" { for(int i = 0; i < 4; i++) (yyval.v)[i] = 0.; ;} break; - case 167: -#line 1703 "Gmsh.y" + case 168: +#line 1707 "Gmsh.y" { for(int i = 0; i < 4; i++) (yyval.v)[i] = (yyvsp[(2) - (2)].v)[i]; ;} break; - case 168: -#line 1713 "Gmsh.y" + case 169: +#line 1715 "Gmsh.y" + { + factory = (yyvsp[(3) - (5)].c); + Free((yyvsp[(3) - (5)].c)); + ;} + break; + + case 170: +#line 1723 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindPoint(num)){ - yymsg(0, "Point %d already exists", num); + yymsg(0, "Point %d already exists", num); } else{ - double x = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[0]; - double y = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[1]; - double z = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[2]; - double lc = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[3]; - if(lc == 0.) lc = MAX_LC; // no mesh size given at the point - Vertex *v; - if(!myGmshSurface) - v = Create_Vertex(num, x, y, z, lc, 1.0); - else - v = Create_Vertex(num, x, y, myGmshSurface, lc); - Tree_Add(GModel::current()->getGEOInternals()->Points, &v); - AddToTemporaryBoundingBox(v->Pos.X, v->Pos.Y, v->Pos.Z); + double x = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[0]; + double y = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[1]; + double z = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[2]; + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + GModel::current()->getOCCInternals()->addVertex(num, x, y, z); + } + else{ + double lc = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[3]; + if(lc == 0.) lc = MAX_LC; // no mesh size given at the point + Vertex *v; + if(!myGmshSurface) + v = Create_Vertex(num, x, y, z, lc, 1.0); + else + v = Create_Vertex(num, x, y, myGmshSurface, lc); + Tree_Add(GModel::current()->getGEOInternals()->Points, &v); + AddToTemporaryBoundingBox(v->Pos.X, v->Pos.Y, v->Pos.Z); + } } (yyval.s).Type = MSH_POINT; (yyval.s).Num = num; ;} break; - case 169: -#line 1736 "Gmsh.y" + case 171: +#line 1751 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].i); int op = (yyvsp[(6) - (8)].i); @@ -7551,8 +7673,8 @@ yyreduce: ;} break; - case 170: -#line 1779 "Gmsh.y" + case 172: +#line 1794 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (6)].l)); i++){ double d; @@ -7574,8 +7696,8 @@ yyreduce: ;} break; - case 171: -#line 1802 "Gmsh.y" + case 173: +#line 1817 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ @@ -7595,8 +7717,8 @@ yyreduce: ;} break; - case 172: -#line 1820 "Gmsh.y" + case 174: +#line 1835 "Gmsh.y" { for (int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double dnum; @@ -7619,8 +7741,8 @@ yyreduce: ;} break; - case 173: -#line 1841 "Gmsh.y" + case 175: +#line 1856 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ @@ -7640,32 +7762,42 @@ yyreduce: ;} break; - case 174: -#line 1859 "Gmsh.y" + case 176: +#line 1874 "Gmsh.y" { int num = (int)(yyvsp[(3) - (8)].d); if(FindCurve(num)){ yymsg(0, "Curve %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[(6) - (8)].l)); - Curve *c = Create_Curve(num, MSH_SEGM_CIRC, 2, temp, NULL, - -1, -1, 0., 1.); - if((yyvsp[(7) - (8)].v)[0] || (yyvsp[(7) - (8)].v)[1] || (yyvsp[(7) - (8)].v)[2]){ - c->Circle.n[0] = (yyvsp[(7) - (8)].v)[0]; - c->Circle.n[1] = (yyvsp[(7) - (8)].v)[1]; - c->Circle.n[2] = (yyvsp[(7) - (8)].v)[2]; - End_Curve(c); + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + if(List_Nbr((yyvsp[(6) - (8)].l)) == 3){ + double d[3]; + List_Read((yyvsp[(6) - (8)].l), 0, &d[0]); List_Read((yyvsp[(6) - (8)].l), 1, &d[1]); List_Read((yyvsp[(6) - (8)].l), 2, &d[2]); + GModel::current()->getOCCInternals()->addCircleArc + (num, (int)d[0], (int)d[1], (int)d[2]); + } } - Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); - Curve *rc = CreateReversedCurve(c); - if((yyvsp[(7) - (8)].v)[0] || (yyvsp[(7) - (8)].v)[1] || (yyvsp[(7) - (8)].v)[2]){ - rc->Circle.n[0] = (yyvsp[(7) - (8)].v)[0]; - rc->Circle.n[1] = (yyvsp[(7) - (8)].v)[1]; - rc->Circle.n[2] = (yyvsp[(7) - (8)].v)[2]; - End_Curve(rc); + else{ + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(6) - (8)].l)); + Curve *c = Create_Curve(num, MSH_SEGM_CIRC, 2, temp, NULL, + -1, -1, 0., 1.); + if((yyvsp[(7) - (8)].v)[0] || (yyvsp[(7) - (8)].v)[1] || (yyvsp[(7) - (8)].v)[2]){ + c->Circle.n[0] = (yyvsp[(7) - (8)].v)[0]; + c->Circle.n[1] = (yyvsp[(7) - (8)].v)[1]; + c->Circle.n[2] = (yyvsp[(7) - (8)].v)[2]; + End_Curve(c); + } + Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); + Curve *rc = CreateReversedCurve(c); + if((yyvsp[(7) - (8)].v)[0] || (yyvsp[(7) - (8)].v)[1] || (yyvsp[(7) - (8)].v)[2]){ + rc->Circle.n[0] = (yyvsp[(7) - (8)].v)[0]; + rc->Circle.n[1] = (yyvsp[(7) - (8)].v)[1]; + rc->Circle.n[2] = (yyvsp[(7) - (8)].v)[2]; + End_Curve(rc); + } + List_Delete(temp); } - List_Delete(temp); } List_Delete((yyvsp[(6) - (8)].l)); (yyval.s).Type = MSH_SEGM_CIRC; @@ -7673,8 +7805,8 @@ yyreduce: ;} break; - case 175: -#line 1889 "Gmsh.y" + case 177: +#line 1914 "Gmsh.y" { int num = (int)(yyvsp[(3) - (8)].d); if(FindCurve(num)){ @@ -7706,8 +7838,8 @@ yyreduce: ;} break; - case 176: -#line 1919 "Gmsh.y" + case 178: +#line 1944 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ @@ -7727,8 +7859,8 @@ yyreduce: ;} break; - case 177: -#line 1937 "Gmsh.y" + case 179: +#line 1962 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ @@ -7748,8 +7880,8 @@ yyreduce: ;} break; - case 178: -#line 1956 "Gmsh.y" + case 180: +#line 1981 "Gmsh.y" { int num = (int)(yyvsp[(3) - (11)].d); if(List_Nbr((yyvsp[(6) - (11)].l)) + (int)(yyvsp[(10) - (11)].d) + 1 != List_Nbr((yyvsp[(8) - (11)].l))){ @@ -7777,8 +7909,8 @@ yyreduce: ;} break; - case 179: -#line 1982 "Gmsh.y" + case 181: +#line 2007 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindEdgeLoop(num)){ @@ -7798,15 +7930,15 @@ yyreduce: ;} break; - case 180: -#line 2001 "Gmsh.y" + case 182: +#line 2026 "Gmsh.y" { GModel::current()->getGEOInternals()->addCompoundMesh ( 1 , (yyvsp[(3) - (4)].l) ); ;} break; - case 181: -#line 2006 "Gmsh.y" + case 183: +#line 2031 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindCurve(num)){ @@ -7826,8 +7958,8 @@ yyreduce: ;} break; - case 182: -#line 2024 "Gmsh.y" + case 184: +#line 2049 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].i); int op = (yyvsp[(6) - (8)].i); @@ -7872,8 +8004,8 @@ yyreduce: ;} break; - case 183: -#line 2070 "Gmsh.y" + case 185: +#line 2095 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindSurface(num)){ @@ -7893,8 +8025,8 @@ yyreduce: ;} break; - case 184: -#line 2088 "Gmsh.y" + case 186: +#line 2113 "Gmsh.y" { int num = (int)(yyvsp[(4) - (9)].d), type = 0; if(FindSurface(num)){ @@ -7935,8 +8067,8 @@ yyreduce: ;} break; - case 185: -#line 2127 "Gmsh.y" + case 187: +#line 2152 "Gmsh.y" { myGmshSurface = 0; (yyval.s).Type = 0; @@ -7944,8 +8076,8 @@ yyreduce: ;} break; - case 186: -#line 2133 "Gmsh.y" + case 188: +#line 2158 "Gmsh.y" { myGmshSurface = gmshSurface::getSurface((int)(yyvsp[(3) - (4)].d)); (yyval.s).Type = 0; @@ -7953,8 +8085,8 @@ yyreduce: ;} break; - case 187: -#line 2139 "Gmsh.y" + case 189: +#line 2164 "Gmsh.y" { int num = (int)(yyvsp[(4) - (10)].d); myGmshSurface = gmshParametricSurface::NewParametricSurface(num, (yyvsp[(7) - (10)].c), (yyvsp[(8) - (10)].c), (yyvsp[(9) - (10)].c)); @@ -7963,36 +8095,52 @@ yyreduce: ;} break; - case 188: -#line 2146 "Gmsh.y" + case 190: +#line 2171 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); - if (List_Nbr((yyvsp[(6) - (7)].l)) != 2){ - yymsg(0, "Sphere %d has to be defined using 2 points (center + " - "any point) and not %d", num, List_Nbr((yyvsp[(6) - (7)].l))); + if(List_Nbr((yyvsp[(6) - (7)].l)) == 4){ // solid sphere (volume) + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + double x; List_Read((yyvsp[(6) - (7)].l), 0, &x); + double y; List_Read((yyvsp[(6) - (7)].l), 1, &y); + double z; List_Read((yyvsp[(6) - (7)].l), 2, &z); + double r; List_Read((yyvsp[(6) - (7)].l), 3, &r); + GModel::current()->getOCCInternals()->addSphere(num, x, y, z, r); + } + else{ + yymsg(0, "Sphere only available in OpenCASCADE factory"); + } + (yyval.s).Type = MSH_VOLUME; } else{ - double p1,p2; - List_Read((yyvsp[(6) - (7)].l), 0, &p1); - List_Read((yyvsp[(6) - (7)].l), 1, &p2); - Vertex *v1 = FindPoint((int)p1); - Vertex *v2 = FindPoint((int)p2); - if(!v1) yymsg(0, "Sphere %d : unknown point %d", num, (int)p1); - if(!v2) yymsg(0, "Sphere %d : unknown point %d", num, (int)p2); - if(v1 && v2) - myGmshSurface = gmshSphere::NewSphere - (num, v1->Pos.X, v1->Pos.Y, v1->Pos.Z, - sqrt((v2->Pos.X - v1->Pos.X) * (v2->Pos.X - v1->Pos.X) + - (v2->Pos.Y - v1->Pos.Y) * (v2->Pos.Y - v1->Pos.Y) + - (v2->Pos.Z - v1->Pos.Z) * (v2->Pos.Z - v1->Pos.Z))); + if (List_Nbr((yyvsp[(6) - (7)].l)) != 2){ + yymsg(0, "Sphere %d has to be defined using 2 points (center + " + "any point) and not %d", num, List_Nbr((yyvsp[(6) - (7)].l))); + } + else{ + double p1,p2; + List_Read((yyvsp[(6) - (7)].l), 0, &p1); + List_Read((yyvsp[(6) - (7)].l), 1, &p2); + Vertex *v1 = FindPoint((int)p1); + Vertex *v2 = FindPoint((int)p2); + if(!v1) yymsg(0, "Sphere %d : unknown point %d", num, (int)p1); + if(!v2) yymsg(0, "Sphere %d : unknown point %d", num, (int)p2); + if(v1 && v2) + myGmshSurface = gmshSphere::NewSphere + (num, v1->Pos.X, v1->Pos.Y, v1->Pos.Z, + sqrt((v2->Pos.X - v1->Pos.X) * (v2->Pos.X - v1->Pos.X) + + (v2->Pos.Y - v1->Pos.Y) * (v2->Pos.Y - v1->Pos.Y) + + (v2->Pos.Z - v1->Pos.Z) * (v2->Pos.Z - v1->Pos.Z))); + } + (yyval.s).Type = 0; } - (yyval.s).Type = 0; + List_Delete((yyvsp[(6) - (7)].l)); (yyval.s).Num = num; ;} break; - case 189: -#line 2171 "Gmsh.y" + case 191: +#line 2212 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if (List_Nbr((yyvsp[(6) - (7)].l)) != 2){ @@ -8014,13 +8162,14 @@ yyreduce: (v2->Pos.Y - v1->Pos.Y) * (v2->Pos.Y - v1->Pos.Y) + (v2->Pos.Z - v1->Pos.Z) * (v2->Pos.Z - v1->Pos.Z))); } + List_Delete((yyvsp[(6) - (7)].l)); (yyval.s).Type = 0; (yyval.s).Num = num; ;} break; - case 190: -#line 2196 "Gmsh.y" + case 192: +#line 2238 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindSurfaceLoop(num)){ @@ -8039,15 +8188,15 @@ yyreduce: ;} break; - case 191: -#line 2213 "Gmsh.y" + case 193: +#line 2255 "Gmsh.y" { GModel::current()->getGEOInternals()->addCompoundMesh ( 2 , (yyvsp[(3) - (4)].l) ); ;} break; - case 192: -#line 2217 "Gmsh.y" + case 194: +#line 2259 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindSurface(num)){ @@ -8068,8 +8217,8 @@ yyreduce: ;} break; - case 193: -#line 2237 "Gmsh.y" + case 195: +#line 2279 "Gmsh.y" { int num = (int)(yyvsp[(4) - (12)].d); if(FindSurface(num)){ @@ -8104,8 +8253,8 @@ yyreduce: ;} break; - case 194: -#line 2270 "Gmsh.y" + case 196: +#line 2312 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].i); int op = (yyvsp[(6) - (8)].i); @@ -8150,8 +8299,8 @@ yyreduce: ;} break; - case 195: -#line 2317 "Gmsh.y" + case 197: +#line 2359 "Gmsh.y" { yymsg(0, "'Complex Volume' command is deprecated: use 'Volume' instead"); int num = (int)(yyvsp[(4) - (8)].d); @@ -8171,8 +8320,8 @@ yyreduce: ;} break; - case 196: -#line 2335 "Gmsh.y" + case 198: +#line 2377 "Gmsh.y" { int num = (int)(yyvsp[(3) - (7)].d); if(FindVolume(num)){ @@ -8191,15 +8340,47 @@ yyreduce: ;} break; - case 197: -#line 2352 "Gmsh.y" + case 199: +#line 2394 "Gmsh.y" + { + int num = (int)(yyvsp[(3) - (9)].d); + if(FindVolume(num)){ + yymsg(0, "Volume %d already exists", num); + } + else{ + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + std::vector<std::vector<int> > edges; + for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++){ + List_T *l; List_Read((yyvsp[(7) - (9)].l), i, &l); + std::vector<int> v; + for(int j = 0; j < List_Nbr(l); j++){ + double d = 0; List_Read(l, j, &d); v.push_back(d); + } + edges.push_back(v); + } + GModel::current()->getOCCInternals()->addThruSections(num, edges); + } + else{ + yymsg(0, "ThruSections only available in OpenCASCADE factory"); + } + } + for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++) + List_Delete(*(List_T**)List_Pointer((yyvsp[(7) - (9)].l), i)); + List_Delete((yyvsp[(7) - (9)].l)); + (yyval.s).Type = MSH_VOLUME; + (yyval.s).Num = num; + ;} + break; + + case 200: +#line 2423 "Gmsh.y" { GModel::current()->getGEOInternals()->addCompoundMesh ( 3 , (yyvsp[(3) - (4)].l) ); ;} break; - case 198: -#line 2356 "Gmsh.y" + case 201: +#line 2427 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].d); if(FindVolume(num)){ @@ -8217,8 +8398,8 @@ yyreduce: ;} break; - case 199: -#line 2372 "Gmsh.y" + case 202: +#line 2443 "Gmsh.y" { int num = (int)(yyvsp[(4) - (8)].i); int op = (yyvsp[(6) - (8)].i); @@ -8263,48 +8444,48 @@ yyreduce: ;} break; - case 200: -#line 2420 "Gmsh.y" + case 203: +#line 2491 "Gmsh.y" { TranslateShapes((yyvsp[(2) - (5)].v)[0], (yyvsp[(2) - (5)].v)[1], (yyvsp[(2) - (5)].v)[2], (yyvsp[(4) - (5)].l)); (yyval.l) = (yyvsp[(4) - (5)].l); ;} break; - case 201: -#line 2425 "Gmsh.y" + case 204: +#line 2496 "Gmsh.y" { RotateShapes((yyvsp[(3) - (11)].v)[0], (yyvsp[(3) - (11)].v)[1], (yyvsp[(3) - (11)].v)[2], (yyvsp[(5) - (11)].v)[0], (yyvsp[(5) - (11)].v)[1], (yyvsp[(5) - (11)].v)[2], (yyvsp[(7) - (11)].d), (yyvsp[(10) - (11)].l)); (yyval.l) = (yyvsp[(10) - (11)].l); ;} break; - case 202: -#line 2430 "Gmsh.y" + case 205: +#line 2501 "Gmsh.y" { SymmetryShapes((yyvsp[(2) - (5)].v)[0], (yyvsp[(2) - (5)].v)[1], (yyvsp[(2) - (5)].v)[2], (yyvsp[(2) - (5)].v)[3], (yyvsp[(4) - (5)].l)); (yyval.l) = (yyvsp[(4) - (5)].l); ;} break; - case 203: -#line 2435 "Gmsh.y" + case 206: +#line 2506 "Gmsh.y" { DilatShapes((yyvsp[(3) - (9)].v)[0], (yyvsp[(3) - (9)].v)[1], (yyvsp[(3) - (9)].v)[2], (yyvsp[(5) - (9)].d), (yyvsp[(5) - (9)].d), (yyvsp[(5) - (9)].d), (yyvsp[(8) - (9)].l)); (yyval.l) = (yyvsp[(8) - (9)].l); ;} break; - case 204: -#line 2440 "Gmsh.y" + case 207: +#line 2511 "Gmsh.y" { DilatShapes((yyvsp[(3) - (9)].v)[0], (yyvsp[(3) - (9)].v)[1], (yyvsp[(3) - (9)].v)[2], (yyvsp[(5) - (9)].v)[0], (yyvsp[(5) - (9)].v)[1], (yyvsp[(5) - (9)].v)[2], (yyvsp[(8) - (9)].l)); (yyval.l) = (yyvsp[(8) - (9)].l); ;} break; - case 205: -#line 2445 "Gmsh.y" + case 208: +#line 2516 "Gmsh.y" { (yyval.l) = List_Create(3, 3, sizeof(Shape)); if(!strcmp((yyvsp[(1) - (4)].c), "Duplicata")){ @@ -8329,8 +8510,8 @@ yyreduce: ;} break; - case 206: -#line 2468 "Gmsh.y" + case 209: +#line 2539 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); IntersectCurvesWithSurface((yyvsp[(4) - (9)].l), (int)(yyvsp[(8) - (9)].d), (yyval.l)); @@ -8338,8 +8519,8 @@ yyreduce: ;} break; - case 207: -#line 2474 "Gmsh.y" + case 210: +#line 2545 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape*)); List_T *tmp = ListOfDouble2ListOfInt((yyvsp[(7) - (9)].l)); @@ -8349,32 +8530,32 @@ yyreduce: ;} break; - case 208: -#line 2484 "Gmsh.y" + case 211: +#line 2555 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 209: -#line 2485 "Gmsh.y" + case 212: +#line 2556 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 210: -#line 2490 "Gmsh.y" + case 213: +#line 2561 "Gmsh.y" { (yyval.l) = List_Create(3, 3, sizeof(Shape)); ;} break; - case 211: -#line 2494 "Gmsh.y" + case 214: +#line 2565 "Gmsh.y" { List_Add((yyval.l), &(yyvsp[(2) - (2)].s)); ;} break; - case 212: -#line 2498 "Gmsh.y" + case 215: +#line 2569 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -8392,15 +8573,21 @@ yyreduce: TheShape.Type = MSH_POINT_FROM_GMODEL; List_Add((yyval.l), &TheShape); } - else - yymsg(1, "Unknown point %d", TheShape.Num); + else{ + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + TheShape.Type = MSH_UNKNOWN; + List_Add((yyval.l), &TheShape); + } + else + yymsg(1, "Unknown point %d", TheShape.Num); + } } } ;} break; - case 213: -#line 2521 "Gmsh.y" + case 216: +#line 2598 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -8418,15 +8605,21 @@ yyreduce: TheShape.Type = MSH_SEGM_FROM_GMODEL; List_Add((yyval.l), &TheShape); } - else - yymsg(1, "Unknown curve %d", TheShape.Num); + else{ + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + TheShape.Type = MSH_UNKNOWN; + List_Add((yyval.l), &TheShape); + } + else + yymsg(1, "Unknown curve %d", TheShape.Num); + } } } ;} break; - case 214: -#line 2544 "Gmsh.y" + case 217: +#line 2627 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -8444,15 +8637,21 @@ yyreduce: TheShape.Type = MSH_SURF_FROM_GMODEL; List_Add((yyval.l), &TheShape); } - else - yymsg(1, "Unknown surface %d", TheShape.Num); + else{ + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + TheShape.Type = MSH_UNKNOWN; + List_Add((yyval.l), &TheShape); + } + else + yymsg(1, "Unknown surface %d", TheShape.Num); + } } } ;} break; - case 215: -#line 2567 "Gmsh.y" + case 218: +#line 2656 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; @@ -8470,15 +8669,21 @@ yyreduce: TheShape.Type = MSH_VOLUME_FROM_GMODEL; List_Add((yyval.l), &TheShape); } - else - yymsg(1, "Unknown volume %d", TheShape.Num); + else{ + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + TheShape.Type = MSH_UNKNOWN; + List_Add((yyval.l), &TheShape); + } + else + yymsg(1, "Unknown volume %d", TheShape.Num); + } } } ;} break; - case 216: -#line 2595 "Gmsh.y" + case 219: +#line 2690 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(List_Nbr((yyvsp[(7) - (8)].l)) == 4){ @@ -8501,8 +8706,8 @@ yyreduce: ;} break; - case 217: -#line 2616 "Gmsh.y" + case 220: +#line 2711 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) int t = (int)(yyvsp[(4) - (10)].d); @@ -8530,8 +8735,8 @@ yyreduce: ;} break; - case 218: -#line 2643 "Gmsh.y" + case 221: +#line 2738 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(List_Nbr((yyvsp[(12) - (14)].l)) == 0){ @@ -8553,8 +8758,8 @@ yyreduce: ;} break; - case 219: -#line 2664 "Gmsh.y" + case 222: +#line 2759 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(List_Nbr((yyvsp[(14) - (16)].l)) == 0){ @@ -8577,8 +8782,8 @@ yyreduce: ;} break; - case 220: -#line 2685 "Gmsh.y" + case 223: +#line 2780 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(List_Nbr((yyvsp[(10) - (12)].l)) == 1){ @@ -8600,8 +8805,8 @@ yyreduce: ;} break; - case 221: -#line 2705 "Gmsh.y" + case 224: +#line 2800 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(!strcmp((yyvsp[(2) - (8)].c), "Union")){ @@ -8715,8 +8920,8 @@ yyreduce: ;} break; - case 222: -#line 2817 "Gmsh.y" + case 225: +#line 2912 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(!strcmp((yyvsp[(2) - (8)].c), "MathEval")){ @@ -8737,8 +8942,8 @@ yyreduce: ;} break; - case 223: -#line 2836 "Gmsh.y" + case 226: +#line 2931 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(!strcmp((yyvsp[(2) - (6)].c), "CutMesh")){ @@ -8778,8 +8983,8 @@ yyreduce: ;} break; - case 224: -#line 2875 "Gmsh.y" + case 227: +#line 2970 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) if(!strcmp((yyvsp[(2) - (14)].c), "Cylinder") && List_Nbr((yyvsp[(12) - (14)].l)) == 1){ @@ -8884,8 +9089,8 @@ yyreduce: ;} break; - case 225: -#line 2983 "Gmsh.y" + case 228: +#line 3078 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; @@ -8896,8 +9101,8 @@ yyreduce: ;} break; - case 226: -#line 2992 "Gmsh.y" + case 229: +#line 3087 "Gmsh.y" { #if defined(HAVE_MESH) GModel::current()->getFields()->deleteField((int)(yyvsp[(4) - (6)].d)); @@ -8905,8 +9110,8 @@ yyreduce: ;} break; - case 227: -#line 2998 "Gmsh.y" + case 230: +#line 3093 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (6)].c), "View")){ @@ -8923,8 +9128,8 @@ yyreduce: ;} break; - case 228: -#line 3013 "Gmsh.y" + case 231: +#line 3108 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (3)].c), "Meshes") || !strcmp((yyvsp[(2) - (3)].c), "All")){ ClearProject(); @@ -8954,8 +9159,8 @@ yyreduce: ;} break; - case 229: -#line 3041 "Gmsh.y" + case 232: +#line 3136 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (4)].c), "Empty") && !strcmp((yyvsp[(3) - (4)].c), "Views")){ @@ -8969,8 +9174,8 @@ yyreduce: ;} break; - case 230: -#line 3058 "Gmsh.y" + case 233: +#line 3153 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ Shape TheShape; @@ -8981,8 +9186,8 @@ yyreduce: ;} break; - case 231: -#line 3067 "Gmsh.y" + case 234: +#line 3162 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(5) - (6)].l)); i++){ Shape TheShape; @@ -8993,8 +9198,8 @@ yyreduce: ;} break; - case 232: -#line 3081 "Gmsh.y" + case 235: +#line 3176 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ Shape TheShape; @@ -9005,8 +9210,8 @@ yyreduce: ;} break; - case 233: -#line 3095 "Gmsh.y" + case 236: +#line 3190 "Gmsh.y" { for(int i = 0; i < 4; i++) VisibilityShape((yyvsp[(2) - (3)].c), i, 1, false); @@ -9014,8 +9219,8 @@ yyreduce: ;} break; - case 234: -#line 3101 "Gmsh.y" + case 237: +#line 3196 "Gmsh.y" { for(int i = 0; i < 4; i++) VisibilityShape((yyvsp[(2) - (3)].c), i, 0, false); @@ -9023,8 +9228,8 @@ yyreduce: ;} break; - case 235: -#line 3107 "Gmsh.y" + case 238: +#line 3202 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; @@ -9035,8 +9240,8 @@ yyreduce: ;} break; - case 236: -#line 3116 "Gmsh.y" + case 239: +#line 3211 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ Shape TheShape; @@ -9047,8 +9252,8 @@ yyreduce: ;} break; - case 237: -#line 3125 "Gmsh.y" + case 240: +#line 3220 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; @@ -9059,8 +9264,8 @@ yyreduce: ;} break; - case 238: -#line 3134 "Gmsh.y" + case 241: +#line 3229 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ Shape TheShape; @@ -9071,8 +9276,8 @@ yyreduce: ;} break; - case 239: -#line 3148 "Gmsh.y" + case 242: +#line 3243 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (3)].c), "Include")){ std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(2) - (3)].c)); @@ -9136,8 +9341,8 @@ yyreduce: ;} break; - case 240: -#line 3210 "Gmsh.y" + case 243: +#line 3305 "Gmsh.y" { int n = List_Nbr((yyvsp[(3) - (5)].l)); if(n == 1){ @@ -9157,8 +9362,8 @@ yyreduce: ;} break; - case 241: -#line 3228 "Gmsh.y" + case 244: +#line 3323 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(1) - (7)].c), "Save") && !strcmp((yyvsp[(2) - (7)].c), "View")){ @@ -9177,8 +9382,8 @@ yyreduce: ;} break; - case 242: -#line 3245 "Gmsh.y" + case 245: +#line 3340 "Gmsh.y" { #if defined(HAVE_POST) && defined(HAVE_MESH) if(!strcmp((yyvsp[(1) - (7)].c), "Background") && !strcmp((yyvsp[(2) - (7)].c), "Mesh") && !strcmp((yyvsp[(3) - (7)].c), "View")){ @@ -9195,8 +9400,8 @@ yyreduce: ;} break; - case 243: -#line 3260 "Gmsh.y" + case 246: +#line 3355 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (3)].c), "Sleep")){ SleepInSeconds((yyvsp[(2) - (3)].d)); @@ -9227,8 +9432,8 @@ yyreduce: ;} break; - case 244: -#line 3289 "Gmsh.y" + case 247: +#line 3384 "Gmsh.y" { #if defined(HAVE_PLUGINS) try { @@ -9242,8 +9447,8 @@ yyreduce: ;} break; - case 245: -#line 3301 "Gmsh.y" + case 248: +#line 3396 "Gmsh.y" { #if defined(HAVE_POST) if(!strcmp((yyvsp[(2) - (3)].c), "ElementsFromAllViews")) @@ -9269,41 +9474,42 @@ yyreduce: ;} break; - case 246: -#line 3325 "Gmsh.y" + case 249: +#line 3420 "Gmsh.y" { Msg::Exit(0); ;} break; - case 247: -#line 3329 "Gmsh.y" + case 250: +#line 3424 "Gmsh.y" { gmsh_yyerrorstate = 999; // this will be checked when yyparse returns YYABORT; ;} break; - case 248: -#line 3334 "Gmsh.y" + case 251: +#line 3429 "Gmsh.y" { // FIXME: this is a hack to force a transfer from the old DB to // the new DB. This will become unnecessary if/when we fill the // GModel directly during parsing. GModel::current()->importGEOInternals(); + GModel::current()->importOCCInternals(); ;} break; - case 249: -#line 3341 "Gmsh.y" + case 252: +#line 3437 "Gmsh.y" { new GModel(); GModel::current(GModel::list.size() - 1); ;} break; - case 250: -#line 3346 "Gmsh.y" + case 253: +#line 3442 "Gmsh.y" { CTX::instance()->forcedBBox = 0; GModel::current()->importGEOInternals(); @@ -9311,16 +9517,16 @@ yyreduce: ;} break; - case 251: -#line 3352 "Gmsh.y" + case 254: +#line 3448 "Gmsh.y" { CTX::instance()->forcedBBox = 1; SetBoundingBox((yyvsp[(3) - (15)].d), (yyvsp[(5) - (15)].d), (yyvsp[(7) - (15)].d), (yyvsp[(9) - (15)].d), (yyvsp[(11) - (15)].d), (yyvsp[(13) - (15)].d)); ;} break; - case 252: -#line 3357 "Gmsh.y" + case 255: +#line 3453 "Gmsh.y" { #if defined(HAVE_OPENGL) drawContext::global()->draw(); @@ -9328,8 +9534,8 @@ yyreduce: ;} break; - case 253: -#line 3363 "Gmsh.y" + case 256: +#line 3459 "Gmsh.y" { #if defined(HAVE_OPENGL) CTX::instance()->mesh.changed = ENT_ALL; @@ -9339,30 +9545,30 @@ yyreduce: ;} break; - case 254: -#line 3371 "Gmsh.y" + case 257: +#line 3467 "Gmsh.y" { GModel::current()->createTopologyFromMesh(); ;} break; - case 255: -#line 3375 "Gmsh.y" + case 258: +#line 3471 "Gmsh.y" { GModel::current()->createTopologyFromMesh(1); ;} break; - case 256: -#line 3379 "Gmsh.y" + case 259: +#line 3475 "Gmsh.y" { GModel::current()->importGEOInternals(); GModel::current()->refineMesh(CTX::instance()->mesh.secondOrderLinear); ;} break; - case 257: -#line 3385 "Gmsh.y" + case 260: +#line 3481 "Gmsh.y" { int lock = CTX::instance()->lock; CTX::instance()->lock = 0; @@ -9418,8 +9624,8 @@ yyreduce: ;} break; - case 258: -#line 3444 "Gmsh.y" + case 261: +#line 3540 "Gmsh.y" { #if defined(HAVE_POPPLER) std::vector<int> is; @@ -9433,8 +9639,8 @@ yyreduce: ;} break; - case 259: -#line 3460 "Gmsh.y" + case 262: +#line 3556 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(3) - (6)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(5) - (6)].d); @@ -9453,8 +9659,8 @@ yyreduce: ;} break; - case 260: -#line 3477 "Gmsh.y" + case 263: +#line 3573 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(3) - (8)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(5) - (8)].d); @@ -9473,8 +9679,8 @@ yyreduce: ;} break; - case 261: -#line 3494 "Gmsh.y" + case 264: +#line 3590 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(5) - (8)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(7) - (8)].d); @@ -9498,8 +9704,8 @@ yyreduce: ;} break; - case 262: -#line 3516 "Gmsh.y" + case 265: +#line 3612 "Gmsh.y" { LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(5) - (10)].d); LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(7) - (10)].d); @@ -9523,8 +9729,8 @@ yyreduce: ;} break; - case 263: -#line 3538 "Gmsh.y" + case 266: +#line 3634 "Gmsh.y" { if(ImbricatedLoop <= 0){ yymsg(0, "Invalid For/EndFor loop"); @@ -9561,8 +9767,8 @@ yyreduce: ;} break; - case 264: -#line 3573 "Gmsh.y" + case 267: +#line 3669 "Gmsh.y" { if(!FunctionManager::Instance()->createFunction (std::string((yyvsp[(2) - (2)].c)), gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -9572,8 +9778,8 @@ yyreduce: ;} break; - case 265: -#line 3581 "Gmsh.y" + case 268: +#line 3677 "Gmsh.y" { if(!FunctionManager::Instance()->createFunction (std::string((yyvsp[(2) - (2)].c)), gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -9583,8 +9789,8 @@ yyreduce: ;} break; - case 266: -#line 3589 "Gmsh.y" + case 269: +#line 3685 "Gmsh.y" { if(!FunctionManager::Instance()->leaveFunction (&gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -9592,8 +9798,8 @@ yyreduce: ;} break; - case 267: -#line 3595 "Gmsh.y" + case 270: +#line 3691 "Gmsh.y" { if(!FunctionManager::Instance()->enterFunction (std::string((yyvsp[(2) - (3)].c)), &gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -9602,8 +9808,8 @@ yyreduce: ;} break; - case 268: -#line 3602 "Gmsh.y" + case 271: +#line 3698 "Gmsh.y" { if(!FunctionManager::Instance()->enterFunction (std::string((yyvsp[(2) - (3)].c)), &gmsh_yyin, gmsh_yyname, gmsh_yylineno)) @@ -9612,8 +9818,8 @@ yyreduce: ;} break; - case 269: -#line 3609 "Gmsh.y" + case 272: +#line 3705 "Gmsh.y" { ImbricatedTest++; if(ImbricatedTest > MAX_RECUR_TESTS-1){ @@ -9635,8 +9841,8 @@ yyreduce: ;} break; - case 270: -#line 3629 "Gmsh.y" + case 273: +#line 3725 "Gmsh.y" { if(ImbricatedTest > 0){ if (statusImbricatedTests[ImbricatedTest]){ @@ -9664,8 +9870,8 @@ yyreduce: ;} break; - case 271: -#line 3655 "Gmsh.y" + case 274: +#line 3751 "Gmsh.y" { if(ImbricatedTest > 0){ if(statusImbricatedTests[ImbricatedTest]){ @@ -9679,8 +9885,8 @@ yyreduce: ;} break; - case 272: -#line 3667 "Gmsh.y" + case 275: +#line 3763 "Gmsh.y" { ImbricatedTest--; if(ImbricatedTest < 0) @@ -9688,8 +9894,8 @@ yyreduce: ;} break; - case 273: -#line 3679 "Gmsh.y" + case 276: +#line 3775 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE, (yyvsp[(4) - (5)].l), @@ -9699,8 +9905,8 @@ yyreduce: ;} break; - case 274: -#line 3687 "Gmsh.y" + case 277: +#line 3783 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(ROTATE, (yyvsp[(10) - (11)].l), @@ -9710,8 +9916,8 @@ yyreduce: ;} break; - case 275: -#line 3695 "Gmsh.y" + case 278: +#line 3791 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE_ROTATE, (yyvsp[(12) - (13)].l), @@ -9721,8 +9927,8 @@ yyreduce: ;} break; - case 276: -#line 3703 "Gmsh.y" + case 279: +#line 3799 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -9730,8 +9936,8 @@ yyreduce: ;} break; - case 277: -#line 3709 "Gmsh.y" + case 280: +#line 3805 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE, (yyvsp[(4) - (7)].l), @@ -9741,8 +9947,8 @@ yyreduce: ;} break; - case 278: -#line 3717 "Gmsh.y" + case 281: +#line 3813 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -9750,8 +9956,8 @@ yyreduce: ;} break; - case 279: -#line 3723 "Gmsh.y" + case 282: +#line 3819 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(ROTATE, (yyvsp[(10) - (13)].l), @@ -9761,8 +9967,8 @@ yyreduce: ;} break; - case 280: -#line 3731 "Gmsh.y" + case 283: +#line 3827 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -9770,8 +9976,8 @@ yyreduce: ;} break; - case 281: -#line 3737 "Gmsh.y" + case 284: +#line 3833 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(TRANSLATE_ROTATE, (yyvsp[(12) - (15)].l), @@ -9781,8 +9987,8 @@ yyreduce: ;} break; - case 282: -#line 3745 "Gmsh.y" + case 285: +#line 3841 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -9790,8 +9996,8 @@ yyreduce: ;} break; - case 283: -#line 3751 "Gmsh.y" + case 286: +#line 3847 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShapes(BOUNDARY_LAYER, (yyvsp[(3) - (6)].l), 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., @@ -9800,8 +10006,8 @@ yyreduce: ;} break; - case 284: -#line 3759 "Gmsh.y" + case 287: +#line 3855 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_POINT, (int)(yyvsp[(4) - (8)].d), @@ -9810,8 +10016,8 @@ yyreduce: ;} break; - case 285: -#line 3766 "Gmsh.y" + case 288: +#line 3862 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (8)].d), @@ -9820,8 +10026,8 @@ yyreduce: ;} break; - case 286: -#line 3773 "Gmsh.y" + case 289: +#line 3869 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (8)].d), @@ -9830,8 +10036,8 @@ yyreduce: ;} break; - case 287: -#line 3780 "Gmsh.y" + case 290: +#line 3876 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_POINT, (int)(yyvsp[(4) - (12)].d), @@ -9840,8 +10046,8 @@ yyreduce: ;} break; - case 288: -#line 3787 "Gmsh.y" + case 291: +#line 3883 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (12)].d), @@ -9850,8 +10056,8 @@ yyreduce: ;} break; - case 289: -#line 3794 "Gmsh.y" + case 292: +#line 3890 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (12)].d), @@ -9860,8 +10066,8 @@ yyreduce: ;} break; - case 290: -#line 3801 "Gmsh.y" + case 293: +#line 3897 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_POINT, (int)(yyvsp[(4) - (14)].d), @@ -9870,8 +10076,8 @@ yyreduce: ;} break; - case 291: -#line 3808 "Gmsh.y" + case 294: +#line 3904 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (14)].d), @@ -9880,8 +10086,8 @@ yyreduce: ;} break; - case 292: -#line 3815 "Gmsh.y" + case 295: +#line 3911 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (14)].d), @@ -9890,8 +10096,8 @@ yyreduce: ;} break; - case 293: -#line 3822 "Gmsh.y" + case 296: +#line 3918 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -9899,8 +10105,8 @@ yyreduce: ;} break; - case 294: -#line 3828 "Gmsh.y" + case 297: +#line 3924 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_POINT, (int)(yyvsp[(4) - (12)].d), @@ -9909,8 +10115,8 @@ yyreduce: ;} break; - case 295: -#line 3835 "Gmsh.y" + case 298: +#line 3931 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -9918,8 +10124,8 @@ yyreduce: ;} break; - case 296: -#line 3841 "Gmsh.y" + case 299: +#line 3937 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (12)].d), @@ -9928,8 +10134,8 @@ yyreduce: ;} break; - case 297: -#line 3848 "Gmsh.y" + case 300: +#line 3944 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -9937,8 +10143,8 @@ yyreduce: ;} break; - case 298: -#line 3854 "Gmsh.y" + case 301: +#line 3950 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (12)].d), @@ -9947,8 +10153,8 @@ yyreduce: ;} break; - case 299: -#line 3861 "Gmsh.y" + case 302: +#line 3957 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -9956,8 +10162,8 @@ yyreduce: ;} break; - case 300: -#line 3867 "Gmsh.y" + case 303: +#line 3963 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_POINT, (int)(yyvsp[(4) - (16)].d), @@ -9966,8 +10172,8 @@ yyreduce: ;} break; - case 301: -#line 3874 "Gmsh.y" + case 304: +#line 3970 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -9975,8 +10181,8 @@ yyreduce: ;} break; - case 302: -#line 3880 "Gmsh.y" + case 305: +#line 3976 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (16)].d), @@ -9985,8 +10191,8 @@ yyreduce: ;} break; - case 303: -#line 3887 "Gmsh.y" + case 306: +#line 3983 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -9994,8 +10200,8 @@ yyreduce: ;} break; - case 304: -#line 3893 "Gmsh.y" + case 307: +#line 3989 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (16)].d), @@ -10004,8 +10210,8 @@ yyreduce: ;} break; - case 305: -#line 3900 "Gmsh.y" + case 308: +#line 3996 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -10013,8 +10219,8 @@ yyreduce: ;} break; - case 306: -#line 3906 "Gmsh.y" + case 309: +#line 4002 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_POINT, (int)(yyvsp[(4) - (18)].d), @@ -10023,8 +10229,8 @@ yyreduce: ;} break; - case 307: -#line 3913 "Gmsh.y" + case 310: +#line 4009 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -10032,8 +10238,8 @@ yyreduce: ;} break; - case 308: -#line 3919 "Gmsh.y" + case 311: +#line 4015 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (18)].d), @@ -10042,8 +10248,8 @@ yyreduce: ;} break; - case 309: -#line 3926 "Gmsh.y" + case 312: +#line 4022 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; @@ -10051,8 +10257,8 @@ yyreduce: ;} break; - case 310: -#line 3932 "Gmsh.y" + case 313: +#line 4028 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); ExtrudeShape(TRANSLATE_ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (18)].d), @@ -10061,20 +10267,20 @@ yyreduce: ;} break; - case 311: -#line 3943 "Gmsh.y" + case 314: +#line 4039 "Gmsh.y" { ;} break; - case 312: -#line 3946 "Gmsh.y" + case 315: +#line 4042 "Gmsh.y" { ;} break; - case 313: -#line 3952 "Gmsh.y" + case 316: +#line 4048 "Gmsh.y" { int n = (int)fabs((yyvsp[(3) - (5)].d)); if(n){ // we accept n==0 to easily disable layers @@ -10088,8 +10294,8 @@ yyreduce: ;} break; - case 314: -#line 3964 "Gmsh.y" + case 317: +#line 4060 "Gmsh.y" { extr.mesh.ExtrudeMesh = true; extr.mesh.NbLayer = List_Nbr((yyvsp[(3) - (7)].l)); @@ -10111,8 +10317,8 @@ yyreduce: ;} break; - case 315: -#line 3984 "Gmsh.y" + case 318: +#line 4080 "Gmsh.y" { yymsg(0, "Explicit region numbers in layers are deprecated"); extr.mesh.ExtrudeMesh = true; @@ -10137,43 +10343,43 @@ yyreduce: ;} break; - case 316: -#line 4008 "Gmsh.y" + case 319: +#line 4104 "Gmsh.y" { extr.mesh.ScaleLast = true; ;} break; - case 317: -#line 4012 "Gmsh.y" + case 320: +#line 4108 "Gmsh.y" { extr.mesh.Recombine = true; ;} break; - case 318: -#line 4016 "Gmsh.y" + case 321: +#line 4112 "Gmsh.y" { extr.mesh.Recombine = (yyvsp[(2) - (3)].d) ? true : false; ;} break; - case 319: -#line 4020 "Gmsh.y" + case 322: +#line 4116 "Gmsh.y" { yymsg(0, "Keyword 'QuadTriSngl' deprecated. Use 'QuadTriNoNewVerts' instead."); ;} break; - case 320: -#line 4024 "Gmsh.y" + case 323: +#line 4120 "Gmsh.y" { yymsg(0, "Keyword 'QuadTriSngl' deprecated. Use 'QuadTriNoNewVerts' instead."); ;} break; - case 321: -#line 4028 "Gmsh.y" + case 324: +#line 4124 "Gmsh.y" { yymsg(0, "Method 'QuadTriDbl' deprecated. Use 'QuadTriAddVerts' instead, " "which has no requirement for the number of extrusion layers and meshes " @@ -10181,8 +10387,8 @@ yyreduce: ;} break; - case 322: -#line 4034 "Gmsh.y" + case 325: +#line 4130 "Gmsh.y" { yymsg(0, "Method 'QuadTriDbl' deprecated. Use 'QuadTriAddVerts' instead, " "which has no requirement for the number of extrusion layers and meshes " @@ -10190,36 +10396,36 @@ yyreduce: ;} break; - case 323: -#line 4040 "Gmsh.y" + case 326: +#line 4136 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_ADDVERTS_1; ;} break; - case 324: -#line 4044 "Gmsh.y" + case 327: +#line 4140 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_ADDVERTS_1_RECOMB; ;} break; - case 325: -#line 4048 "Gmsh.y" + case 328: +#line 4144 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_NOVERTS_1; ;} break; - case 326: -#line 4052 "Gmsh.y" + case 329: +#line 4148 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_NOVERTS_1_RECOMB; ;} break; - case 327: -#line 4056 "Gmsh.y" + case 330: +#line 4152 "Gmsh.y" { int num = (int)(yyvsp[(3) - (9)].d); if(FindSurface(num)){ @@ -10240,8 +10446,8 @@ yyreduce: ;} break; - case 328: -#line 4075 "Gmsh.y" + case 331: +#line 4171 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (6)].c), "Index")) extr.mesh.BoundaryLayerIndex = (yyvsp[(4) - (6)].d); @@ -10251,15 +10457,66 @@ yyreduce: ;} break; - case 329: -#line 4087 "Gmsh.y" + case 332: +#line 4183 "Gmsh.y" + { (yyval.i) = OCC_Internals::Fuse; ;} + break; + + case 333: +#line 4184 "Gmsh.y" + { (yyval.i) = OCC_Internals::Intersection; ;} + break; + + case 334: +#line 4185 "Gmsh.y" + { (yyval.i) = OCC_Internals::Cut; ;} + break; + + case 335: +#line 4189 "Gmsh.y" + { (yyval.i) = 0; ;} + break; + + case 336: +#line 4190 "Gmsh.y" + { (yyval.i) = 1; ;} + break; + + case 337: +#line 4191 "Gmsh.y" + { (yyval.i) = (yyvsp[(2) - (3)].d); ;} + break; + + case 338: +#line 4195 "Gmsh.y" + { + (yyval.l) = List_Create(2, 1, sizeof(Shape)); + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + std::vector<int> shape[4], tool[4]; + for(int i = 0; i < List_Nbr((yyvsp[(3) - (9)].l)); i++){ + Shape s; List_Read((yyvsp[(3) - (9)].l), i, &s); shape[3].push_back(s.Num); + } + for(int i = 0; i < List_Nbr((yyvsp[(7) - (9)].l)); i++){ + Shape s; List_Read((yyvsp[(7) - (9)].l), i, &s); tool[3].push_back(s.Num); + } + GModel::current()->getOCCInternals()->applyBooleanOperator + (-1, shape, tool, (OCC_Internals::BooleanOperator)(yyvsp[(1) - (9)].i), (yyvsp[(4) - (9)].i), (yyvsp[(8) - (9)].i)); + // FIXME add to returned list of shapes + } + List_Delete((yyvsp[(3) - (9)].l)); + List_Delete((yyvsp[(7) - (9)].l)); + ;} + break; + + case 339: +#line 4216 "Gmsh.y" { (yyval.v)[0] = (yyval.v)[1] = 1.; ;} break; - case 330: -#line 4091 "Gmsh.y" + case 340: +#line 4220 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (3)].c), "Progression") || !strcmp((yyvsp[(2) - (3)].c), "Power")) (yyval.v)[0] = 1.; @@ -10274,15 +10531,15 @@ yyreduce: ;} break; - case 331: -#line 4106 "Gmsh.y" + case 341: +#line 4235 "Gmsh.y" { (yyval.i) = -1; // left ;} break; - case 332: -#line 4110 "Gmsh.y" + case 342: +#line 4239 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (1)].c), "Right")) (yyval.i) = 1; @@ -10298,50 +10555,50 @@ yyreduce: ;} break; - case 333: -#line 4126 "Gmsh.y" + case 343: +#line 4255 "Gmsh.y" { (yyval.l) = List_Create(1, 1, sizeof(double)); ;} break; - case 334: -#line 4130 "Gmsh.y" + case 344: +#line 4259 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (2)].l); ;} break; - case 335: -#line 4135 "Gmsh.y" + case 345: +#line 4264 "Gmsh.y" { (yyval.i) = 45; ;} break; - case 336: -#line 4139 "Gmsh.y" + case 346: +#line 4268 "Gmsh.y" { (yyval.i) = (int)(yyvsp[(2) - (2)].d); ;} break; - case 337: -#line 4145 "Gmsh.y" + case 347: +#line 4274 "Gmsh.y" { (yyval.l) = List_Create(1, 1, sizeof(double)); ;} break; - case 338: -#line 4149 "Gmsh.y" + case 348: +#line 4278 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (2)].l); ;} break; - case 339: -#line 4156 "Gmsh.y" + case 349: +#line 4285 "Gmsh.y" { int type = (int)(yyvsp[(6) - (7)].v)[0]; double coef = fabs((yyvsp[(6) - (7)].v)[1]); @@ -10399,8 +10656,8 @@ yyreduce: ;} break; - case 340: -#line 4212 "Gmsh.y" + case 350: +#line 4341 "Gmsh.y" { int k = List_Nbr((yyvsp[(4) - (6)].l)); if(k != 0 && k != 3 && k != 4){ @@ -10472,16 +10729,16 @@ yyreduce: ;} break; - case 341: -#line 4282 "Gmsh.y" + case 351: +#line 4411 "Gmsh.y" { yymsg(1, "Elliptic Surface is deprecated: use Transfinite instead (with smoothing)"); List_Delete((yyvsp[(7) - (8)].l)); ;} break; - case 342: -#line 4287 "Gmsh.y" + case 352: +#line 4416 "Gmsh.y" { int k = List_Nbr((yyvsp[(4) - (5)].l)); if(k != 0 && k != 6 && k != 8){ @@ -10550,8 +10807,8 @@ yyreduce: ;} break; - case 343: -#line 4354 "Gmsh.y" + case 353: +#line 4483 "Gmsh.y" { if(!(yyvsp[(2) - (3)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Volumes); @@ -10589,8 +10846,8 @@ yyreduce: ;} break; - case 344: -#line 4390 "Gmsh.y" + case 354: +#line 4519 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(4) - (8)].l)); i++){ double d; @@ -10600,8 +10857,8 @@ yyreduce: ;} break; - case 345: -#line 4398 "Gmsh.y" + case 355: +#line 4527 "Gmsh.y" { if(!(yyvsp[(3) - (5)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Surfaces); @@ -10646,8 +10903,8 @@ yyreduce: ;} break; - case 346: -#line 4441 "Gmsh.y" + case 356: +#line 4570 "Gmsh.y" { if(!(yyvsp[(3) - (4)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Volumes); @@ -10688,8 +10945,8 @@ yyreduce: ;} break; - case 347: -#line 4480 "Gmsh.y" + case 357: +#line 4609 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (6)].l)); i++){ double d; @@ -10711,8 +10968,8 @@ yyreduce: ;} break; - case 348: -#line 4501 "Gmsh.y" + case 358: +#line 4630 "Gmsh.y" { if (List_Nbr((yyvsp[(4) - (11)].l)) != List_Nbr((yyvsp[(8) - (11)].l))){ yymsg(0, "Number of master lines (%d) different from number of " @@ -10745,8 +11002,8 @@ yyreduce: ;} break; - case 349: -#line 4533 "Gmsh.y" + case 359: +#line 4662 "Gmsh.y" { if (List_Nbr((yyvsp[(4) - (11)].l)) != List_Nbr((yyvsp[(8) - (11)].l))){ yymsg(0, "Number of master faces (%d) different from number of " @@ -10774,8 +11031,8 @@ yyreduce: ;} break; - case 350: -#line 4560 "Gmsh.y" + case 360: +#line 4689 "Gmsh.y" { if (List_Nbr((yyvsp[(4) - (18)].l)) != List_Nbr((yyvsp[(8) - (18)].l))){ yymsg(0, "Number of master edges (%d) different from number of " @@ -10802,8 +11059,8 @@ yyreduce: ;} break; - case 351: -#line 4586 "Gmsh.y" + case 361: +#line 4715 "Gmsh.y" { if (List_Nbr((yyvsp[(4) - (18)].l)) != List_Nbr((yyvsp[(8) - (18)].l))){ yymsg(0, "Number of master faces (%d) different from number of " @@ -10830,8 +11087,8 @@ yyreduce: ;} break; - case 352: -#line 4612 "Gmsh.y" + case 362: +#line 4741 "Gmsh.y" { if (List_Nbr((yyvsp[(4) - (12)].l)) != List_Nbr((yyvsp[(8) - (12)].l))){ yymsg(0, "Number of master edges (%d) different from number of " @@ -10858,8 +11115,8 @@ yyreduce: ;} break; - case 353: -#line 4638 "Gmsh.y" + case 363: +#line 4767 "Gmsh.y" { if (List_Nbr((yyvsp[(4) - (12)].l)) != List_Nbr((yyvsp[(8) - (12)].l))){ yymsg(0, "Number of master faces (%d) different from number of " @@ -10886,8 +11143,8 @@ yyreduce: ;} break; - case 354: -#line 4664 "Gmsh.y" + case 364: +#line 4793 "Gmsh.y" { if (List_Nbr((yyvsp[(5) - (12)].l)) != List_Nbr((yyvsp[(10) - (12)].l))){ yymsg(0, "Number of master surface edges (%d) different from number of " @@ -10910,8 +11167,8 @@ yyreduce: ;} break; - case 355: -#line 4685 "Gmsh.y" + case 365: +#line 4814 "Gmsh.y" { Surface *s = FindSurface((int)(yyvsp[(8) - (10)].d)); if(s){ @@ -10941,8 +11198,8 @@ yyreduce: ;} break; - case 356: -#line 4713 "Gmsh.y" + case 366: +#line 4842 "Gmsh.y" { Surface *s = FindSurface((int)(yyvsp[(8) - (10)].d)); if(s){ @@ -10972,8 +11229,8 @@ yyreduce: ;} break; - case 357: -#line 4741 "Gmsh.y" + case 367: +#line 4870 "Gmsh.y" { Volume *v = FindVolume((int)(yyvsp[(8) - (10)].d)); if(v){ @@ -11003,8 +11260,8 @@ yyreduce: ;} break; - case 358: -#line 4769 "Gmsh.y" + case 368: +#line 4898 "Gmsh.y" { Volume *v = FindVolume((int)(yyvsp[(8) - (10)].d)); if(v){ @@ -11034,8 +11291,8 @@ yyreduce: ;} break; - case 359: -#line 4797 "Gmsh.y" + case 369: +#line 4926 "Gmsh.y" { Volume *v = FindVolume((int)(yyvsp[(8) - (10)].d)); if(v){ @@ -11065,8 +11322,8 @@ yyreduce: ;} break; - case 360: -#line 4825 "Gmsh.y" + case 370: +#line 4954 "Gmsh.y" { if(!(yyvsp[(3) - (4)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Surfaces); @@ -11107,8 +11364,8 @@ yyreduce: ;} break; - case 361: -#line 4864 "Gmsh.y" + case 371: +#line 4993 "Gmsh.y" { if(!(yyvsp[(3) - (4)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Curves); @@ -11149,8 +11406,8 @@ yyreduce: ;} break; - case 362: -#line 4903 "Gmsh.y" + case 372: +#line 5032 "Gmsh.y" { if(!(yyvsp[(3) - (4)].l)){ for(GModel::viter it = GModel::current()->firstVertex(); @@ -11173,8 +11430,8 @@ yyreduce: ;} break; - case 363: -#line 4924 "Gmsh.y" + case 373: +#line 5053 "Gmsh.y" { if(!(yyvsp[(3) - (4)].l)){ for(GModel::eiter it = GModel::current()->firstEdge(); @@ -11197,8 +11454,8 @@ yyreduce: ;} break; - case 364: -#line 4945 "Gmsh.y" + case 374: +#line 5074 "Gmsh.y" { if(!(yyvsp[(3) - (4)].l)){ for(GModel::fiter it = GModel::current()->firstFace(); @@ -11221,15 +11478,15 @@ yyreduce: ;} break; - case 365: -#line 4972 "Gmsh.y" + case 375: +#line 5101 "Gmsh.y" { ReplaceAllDuplicates(); ;} break; - case 366: -#line 4976 "Gmsh.y" + case 376: +#line 5105 "Gmsh.y" { if(!strcmp((yyvsp[(2) - (3)].c), "Geometry")) ReplaceAllDuplicates(); @@ -11241,8 +11498,8 @@ yyreduce: ;} break; - case 367: -#line 4986 "Gmsh.y" + case 377: +#line 5115 "Gmsh.y" { if(List_Nbr((yyvsp[(4) - (6)].l)) >= 2){ double d; @@ -11274,23 +11531,23 @@ yyreduce: ;} break; - case 368: -#line 5020 "Gmsh.y" + case 378: +#line 5149 "Gmsh.y" { (yyval.c) = (char*)"Homology"; ;} break; - case 369: -#line 5021 "Gmsh.y" + case 379: +#line 5150 "Gmsh.y" { (yyval.c) = (char*)"Cohomology"; ;} break; - case 370: -#line 5022 "Gmsh.y" + case 380: +#line 5151 "Gmsh.y" { (yyval.c) = (char*)"Betti"; ;} break; - case 371: -#line 5027 "Gmsh.y" + case 381: +#line 5156 "Gmsh.y" { std::vector<int> domain, subdomain, dim; for(int i = 0; i < 4; i++) dim.push_back(i); @@ -11298,8 +11555,8 @@ yyreduce: ;} break; - case 372: -#line 5033 "Gmsh.y" + case 382: +#line 5162 "Gmsh.y" { std::vector<int> domain, subdomain, dim; for(int i = 0; i < List_Nbr((yyvsp[(3) - (5)].l)); i++){ @@ -11313,8 +11570,8 @@ yyreduce: ;} break; - case 373: -#line 5045 "Gmsh.y" + case 383: +#line 5174 "Gmsh.y" { std::vector<int> domain, subdomain, dim; for(int i = 0; i < List_Nbr((yyvsp[(3) - (7)].l)); i++){ @@ -11334,8 +11591,8 @@ yyreduce: ;} break; - case 374: -#line 5063 "Gmsh.y" + case 384: +#line 5192 "Gmsh.y" { std::vector<int> domain, subdomain, dim; for(int i = 0; i < List_Nbr((yyvsp[(6) - (10)].l)); i++){ @@ -11360,48 +11617,48 @@ yyreduce: ;} break; - case 375: -#line 5090 "Gmsh.y" + case 385: +#line 5219 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (1)].d); ;} break; - case 376: -#line 5091 "Gmsh.y" + case 386: +#line 5220 "Gmsh.y" { (yyval.d) = (yyvsp[(2) - (3)].d); ;} break; - case 377: -#line 5092 "Gmsh.y" + case 387: +#line 5221 "Gmsh.y" { (yyval.d) = -(yyvsp[(2) - (2)].d); ;} break; - case 378: -#line 5093 "Gmsh.y" + case 388: +#line 5222 "Gmsh.y" { (yyval.d) = (yyvsp[(2) - (2)].d); ;} break; - case 379: -#line 5094 "Gmsh.y" + case 389: +#line 5223 "Gmsh.y" { (yyval.d) = !(yyvsp[(2) - (2)].d); ;} break; - case 380: -#line 5095 "Gmsh.y" + case 390: +#line 5224 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) - (yyvsp[(3) - (3)].d); ;} break; - case 381: -#line 5096 "Gmsh.y" + case 391: +#line 5225 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) + (yyvsp[(3) - (3)].d); ;} break; - case 382: -#line 5097 "Gmsh.y" + case 392: +#line 5226 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) * (yyvsp[(3) - (3)].d); ;} break; - case 383: -#line 5099 "Gmsh.y" + case 393: +#line 5228 "Gmsh.y" { if(!(yyvsp[(3) - (3)].d)) yymsg(0, "Division by zero in '%g / %g'", (yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].d)); @@ -11410,233 +11667,233 @@ yyreduce: ;} break; - case 384: -#line 5105 "Gmsh.y" + case 394: +#line 5234 "Gmsh.y" { (yyval.d) = (int)(yyvsp[(1) - (3)].d) % (int)(yyvsp[(3) - (3)].d); ;} break; - case 385: -#line 5106 "Gmsh.y" + case 395: +#line 5235 "Gmsh.y" { (yyval.d) = pow((yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].d)); ;} break; - case 386: -#line 5107 "Gmsh.y" + case 396: +#line 5236 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) < (yyvsp[(3) - (3)].d); ;} break; - case 387: -#line 5108 "Gmsh.y" + case 397: +#line 5237 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) > (yyvsp[(3) - (3)].d); ;} break; - case 388: -#line 5109 "Gmsh.y" + case 398: +#line 5238 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) <= (yyvsp[(3) - (3)].d); ;} break; - case 389: -#line 5110 "Gmsh.y" + case 399: +#line 5239 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) >= (yyvsp[(3) - (3)].d); ;} break; - case 390: -#line 5111 "Gmsh.y" + case 400: +#line 5240 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) == (yyvsp[(3) - (3)].d); ;} break; - case 391: -#line 5112 "Gmsh.y" + case 401: +#line 5241 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) != (yyvsp[(3) - (3)].d); ;} break; - case 392: -#line 5113 "Gmsh.y" + case 402: +#line 5242 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) && (yyvsp[(3) - (3)].d); ;} break; - case 393: -#line 5114 "Gmsh.y" + case 403: +#line 5243 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (3)].d) || (yyvsp[(3) - (3)].d); ;} break; - case 394: -#line 5115 "Gmsh.y" + case 404: +#line 5244 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (5)].d) ? (yyvsp[(3) - (5)].d) : (yyvsp[(5) - (5)].d); ;} break; - case 395: -#line 5116 "Gmsh.y" + case 405: +#line 5245 "Gmsh.y" { (yyval.d) = exp((yyvsp[(3) - (4)].d)); ;} break; - case 396: -#line 5117 "Gmsh.y" + case 406: +#line 5246 "Gmsh.y" { (yyval.d) = log((yyvsp[(3) - (4)].d)); ;} break; - case 397: -#line 5118 "Gmsh.y" + case 407: +#line 5247 "Gmsh.y" { (yyval.d) = log10((yyvsp[(3) - (4)].d)); ;} break; - case 398: -#line 5119 "Gmsh.y" + case 408: +#line 5248 "Gmsh.y" { (yyval.d) = sqrt((yyvsp[(3) - (4)].d)); ;} break; - case 399: -#line 5120 "Gmsh.y" + case 409: +#line 5249 "Gmsh.y" { (yyval.d) = sin((yyvsp[(3) - (4)].d)); ;} break; - case 400: -#line 5121 "Gmsh.y" + case 410: +#line 5250 "Gmsh.y" { (yyval.d) = asin((yyvsp[(3) - (4)].d)); ;} break; - case 401: -#line 5122 "Gmsh.y" + case 411: +#line 5251 "Gmsh.y" { (yyval.d) = cos((yyvsp[(3) - (4)].d)); ;} break; - case 402: -#line 5123 "Gmsh.y" + case 412: +#line 5252 "Gmsh.y" { (yyval.d) = acos((yyvsp[(3) - (4)].d)); ;} break; - case 403: -#line 5124 "Gmsh.y" + case 413: +#line 5253 "Gmsh.y" { (yyval.d) = tan((yyvsp[(3) - (4)].d)); ;} break; - case 404: -#line 5125 "Gmsh.y" + case 414: +#line 5254 "Gmsh.y" { (yyval.d) = atan((yyvsp[(3) - (4)].d)); ;} break; - case 405: -#line 5126 "Gmsh.y" + case 415: +#line 5255 "Gmsh.y" { (yyval.d) = atan2((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d));;} break; - case 406: -#line 5127 "Gmsh.y" + case 416: +#line 5256 "Gmsh.y" { (yyval.d) = sinh((yyvsp[(3) - (4)].d)); ;} break; - case 407: -#line 5128 "Gmsh.y" + case 417: +#line 5257 "Gmsh.y" { (yyval.d) = cosh((yyvsp[(3) - (4)].d)); ;} break; - case 408: -#line 5129 "Gmsh.y" + case 418: +#line 5258 "Gmsh.y" { (yyval.d) = tanh((yyvsp[(3) - (4)].d)); ;} break; - case 409: -#line 5130 "Gmsh.y" + case 419: +#line 5259 "Gmsh.y" { (yyval.d) = fabs((yyvsp[(3) - (4)].d)); ;} break; - case 410: -#line 5131 "Gmsh.y" + case 420: +#line 5260 "Gmsh.y" { (yyval.d) = floor((yyvsp[(3) - (4)].d)); ;} break; - case 411: -#line 5132 "Gmsh.y" + case 421: +#line 5261 "Gmsh.y" { (yyval.d) = ceil((yyvsp[(3) - (4)].d)); ;} break; - case 412: -#line 5133 "Gmsh.y" + case 422: +#line 5262 "Gmsh.y" { (yyval.d) = floor((yyvsp[(3) - (4)].d) + 0.5); ;} break; - case 413: -#line 5134 "Gmsh.y" + case 423: +#line 5263 "Gmsh.y" { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; - case 414: -#line 5135 "Gmsh.y" + case 424: +#line 5264 "Gmsh.y" { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; - case 415: -#line 5136 "Gmsh.y" + case 425: +#line 5265 "Gmsh.y" { (yyval.d) = sqrt((yyvsp[(3) - (6)].d) * (yyvsp[(3) - (6)].d) + (yyvsp[(5) - (6)].d) * (yyvsp[(5) - (6)].d)); ;} break; - case 416: -#line 5137 "Gmsh.y" + case 426: +#line 5266 "Gmsh.y" { (yyval.d) = (yyvsp[(3) - (4)].d) * (double)rand() / (double)RAND_MAX; ;} break; - case 417: -#line 5146 "Gmsh.y" + case 427: +#line 5275 "Gmsh.y" { (yyval.d) = (yyvsp[(1) - (1)].d); ;} break; - case 418: -#line 5147 "Gmsh.y" + case 428: +#line 5276 "Gmsh.y" { (yyval.d) = 3.141592653589793; ;} break; - case 419: -#line 5148 "Gmsh.y" + case 429: +#line 5277 "Gmsh.y" { (yyval.d) = (double)ImbricatedTest; ;} break; - case 420: -#line 5149 "Gmsh.y" + case 430: +#line 5278 "Gmsh.y" { (yyval.d) = Msg::GetCommRank(); ;} break; - case 421: -#line 5150 "Gmsh.y" + case 431: +#line 5279 "Gmsh.y" { (yyval.d) = Msg::GetCommSize(); ;} break; - case 422: -#line 5151 "Gmsh.y" + case 432: +#line 5280 "Gmsh.y" { (yyval.d) = GetGmshMajorVersion(); ;} break; - case 423: -#line 5152 "Gmsh.y" + case 433: +#line 5281 "Gmsh.y" { (yyval.d) = GetGmshMinorVersion(); ;} break; - case 424: -#line 5153 "Gmsh.y" + case 434: +#line 5282 "Gmsh.y" { (yyval.d) = GetGmshPatchVersion(); ;} break; - case 425: -#line 5154 "Gmsh.y" + case 435: +#line 5283 "Gmsh.y" { (yyval.d) = Cpu(); ;} break; - case 426: -#line 5155 "Gmsh.y" + case 436: +#line 5284 "Gmsh.y" { (yyval.d) = GetMemoryUsage()/1024./1024.; ;} break; - case 427: -#line 5156 "Gmsh.y" + case 437: +#line 5285 "Gmsh.y" { (yyval.d) = TotalRam(); ;} break; - case 428: -#line 5161 "Gmsh.y" + case 438: +#line 5290 "Gmsh.y" { floatOptions.clear(); charOptions.clear(); ;} break; - case 429: -#line 5163 "Gmsh.y" + case 439: +#line 5292 "Gmsh.y" { std::vector<double> val(1, (yyvsp[(3) - (6)].d)); Msg::ExchangeOnelabParameter("", val, floatOptions, charOptions); @@ -11644,24 +11901,24 @@ yyreduce: ;} break; - case 430: -#line 5169 "Gmsh.y" + case 440: +#line 5298 "Gmsh.y" { (yyval.d) = Msg::GetOnelabNumber((yyvsp[(3) - (4)].c)); Free((yyvsp[(3) - (4)].c)); ;} break; - case 431: -#line 5174 "Gmsh.y" + case 441: +#line 5303 "Gmsh.y" { (yyval.d) = Msg::GetOnelabNumber((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].d)); Free((yyvsp[(3) - (6)].c)); ;} break; - case 432: -#line 5179 "Gmsh.y" + case 442: +#line 5308 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (1)].c))){ yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (1)].c)); @@ -11680,8 +11937,8 @@ yyreduce: ;} break; - case 433: -#line 5196 "Gmsh.y" + case 443: +#line 5325 "Gmsh.y" { int index = (int)(yyvsp[(3) - (4)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c))){ @@ -11701,8 +11958,8 @@ yyreduce: ;} break; - case 434: -#line 5214 "Gmsh.y" + case 444: +#line 5343 "Gmsh.y" { int index = (int)(yyvsp[(3) - (4)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c))){ @@ -11722,8 +11979,8 @@ yyreduce: ;} break; - case 435: -#line 5232 "Gmsh.y" + case 445: +#line 5361 "Gmsh.y" { int index = (int)(yyvsp[(3) - (4)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c))){ @@ -11743,8 +12000,8 @@ yyreduce: ;} break; - case 436: -#line 5250 "Gmsh.y" + case 446: +#line 5379 "Gmsh.y" { int index = (int)(yyvsp[(3) - (4)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c))){ @@ -11764,16 +12021,16 @@ yyreduce: ;} break; - case 437: -#line 5268 "Gmsh.y" + case 447: +#line 5397 "Gmsh.y" { (yyval.d) = gmsh_yysymbols.count((yyvsp[(3) - (4)].c)); Free((yyvsp[(3) - (4)].c)); ;} break; - case 438: -#line 5273 "Gmsh.y" + case 448: +#line 5402 "Gmsh.y" { std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(3) - (4)].c)); (yyval.d) = !StatFile(tmp); @@ -11781,8 +12038,8 @@ yyreduce: ;} break; - case 439: -#line 5279 "Gmsh.y" + case 449: +#line 5408 "Gmsh.y" { if(gmsh_yysymbols.count((yyvsp[(2) - (4)].c))){ gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(2) - (4)].c)]); @@ -11799,8 +12056,8 @@ yyreduce: ;} break; - case 440: -#line 5294 "Gmsh.y" + case 450: +#line 5423 "Gmsh.y" { if(!gmsh_yysymbols.count((yyvsp[(1) - (2)].c))){ yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (2)].c)); @@ -11821,8 +12078,8 @@ yyreduce: ;} break; - case 441: -#line 5313 "Gmsh.y" + case 451: +#line 5442 "Gmsh.y" { int index = (int)(yyvsp[(3) - (5)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (5)].c))){ @@ -11844,8 +12101,8 @@ yyreduce: ;} break; - case 442: -#line 5333 "Gmsh.y" + case 452: +#line 5462 "Gmsh.y" { int index = (int)(yyvsp[(3) - (5)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (5)].c))){ @@ -11867,8 +12124,8 @@ yyreduce: ;} break; - case 443: -#line 5353 "Gmsh.y" + case 453: +#line 5482 "Gmsh.y" { int index = (int)(yyvsp[(3) - (5)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (5)].c))){ @@ -11890,8 +12147,8 @@ yyreduce: ;} break; - case 444: -#line 5373 "Gmsh.y" + case 454: +#line 5502 "Gmsh.y" { int index = (int)(yyvsp[(3) - (5)].d); if(!gmsh_yysymbols.count((yyvsp[(1) - (5)].c))){ @@ -11913,24 +12170,24 @@ yyreduce: ;} break; - case 445: -#line 5396 "Gmsh.y" + case 455: +#line 5525 "Gmsh.y" { NumberOption(GMSH_GET, (yyvsp[(1) - (3)].c), 0, (yyvsp[(3) - (3)].c), (yyval.d)); Free((yyvsp[(1) - (3)].c)); Free((yyvsp[(3) - (3)].c)); ;} break; - case 446: -#line 5401 "Gmsh.y" + case 456: +#line 5530 "Gmsh.y" { NumberOption(GMSH_GET, (yyvsp[(1) - (6)].c), (int)(yyvsp[(3) - (6)].d), (yyvsp[(6) - (6)].c), (yyval.d)); Free((yyvsp[(1) - (6)].c)); Free((yyvsp[(6) - (6)].c)); ;} break; - case 447: -#line 5406 "Gmsh.y" + case 457: +#line 5535 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (4)].c), 0, (yyvsp[(3) - (4)].c), d)){ @@ -11942,8 +12199,8 @@ yyreduce: ;} break; - case 448: -#line 5416 "Gmsh.y" + case 458: +#line 5545 "Gmsh.y" { double d = 0.; if(NumberOption(GMSH_GET, (yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(6) - (7)].c), d)){ @@ -11955,16 +12212,16 @@ yyreduce: ;} break; - case 449: -#line 5426 "Gmsh.y" + case 459: +#line 5555 "Gmsh.y" { (yyval.d) = Msg::GetValue((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].d)); Free((yyvsp[(3) - (6)].c)); ;} break; - case 450: -#line 5431 "Gmsh.y" + case 460: +#line 5560 "Gmsh.y" { int matches = 0; for(int i = 0; i < List_Nbr((yyvsp[(3) - (6)].l)); i++){ @@ -11977,8 +12234,8 @@ yyreduce: ;} break; - case 451: -#line 5442 "Gmsh.y" + case 461: +#line 5571 "Gmsh.y" { std::string s((yyvsp[(3) - (6)].c)), substr((yyvsp[(5) - (6)].c)); if(s.find(substr) != std::string::npos) @@ -11989,24 +12246,24 @@ yyreduce: ;} break; - case 452: -#line 5451 "Gmsh.y" + case 462: +#line 5580 "Gmsh.y" { (yyval.d) = strlen((yyvsp[(3) - (4)].c)); Free((yyvsp[(3) - (4)].c)); ;} break; - case 453: -#line 5456 "Gmsh.y" + case 463: +#line 5585 "Gmsh.y" { (yyval.d) = strcmp((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].c)); Free((yyvsp[(3) - (6)].c)); Free((yyvsp[(5) - (6)].c)); ;} break; - case 454: -#line 5461 "Gmsh.y" + case 464: +#line 5590 "Gmsh.y" { int align = 0, font = 0, fontsize = CTX::instance()->glFontSize; if(List_Nbr((yyvsp[(3) - (4)].l)) % 2){ @@ -12032,116 +12289,116 @@ yyreduce: ;} break; - case 455: -#line 5488 "Gmsh.y" + case 465: +#line 5617 "Gmsh.y" { memcpy((yyval.v), (yyvsp[(1) - (1)].v), 5*sizeof(double)); ;} break; - case 456: -#line 5492 "Gmsh.y" + case 466: +#line 5621 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = -(yyvsp[(2) - (2)].v)[i]; ;} break; - case 457: -#line 5496 "Gmsh.y" + case 467: +#line 5625 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(2) - (2)].v)[i]; ;} break; - case 458: -#line 5500 "Gmsh.y" + case 468: +#line 5629 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(1) - (3)].v)[i] - (yyvsp[(3) - (3)].v)[i]; ;} break; - case 459: -#line 5504 "Gmsh.y" + case 469: +#line 5633 "Gmsh.y" { for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(1) - (3)].v)[i] + (yyvsp[(3) - (3)].v)[i]; ;} break; - case 460: -#line 5511 "Gmsh.y" + case 470: +#line 5640 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (11)].d); (yyval.v)[1] = (yyvsp[(4) - (11)].d); (yyval.v)[2] = (yyvsp[(6) - (11)].d); (yyval.v)[3] = (yyvsp[(8) - (11)].d); (yyval.v)[4] = (yyvsp[(10) - (11)].d); ;} break; - case 461: -#line 5515 "Gmsh.y" + case 471: +#line 5644 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (9)].d); (yyval.v)[1] = (yyvsp[(4) - (9)].d); (yyval.v)[2] = (yyvsp[(6) - (9)].d); (yyval.v)[3] = (yyvsp[(8) - (9)].d); (yyval.v)[4] = 1.0; ;} break; - case 462: -#line 5519 "Gmsh.y" + case 472: +#line 5648 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (7)].d); (yyval.v)[1] = (yyvsp[(4) - (7)].d); (yyval.v)[2] = (yyvsp[(6) - (7)].d); (yyval.v)[3] = 0.0; (yyval.v)[4] = 1.0; ;} break; - case 463: -#line 5523 "Gmsh.y" + case 473: +#line 5652 "Gmsh.y" { (yyval.v)[0] = (yyvsp[(2) - (7)].d); (yyval.v)[1] = (yyvsp[(4) - (7)].d); (yyval.v)[2] = (yyvsp[(6) - (7)].d); (yyval.v)[3] = 0.0; (yyval.v)[4] = 1.0; ;} break; - case 464: -#line 5530 "Gmsh.y" + case 474: +#line 5659 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(List_T*)); List_Add((yyval.l), &((yyvsp[(1) - (1)].l))); ;} break; - case 465: -#line 5535 "Gmsh.y" + case 475: +#line 5664 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].l))); ;} break; - case 466: -#line 5542 "Gmsh.y" + case 476: +#line 5671 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); List_Add((yyval.l), &((yyvsp[(1) - (1)].d))); ;} break; - case 467: -#line 5547 "Gmsh.y" + case 477: +#line 5676 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 468: -#line 5551 "Gmsh.y" + case 478: +#line 5680 "Gmsh.y" { // creates an empty list (yyval.l) = List_Create(2, 1, sizeof(double)); ;} break; - case 469: -#line 5556 "Gmsh.y" + case 479: +#line 5685 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (3)].l); ;} break; - case 470: -#line 5560 "Gmsh.y" + case 480: +#line 5689 "Gmsh.y" { (yyval.l) = (yyvsp[(3) - (4)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -12151,8 +12408,8 @@ yyreduce: ;} break; - case 471: -#line 5568 "Gmsh.y" + case 481: +#line 5697 "Gmsh.y" { (yyval.l) = (yyvsp[(4) - (5)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -12162,15 +12419,15 @@ yyreduce: ;} break; - case 472: -#line 5579 "Gmsh.y" + case 482: +#line 5708 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 473: -#line 5583 "Gmsh.y" + case 483: +#line 5712 "Gmsh.y" { if(!strcmp((yyvsp[(1) - (1)].c), "*") || !strcmp((yyvsp[(1) - (1)].c), "all")) (yyval.l) = 0; @@ -12181,8 +12438,8 @@ yyreduce: ;} break; - case 474: -#line 5595 "Gmsh.y" + case 484: +#line 5724 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (2)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -12192,8 +12449,8 @@ yyreduce: ;} break; - case 475: -#line 5603 "Gmsh.y" + case 485: +#line 5732 "Gmsh.y" { (yyval.l) = (yyvsp[(3) - (3)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ @@ -12203,8 +12460,8 @@ yyreduce: ;} break; - case 476: -#line 5611 "Gmsh.y" + case 486: +#line 5740 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); for(double d = (yyvsp[(1) - (3)].d); ((yyvsp[(1) - (3)].d) < (yyvsp[(3) - (3)].d)) ? (d <= (yyvsp[(3) - (3)].d)) : (d >= (yyvsp[(3) - (3)].d)); @@ -12213,8 +12470,8 @@ yyreduce: ;} break; - case 477: -#line 5618 "Gmsh.y" + case 487: +#line 5747 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!(yyvsp[(5) - (5)].d)){ //|| ($1 < $3 && $5 < 0) || ($1 > $3 && $5 > 0) @@ -12226,8 +12483,8 @@ yyreduce: ;} break; - case 478: -#line 5628 "Gmsh.y" + case 488: +#line 5757 "Gmsh.y" { // Returns the coordinates of a point and fills a list with it. // This allows to ensure e.g. that relative point positions are @@ -12258,64 +12515,64 @@ yyreduce: ;} break; - case 479: -#line 5657 "Gmsh.y" + case 489: +#line 5786 "Gmsh.y" { (yyval.l) = GetAllElementaryEntityNumbers(0); ;} break; - case 480: -#line 5661 "Gmsh.y" + case 490: +#line 5790 "Gmsh.y" { (yyval.l) = GetAllElementaryEntityNumbers(1); ;} break; - case 481: -#line 5665 "Gmsh.y" + case 491: +#line 5794 "Gmsh.y" { (yyval.l) = GetAllElementaryEntityNumbers(2); ;} break; - case 482: -#line 5669 "Gmsh.y" + case 492: +#line 5798 "Gmsh.y" { (yyval.l) = GetAllElementaryEntityNumbers(3); ;} break; - case 483: -#line 5673 "Gmsh.y" + case 493: +#line 5802 "Gmsh.y" { (yyval.l) = GetAllPhysicalEntityNumbers(0); ;} break; - case 484: -#line 5677 "Gmsh.y" + case 494: +#line 5806 "Gmsh.y" { (yyval.l) = GetAllPhysicalEntityNumbers(1); ;} break; - case 485: -#line 5681 "Gmsh.y" + case 495: +#line 5810 "Gmsh.y" { (yyval.l) = GetAllPhysicalEntityNumbers(2); ;} break; - case 486: -#line 5685 "Gmsh.y" + case 496: +#line 5814 "Gmsh.y" { (yyval.l) = GetAllPhysicalEntityNumbers(3); ;} break; - case 487: -#line 5689 "Gmsh.y" + case 497: +#line 5818 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -12346,8 +12603,8 @@ yyreduce: ;} break; - case 488: -#line 5718 "Gmsh.y" + case 498: +#line 5847 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -12378,8 +12635,8 @@ yyreduce: ;} break; - case 489: -#line 5747 "Gmsh.y" + case 499: +#line 5876 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -12410,8 +12667,8 @@ yyreduce: ;} break; - case 490: -#line 5776 "Gmsh.y" + case 500: +#line 5905 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ @@ -12442,8 +12699,8 @@ yyreduce: ;} break; - case 491: -#line 5806 "Gmsh.y" + case 501: +#line 5935 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); GModel::current()->importGEOInternals(); @@ -12457,8 +12714,8 @@ yyreduce: ;} break; - case 492: -#line 5819 "Gmsh.y" + case 502: +#line 5948 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); GModel::current()->importGEOInternals(); @@ -12472,8 +12729,8 @@ yyreduce: ;} break; - case 493: -#line 5832 "Gmsh.y" + case 503: +#line 5961 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); GModel::current()->importGEOInternals(); @@ -12487,8 +12744,8 @@ yyreduce: ;} break; - case 494: -#line 5845 "Gmsh.y" + case 504: +#line 5974 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); GModel::current()->importGEOInternals(); @@ -12502,8 +12759,8 @@ yyreduce: ;} break; - case 495: -#line 5857 "Gmsh.y" + case 505: +#line 5986 "Gmsh.y" { (yyval.l) = List_Create(List_Nbr((yyvsp[(1) - (1)].l)), 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(1) - (1)].l)); i++){ @@ -12515,8 +12772,8 @@ yyreduce: ;} break; - case 496: -#line 5867 "Gmsh.y" + case 506: +#line 5996 "Gmsh.y" { (yyval.l) = List_Create(List_Nbr((yyvsp[(1) - (1)].l)), 1, sizeof(double)); for(int i = 0; i < List_Nbr((yyvsp[(1) - (1)].l)); i++){ @@ -12528,8 +12785,21 @@ yyreduce: ;} break; - case 497: -#line 5877 "Gmsh.y" + case 507: +#line 6006 "Gmsh.y" + { + (yyval.l) = List_Create(List_Nbr((yyvsp[(1) - (1)].l)), 1, sizeof(double)); + for(int i = 0; i < List_Nbr((yyvsp[(1) - (1)].l)); i++){ + Shape *s = (Shape*) List_Pointer((yyvsp[(1) - (1)].l), i); + double d = s->Num; + List_Add((yyval.l), &d); + } + List_Delete((yyvsp[(1) - (1)].l)); + ;} + break; + + case 508: +#line 6016 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(1) - (3)].c))) @@ -12543,8 +12813,8 @@ yyreduce: ;} break; - case 498: -#line 5889 "Gmsh.y" + case 509: +#line 6028 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(1) - (3)].c))) @@ -12558,8 +12828,8 @@ yyreduce: ;} break; - case 499: -#line 5902 "Gmsh.y" + case 510: +#line 6041 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(3) - (4)].c))) @@ -12573,36 +12843,36 @@ yyreduce: ;} break; - case 500: -#line 5914 "Gmsh.y" + case 511: +#line 6053 "Gmsh.y" { (yyval.l) = (yyvsp[(3) - (4)].l); ;} break; - case 501: -#line 5918 "Gmsh.y" + case 512: +#line 6057 "Gmsh.y" { (yyval.l) = (yyvsp[(3) - (4)].l); ;} break; - case 502: -#line 5922 "Gmsh.y" + case 513: +#line 6061 "Gmsh.y" { (yyval.l) = (yyvsp[(4) - (6)].l); ;} break; - case 503: -#line 5926 "Gmsh.y" + case 514: +#line 6065 "Gmsh.y" { (yyval.l) = (yyvsp[(4) - (6)].l); ;} break; - case 504: -#line 5930 "Gmsh.y" + case 515: +#line 6069 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(1) - (6)].c))) @@ -12622,8 +12892,8 @@ yyreduce: ;} break; - case 505: -#line 5948 "Gmsh.y" + case 516: +#line 6087 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); if(!gmsh_yysymbols.count((yyvsp[(1) - (6)].c))) @@ -12643,8 +12913,8 @@ yyreduce: ;} break; - case 506: -#line 5966 "Gmsh.y" + case 517: +#line 6105 "Gmsh.y" { (yyval.l) = List_Create(20,20,sizeof(double)); for(int i = 0; i < (int)(yyvsp[(7) - (8)].d); i++) { @@ -12654,8 +12924,8 @@ yyreduce: ;} break; - case 507: -#line 5974 "Gmsh.y" + case 518: +#line 6113 "Gmsh.y" { (yyval.l) = List_Create(20,20,sizeof(double)); for(int i = 0; i < (int)(yyvsp[(7) - (8)].d); i++) { @@ -12665,8 +12935,8 @@ yyreduce: ;} break; - case 508: -#line 5982 "Gmsh.y" + case 519: +#line 6121 "Gmsh.y" { Msg::Barrier(); FILE *File; @@ -12697,8 +12967,8 @@ yyreduce: ;} break; - case 509: -#line 6011 "Gmsh.y" + case 520: +#line 6150 "Gmsh.y" { double x0 = (yyvsp[(3) - (14)].d), x1 = (yyvsp[(5) - (14)].d), y0 = (yyvsp[(7) - (14)].d), y1 = (yyvsp[(9) - (14)].d), ys = (yyvsp[(11) - (14)].d); int N = (int)(yyvsp[(13) - (14)].d); @@ -12710,30 +12980,30 @@ yyreduce: ;} break; - case 510: -#line 6024 "Gmsh.y" + case 521: +#line 6163 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); List_Add((yyval.l), &((yyvsp[(1) - (1)].d))); ;} break; - case 511: -#line 6029 "Gmsh.y" + case 522: +#line 6168 "Gmsh.y" { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; - case 512: -#line 6033 "Gmsh.y" + case 523: +#line 6172 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].d))); ;} break; - case 513: -#line 6037 "Gmsh.y" + case 524: +#line 6176 "Gmsh.y" { for(int i = 0; i < List_Nbr((yyvsp[(3) - (3)].l)); i++){ double d; @@ -12744,22 +13014,22 @@ yyreduce: ;} break; - case 514: -#line 6049 "Gmsh.y" + case 525: +#line 6188 "Gmsh.y" { (yyval.u) = CTX::instance()->packColor((int)(yyvsp[(2) - (9)].d), (int)(yyvsp[(4) - (9)].d), (int)(yyvsp[(6) - (9)].d), (int)(yyvsp[(8) - (9)].d)); ;} break; - case 515: -#line 6053 "Gmsh.y" + case 526: +#line 6192 "Gmsh.y" { (yyval.u) = CTX::instance()->packColor((int)(yyvsp[(2) - (7)].d), (int)(yyvsp[(4) - (7)].d), (int)(yyvsp[(6) - (7)].d), 255); ;} break; - case 516: -#line 6065 "Gmsh.y" + case 527: +#line 6204 "Gmsh.y" { int flag = 0; if(gmsh_yystringsymbols.count((yyvsp[(1) - (1)].c))){ @@ -12778,8 +13048,8 @@ yyreduce: ;} break; - case 517: -#line 6082 "Gmsh.y" + case 528: +#line 6221 "Gmsh.y" { unsigned int val = 0; ColorOption(GMSH_GET, (yyvsp[(1) - (5)].c), 0, (yyvsp[(5) - (5)].c), val); @@ -12788,15 +13058,15 @@ yyreduce: ;} break; - case 518: -#line 6092 "Gmsh.y" + case 529: +#line 6231 "Gmsh.y" { (yyval.l) = (yyvsp[(2) - (3)].l); ;} break; - case 519: -#line 6096 "Gmsh.y" + case 530: +#line 6235 "Gmsh.y" { (yyval.l) = List_Create(256, 10, sizeof(unsigned int)); GmshColorTable *ct = GetColorTable((int)(yyvsp[(3) - (6)].d)); @@ -12810,30 +13080,30 @@ yyreduce: ;} break; - case 520: -#line 6111 "Gmsh.y" + case 531: +#line 6250 "Gmsh.y" { (yyval.l) = List_Create(256, 10, sizeof(unsigned int)); List_Add((yyval.l), &((yyvsp[(1) - (1)].u))); ;} break; - case 521: -#line 6116 "Gmsh.y" + case 532: +#line 6255 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].u))); ;} break; - case 522: -#line 6123 "Gmsh.y" + case 533: +#line 6262 "Gmsh.y" { (yyval.c) = (yyvsp[(1) - (1)].c); ;} break; - case 523: -#line 6127 "Gmsh.y" + case 534: +#line 6266 "Gmsh.y" { std::string val; if(!gmsh_yystringsymbols.count((yyvsp[(1) - (1)].c))) @@ -12848,8 +13118,8 @@ yyreduce: ;} break; - case 524: -#line 6140 "Gmsh.y" + case 535: +#line 6279 "Gmsh.y" { std::string val; int j = (int)(yyvsp[(3) - (4)].d); @@ -12865,8 +13135,8 @@ yyreduce: ;} break; - case 525: -#line 6154 "Gmsh.y" + case 536: +#line 6293 "Gmsh.y" { std::string val; int j = (int)(yyvsp[(3) - (4)].d); @@ -12882,8 +13152,8 @@ yyreduce: ;} break; - case 526: -#line 6168 "Gmsh.y" + case 537: +#line 6307 "Gmsh.y" { std::string val; int j = (int)(yyvsp[(3) - (4)].d); @@ -12899,8 +13169,8 @@ yyreduce: ;} break; - case 527: -#line 6182 "Gmsh.y" + case 538: +#line 6321 "Gmsh.y" { std::string val; int j = (int)(yyvsp[(3) - (4)].d); @@ -12916,8 +13186,8 @@ yyreduce: ;} break; - case 528: -#line 6196 "Gmsh.y" + case 539: +#line 6335 "Gmsh.y" { std::string out; StringOption(GMSH_GET, (yyvsp[(1) - (3)].c), 0, (yyvsp[(3) - (3)].c), out); @@ -12927,8 +13197,8 @@ yyreduce: ;} break; - case 529: -#line 6204 "Gmsh.y" + case 540: +#line 6343 "Gmsh.y" { std::string out; StringOption(GMSH_GET, (yyvsp[(1) - (6)].c), (int)(yyvsp[(3) - (6)].d), (yyvsp[(6) - (6)].c), out); @@ -12938,22 +13208,22 @@ yyreduce: ;} break; - case 530: -#line 6215 "Gmsh.y" + case 541: +#line 6354 "Gmsh.y" { (yyval.c) = (yyvsp[(1) - (1)].c); ;} break; - case 531: -#line 6219 "Gmsh.y" + case 542: +#line 6358 "Gmsh.y" { (yyval.c) = (yyvsp[(3) - (4)].c); ;} break; - case 532: -#line 6223 "Gmsh.y" + case 543: +#line 6362 "Gmsh.y" { (yyval.c) = (char *)Malloc(32 * sizeof(char)); time_t now; @@ -12963,8 +13233,8 @@ yyreduce: ;} break; - case 533: -#line 6231 "Gmsh.y" + case 544: +#line 6370 "Gmsh.y" { std::string exe = Msg::GetExecutableName(); (yyval.c) = (char *)Malloc(exe.size() + 1); @@ -12972,8 +13242,8 @@ yyreduce: ;} break; - case 534: -#line 6237 "Gmsh.y" + case 545: +#line 6376 "Gmsh.y" { std::string action = Msg::GetOnelabAction(); (yyval.c) = (char *)Malloc(action.size() + 1); @@ -12981,8 +13251,8 @@ yyreduce: ;} break; - case 535: -#line 6243 "Gmsh.y" + case 546: +#line 6382 "Gmsh.y" { const char *env = GetEnvironmentVar((yyvsp[(3) - (4)].c)); if(!env) env = ""; @@ -12992,8 +13262,8 @@ yyreduce: ;} break; - case 536: -#line 6251 "Gmsh.y" + case 547: +#line 6390 "Gmsh.y" { std::string s = Msg::GetString((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].c)); (yyval.c) = (char *)Malloc((s.size() + 1) * sizeof(char)); @@ -13003,8 +13273,8 @@ yyreduce: ;} break; - case 537: -#line 6259 "Gmsh.y" + case 548: +#line 6398 "Gmsh.y" { std::string s = Msg::GetOnelabString((yyvsp[(3) - (4)].c)); (yyval.c) = (char *)Malloc((s.size() + 1) * sizeof(char)); @@ -13013,8 +13283,8 @@ yyreduce: ;} break; - case 538: -#line 6266 "Gmsh.y" + case 549: +#line 6405 "Gmsh.y" { std::string s = Msg::GetOnelabString((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].c)); (yyval.c) = (char *)Malloc((s.size() + 1) * sizeof(char)); @@ -13024,8 +13294,8 @@ yyreduce: ;} break; - case 539: -#line 6274 "Gmsh.y" + case 550: +#line 6413 "Gmsh.y" { int size = 1; for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++) @@ -13042,8 +13312,8 @@ yyreduce: ;} break; - case 540: -#line 6289 "Gmsh.y" + case 551: +#line 6428 "Gmsh.y" { (yyval.c) = (char *)Malloc((strlen((yyvsp[(3) - (4)].c)) + 1) * sizeof(char)); int i; @@ -13059,8 +13329,8 @@ yyreduce: ;} break; - case 541: -#line 6303 "Gmsh.y" + case 552: +#line 6442 "Gmsh.y" { (yyval.c) = (char *)Malloc((strlen((yyvsp[(3) - (4)].c)) + 1) * sizeof(char)); int i; @@ -13076,8 +13346,8 @@ yyreduce: ;} break; - case 542: -#line 6317 "Gmsh.y" + case 553: +#line 6456 "Gmsh.y" { std::string input = (yyvsp[(3) - (8)].c); std::string substr_old = (yyvsp[(5) - (8)].c); @@ -13091,8 +13361,8 @@ yyreduce: ;} break; - case 543: -#line 6329 "Gmsh.y" + case 554: +#line 6468 "Gmsh.y" { int size = 1; for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++) @@ -13110,8 +13380,8 @@ yyreduce: ;} break; - case 544: -#line 6345 "Gmsh.y" + case 555: +#line 6484 "Gmsh.y" { int i = 0; while ((yyvsp[(3) - (4)].c)[i]) { @@ -13122,8 +13392,8 @@ yyreduce: ;} break; - case 545: -#line 6354 "Gmsh.y" + case 556: +#line 6493 "Gmsh.y" { int i = 0; while ((yyvsp[(3) - (4)].c)[i]) { @@ -13134,8 +13404,8 @@ yyreduce: ;} break; - case 546: -#line 6363 "Gmsh.y" + case 557: +#line 6502 "Gmsh.y" { int i = 0; while ((yyvsp[(3) - (4)].c)[i]) { @@ -13147,8 +13417,8 @@ yyreduce: ;} break; - case 547: -#line 6373 "Gmsh.y" + case 558: +#line 6512 "Gmsh.y" { if((yyvsp[(3) - (8)].d)){ (yyval.c) = (yyvsp[(5) - (8)].c); @@ -13161,8 +13431,8 @@ yyreduce: ;} break; - case 548: -#line 6384 "Gmsh.y" + case 559: +#line 6523 "Gmsh.y" { std::string in = (yyvsp[(3) - (8)].c); std::string out = in.substr((int)(yyvsp[(5) - (8)].d), (int)(yyvsp[(7) - (8)].d)); @@ -13172,8 +13442,8 @@ yyreduce: ;} break; - case 549: -#line 6392 "Gmsh.y" + case 560: +#line 6531 "Gmsh.y" { std::string in = (yyvsp[(3) - (6)].c); std::string out = in.substr((int)(yyvsp[(5) - (6)].d), std::string::npos); @@ -13183,15 +13453,15 @@ yyreduce: ;} break; - case 550: -#line 6400 "Gmsh.y" + case 561: +#line 6539 "Gmsh.y" { (yyval.c) = (yyvsp[(3) - (4)].c); ;} break; - case 551: -#line 6404 "Gmsh.y" + case 562: +#line 6543 "Gmsh.y" { char tmpstring[5000]; int i = PrintListOfDouble((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].l), tmpstring); @@ -13212,8 +13482,8 @@ yyreduce: ;} break; - case 552: -#line 6423 "Gmsh.y" + case 563: +#line 6562 "Gmsh.y" { std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(3) - (4)].c)); (yyval.c) = (char*)Malloc((tmp.size() + 1) * sizeof(char)); @@ -13222,8 +13492,8 @@ yyreduce: ;} break; - case 553: -#line 6430 "Gmsh.y" + case 564: +#line 6569 "Gmsh.y" { std::string tmp = SplitFileName(GetAbsolutePath(gmsh_yyname))[0]; (yyval.c) = (char*)Malloc((tmp.size() + 1) * sizeof(char)); @@ -13231,8 +13501,8 @@ yyreduce: ;} break; - case 554: -#line 6436 "Gmsh.y" + case 565: +#line 6575 "Gmsh.y" { std::string tmp = SplitFileName((yyvsp[(3) - (4)].c))[0]; (yyval.c) = (char*)Malloc((tmp.size() + 1) * sizeof(char)); @@ -13241,8 +13511,8 @@ yyreduce: ;} break; - case 555: -#line 6443 "Gmsh.y" + case 566: +#line 6582 "Gmsh.y" { std::string tmp = GetAbsolutePath((yyvsp[(3) - (4)].c)); (yyval.c) = (char*)Malloc((tmp.size() + 1) * sizeof(char)); @@ -13251,13 +13521,13 @@ yyreduce: ;} break; - case 556: -#line 6450 "Gmsh.y" + case 567: +#line 6589 "Gmsh.y" { floatOptions.clear(); charOptions.clear(); ;} break; - case 557: -#line 6452 "Gmsh.y" + case 568: +#line 6591 "Gmsh.y" { std::string val((yyvsp[(3) - (6)].c)); Msg::ExchangeOnelabParameter("", val, floatOptions, charOptions); @@ -13267,21 +13537,21 @@ yyreduce: ;} break; - case 558: -#line 6463 "Gmsh.y" + case 569: +#line 6602 "Gmsh.y" { (yyval.l) = List_Create(20,20,sizeof(char*)); List_Add((yyval.l), &((yyvsp[(1) - (1)].c))); ;} break; - case 559: -#line 6468 "Gmsh.y" + case 570: +#line 6607 "Gmsh.y" { List_Add((yyval.l), &((yyvsp[(3) - (3)].c))); ;} break; - case 560: -#line 6474 "Gmsh.y" + case 571: +#line 6613 "Gmsh.y" { char tmpstr[256]; sprintf(tmpstr, "_%d", (int)(yyvsp[(4) - (5)].d)); @@ -13291,8 +13561,8 @@ yyreduce: ;} break; - case 561: -#line 6483 "Gmsh.y" + case 572: +#line 6622 "Gmsh.y" { char tmpstr[256]; sprintf(tmpstr, "_%d", (int)(yyvsp[(4) - (5)].d)); @@ -13302,24 +13572,24 @@ yyreduce: ;} break; - case 562: -#line 6496 "Gmsh.y" + case 573: +#line 6635 "Gmsh.y" { (yyval.c) = (yyvsp[(1) - (1)].c); ;} break; - case 563: -#line 6499 "Gmsh.y" + case 574: +#line 6638 "Gmsh.y" { (yyval.c) = (yyvsp[(1) - (1)].c); ;} break; - case 564: -#line 6503 "Gmsh.y" + case 575: +#line 6642 "Gmsh.y" { (yyval.c) = (yyvsp[(3) - (4)].c); ;} break; /* Line 1267 of yacc.c. */ -#line 13323 "Gmsh.tab.cpp" +#line 13593 "Gmsh.tab.cpp" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -13533,7 +13803,7 @@ yyreturn: } -#line 6506 "Gmsh.y" +#line 6645 "Gmsh.y" void assignVariable(const std::string &name, int index, int assignType, diff --git a/Parser/Gmsh.tab.hpp b/Parser/Gmsh.tab.hpp index e56eec3610abaff7084dba354cf6101bd543a45e..c693a68af861e3d2149a9e4065b72374fe8703f6 100644 --- a/Parser/Gmsh.tab.hpp +++ b/Parser/Gmsh.tab.hpp @@ -136,102 +136,107 @@ tRefineMesh = 352, tAdaptMesh = 353, tRelocateMesh = 354, - tPlane = 355, - tRuled = 356, - tTransfinite = 357, - tComplex = 358, - tPhysical = 359, - tCompound = 360, - tPeriodic = 361, - tUsing = 362, - tPlugin = 363, - tDegenerated = 364, - tRecursive = 365, - tRotate = 366, - tTranslate = 367, - tSymmetry = 368, - tDilate = 369, - tExtrude = 370, - tLevelset = 371, - tAffine = 372, - tRecombine = 373, - tSmoother = 374, - tSplit = 375, - tDelete = 376, - tCoherence = 377, - tIntersect = 378, - tMeshAlgorithm = 379, - tReverse = 380, - tLayers = 381, - tScaleLast = 382, - tHole = 383, - tAlias = 384, - tAliasWithOptions = 385, - tCopyOptions = 386, - tQuadTriAddVerts = 387, - tQuadTriNoNewVerts = 388, - tQuadTriSngl = 389, - tQuadTriDbl = 390, - tRecombLaterals = 391, - tTransfQuadTri = 392, - tText2D = 393, - tText3D = 394, - tInterpolationScheme = 395, - tTime = 396, - tCombine = 397, - tBSpline = 398, - tBezier = 399, - tNurbs = 400, - tNurbsOrder = 401, - tNurbsKnots = 402, - tColor = 403, - tColorTable = 404, - tFor = 405, - tIn = 406, - tEndFor = 407, - tIf = 408, - tElseIf = 409, - tElse = 410, - tEndIf = 411, - tExit = 412, - tAbort = 413, - tField = 414, - tReturn = 415, - tCall = 416, - tSlide = 417, - tMacro = 418, - tShow = 419, - tHide = 420, - tGetValue = 421, - tGetStringValue = 422, - tGetEnv = 423, - tGetString = 424, - tGetNumber = 425, - tHomology = 426, - tCohomology = 427, - tBetti = 428, - tExists = 429, - tFileExists = 430, - tGMSH_MAJOR_VERSION = 431, - tGMSH_MINOR_VERSION = 432, - tGMSH_PATCH_VERSION = 433, - tGmshExecutableName = 434, - tSetPartition = 435, - tNameToString = 436, - tStringToName = 437, - tAFFECTDIVIDE = 438, - tAFFECTTIMES = 439, - tAFFECTMINUS = 440, - tAFFECTPLUS = 441, - tOR = 442, - tAND = 443, - tNOTEQUAL = 444, - tEQUAL = 445, - tGREATEROREQUAL = 446, - tLESSOREQUAL = 447, - UNARYPREC = 448, - tMINUSMINUS = 449, - tPLUSPLUS = 450 + tSetFactory = 355, + tThruSections = 356, + tPlane = 357, + tRuled = 358, + tTransfinite = 359, + tComplex = 360, + tPhysical = 361, + tCompound = 362, + tPeriodic = 363, + tUsing = 364, + tPlugin = 365, + tDegenerated = 366, + tRecursive = 367, + tRotate = 368, + tTranslate = 369, + tSymmetry = 370, + tDilate = 371, + tExtrude = 372, + tLevelset = 373, + tAffine = 374, + tBooleanUnion = 375, + tBooleanIntersection = 376, + tBooleanSubtraction = 377, + tRecombine = 378, + tSmoother = 379, + tSplit = 380, + tDelete = 381, + tCoherence = 382, + tIntersect = 383, + tMeshAlgorithm = 384, + tReverse = 385, + tLayers = 386, + tScaleLast = 387, + tHole = 388, + tAlias = 389, + tAliasWithOptions = 390, + tCopyOptions = 391, + tQuadTriAddVerts = 392, + tQuadTriNoNewVerts = 393, + tQuadTriSngl = 394, + tQuadTriDbl = 395, + tRecombLaterals = 396, + tTransfQuadTri = 397, + tText2D = 398, + tText3D = 399, + tInterpolationScheme = 400, + tTime = 401, + tCombine = 402, + tBSpline = 403, + tBezier = 404, + tNurbs = 405, + tNurbsOrder = 406, + tNurbsKnots = 407, + tColor = 408, + tColorTable = 409, + tFor = 410, + tIn = 411, + tEndFor = 412, + tIf = 413, + tElseIf = 414, + tElse = 415, + tEndIf = 416, + tExit = 417, + tAbort = 418, + tField = 419, + tReturn = 420, + tCall = 421, + tSlide = 422, + tMacro = 423, + tShow = 424, + tHide = 425, + tGetValue = 426, + tGetStringValue = 427, + tGetEnv = 428, + tGetString = 429, + tGetNumber = 430, + tHomology = 431, + tCohomology = 432, + tBetti = 433, + tExists = 434, + tFileExists = 435, + tGMSH_MAJOR_VERSION = 436, + tGMSH_MINOR_VERSION = 437, + tGMSH_PATCH_VERSION = 438, + tGmshExecutableName = 439, + tSetPartition = 440, + tNameToString = 441, + tStringToName = 442, + tAFFECTDIVIDE = 443, + tAFFECTTIMES = 444, + tAFFECTMINUS = 445, + tAFFECTPLUS = 446, + tOR = 447, + tAND = 448, + tNOTEQUAL = 449, + tEQUAL = 450, + tGREATEROREQUAL = 451, + tLESSOREQUAL = 452, + UNARYPREC = 453, + tMINUSMINUS = 454, + tPLUSPLUS = 455 }; #endif /* Tokens. */ @@ -332,109 +337,114 @@ #define tRefineMesh 352 #define tAdaptMesh 353 #define tRelocateMesh 354 -#define tPlane 355 -#define tRuled 356 -#define tTransfinite 357 -#define tComplex 358 -#define tPhysical 359 -#define tCompound 360 -#define tPeriodic 361 -#define tUsing 362 -#define tPlugin 363 -#define tDegenerated 364 -#define tRecursive 365 -#define tRotate 366 -#define tTranslate 367 -#define tSymmetry 368 -#define tDilate 369 -#define tExtrude 370 -#define tLevelset 371 -#define tAffine 372 -#define tRecombine 373 -#define tSmoother 374 -#define tSplit 375 -#define tDelete 376 -#define tCoherence 377 -#define tIntersect 378 -#define tMeshAlgorithm 379 -#define tReverse 380 -#define tLayers 381 -#define tScaleLast 382 -#define tHole 383 -#define tAlias 384 -#define tAliasWithOptions 385 -#define tCopyOptions 386 -#define tQuadTriAddVerts 387 -#define tQuadTriNoNewVerts 388 -#define tQuadTriSngl 389 -#define tQuadTriDbl 390 -#define tRecombLaterals 391 -#define tTransfQuadTri 392 -#define tText2D 393 -#define tText3D 394 -#define tInterpolationScheme 395 -#define tTime 396 -#define tCombine 397 -#define tBSpline 398 -#define tBezier 399 -#define tNurbs 400 -#define tNurbsOrder 401 -#define tNurbsKnots 402 -#define tColor 403 -#define tColorTable 404 -#define tFor 405 -#define tIn 406 -#define tEndFor 407 -#define tIf 408 -#define tElseIf 409 -#define tElse 410 -#define tEndIf 411 -#define tExit 412 -#define tAbort 413 -#define tField 414 -#define tReturn 415 -#define tCall 416 -#define tSlide 417 -#define tMacro 418 -#define tShow 419 -#define tHide 420 -#define tGetValue 421 -#define tGetStringValue 422 -#define tGetEnv 423 -#define tGetString 424 -#define tGetNumber 425 -#define tHomology 426 -#define tCohomology 427 -#define tBetti 428 -#define tExists 429 -#define tFileExists 430 -#define tGMSH_MAJOR_VERSION 431 -#define tGMSH_MINOR_VERSION 432 -#define tGMSH_PATCH_VERSION 433 -#define tGmshExecutableName 434 -#define tSetPartition 435 -#define tNameToString 436 -#define tStringToName 437 -#define tAFFECTDIVIDE 438 -#define tAFFECTTIMES 439 -#define tAFFECTMINUS 440 -#define tAFFECTPLUS 441 -#define tOR 442 -#define tAND 443 -#define tNOTEQUAL 444 -#define tEQUAL 445 -#define tGREATEROREQUAL 446 -#define tLESSOREQUAL 447 -#define UNARYPREC 448 -#define tMINUSMINUS 449 -#define tPLUSPLUS 450 +#define tSetFactory 355 +#define tThruSections 356 +#define tPlane 357 +#define tRuled 358 +#define tTransfinite 359 +#define tComplex 360 +#define tPhysical 361 +#define tCompound 362 +#define tPeriodic 363 +#define tUsing 364 +#define tPlugin 365 +#define tDegenerated 366 +#define tRecursive 367 +#define tRotate 368 +#define tTranslate 369 +#define tSymmetry 370 +#define tDilate 371 +#define tExtrude 372 +#define tLevelset 373 +#define tAffine 374 +#define tBooleanUnion 375 +#define tBooleanIntersection 376 +#define tBooleanSubtraction 377 +#define tRecombine 378 +#define tSmoother 379 +#define tSplit 380 +#define tDelete 381 +#define tCoherence 382 +#define tIntersect 383 +#define tMeshAlgorithm 384 +#define tReverse 385 +#define tLayers 386 +#define tScaleLast 387 +#define tHole 388 +#define tAlias 389 +#define tAliasWithOptions 390 +#define tCopyOptions 391 +#define tQuadTriAddVerts 392 +#define tQuadTriNoNewVerts 393 +#define tQuadTriSngl 394 +#define tQuadTriDbl 395 +#define tRecombLaterals 396 +#define tTransfQuadTri 397 +#define tText2D 398 +#define tText3D 399 +#define tInterpolationScheme 400 +#define tTime 401 +#define tCombine 402 +#define tBSpline 403 +#define tBezier 404 +#define tNurbs 405 +#define tNurbsOrder 406 +#define tNurbsKnots 407 +#define tColor 408 +#define tColorTable 409 +#define tFor 410 +#define tIn 411 +#define tEndFor 412 +#define tIf 413 +#define tElseIf 414 +#define tElse 415 +#define tEndIf 416 +#define tExit 417 +#define tAbort 418 +#define tField 419 +#define tReturn 420 +#define tCall 421 +#define tSlide 422 +#define tMacro 423 +#define tShow 424 +#define tHide 425 +#define tGetValue 426 +#define tGetStringValue 427 +#define tGetEnv 428 +#define tGetString 429 +#define tGetNumber 430 +#define tHomology 431 +#define tCohomology 432 +#define tBetti 433 +#define tExists 434 +#define tFileExists 435 +#define tGMSH_MAJOR_VERSION 436 +#define tGMSH_MINOR_VERSION 437 +#define tGMSH_PATCH_VERSION 438 +#define tGmshExecutableName 439 +#define tSetPartition 440 +#define tNameToString 441 +#define tStringToName 442 +#define tAFFECTDIVIDE 443 +#define tAFFECTTIMES 444 +#define tAFFECTMINUS 445 +#define tAFFECTPLUS 446 +#define tOR 447 +#define tAND 448 +#define tNOTEQUAL 449 +#define tEQUAL 450 +#define tGREATEROREQUAL 451 +#define tLESSOREQUAL 452 +#define UNARYPREC 453 +#define tMINUSMINUS 454 +#define tPLUSPLUS 455 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE -#line 115 "Gmsh.y" +#line 117 "Gmsh.y" { char *c; int i; @@ -445,7 +455,7 @@ typedef union YYSTYPE List_T *l; } /* Line 1529 of yacc.c. */ -#line 449 "Gmsh.tab.hpp" +#line 459 "Gmsh.tab.hpp" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 diff --git a/Parser/Gmsh.y b/Parser/Gmsh.y index ee2f1d1a94ab3ebf2706cf6d639b1971da5cbfed..0d606c483a12a866b179b8a4a2629b49b0fc6b24 100644 --- a/Parser/Gmsh.y +++ b/Parser/Gmsh.y @@ -19,6 +19,7 @@ #include "Numeric.h" #include "Context.h" #include "GModel.h" +#include "GModelIO_OCC.h" #include "Geo.h" #include "GeoInterpolation.h" #include "Options.h" @@ -58,7 +59,7 @@ #endif - // Global parser variables +// Global parser variables std::string gmsh_yyname; int gmsh_yyerrorstate = 0; int gmsh_yyviewindex = 0; @@ -84,6 +85,7 @@ static double LoopControlVariablesTab[MAX_RECUR_LOOPS][3]; static std::string LoopControlVariablesNameTab[MAX_RECUR_LOOPS]; static std::map<std::string, std::vector<double> > floatOptions; static std::map<std::string, std::vector<std::string> > charOptions; +static std::string factory; void yyerror(const char *s); void yymsg(int level, const char *fmt, ...); @@ -142,10 +144,11 @@ struct doubleXstring{ %token tDefineNumber tDefineString tSetNumber tSetString %token tPoint tCircle tEllipse tLine tSphere tPolarSphere tSurface tSpline tVolume %token tCharacteristic tLength tParametric tElliptic tRefineMesh tAdaptMesh -%token tRelocateMesh +%token tRelocateMesh tSetFactory tThruSections %token tPlane tRuled tTransfinite tComplex tPhysical tCompound tPeriodic %token tUsing tPlugin tDegenerated tRecursive %token tRotate tTranslate tSymmetry tDilate tExtrude tLevelset tAffine +%token tBooleanUnion tBooleanIntersection tBooleanSubtraction %token tRecombine tSmoother tSplit tDelete tCoherence %token tIntersect tMeshAlgorithm tReverse %token tLayers tScaleLast tHole tAlias tAliasWithOptions tCopyOptions @@ -163,7 +166,7 @@ struct doubleXstring{ %type <d> FExpr FExpr_Single %type <v> VExpr VExpr_Single CircleOptions TransfiniteType -%type <i> NumericAffectation NumericIncrement +%type <i> NumericAffectation NumericIncrement BooleanOperator BooleanOption %type <i> PhysicalId0 PhysicalId1 PhysicalId2 PhysicalId3 %type <i> TransfiniteArrangement RecombineAngle %type <u> ColorExpr @@ -174,7 +177,7 @@ struct doubleXstring{ %type <l> FExpr_Multi ListOfDouble ListOfDoubleOrAll RecursiveListOfDouble %type <l> RecursiveListOfListOfDouble Enumeration %type <l> ListOfColor RecursiveListOfColor -%type <l> ListOfShapes Transform Extrude MultipleShape +%type <l> ListOfShapes Transform Extrude MultipleShape Boolean %type <l> TransfiniteCorners InSphereCenter PeriodicTransform %type <s> Shape @@ -223,6 +226,7 @@ GeoFormatItem : | SetPartition{ return 1; } | Visibility { return 1; } | Extrude { List_Delete($1); return 1; } + | Boolean { List_Delete($1); return 1; } | Constraints { return 1; } | Coherence { return 1; } | Loop { return 1; } @@ -1707,27 +1711,38 @@ CircleOptions : Shape : + tSetFactory '(' StringExprVar ')' tEND + { + factory = $3; + Free($3); + } + // Points - tPoint '(' FExpr ')' tAFFECT VExpr tEND + | tPoint '(' FExpr ')' tAFFECT VExpr tEND { int num = (int)$3; if(FindPoint(num)){ - yymsg(0, "Point %d already exists", num); + yymsg(0, "Point %d already exists", num); } else{ - double x = CTX::instance()->geom.scalingFactor * $6[0]; - double y = CTX::instance()->geom.scalingFactor * $6[1]; - double z = CTX::instance()->geom.scalingFactor * $6[2]; - double lc = CTX::instance()->geom.scalingFactor * $6[3]; - if(lc == 0.) lc = MAX_LC; // no mesh size given at the point - Vertex *v; - if(!myGmshSurface) - v = Create_Vertex(num, x, y, z, lc, 1.0); - else - v = Create_Vertex(num, x, y, myGmshSurface, lc); - Tree_Add(GModel::current()->getGEOInternals()->Points, &v); - AddToTemporaryBoundingBox(v->Pos.X, v->Pos.Y, v->Pos.Z); + double x = CTX::instance()->geom.scalingFactor * $6[0]; + double y = CTX::instance()->geom.scalingFactor * $6[1]; + double z = CTX::instance()->geom.scalingFactor * $6[2]; + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + GModel::current()->getOCCInternals()->addVertex(num, x, y, z); + } + else{ + double lc = CTX::instance()->geom.scalingFactor * $6[3]; + if(lc == 0.) lc = MAX_LC; // no mesh size given at the point + Vertex *v; + if(!myGmshSurface) + v = Create_Vertex(num, x, y, z, lc, 1.0); + else + v = Create_Vertex(num, x, y, myGmshSurface, lc); + Tree_Add(GModel::current()->getGEOInternals()->Points, &v); + AddToTemporaryBoundingBox(v->Pos.X, v->Pos.Y, v->Pos.Z); + } } $$.Type = MSH_POINT; $$.Num = num; @@ -1862,24 +1877,34 @@ Shape : yymsg(0, "Curve %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt($6); - Curve *c = Create_Curve(num, MSH_SEGM_CIRC, 2, temp, NULL, - -1, -1, 0., 1.); - if($7[0] || $7[1] || $7[2]){ - c->Circle.n[0] = $7[0]; - c->Circle.n[1] = $7[1]; - c->Circle.n[2] = $7[2]; - End_Curve(c); + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + if(List_Nbr($6) == 3){ + double d[3]; + List_Read($6, 0, &d[0]); List_Read($6, 1, &d[1]); List_Read($6, 2, &d[2]); + GModel::current()->getOCCInternals()->addCircleArc + (num, (int)d[0], (int)d[1], (int)d[2]); + } } - Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); - Curve *rc = CreateReversedCurve(c); - if($7[0] || $7[1] || $7[2]){ - rc->Circle.n[0] = $7[0]; - rc->Circle.n[1] = $7[1]; - rc->Circle.n[2] = $7[2]; - End_Curve(rc); + else{ + List_T *temp = ListOfDouble2ListOfInt($6); + Curve *c = Create_Curve(num, MSH_SEGM_CIRC, 2, temp, NULL, + -1, -1, 0., 1.); + if($7[0] || $7[1] || $7[2]){ + c->Circle.n[0] = $7[0]; + c->Circle.n[1] = $7[1]; + c->Circle.n[2] = $7[2]; + End_Curve(c); + } + Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); + Curve *rc = CreateReversedCurve(c); + if($7[0] || $7[1] || $7[2]){ + rc->Circle.n[0] = $7[0]; + rc->Circle.n[1] = $7[1]; + rc->Circle.n[2] = $7[2]; + End_Curve(rc); + } + List_Delete(temp); } - List_Delete(temp); } List_Delete($6); $$.Type = MSH_SEGM_CIRC; @@ -2145,26 +2170,42 @@ Shape : | tSphere '(' FExpr ')' tAFFECT ListOfDouble tEND { int num = (int)$3; - if (List_Nbr($6) != 2){ - yymsg(0, "Sphere %d has to be defined using 2 points (center + " - "any point) and not %d", num, List_Nbr($6)); + if(List_Nbr($6) == 4){ // solid sphere (volume) + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + double x; List_Read($6, 0, &x); + double y; List_Read($6, 1, &y); + double z; List_Read($6, 2, &z); + double r; List_Read($6, 3, &r); + GModel::current()->getOCCInternals()->addSphere(num, x, y, z, r); + } + else{ + yymsg(0, "Sphere only available in OpenCASCADE factory"); + } + $$.Type = MSH_VOLUME; } else{ - double p1,p2; - List_Read($6, 0, &p1); - List_Read($6, 1, &p2); - Vertex *v1 = FindPoint((int)p1); - Vertex *v2 = FindPoint((int)p2); - if(!v1) yymsg(0, "Sphere %d : unknown point %d", num, (int)p1); - if(!v2) yymsg(0, "Sphere %d : unknown point %d", num, (int)p2); - if(v1 && v2) - myGmshSurface = gmshSphere::NewSphere - (num, v1->Pos.X, v1->Pos.Y, v1->Pos.Z, - sqrt((v2->Pos.X - v1->Pos.X) * (v2->Pos.X - v1->Pos.X) + - (v2->Pos.Y - v1->Pos.Y) * (v2->Pos.Y - v1->Pos.Y) + - (v2->Pos.Z - v1->Pos.Z) * (v2->Pos.Z - v1->Pos.Z))); + if (List_Nbr($6) != 2){ + yymsg(0, "Sphere %d has to be defined using 2 points (center + " + "any point) and not %d", num, List_Nbr($6)); + } + else{ + double p1,p2; + List_Read($6, 0, &p1); + List_Read($6, 1, &p2); + Vertex *v1 = FindPoint((int)p1); + Vertex *v2 = FindPoint((int)p2); + if(!v1) yymsg(0, "Sphere %d : unknown point %d", num, (int)p1); + if(!v2) yymsg(0, "Sphere %d : unknown point %d", num, (int)p2); + if(v1 && v2) + myGmshSurface = gmshSphere::NewSphere + (num, v1->Pos.X, v1->Pos.Y, v1->Pos.Z, + sqrt((v2->Pos.X - v1->Pos.X) * (v2->Pos.X - v1->Pos.X) + + (v2->Pos.Y - v1->Pos.Y) * (v2->Pos.Y - v1->Pos.Y) + + (v2->Pos.Z - v1->Pos.Z) * (v2->Pos.Z - v1->Pos.Z))); + } + $$.Type = 0; } - $$.Type = 0; + List_Delete($6); $$.Num = num; } | tPolarSphere '(' FExpr ')' tAFFECT ListOfDouble tEND @@ -2189,6 +2230,7 @@ Shape : (v2->Pos.Y - v1->Pos.Y) * (v2->Pos.Y - v1->Pos.Y) + (v2->Pos.Z - v1->Pos.Z) * (v2->Pos.Z - v1->Pos.Z))); } + List_Delete($6); $$.Type = 0; $$.Num = num; } @@ -2348,6 +2390,35 @@ Shape : $$.Type = MSH_VOLUME; $$.Num = num; } + | tThruSections '(' FExpr ')' tAFFECT '{' RecursiveListOfListOfDouble '}' tEND + { + int num = (int)$3; + if(FindVolume(num)){ + yymsg(0, "Volume %d already exists", num); + } + else{ + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + std::vector<std::vector<int> > edges; + for(int i = 0; i < List_Nbr($7); i++){ + List_T *l; List_Read($7, i, &l); + std::vector<int> v; + for(int j = 0; j < List_Nbr(l); j++){ + double d = 0; List_Read(l, j, &d); v.push_back(d); + } + edges.push_back(v); + } + GModel::current()->getOCCInternals()->addThruSections(num, edges); + } + else{ + yymsg(0, "ThruSections only available in OpenCASCADE factory"); + } + } + for(int i = 0; i < List_Nbr($7); i++) + List_Delete(*(List_T**)List_Pointer($7, i)); + List_Delete($7); + $$.Type = MSH_VOLUME; + $$.Num = num; + } | tCompound tVolume ListOfDouble tEND { GModel::current()->getGEOInternals()->addCompoundMesh ( 3 , $3 ); @@ -2512,8 +2583,14 @@ ListOfShapes : TheShape.Type = MSH_POINT_FROM_GMODEL; List_Add($$, &TheShape); } - else - yymsg(1, "Unknown point %d", TheShape.Num); + else{ + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + TheShape.Type = MSH_UNKNOWN; + List_Add($$, &TheShape); + } + else + yymsg(1, "Unknown point %d", TheShape.Num); + } } } } @@ -2535,8 +2612,14 @@ ListOfShapes : TheShape.Type = MSH_SEGM_FROM_GMODEL; List_Add($$, &TheShape); } - else - yymsg(1, "Unknown curve %d", TheShape.Num); + else{ + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + TheShape.Type = MSH_UNKNOWN; + List_Add($$, &TheShape); + } + else + yymsg(1, "Unknown curve %d", TheShape.Num); + } } } } @@ -2558,8 +2641,14 @@ ListOfShapes : TheShape.Type = MSH_SURF_FROM_GMODEL; List_Add($$, &TheShape); } - else - yymsg(1, "Unknown surface %d", TheShape.Num); + else{ + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + TheShape.Type = MSH_UNKNOWN; + List_Add($$, &TheShape); + } + else + yymsg(1, "Unknown surface %d", TheShape.Num); + } } } } @@ -2581,8 +2670,14 @@ ListOfShapes : TheShape.Type = MSH_VOLUME_FROM_GMODEL; List_Add($$, &TheShape); } - else - yymsg(1, "Unknown volume %d", TheShape.Num); + else{ + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + TheShape.Type = MSH_UNKNOWN; + List_Add($$, &TheShape); + } + else + yymsg(1, "Unknown volume %d", TheShape.Num); + } } } } @@ -3336,6 +3431,7 @@ Command : // the new DB. This will become unnecessary if/when we fill the // GModel directly during parsing. GModel::current()->importGEOInternals(); + GModel::current()->importOCCInternals(); } | tNewModel tEND { @@ -4081,6 +4177,39 @@ ExtrudeParameter : } ; +// B O O L E A N + +BooleanOperator : + tBooleanUnion { $$ = OCC_Internals::Fuse; } + | tBooleanIntersection { $$ = OCC_Internals::Intersection; } + | tBooleanSubtraction { $$ = OCC_Internals::Cut; } +; + +BooleanOption : + { $$ = 0; } + | tDelete tEND { $$ = 1; } + | tDelete FExpr tEND { $$ = $2; } + +Boolean : + BooleanOperator '{' ListOfShapes BooleanOption '}' '{' ListOfShapes BooleanOption '}' + { + $$ = List_Create(2, 1, sizeof(Shape)); + if(factory == "OpenCASCADE" && GModel::current()->getOCCInternals()){ + std::vector<int> shape[4], tool[4]; + for(int i = 0; i < List_Nbr($3); i++){ + Shape s; List_Read($3, i, &s); shape[3].push_back(s.Num); + } + for(int i = 0; i < List_Nbr($7); i++){ + Shape s; List_Read($7, i, &s); tool[3].push_back(s.Num); + } + GModel::current()->getOCCInternals()->applyBooleanOperator + (-1, shape, tool, (OCC_Internals::BooleanOperator)$1, $4, $8); + // FIXME add to returned list of shapes + } + List_Delete($3); + List_Delete($7); + } + // M E S H I N G C O N S T R A I N T S ( T R A N S F I N I T E , . . . ) TransfiniteType : @@ -5873,6 +6002,16 @@ FExpr_Multi : } List_Delete($1); } + | Boolean + { + $$ = List_Create(List_Nbr($1), 1, sizeof(double)); + for(int i = 0; i < List_Nbr($1); i++){ + Shape *s = (Shape*) List_Pointer($1, i); + double d = s->Num; + List_Add($$, &d); + } + List_Delete($1); + } | tSTRING LP RP { $$ = List_Create(2, 1, sizeof(double)); diff --git a/Parser/Gmsh.yy.cpp b/Parser/Gmsh.yy.cpp index 2e5c18e14e492f21e6ef8f18a394b516ca631d79..02d897df3d30d619233ade724ffb279440bcf29a 100644 --- a/Parser/Gmsh.yy.cpp +++ b/Parser/Gmsh.yy.cpp @@ -380,8 +380,8 @@ static void yy_fatal_error (yyconst char msg[] ); *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; -#define YY_NUM_RULES 220 -#define YY_END_OF_BUFFER 221 +#define YY_NUM_RULES 225 +#define YY_END_OF_BUFFER 226 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info @@ -389,130 +389,135 @@ struct yy_trans_info flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static yyconst flex_int16_t yy_accept[1107] = +static yyconst flex_int16_t yy_accept[1158] = { 0, - 0, 0, 221, 219, 1, 1, 219, 5, 219, 6, - 219, 219, 219, 219, 219, 214, 21, 2, 219, 16, - 219, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 219, 28, 24, 19, 25, 17, - 26, 18, 0, 216, 3, 4, 20, 215, 214, 0, - 29, 27, 30, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - - 218, 218, 218, 218, 116, 115, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 145, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 196, 197, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 23, 22, 0, - 215, 0, 0, 217, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 57, 68, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - - 218, 218, 218, 80, 218, 218, 218, 218, 218, 218, - 218, 218, 100, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 126, - 218, 218, 218, 218, 218, 218, 137, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 181, 218, 218, 218, 173, 218, 218, 218, 218, 218, - 218, 179, 218, 218, 218, 218, 205, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 0, 216, 0, - 0, 215, 218, 218, 33, 218, 218, 218, 218, 218, - - 218, 39, 41, 218, 218, 218, 218, 65, 218, 218, - 50, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 56, 218, 218, 218, 218, 218, 218, 218, 78, 218, - 83, 218, 218, 218, 218, 218, 91, 218, 93, 218, - 218, 95, 218, 218, 99, 218, 218, 218, 218, 218, - 218, 218, 111, 112, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 121, 122, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 162, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - - 218, 218, 192, 174, 218, 218, 218, 218, 218, 172, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 200, 204, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 10, 15, 9, 8, 218, 12, 14, 0, 215, - 31, 218, 218, 218, 37, 218, 218, 218, 43, 218, - 45, 218, 218, 218, 218, 218, 218, 218, 218, 60, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 88, 90, 218, 218, 218, - 94, 218, 218, 98, 218, 218, 218, 218, 218, 218, - 218, 218, 114, 218, 218, 119, 218, 218, 218, 218, - - 218, 127, 218, 218, 218, 218, 130, 218, 218, 218, - 218, 218, 139, 218, 142, 218, 218, 218, 146, 218, - 147, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 160, 161, 218, 218, 218, 218, 218, 194, 218, - 218, 218, 177, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 206, 218, - 218, 218, 218, 212, 218, 11, 218, 13, 218, 218, - 35, 218, 36, 40, 42, 218, 46, 218, 218, 218, - 218, 51, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 74, 76, 218, 218, 218, 84, - - 87, 218, 92, 218, 218, 218, 218, 218, 218, 102, - 218, 218, 218, 218, 218, 218, 218, 128, 120, 218, - 218, 218, 218, 218, 218, 218, 135, 218, 132, 218, - 218, 218, 218, 218, 218, 151, 218, 150, 218, 218, - 218, 218, 218, 165, 218, 159, 218, 218, 218, 218, - 218, 218, 175, 176, 218, 183, 218, 188, 218, 190, - 218, 218, 218, 191, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 213, 7, 218, 218, 218, - 44, 47, 218, 218, 218, 218, 218, 218, 218, 55, - 59, 218, 218, 218, 218, 218, 218, 218, 218, 218, - - 77, 82, 218, 218, 218, 85, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 166, 218, 218, 218, 218, 218, 218, 182, 218, - 187, 218, 218, 218, 218, 178, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 49, 218, 218, 218, 218, 218, 62, 218, 218, 218, - 218, 218, 218, 218, 218, 81, 86, 218, 218, 218, - 101, 218, 218, 218, 218, 218, 105, 218, 113, 218, - - 218, 129, 124, 218, 125, 218, 133, 134, 218, 218, - 138, 218, 218, 218, 143, 144, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 168, 218, 218, 218, 218, 218, 193, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 34, 218, - 218, 218, 218, 53, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 89, 218, 218, 218, 218, 218, - 104, 103, 218, 218, 117, 218, 210, 218, 218, 218, - 141, 218, 218, 218, 218, 218, 218, 218, 156, 158, - 218, 218, 218, 218, 169, 218, 170, 189, 185, 218, - - 218, 218, 195, 198, 218, 218, 218, 218, 203, 218, - 209, 218, 218, 218, 64, 218, 54, 61, 218, 218, - 218, 70, 218, 218, 218, 218, 96, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 148, - 218, 218, 154, 218, 218, 218, 163, 218, 218, 79, - 218, 218, 184, 218, 218, 218, 218, 218, 218, 218, - 218, 48, 218, 63, 52, 218, 218, 218, 218, 218, - 75, 218, 218, 218, 218, 218, 218, 218, 218, 211, - 218, 218, 218, 149, 218, 218, 155, 218, 218, 218, - 218, 186, 218, 218, 207, 218, 201, 218, 32, 218, - - 218, 218, 218, 218, 72, 73, 218, 218, 218, 218, - 218, 218, 218, 123, 218, 136, 140, 218, 218, 218, - 164, 218, 171, 180, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 131, - 218, 218, 218, 218, 218, 202, 218, 218, 58, 66, - 218, 71, 218, 218, 218, 218, 106, 218, 218, 218, - 218, 157, 167, 199, 218, 218, 218, 218, 97, 218, - 218, 218, 218, 218, 152, 218, 218, 38, 218, 69, - 218, 218, 218, 218, 218, 218, 208, 218, 218, 218, - 218, 218, 218, 153, 218, 107, 108, 109, 110, 218, - - 218, 218, 218, 118, 67, 0 + 0, 0, 226, 224, 1, 1, 224, 5, 224, 6, + 224, 224, 224, 224, 224, 219, 21, 2, 224, 16, + 224, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 224, 28, 24, 19, 25, 17, + 26, 18, 0, 221, 3, 4, 20, 220, 219, 0, + 29, 27, 30, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + + 223, 223, 223, 223, 119, 118, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 148, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 200, 201, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 23, 22, + 0, 220, 0, 0, 222, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 60, + 71, 223, 223, 223, 223, 223, 223, 223, 223, 223, + + 223, 223, 223, 223, 223, 83, 223, 223, 223, 223, + 223, 223, 223, 223, 103, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 129, 223, 223, 223, 223, 223, 223, 140, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 185, 223, 223, 223, 177, 223, 223, 223, + 223, 223, 223, 183, 223, 223, 223, 223, 210, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 0, 221, 0, 0, 220, 223, 223, 33, 223, 223, + + 223, 223, 223, 223, 39, 41, 223, 223, 223, 223, + 223, 68, 223, 223, 53, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 59, 223, 223, 223, 223, 223, + 223, 223, 81, 223, 86, 223, 223, 223, 223, 223, + 94, 223, 96, 223, 223, 98, 223, 223, 102, 223, + 223, 223, 223, 223, 223, 223, 114, 115, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 124, 125, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 165, 223, 223, 223, 223, 223, 223, 223, 223, + + 223, 223, 223, 223, 223, 223, 223, 196, 178, 223, + 223, 223, 223, 223, 176, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 205, 209, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 10, 15, 9, + 8, 223, 12, 14, 0, 220, 31, 223, 223, 223, + 37, 223, 223, 223, 43, 223, 45, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 63, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 91, 93, 223, 223, 223, 97, 223, 223, + 101, 223, 223, 223, 223, 223, 223, 223, 223, 117, + + 223, 223, 122, 223, 223, 223, 223, 223, 130, 223, + 223, 223, 223, 133, 223, 223, 223, 223, 223, 142, + 223, 145, 223, 223, 223, 149, 223, 150, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 163, 164, + 223, 223, 223, 223, 223, 223, 198, 223, 223, 223, + 181, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 211, 223, 223, + 223, 223, 217, 223, 11, 223, 13, 223, 223, 35, + 223, 36, 40, 42, 223, 46, 223, 223, 223, 223, + 223, 54, 223, 223, 223, 223, 223, 223, 223, 223, + + 223, 223, 223, 223, 77, 79, 223, 223, 223, 87, + 90, 223, 95, 223, 223, 223, 223, 223, 223, 105, + 223, 223, 223, 223, 223, 223, 223, 131, 123, 223, + 223, 223, 223, 223, 223, 223, 138, 223, 135, 223, + 223, 223, 223, 223, 223, 154, 223, 153, 223, 223, + 223, 223, 223, 168, 223, 162, 223, 223, 223, 223, + 223, 223, 223, 179, 180, 223, 187, 223, 192, 223, + 194, 223, 223, 223, 195, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 218, 7, 223, + 223, 223, 44, 47, 223, 223, 223, 223, 223, 223, + + 223, 223, 58, 62, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 80, 85, 223, 223, 223, 88, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 169, 223, 223, 223, 223, 223, + 223, 223, 186, 223, 191, 223, 223, 223, 223, 182, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 52, 223, + 223, 223, 223, 223, 65, 223, 223, 223, 223, 223, + + 223, 223, 223, 84, 89, 223, 223, 223, 104, 223, + 223, 223, 223, 223, 108, 223, 116, 223, 223, 132, + 127, 223, 128, 223, 136, 137, 223, 223, 141, 223, + 223, 223, 146, 147, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 171, 223, 223, 223, 223, 223, 197, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 34, 223, + 223, 223, 223, 223, 223, 223, 56, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 92, 223, 223, + 223, 223, 223, 107, 106, 223, 223, 120, 223, 215, + + 223, 223, 223, 144, 223, 223, 223, 223, 223, 223, + 223, 159, 161, 223, 223, 223, 223, 223, 173, 223, + 174, 193, 189, 223, 223, 223, 199, 202, 223, 223, + 223, 223, 223, 208, 223, 214, 223, 223, 223, 223, + 223, 223, 67, 223, 57, 64, 223, 223, 223, 73, + 223, 223, 223, 223, 99, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 151, 223, 223, + 157, 223, 223, 223, 166, 223, 223, 82, 172, 223, + 223, 188, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 51, 223, 66, 55, 223, 223, + + 223, 223, 223, 78, 223, 223, 223, 223, 223, 223, + 223, 223, 216, 223, 223, 223, 152, 223, 223, 158, + 223, 223, 223, 223, 190, 223, 223, 223, 212, 223, + 206, 223, 32, 223, 223, 223, 48, 223, 223, 223, + 223, 75, 76, 223, 223, 223, 223, 223, 223, 223, + 126, 223, 139, 143, 223, 223, 223, 167, 223, 175, + 184, 223, 204, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 134, + 223, 223, 223, 223, 223, 207, 223, 223, 223, 223, + 61, 69, 223, 74, 223, 223, 223, 223, 109, 223, + + 223, 223, 223, 160, 170, 203, 223, 223, 223, 223, + 223, 223, 100, 223, 223, 223, 223, 223, 155, 223, + 223, 38, 223, 223, 223, 72, 223, 223, 223, 223, + 223, 223, 213, 223, 223, 223, 223, 223, 223, 223, + 223, 156, 223, 50, 223, 110, 111, 112, 113, 223, + 49, 223, 223, 223, 121, 70, 0 } ; static yyconst flex_int32_t yy_ec[256] = @@ -559,259 +564,269 @@ static yyconst flex_int32_t yy_meta[74] = 2, 2, 1 } ; -static yyconst flex_int16_t yy_base[1108] = +static yyconst flex_int16_t yy_base[1159] = { 0, - 0, 0, 1239, 1240, 1240, 1240, 1217, 1240, 1231, 1240, - 1215, 65, 66, 64, 76, 78, 1240, 1240, 1214, 1213, - 1212, 49, 49, 56, 69, 64, 79, 84, 83, 96, - 0, 1172, 99, 110, 111, 81, 109, 1164, 120, 173, - 160, 117, 1169, 1177, 1155, 1240, 1240, 1240, 1240, 1240, - 1240, 1240, 1216, 182, 1240, 1240, 1240, 189, 232, 241, - 1240, 1240, 1240, 0, 119, 1165, 1177, 1171, 1167, 1172, - 1165, 1172, 1157, 37, 1151, 84, 1161, 1168, 1151, 152, - 1147, 1161, 1148, 132, 125, 1163, 135, 1159, 1145, 1158, - 164, 1158, 208, 1145, 1144, 1140, 1143, 1161, 1135, 1135, - - 1148, 24, 1136, 1155, 0, 1130, 1134, 1123, 106, 162, - 164, 1162, 1142, 202, 1140, 1149, 1130, 1119, 1123, 1134, - 1134, 1120, 1119, 1111, 0, 171, 136, 1125, 1132, 1119, - 219, 86, 1120, 1141, 1128, 1109, 1113, 1113, 1116, 1110, - 207, 1106, 1105, 1104, 193, 0, 0, 1132, 1106, 172, - 213, 1117, 1113, 1101, 1106, 1103, 1091, 1240, 1240, 279, - 284, 293, 299, 304, 1095, 1097, 1092, 1094, 1099, 1106, - 249, 1093, 1092, 1093, 1084, 1093, 1088, 1089, 211, 1088, - 1081, 1094, 221, 1082, 67, 1078, 1070, 1085, 0, 1091, - 1074, 1081, 1084, 1083, 1086, 1097, 1063, 1075, 1078, 252, - - 1068, 1070, 210, 0, 1063, 1061, 1067, 1072, 1072, 1082, - 1060, 1069, 0, 1069, 1088, 296, 1062, 1064, 1063, 1053, - 1052, 1085, 1059, 1044, 1057, 1054, 1055, 44, 1040, 290, - 1053, 1057, 1039, 1041, 1046, 1033, 0, 1047, 1063, 1048, - 1038, 1043, 1046, 1037, 1027, 1031, 1036, 1029, 1040, 1027, - 1035, 1034, 261, 1028, 1022, 1015, 1029, 1032, 1019, 1026, - 0, 1019, 305, 1007, 1020, 1023, 1012, 1020, 1015, 1014, - 1003, 310, 1015, 1008, 1016, 1038, 1009, 997, 996, 1013, - 1012, 999, 1006, 1005, 996, 988, 299, 355, 360, 369, - 374, 379, 988, 995, 0, 986, 991, 985, 988, 992, - - 999, 0, 1031, 989, 988, 991, 991, 0, 981, 973, - 0, 991, 980, 973, 977, 971, 978, 266, 982, 995, - 0, 965, 978, 969, 968, 961, 960, 977, 0, 962, - 992, 961, 968, 956, 963, 952, 0, 950, 0, 965, - 988, 0, 962, 949, 0, 946, 964, 950, 942, 942, - 959, 979, 0, 0, 947, 938, 963, 938, 936, 936, - 933, 940, 935, 0, 968, 982, 932, 929, 285, 931, - 927, 967, 931, 946, 926, 921, 937, 920, 924, 921, - 925, 928, 923, 912, 913, 910, 239, 0, 916, 910, - 913, 922, 907, 906, 903, 917, 916, 914, 910, 897, - - 915, 896, 0, 0, 909, 894, 895, 273, 898, 0, - 299, 901, 904, 891, 902, 886, 892, 903, 898, 914, - 0, 0, 914, 924, 875, 887, 879, 890, 878, 887, - 881, 0, 0, 881, 0, 886, 879, 0, 384, 389, - 0, 869, 900, 882, 888, 867, 871, 870, 0, 869, - 0, 864, 871, 878, 867, 874, 871, 870, 860, 878, - 859, 866, 850, 860, 853, 862, 853, 860, 859, 858, - 857, 849, 290, 854, 842, 0, 0, 854, 839, 852, - 0, 832, 843, 0, 844, 307, 831, 839, 833, 838, - 825, 833, 0, 855, 827, 0, 826, 835, 824, 840, - - 823, 0, 838, 860, 836, 827, 0, 811, 823, 819, - 818, 827, 0, 828, 0, 824, 824, 824, 0, 813, - 0, 831, 818, 806, 820, 803, 815, 818, 805, 799, - 811, 0, 0, 828, 813, 801, 795, 794, 0, 802, - 804, 803, 0, 788, 787, 791, 789, 790, 789, 796, - 349, 798, 792, 795, 778, 782, 790, 775, 0, 805, - 276, 783, 813, 0, 785, 0, 782, 0, 769, 782, - 0, 777, 0, 0, 817, 779, 0, 770, 765, 770, - 761, 0, 766, 767, 776, 771, 752, 761, 760, 753, - 776, 751, 383, 752, 0, 0, 763, 357, 758, 0, - - 0, 757, 0, 760, 755, 762, 748, 387, 785, 0, - 758, 750, 738, 752, 749, 765, 749, 0, 0, 748, - 749, 737, 747, 748, 735, 722, 0, 739, 0, 751, - 739, 389, 724, 733, 740, 0, 725, 0, 730, 380, - 729, 749, 717, 0, 730, 0, 733, 720, 730, 712, - 721, 724, 0, 0, 722, 0, 718, 0, 722, 0, - 719, 723, 712, 0, 727, 716, 703, 715, 697, 698, - 711, 376, 714, 701, 712, 0, 0, 707, 693, 691, - 0, 0, 702, 684, 714, 701, 702, 690, 701, 0, - 0, 698, 700, 691, 685, 719, 683, 676, 676, 693, - - 0, 0, 41, 119, 153, 0, 150, 220, 293, 327, - 324, 320, 313, 320, 329, 366, 346, 386, 371, 356, - 371, 366, 374, 362, 371, 378, 370, 367, 376, 385, - 370, 376, 391, 384, 388, 421, 397, 386, 380, 397, - 398, 0, 386, 398, 401, 398, 395, 392, 0, 408, - 0, 403, 394, 413, 402, 0, 393, 413, 414, 403, - 409, 403, 411, 407, 422, 410, 438, 422, 423, 455, - 0, 419, 418, 431, 430, 427, 0, 421, 427, 427, - 434, 431, 433, 429, 428, 0, 0, 435, 430, 441, - 0, 461, 462, 475, 437, 448, 0, 436, 0, 481, - - 439, 0, 0, 478, 0, 455, 0, 0, 444, 445, - 0, 444, 451, 456, 0, 0, 461, 463, 466, 455, - 457, 452, 467, 468, 456, 487, 457, 472, 461, 460, - 473, 0, 476, 459, 474, 481, 496, 0, 475, 476, - 479, 475, 489, 482, 487, 515, 489, 494, 0, 506, - 483, 486, 490, 0, 476, 496, 497, 490, 490, 488, - 488, 505, 499, 504, 0, 492, 490, 519, 520, 531, - 0, 518, 497, 522, 0, 509, 535, 511, 512, 513, - 0, 520, 507, 521, 515, 538, 521, 524, 0, 0, - 522, 526, 545, 529, 0, 525, 0, 0, 0, 514, - - 531, 536, 0, 0, 536, 522, 536, 522, 0, 528, - 0, 524, 529, 522, 0, 528, 0, 0, 529, 530, - 538, 545, 533, 548, 541, 551, 0, 551, 557, 558, - 559, 559, 560, 578, 552, 551, 546, 553, 553, 0, - 563, 572, 0, 565, 560, 555, 0, 555, 573, 0, - 561, 571, 0, 565, 558, 555, 585, 576, 569, 575, - 565, 0, 566, 0, 0, 572, 584, 587, 572, 583, - 0, 600, 595, 597, 598, 585, 595, 608, 594, 0, - 592, 594, 589, 0, 598, 583, 0, 605, 599, 584, - 596, 0, 605, 592, 0, 595, 0, 595, 0, 605, - - 606, 609, 598, 605, 0, 0, 618, 640, 641, 642, - 603, 613, 636, 0, 614, 0, 0, 610, 631, 618, - 0, 625, 0, 0, 626, 623, 614, 620, 632, 612, - 623, 619, 620, 647, 648, 649, 638, 639, 645, 0, - 627, 642, 630, 632, 632, 0, 650, 640, 0, 665, - 638, 0, 648, 663, 664, 665, 0, 671, 667, 644, - 646, 0, 0, 0, 651, 647, 652, 643, 0, 684, - 685, 686, 670, 694, 0, 654, 655, 0, 692, 0, - 686, 687, 688, 667, 697, 663, 0, 668, 694, 695, - 696, 681, 707, 0, 677, 0, 0, 0, 0, 701, - - 685, 711, 674, 0, 0, 1240, 738 + 0, 0, 1290, 1291, 1291, 1291, 1268, 1291, 1282, 1291, + 1266, 65, 66, 64, 76, 78, 1291, 1291, 1265, 1264, + 1263, 49, 49, 56, 69, 64, 79, 84, 83, 96, + 0, 1223, 99, 110, 111, 81, 109, 1215, 120, 173, + 160, 117, 1220, 1228, 1206, 1291, 1291, 1291, 1291, 1291, + 1291, 1291, 1267, 182, 1291, 1291, 1291, 189, 232, 241, + 1291, 1291, 1291, 0, 119, 1216, 1228, 1222, 1218, 1223, + 1216, 1223, 1208, 37, 122, 84, 1213, 1220, 1203, 152, + 1199, 1213, 1200, 132, 136, 1215, 161, 1211, 1197, 1210, + 171, 1210, 208, 1197, 1196, 1192, 1195, 1213, 1187, 1187, + + 1200, 24, 1188, 1207, 0, 1182, 1186, 1175, 106, 202, + 184, 1214, 1194, 204, 1192, 1201, 1182, 1171, 1175, 1186, + 1186, 1172, 1171, 1163, 0, 153, 214, 1177, 1184, 1171, + 221, 86, 1172, 1193, 1180, 1161, 1165, 1165, 1168, 1162, + 218, 1158, 1157, 1156, 133, 0, 0, 1184, 1158, 210, + 1153, 226, 1168, 1164, 1152, 1157, 1154, 1142, 1291, 1291, + 281, 286, 295, 301, 306, 1146, 1148, 1143, 1145, 1150, + 1157, 299, 1144, 1143, 1144, 1135, 1144, 1141, 1138, 1139, + 229, 1138, 1131, 1144, 200, 1132, 67, 1128, 1120, 1135, + 0, 1141, 1124, 1131, 1134, 1133, 1136, 1147, 1113, 1125, + + 1128, 255, 1118, 1120, 199, 0, 1113, 1111, 1117, 1122, + 1122, 1132, 1110, 1119, 0, 1119, 1138, 298, 1112, 1114, + 1113, 1103, 1102, 1135, 1109, 1094, 1107, 1104, 1105, 44, + 1090, 292, 1103, 1107, 1089, 1091, 1096, 1083, 0, 1097, + 1113, 1098, 1088, 1093, 1096, 1087, 1077, 1081, 1086, 1079, + 1090, 1077, 1085, 1084, 265, 1078, 1072, 1065, 1079, 1082, + 1069, 1076, 0, 1069, 318, 1057, 1070, 1073, 1062, 1070, + 1065, 1064, 1053, 323, 1065, 1058, 1066, 1088, 1059, 1047, + 1046, 1044, 1062, 1061, 1048, 1055, 1054, 1045, 1037, 312, + 314, 368, 377, 382, 387, 1037, 1044, 0, 1035, 1040, + + 1034, 1037, 1041, 1048, 0, 1080, 1038, 1037, 1040, 1039, + 1039, 0, 1029, 1021, 0, 1039, 1028, 1021, 1025, 1019, + 1026, 286, 1030, 1043, 0, 1013, 1026, 1017, 1016, 1009, + 1008, 1025, 0, 1010, 1040, 1009, 1016, 1004, 1011, 1000, + 0, 998, 0, 1013, 1036, 0, 1010, 997, 0, 994, + 1012, 998, 990, 990, 1007, 1027, 0, 0, 995, 986, + 1011, 986, 984, 984, 981, 988, 983, 0, 1016, 1030, + 980, 977, 295, 979, 975, 1015, 979, 994, 974, 969, + 985, 968, 972, 969, 973, 976, 971, 960, 961, 958, + 176, 0, 964, 958, 961, 970, 955, 954, 951, 965, + + 964, 962, 958, 964, 944, 962, 943, 0, 0, 956, + 941, 942, 289, 945, 0, 312, 948, 951, 938, 949, + 933, 939, 950, 945, 961, 0, 0, 961, 971, 952, + 921, 933, 925, 936, 924, 933, 927, 0, 0, 927, + 0, 932, 925, 0, 392, 397, 0, 915, 946, 928, + 934, 913, 917, 916, 0, 915, 0, 910, 925, 916, + 923, 912, 919, 916, 915, 905, 923, 904, 911, 895, + 905, 898, 907, 898, 905, 904, 903, 902, 894, 287, + 899, 887, 0, 0, 899, 884, 897, 0, 877, 888, + 0, 889, 331, 876, 884, 878, 883, 870, 878, 0, + + 900, 872, 0, 871, 880, 869, 885, 868, 0, 883, + 905, 881, 872, 0, 856, 868, 864, 863, 872, 0, + 873, 0, 869, 869, 869, 0, 858, 0, 876, 863, + 851, 865, 848, 860, 863, 850, 844, 856, 0, 0, + 873, 858, 855, 845, 839, 838, 0, 846, 848, 847, + 0, 832, 831, 835, 833, 834, 833, 840, 310, 842, + 836, 839, 822, 826, 834, 819, 832, 0, 848, 292, + 826, 856, 0, 828, 0, 825, 0, 812, 825, 0, + 820, 0, 0, 860, 822, 0, 813, 812, 807, 812, + 803, 0, 808, 809, 818, 813, 794, 803, 802, 795, + + 818, 793, 390, 794, 0, 0, 805, 364, 800, 0, + 0, 799, 0, 802, 797, 804, 790, 199, 827, 0, + 800, 792, 780, 794, 791, 807, 791, 0, 0, 790, + 791, 779, 789, 790, 777, 764, 0, 781, 0, 793, + 781, 335, 766, 775, 782, 0, 767, 0, 772, 383, + 771, 791, 759, 0, 772, 0, 775, 762, 755, 771, + 753, 762, 765, 0, 0, 763, 0, 759, 0, 763, + 0, 760, 764, 753, 0, 768, 757, 744, 756, 738, + 739, 754, 751, 379, 754, 741, 752, 0, 0, 747, + 733, 731, 0, 0, 391, 742, 724, 754, 741, 742, + + 45, 120, 0, 0, 234, 245, 251, 276, 347, 317, + 321, 323, 371, 0, 0, 356, 373, 376, 0, 360, + 361, 368, 397, 394, 391, 384, 377, 386, 390, 372, + 410, 395, 380, 395, 389, 397, 385, 394, 400, 392, + 388, 397, 406, 390, 394, 409, 402, 406, 439, 415, + 404, 398, 415, 416, 0, 404, 416, 410, 420, 417, + 414, 412, 0, 427, 0, 422, 413, 433, 421, 0, + 412, 432, 433, 422, 422, 430, 424, 432, 427, 442, + 430, 458, 442, 443, 440, 434, 442, 479, 0, 444, + 442, 455, 454, 451, 0, 444, 450, 450, 457, 454, + + 456, 452, 451, 0, 0, 458, 453, 464, 0, 484, + 485, 498, 460, 471, 0, 459, 0, 504, 462, 0, + 0, 501, 0, 478, 0, 0, 467, 468, 0, 467, + 474, 479, 0, 0, 484, 486, 489, 478, 480, 475, + 490, 491, 479, 510, 480, 495, 484, 485, 484, 497, + 0, 500, 483, 498, 505, 520, 0, 499, 500, 503, + 504, 500, 514, 507, 512, 540, 514, 519, 0, 531, + 503, 521, 515, 511, 514, 518, 0, 504, 524, 525, + 518, 518, 516, 516, 533, 527, 532, 0, 520, 518, + 547, 548, 559, 0, 546, 525, 550, 0, 537, 563, + + 539, 540, 541, 0, 548, 535, 549, 543, 566, 549, + 552, 0, 0, 550, 554, 573, 557, 538, 0, 554, + 0, 0, 0, 543, 560, 565, 0, 0, 565, 554, + 552, 566, 552, 0, 558, 0, 554, 559, 570, 557, + 563, 555, 0, 562, 0, 0, 563, 564, 572, 579, + 566, 581, 574, 584, 0, 584, 590, 591, 592, 592, + 593, 611, 585, 584, 579, 586, 586, 0, 596, 605, + 0, 598, 593, 588, 0, 588, 606, 0, 0, 594, + 604, 0, 598, 591, 599, 589, 619, 610, 603, 609, + 599, 602, 603, 608, 0, 603, 0, 0, 609, 621, + + 624, 610, 621, 0, 638, 633, 634, 635, 622, 632, + 645, 631, 0, 629, 632, 627, 0, 636, 620, 0, + 642, 636, 621, 633, 0, 642, 629, 631, 0, 633, + 0, 633, 0, 643, 635, 653, 0, 646, 649, 638, + 645, 0, 0, 658, 680, 681, 682, 643, 653, 676, + 0, 654, 0, 0, 650, 671, 658, 0, 665, 0, + 0, 666, 0, 663, 654, 660, 670, 673, 674, 654, + 665, 661, 662, 689, 690, 691, 680, 681, 687, 0, + 669, 684, 672, 674, 675, 0, 693, 682, 693, 678, + 0, 709, 682, 0, 692, 707, 708, 709, 0, 715, + + 711, 688, 690, 0, 0, 0, 695, 691, 691, 702, + 698, 689, 0, 730, 731, 732, 716, 740, 0, 700, + 701, 0, 712, 708, 740, 0, 734, 735, 736, 715, + 745, 711, 0, 716, 718, 718, 744, 745, 746, 731, + 757, 0, 725, 0, 728, 0, 0, 0, 0, 752, + 0, 736, 762, 725, 0, 0, 1291, 789 } ; -static yyconst flex_int16_t yy_def[1108] = +static yyconst flex_int16_t yy_def[1159] = { 0, - 1106, 1, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1106, 1106, 1106, - 1106, 1106, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1106, 1106, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, - - 1107, 1107, 1107, 1107, 1107, 0, 1106 + 1157, 1, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1157, 1157, 1157, 1157, 1157, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1157, 1157, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, + 1158, 1158, 1158, 1158, 1158, 1158, 0, 1157 } ; -static yyconst flex_int16_t yy_nxt[1314] = +static yyconst flex_int16_t yy_nxt[1365] = { 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 16, 16, 16, 16, 17, 18, 19, @@ -821,54 +836,54 @@ static yyconst flex_int16_t yy_nxt[1314] = 31, 31, 31, 31, 31, 31, 31, 31, 31, 44, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 45, 49, 53, 51, 54, 54, 54, 54, - 54, 219, 220, 55, 363, 50, 52, 56, 58, 73, - 59, 59, 59, 59, 59, 364, 57, 65, 66, 67, + 54, 221, 222, 55, 367, 50, 52, 56, 58, 73, + 59, 59, 59, 59, 59, 368, 57, 65, 66, 67, - 74, 68, 175, 76, 60, 786, 69, 77, 176, 75, - 78, 79, 70, 71, 72, 317, 80, 81, 98, 82, - 84, 87, 83, 88, 85, 116, 92, 89, 318, 60, + 74, 68, 176, 76, 60, 793, 69, 77, 177, 75, + 78, 79, 70, 71, 72, 321, 80, 81, 98, 82, + 84, 87, 83, 88, 85, 116, 92, 89, 322, 60, 90, 104, 86, 91, 93, 99, 94, 95, 101, 96, - 120, 178, 100, 102, 121, 97, 108, 112, 105, 179, - 109, 258, 259, 103, 110, 106, 122, 113, 117, 111, - 123, 114, 118, 124, 125, 226, 126, 130, 787, 127, - 115, 131, 128, 227, 146, 147, 153, 119, 154, 165, - 132, 155, 195, 166, 192, 193, 133, 134, 196, 194, - 148, 248, 198, 249, 54, 54, 54, 54, 54, 199, - - 788, 161, 161, 161, 161, 161, 183, 149, 160, 184, - 185, 150, 186, 187, 789, 162, 188, 230, 246, 203, - 151, 228, 135, 152, 136, 204, 229, 137, 138, 205, - 139, 140, 231, 160, 141, 142, 278, 247, 143, 144, - 162, 279, 58, 145, 59, 59, 59, 59, 59, 163, - 163, 274, 275, 164, 164, 164, 164, 164, 60, 207, - 234, 268, 309, 280, 269, 208, 235, 209, 253, 310, - 270, 254, 314, 299, 336, 337, 255, 210, 281, 332, - 524, 315, 333, 60, 256, 790, 257, 288, 288, 300, - 301, 289, 289, 289, 289, 289, 161, 161, 161, 161, - - 161, 291, 291, 366, 524, 292, 292, 292, 292, 292, - 290, 164, 164, 164, 164, 164, 164, 164, 164, 164, - 164, 389, 348, 462, 505, 506, 463, 390, 672, 399, - 367, 349, 542, 673, 411, 290, 350, 412, 543, 351, - 400, 608, 401, 413, 609, 402, 545, 414, 432, 415, - 416, 433, 791, 546, 598, 599, 434, 547, 792, 793, - 435, 794, 436, 437, 795, 417, 438, 289, 289, 289, - 289, 289, 289, 289, 289, 289, 289, 439, 439, 796, - 797, 440, 440, 440, 440, 440, 292, 292, 292, 292, - 292, 292, 292, 292, 292, 292, 440, 440, 440, 440, - - 440, 440, 440, 440, 440, 440, 662, 697, 702, 710, - 663, 730, 703, 737, 762, 798, 799, 711, 698, 800, - 801, 802, 803, 699, 804, 805, 806, 807, 731, 808, - 809, 763, 810, 811, 812, 738, 813, 737, 762, 814, - 815, 816, 817, 818, 822, 823, 819, 824, 825, 826, - 827, 828, 829, 830, 831, 832, 820, 833, 834, 835, - 836, 821, 837, 838, 839, 840, 841, 842, 818, 843, - 844, 819, 845, 846, 847, 848, 849, 850, 851, 852, - 820, 853, 854, 855, 856, 821, 857, 858, 859, 860, - 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, - - 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, + 120, 180, 100, 102, 121, 97, 108, 112, 105, 181, + 109, 260, 261, 103, 110, 106, 122, 113, 117, 111, + 123, 114, 118, 124, 125, 228, 126, 130, 794, 127, + 115, 131, 128, 229, 146, 147, 154, 119, 155, 166, + 132, 156, 178, 167, 194, 195, 133, 134, 179, 196, + 148, 276, 277, 197, 54, 54, 54, 54, 54, 198, + + 248, 162, 162, 162, 162, 162, 185, 149, 161, 186, + 187, 150, 188, 189, 151, 163, 190, 531, 200, 249, + 152, 723, 135, 153, 136, 201, 205, 137, 138, 724, + 139, 140, 206, 161, 141, 142, 207, 232, 143, 144, + 163, 531, 58, 145, 59, 59, 59, 59, 59, 164, + 164, 318, 233, 165, 165, 165, 165, 165, 60, 209, + 319, 230, 236, 340, 341, 210, 231, 211, 237, 250, + 255, 251, 270, 256, 280, 271, 283, 212, 257, 281, + 313, 272, 336, 60, 795, 337, 258, 314, 259, 291, + 291, 284, 796, 292, 292, 292, 292, 292, 162, 162, + + 162, 162, 162, 294, 294, 370, 797, 295, 295, 295, + 295, 295, 293, 165, 165, 165, 165, 165, 165, 165, + 165, 165, 165, 302, 352, 393, 292, 292, 292, 292, + 292, 394, 371, 353, 512, 513, 798, 293, 354, 303, + 304, 355, 403, 469, 684, 404, 470, 416, 550, 685, + 417, 608, 609, 405, 551, 406, 418, 743, 407, 553, + 419, 438, 420, 421, 439, 618, 554, 673, 619, 440, + 555, 674, 799, 441, 744, 442, 443, 800, 422, 444, + 292, 292, 292, 292, 292, 445, 445, 801, 802, 446, + 446, 446, 446, 446, 295, 295, 295, 295, 295, 295, + + 295, 295, 295, 295, 446, 446, 446, 446, 446, 446, + 446, 446, 446, 446, 710, 715, 750, 777, 803, 716, + 804, 785, 805, 806, 807, 711, 808, 809, 810, 811, + 712, 786, 812, 787, 778, 813, 814, 815, 751, 816, + 750, 777, 817, 818, 819, 820, 821, 822, 823, 824, + 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, + 835, 836, 840, 841, 837, 842, 843, 844, 845, 846, + 847, 848, 849, 850, 838, 851, 852, 853, 854, 839, + 855, 856, 857, 858, 859, 860, 836, 861, 862, 837, + 863, 864, 865, 866, 867, 868, 869, 870, 838, 871, + + 872, 873, 874, 839, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, @@ -877,90 +892,95 @@ static yyconst flex_int16_t yy_nxt[1314] = 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, - 961, 962, 963, 964, 965, 966, 967, 944, 968, 969, - - 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, - 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, - 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, - 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 985, - 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, - 996, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, - 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, - 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, - 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, - 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1042, 1066, - - 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, - 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, - 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, - 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 64, - 785, 784, 783, 782, 781, 780, 779, 778, 777, 776, - 775, 774, 773, 772, 771, 770, 769, 768, 767, 766, - 765, 764, 761, 760, 759, 758, 757, 756, 755, 754, - 753, 752, 751, 750, 749, 748, 747, 746, 745, 744, - 743, 742, 741, 740, 739, 736, 735, 734, 733, 732, - 729, 728, 727, 726, 725, 724, 723, 722, 721, 720, - - 719, 718, 717, 716, 715, 714, 713, 712, 709, 708, - 707, 706, 705, 704, 701, 700, 696, 695, 694, 693, - 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, - 682, 681, 680, 679, 678, 677, 676, 675, 674, 671, - 670, 669, 668, 667, 666, 665, 664, 661, 660, 659, - 658, 657, 656, 655, 654, 653, 652, 651, 650, 649, - 648, 647, 646, 645, 644, 643, 642, 641, 640, 639, - 638, 637, 636, 635, 634, 633, 632, 631, 630, 629, - 628, 627, 626, 625, 624, 623, 622, 621, 620, 619, - 618, 617, 616, 615, 614, 613, 612, 611, 610, 607, - - 606, 605, 604, 603, 602, 601, 600, 597, 596, 595, - 594, 593, 592, 591, 590, 589, 588, 587, 586, 585, - 584, 583, 582, 581, 580, 579, 578, 577, 576, 575, - 574, 573, 572, 571, 570, 569, 568, 567, 566, 565, - 564, 563, 562, 561, 560, 559, 558, 557, 556, 555, - 554, 553, 552, 551, 550, 549, 548, 544, 541, 540, - 539, 538, 537, 536, 535, 534, 533, 532, 531, 530, - 529, 528, 527, 526, 525, 523, 522, 521, 520, 519, - 518, 517, 516, 515, 514, 513, 512, 511, 510, 509, - 508, 507, 504, 503, 502, 501, 500, 499, 498, 497, - - 496, 495, 494, 493, 492, 491, 490, 489, 488, 487, - 486, 485, 484, 483, 482, 481, 480, 479, 478, 477, - 476, 475, 474, 473, 472, 471, 470, 469, 468, 467, - 466, 465, 464, 461, 460, 459, 458, 457, 456, 455, - 454, 453, 452, 451, 450, 449, 448, 447, 446, 445, - 444, 443, 442, 441, 431, 430, 429, 428, 427, 426, - 425, 424, 423, 422, 421, 420, 419, 418, 410, 409, - 408, 407, 406, 405, 404, 403, 398, 397, 396, 395, - 394, 393, 392, 391, 388, 387, 386, 385, 384, 383, - 382, 381, 380, 379, 378, 377, 376, 375, 374, 373, - - 372, 371, 370, 369, 368, 365, 362, 361, 360, 359, - 358, 357, 356, 355, 354, 353, 352, 347, 346, 345, - 344, 343, 342, 341, 340, 339, 338, 335, 334, 331, - 330, 329, 328, 327, 326, 325, 324, 323, 322, 321, - 320, 319, 316, 313, 312, 311, 308, 307, 306, 305, - 304, 303, 302, 298, 297, 296, 295, 294, 293, 287, - 286, 285, 284, 283, 282, 277, 276, 273, 272, 271, - 267, 266, 265, 264, 263, 262, 261, 260, 252, 251, - 250, 245, 244, 243, 242, 241, 240, 239, 238, 237, - 236, 233, 232, 225, 224, 223, 222, 221, 218, 217, - - 216, 215, 214, 213, 212, 211, 206, 202, 201, 200, - 197, 191, 190, 189, 182, 181, 180, 177, 174, 173, - 172, 171, 170, 169, 168, 167, 159, 158, 157, 156, - 129, 107, 63, 62, 61, 48, 47, 46, 1106, 3, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106 + 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, + + 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, + 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, + 991, 992, 993, 994, 995, 972, 996, 997, 998, 999, + 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, + 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, + 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, + 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, + 1040, 1041, 1018, 1042, 1043, 1044, 1045, 1046, 1047, 1048, + 1049, 1050, 1051, 1052, 1030, 1053, 1054, 1055, 1056, 1057, + 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, + + 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, + 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, + 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, + 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1082, 1106, + 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, + 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, + 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, + 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, + 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, + 64, 792, 791, 790, 789, 788, 784, 783, 782, 781, + + 780, 779, 776, 775, 774, 773, 772, 771, 770, 769, + 768, 767, 766, 765, 764, 763, 762, 761, 760, 759, + 758, 757, 756, 755, 754, 753, 752, 749, 748, 747, + 746, 745, 742, 741, 740, 739, 738, 737, 736, 735, + 734, 733, 732, 731, 730, 729, 728, 727, 726, 725, + 722, 721, 720, 719, 718, 717, 714, 713, 709, 708, + 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, + 697, 696, 695, 694, 693, 692, 691, 690, 689, 688, + 687, 686, 683, 682, 681, 680, 679, 678, 677, 676, + 675, 672, 671, 670, 669, 668, 667, 666, 665, 664, + + 663, 662, 661, 660, 659, 658, 657, 656, 655, 654, + 653, 652, 651, 650, 649, 648, 647, 646, 645, 644, + 643, 642, 641, 640, 639, 638, 637, 636, 635, 634, + 633, 632, 631, 630, 629, 628, 627, 626, 625, 624, + 623, 622, 621, 620, 617, 616, 615, 614, 613, 612, + 611, 610, 607, 606, 605, 604, 603, 602, 601, 600, + 599, 598, 597, 596, 595, 594, 593, 592, 591, 590, + 589, 588, 587, 586, 585, 584, 583, 582, 581, 580, + 579, 578, 577, 576, 575, 574, 573, 572, 571, 570, + 569, 568, 567, 566, 565, 564, 563, 562, 561, 560, + + 559, 558, 557, 556, 552, 549, 548, 547, 546, 545, + 544, 543, 542, 541, 540, 539, 538, 537, 536, 535, + 534, 533, 532, 530, 529, 528, 527, 526, 525, 524, + 523, 522, 521, 520, 519, 518, 517, 516, 515, 514, + 511, 510, 509, 508, 507, 506, 505, 504, 503, 502, + 501, 500, 499, 498, 497, 496, 495, 494, 493, 492, + 491, 490, 489, 488, 487, 486, 485, 484, 483, 482, + 481, 480, 479, 478, 477, 476, 475, 474, 473, 472, + 471, 468, 467, 466, 465, 464, 463, 462, 461, 460, + 459, 458, 457, 456, 455, 454, 453, 452, 451, 450, + + 449, 448, 447, 437, 436, 435, 434, 433, 432, 431, + 430, 429, 428, 427, 426, 425, 424, 423, 415, 414, + 413, 412, 411, 410, 409, 408, 402, 401, 400, 399, + 398, 397, 396, 395, 392, 391, 390, 389, 388, 387, + 386, 385, 384, 383, 382, 381, 380, 379, 378, 377, + 376, 375, 374, 373, 372, 369, 366, 365, 364, 363, + 362, 361, 360, 359, 358, 357, 356, 351, 350, 349, + 348, 347, 346, 345, 344, 343, 342, 339, 338, 335, + 334, 333, 332, 331, 330, 329, 328, 327, 326, 325, + 324, 323, 320, 317, 316, 315, 312, 311, 310, 309, + + 308, 307, 306, 305, 301, 300, 299, 298, 297, 296, + 290, 289, 288, 287, 286, 285, 282, 279, 278, 275, + 274, 273, 269, 268, 267, 266, 265, 264, 263, 262, + 254, 253, 252, 247, 246, 245, 244, 243, 242, 241, + 240, 239, 238, 235, 234, 227, 226, 225, 224, 223, + 220, 219, 218, 217, 216, 215, 214, 213, 208, 204, + 203, 202, 199, 193, 192, 191, 184, 183, 182, 175, + 174, 173, 172, 171, 170, 169, 168, 160, 159, 158, + 157, 129, 107, 63, 62, 61, 48, 47, 46, 1157, + 3, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157 } ; -static yyconst flex_int16_t yy_chk[1314] = +static yyconst flex_int16_t yy_chk[1365] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -970,143 +990,148 @@ static yyconst flex_int16_t yy_chk[1314] = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 12, 14, 13, 14, 14, 14, 14, - 14, 102, 102, 15, 228, 12, 13, 15, 16, 23, - 16, 16, 16, 16, 16, 228, 15, 22, 22, 22, + 14, 102, 102, 15, 230, 12, 13, 15, 16, 23, + 16, 16, 16, 16, 16, 230, 15, 22, 22, 22, - 23, 22, 74, 24, 16, 703, 22, 24, 74, 23, - 24, 24, 22, 22, 22, 185, 24, 24, 28, 24, - 25, 26, 24, 26, 25, 35, 27, 26, 185, 16, + 23, 22, 74, 24, 16, 701, 22, 24, 74, 23, + 24, 24, 22, 22, 22, 187, 24, 24, 28, 24, + 25, 26, 24, 26, 25, 35, 27, 26, 187, 16, 26, 30, 25, 26, 27, 28, 27, 27, 29, 27, 36, 76, 28, 29, 36, 27, 33, 34, 30, 76, 33, 132, 132, 29, 33, 30, 37, 34, 35, 33, - 37, 34, 35, 37, 37, 109, 37, 39, 704, 37, + 37, 34, 35, 37, 37, 109, 37, 39, 702, 37, 34, 39, 37, 109, 41, 41, 42, 35, 42, 65, - 39, 42, 85, 65, 84, 84, 39, 40, 85, 84, - 41, 127, 87, 127, 54, 54, 54, 54, 54, 87, - - 705, 58, 58, 58, 58, 58, 80, 41, 54, 80, - 80, 41, 80, 80, 707, 58, 80, 111, 126, 91, - 41, 110, 40, 41, 40, 91, 110, 40, 40, 91, - 40, 40, 111, 54, 40, 40, 150, 126, 40, 40, - 58, 150, 59, 40, 59, 59, 59, 59, 59, 60, - 60, 145, 145, 60, 60, 60, 60, 60, 59, 93, - 114, 141, 179, 151, 141, 93, 114, 93, 131, 179, - 141, 131, 183, 171, 203, 203, 131, 93, 151, 200, - 387, 183, 200, 59, 131, 708, 131, 160, 160, 171, - 171, 160, 160, 160, 160, 160, 161, 161, 161, 161, - - 161, 162, 162, 230, 387, 162, 162, 162, 162, 162, - 161, 163, 163, 163, 163, 163, 164, 164, 164, 164, - 164, 253, 216, 318, 369, 369, 318, 253, 561, 263, - 230, 216, 408, 561, 272, 161, 216, 272, 408, 216, - 263, 486, 263, 272, 486, 263, 411, 272, 287, 272, - 272, 287, 709, 411, 473, 473, 287, 411, 710, 711, - 287, 712, 287, 287, 713, 272, 287, 288, 288, 288, - 288, 288, 289, 289, 289, 289, 289, 290, 290, 714, - 715, 290, 290, 290, 290, 290, 291, 291, 291, 291, - 291, 292, 292, 292, 292, 292, 439, 439, 439, 439, - - 439, 440, 440, 440, 440, 440, 551, 593, 598, 608, - 551, 632, 598, 640, 672, 716, 717, 608, 593, 718, - 719, 720, 721, 593, 722, 723, 724, 725, 632, 726, - 727, 672, 728, 729, 730, 640, 731, 640, 672, 732, - 733, 734, 735, 736, 737, 738, 736, 739, 740, 741, - 743, 744, 745, 746, 747, 748, 736, 750, 752, 753, - 754, 736, 755, 757, 758, 759, 760, 761, 736, 762, - 763, 736, 764, 765, 766, 767, 768, 769, 770, 772, - 736, 773, 774, 775, 776, 736, 778, 779, 780, 781, - 782, 783, 784, 785, 788, 789, 790, 792, 793, 794, - - 795, 796, 798, 800, 801, 804, 806, 809, 810, 812, - 813, 814, 817, 818, 819, 820, 821, 822, 823, 824, - 825, 826, 827, 828, 829, 830, 831, 833, 834, 835, - 836, 837, 839, 840, 841, 842, 843, 844, 845, 846, - 847, 848, 850, 851, 852, 853, 855, 856, 857, 858, - 859, 860, 861, 862, 863, 864, 866, 867, 868, 869, - 870, 872, 873, 874, 876, 877, 878, 879, 880, 882, - 883, 884, 885, 886, 887, 888, 891, 892, 893, 894, - 896, 900, 901, 902, 905, 906, 907, 908, 910, 912, - 913, 914, 916, 919, 920, 921, 922, 886, 923, 924, - - 925, 926, 928, 929, 930, 931, 932, 933, 934, 935, - 936, 937, 938, 939, 941, 942, 944, 945, 946, 948, - 949, 951, 952, 954, 955, 956, 957, 958, 959, 960, - 961, 963, 966, 967, 968, 969, 970, 972, 973, 942, - 974, 975, 976, 977, 978, 979, 981, 982, 983, 985, - 957, 986, 988, 989, 990, 991, 993, 994, 996, 998, - 1000, 1001, 1002, 1003, 1004, 1007, 1008, 1009, 1010, 1011, - 1012, 1013, 1015, 1018, 1019, 1020, 1022, 1025, 1026, 1027, - 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, - 1038, 1039, 1041, 1042, 1043, 1044, 1045, 1047, 1019, 1048, - - 1050, 1051, 1053, 1054, 1055, 1056, 1058, 1059, 1060, 1061, - 1065, 1066, 1067, 1068, 1070, 1071, 1072, 1073, 1074, 1076, - 1077, 1079, 1081, 1082, 1083, 1084, 1085, 1086, 1088, 1089, - 1090, 1091, 1092, 1093, 1095, 1100, 1101, 1102, 1103, 1107, - 700, 699, 698, 697, 696, 695, 694, 693, 692, 689, - 688, 687, 686, 685, 684, 683, 680, 679, 678, 675, - 674, 673, 671, 670, 669, 668, 667, 666, 665, 663, - 662, 661, 659, 657, 655, 652, 651, 650, 649, 648, - 647, 645, 643, 642, 641, 639, 637, 635, 634, 633, - 631, 630, 628, 626, 625, 624, 623, 622, 621, 620, - - 617, 616, 615, 614, 613, 612, 611, 609, 607, 606, - 605, 604, 602, 599, 597, 594, 592, 591, 590, 589, - 588, 587, 586, 585, 584, 583, 581, 580, 579, 578, - 576, 575, 572, 570, 569, 567, 565, 563, 562, 560, - 558, 557, 556, 555, 554, 553, 552, 550, 549, 548, - 547, 546, 545, 544, 542, 541, 540, 538, 537, 536, - 535, 534, 531, 530, 529, 528, 527, 526, 525, 524, - 523, 522, 520, 518, 517, 516, 514, 512, 511, 510, - 509, 508, 506, 505, 504, 503, 501, 500, 499, 498, - 497, 495, 494, 492, 491, 490, 489, 488, 487, 485, - - 483, 482, 480, 479, 478, 475, 474, 472, 471, 470, - 469, 468, 467, 466, 465, 464, 463, 462, 461, 460, - 459, 458, 457, 456, 455, 454, 453, 452, 450, 448, - 447, 446, 445, 444, 443, 442, 437, 436, 434, 431, - 430, 429, 428, 427, 426, 425, 424, 423, 420, 419, - 418, 417, 416, 415, 414, 413, 412, 409, 407, 406, - 405, 402, 401, 400, 399, 398, 397, 396, 395, 394, - 393, 392, 391, 390, 389, 386, 385, 384, 383, 382, - 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, - 371, 370, 368, 367, 366, 365, 363, 362, 361, 360, - - 359, 358, 357, 356, 355, 352, 351, 350, 349, 348, - 347, 346, 344, 343, 341, 340, 338, 336, 335, 334, - 333, 332, 331, 330, 328, 327, 326, 325, 324, 323, - 322, 320, 319, 317, 316, 315, 314, 313, 312, 310, - 309, 307, 306, 305, 304, 303, 301, 300, 299, 298, - 297, 296, 294, 293, 286, 285, 284, 283, 282, 281, - 280, 279, 278, 277, 276, 275, 274, 273, 271, 270, - 269, 268, 267, 266, 265, 264, 262, 260, 259, 258, - 257, 256, 255, 254, 252, 251, 250, 249, 248, 247, - 246, 245, 244, 243, 242, 241, 240, 239, 238, 236, - - 235, 234, 233, 232, 231, 229, 227, 226, 225, 224, - 223, 222, 221, 220, 219, 218, 217, 215, 214, 212, - 211, 210, 209, 208, 207, 206, 205, 202, 201, 199, - 198, 197, 196, 195, 194, 193, 192, 191, 190, 188, - 187, 186, 184, 182, 181, 180, 178, 177, 176, 175, - 174, 173, 172, 170, 169, 168, 167, 166, 165, 157, - 156, 155, 154, 153, 152, 149, 148, 144, 143, 142, - 140, 139, 138, 137, 136, 135, 134, 133, 130, 129, - 128, 124, 123, 122, 121, 120, 119, 118, 117, 116, - 115, 113, 112, 108, 107, 106, 104, 103, 101, 100, - - 99, 98, 97, 96, 95, 94, 92, 90, 89, 88, - 86, 83, 82, 81, 79, 78, 77, 75, 73, 72, - 71, 70, 69, 68, 67, 66, 53, 45, 44, 43, - 38, 32, 21, 20, 19, 11, 9, 7, 3, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - - 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, - 1106, 1106, 1106 + 39, 42, 75, 65, 84, 84, 39, 40, 75, 84, + 41, 145, 145, 85, 54, 54, 54, 54, 54, 85, + + 126, 58, 58, 58, 58, 58, 80, 41, 54, 80, + 80, 41, 80, 80, 41, 58, 80, 391, 87, 126, + 41, 618, 40, 41, 40, 87, 91, 40, 40, 618, + 40, 40, 91, 54, 40, 40, 91, 111, 40, 40, + 58, 391, 59, 40, 59, 59, 59, 59, 59, 60, + 60, 185, 111, 60, 60, 60, 60, 60, 59, 93, + 185, 110, 114, 205, 205, 93, 110, 93, 114, 127, + 131, 127, 141, 131, 150, 141, 152, 93, 131, 150, + 181, 141, 202, 59, 705, 202, 131, 181, 131, 161, + 161, 152, 706, 161, 161, 161, 161, 161, 162, 162, + + 162, 162, 162, 163, 163, 232, 707, 163, 163, 163, + 163, 163, 162, 164, 164, 164, 164, 164, 165, 165, + 165, 165, 165, 172, 218, 255, 291, 291, 291, 291, + 291, 255, 232, 218, 373, 373, 708, 162, 218, 172, + 172, 218, 265, 322, 570, 265, 322, 274, 413, 570, + 274, 480, 480, 265, 413, 265, 274, 642, 265, 416, + 274, 290, 274, 274, 290, 493, 416, 559, 493, 290, + 416, 559, 709, 290, 642, 290, 290, 710, 274, 290, + 292, 292, 292, 292, 292, 293, 293, 711, 712, 293, + 293, 293, 293, 293, 294, 294, 294, 294, 294, 295, + + 295, 295, 295, 295, 445, 445, 445, 445, 445, 446, + 446, 446, 446, 446, 603, 608, 650, 684, 713, 608, + 716, 695, 717, 718, 720, 603, 721, 722, 723, 724, + 603, 695, 725, 695, 684, 726, 727, 728, 650, 729, + 650, 684, 730, 731, 732, 733, 734, 735, 736, 737, + 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, + 748, 749, 750, 751, 749, 752, 753, 754, 756, 757, + 758, 759, 760, 761, 749, 762, 764, 766, 767, 749, + 768, 769, 771, 772, 773, 774, 749, 775, 776, 749, + 777, 778, 779, 780, 781, 782, 783, 784, 749, 785, + + 786, 787, 788, 749, 790, 791, 792, 793, 794, 796, + 797, 798, 799, 800, 801, 802, 803, 806, 807, 808, + 810, 811, 812, 813, 814, 816, 818, 819, 822, 824, + 827, 828, 830, 831, 832, 835, 836, 837, 838, 839, + 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, + 850, 852, 853, 854, 855, 856, 858, 859, 860, 861, + 862, 863, 864, 865, 866, 867, 868, 870, 871, 872, + 873, 874, 875, 876, 878, 879, 880, 881, 882, 883, + 884, 885, 886, 887, 889, 890, 891, 892, 893, 895, + 896, 897, 899, 900, 901, 902, 903, 905, 906, 907, + + 908, 909, 910, 911, 914, 915, 916, 917, 918, 920, + 924, 925, 926, 929, 930, 931, 932, 933, 935, 937, + 938, 939, 940, 941, 942, 909, 944, 947, 948, 949, + 950, 951, 952, 953, 954, 956, 957, 958, 959, 960, + 961, 962, 963, 964, 965, 966, 967, 969, 970, 972, + 973, 974, 976, 977, 980, 981, 983, 984, 985, 986, + 987, 988, 989, 990, 991, 992, 993, 994, 996, 999, + 1000, 1001, 970, 1002, 1003, 1005, 1006, 1007, 1008, 1009, + 1010, 1011, 1012, 1014, 987, 1015, 1016, 1018, 1019, 1021, + 1022, 1023, 1024, 1026, 1027, 1028, 1030, 1032, 1034, 1035, + + 1036, 1038, 1039, 1040, 1041, 1044, 1045, 1046, 1047, 1048, + 1049, 1050, 1052, 1055, 1056, 1057, 1059, 1062, 1064, 1065, + 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, + 1076, 1077, 1078, 1079, 1081, 1082, 1083, 1084, 1056, 1085, + 1087, 1088, 1089, 1090, 1092, 1093, 1095, 1096, 1097, 1098, + 1100, 1101, 1102, 1103, 1107, 1108, 1109, 1110, 1111, 1112, + 1114, 1115, 1116, 1117, 1118, 1120, 1121, 1123, 1124, 1125, + 1127, 1128, 1129, 1130, 1131, 1132, 1134, 1135, 1136, 1137, + 1138, 1139, 1140, 1141, 1143, 1145, 1150, 1152, 1153, 1154, + 1158, 700, 699, 698, 697, 696, 692, 691, 690, 687, + + 686, 685, 683, 682, 681, 680, 679, 678, 677, 676, + 674, 673, 672, 670, 668, 666, 663, 662, 661, 660, + 659, 658, 657, 655, 653, 652, 651, 649, 647, 645, + 644, 643, 641, 640, 638, 636, 635, 634, 633, 632, + 631, 630, 627, 626, 625, 624, 623, 622, 621, 619, + 617, 616, 615, 614, 612, 609, 607, 604, 602, 601, + 600, 599, 598, 597, 596, 595, 594, 593, 591, 590, + 589, 588, 587, 585, 584, 581, 579, 578, 576, 574, + 572, 571, 569, 567, 566, 565, 564, 563, 562, 561, + 560, 558, 557, 556, 555, 554, 553, 552, 550, 549, + + 548, 546, 545, 544, 543, 542, 541, 538, 537, 536, + 535, 534, 533, 532, 531, 530, 529, 527, 525, 524, + 523, 521, 519, 518, 517, 516, 515, 513, 512, 511, + 510, 508, 507, 506, 505, 504, 502, 501, 499, 498, + 497, 496, 495, 494, 492, 490, 489, 487, 486, 485, + 482, 481, 479, 478, 477, 476, 475, 474, 473, 472, + 471, 470, 469, 468, 467, 466, 465, 464, 463, 462, + 461, 460, 459, 458, 456, 454, 453, 452, 451, 450, + 449, 448, 443, 442, 440, 437, 436, 435, 434, 433, + 432, 431, 430, 429, 428, 425, 424, 423, 422, 421, + + 420, 419, 418, 417, 414, 412, 411, 410, 407, 406, + 405, 404, 403, 402, 401, 400, 399, 398, 397, 396, + 395, 394, 393, 390, 389, 388, 387, 386, 385, 384, + 383, 382, 381, 380, 379, 378, 377, 376, 375, 374, + 372, 371, 370, 369, 367, 366, 365, 364, 363, 362, + 361, 360, 359, 356, 355, 354, 353, 352, 351, 350, + 348, 347, 345, 344, 342, 340, 339, 338, 337, 336, + 335, 334, 332, 331, 330, 329, 328, 327, 326, 324, + 323, 321, 320, 319, 318, 317, 316, 314, 313, 311, + 310, 309, 308, 307, 306, 304, 303, 302, 301, 300, + + 299, 297, 296, 289, 288, 287, 286, 285, 284, 283, + 282, 281, 280, 279, 278, 277, 276, 275, 273, 272, + 271, 270, 269, 268, 267, 266, 264, 262, 261, 260, + 259, 258, 257, 256, 254, 253, 252, 251, 250, 249, + 248, 247, 246, 245, 244, 243, 242, 241, 240, 238, + 237, 236, 235, 234, 233, 231, 229, 228, 227, 226, + 225, 224, 223, 222, 221, 220, 219, 217, 216, 214, + 213, 212, 211, 210, 209, 208, 207, 204, 203, 201, + 200, 199, 198, 197, 196, 195, 194, 193, 192, 190, + 189, 188, 186, 184, 183, 182, 180, 179, 178, 177, + + 176, 175, 174, 173, 171, 170, 169, 168, 167, 166, + 158, 157, 156, 155, 154, 153, 151, 149, 148, 144, + 143, 142, 140, 139, 138, 137, 136, 135, 134, 133, + 130, 129, 128, 124, 123, 122, 121, 120, 119, 118, + 117, 116, 115, 113, 112, 108, 107, 106, 104, 103, + 101, 100, 99, 98, 97, 96, 95, 94, 92, 90, + 89, 88, 86, 83, 82, 81, 79, 78, 77, 73, + 72, 71, 70, 69, 68, 67, 66, 53, 45, 44, + 43, 38, 32, 21, 20, 19, 11, 9, 7, 3, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, + 1157, 1157, 1157, 1157 } ; static yy_state_type yy_last_accepting_state; @@ -1186,7 +1211,7 @@ void skipline(void); #define YY_NO_UNISTD_H #endif -#line 1190 "Gmsh.yy.cpp" +#line 1215 "Gmsh.yy.cpp" #define INITIAL 0 @@ -1371,7 +1396,7 @@ YY_DECL #line 72 "Gmsh.l" -#line 1375 "Gmsh.yy.cpp" +#line 1400 "Gmsh.yy.cpp" if ( !(yy_init) ) { @@ -1424,13 +1449,13 @@ yy_match: while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1107 ) + if ( yy_current_state >= 1158 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } - while ( yy_base[yy_current_state] != 1240 ); + while ( yy_base[yy_current_state] != 1291 ); yy_find_action: yy_act = yy_accept[yy_current_state]; @@ -1693,860 +1718,885 @@ return tBSpline; case 48: YY_RULE_SETUP #line 123 "Gmsh.l" -return tBoundingBox; +return tBooleanUnion; YY_BREAK case 49: YY_RULE_SETUP -#line 125 "Gmsh.l" -return tCatenary; +#line 124 "Gmsh.l" +return tBooleanIntersection; YY_BREAK case 50: YY_RULE_SETUP -#line 126 "Gmsh.l" -return tCeil; +#line 125 "Gmsh.l" +return tBooleanSubtraction; YY_BREAK case 51: YY_RULE_SETUP -#line 127 "Gmsh.l" -return tCircle; +#line 126 "Gmsh.l" +return tBoundingBox; YY_BREAK case 52: YY_RULE_SETUP #line 128 "Gmsh.l" -return tCopyOptions; +return tCatenary; YY_BREAK case 53: YY_RULE_SETUP #line 129 "Gmsh.l" -return tCoherence; +return tCeil; YY_BREAK case 54: YY_RULE_SETUP #line 130 "Gmsh.l" -return tCohomology; +return tCircle; YY_BREAK case 55: YY_RULE_SETUP #line 131 "Gmsh.l" -return tCombine; +return tCopyOptions; YY_BREAK case 56: YY_RULE_SETUP #line 132 "Gmsh.l" -return tCosh; +return tCoherence; YY_BREAK case 57: YY_RULE_SETUP #line 133 "Gmsh.l" -return tCos; +return tCohomology; YY_BREAK case 58: YY_RULE_SETUP #line 134 "Gmsh.l" -return tCharacteristic; +return tCombine; YY_BREAK case 59: YY_RULE_SETUP #line 135 "Gmsh.l" -return tComplex; +return tCosh; YY_BREAK case 60: YY_RULE_SETUP #line 136 "Gmsh.l" -return tColor; +return tCos; YY_BREAK case 61: YY_RULE_SETUP #line 137 "Gmsh.l" -return tColorTable; +return tCharacteristic; YY_BREAK case 62: YY_RULE_SETUP #line 138 "Gmsh.l" -return tCompound; +return tComplex; YY_BREAK case 63: YY_RULE_SETUP #line 139 "Gmsh.l" -return tCoordinates; +return tColor; YY_BREAK case 64: YY_RULE_SETUP #line 140 "Gmsh.l" -return tSpline; +return tColorTable; YY_BREAK case 65: YY_RULE_SETUP #line 141 "Gmsh.l" -return tCall; +return tCompound; YY_BREAK case 66: YY_RULE_SETUP #line 142 "Gmsh.l" -return tCreateTopology; +return tCoordinates; YY_BREAK case 67: YY_RULE_SETUP #line 143 "Gmsh.l" -return tCreateTopologyNoHoles; +return tSpline; YY_BREAK case 68: YY_RULE_SETUP #line 144 "Gmsh.l" -return tCpu; +return tCall; YY_BREAK case 69: YY_RULE_SETUP #line 145 "Gmsh.l" -return tCurrentDirectory; +return tCreateTopology; YY_BREAK case 70: YY_RULE_SETUP #line 146 "Gmsh.l" -return tCurrentDirectory; +return tCreateTopologyNoHoles; YY_BREAK case 71: YY_RULE_SETUP -#line 148 "Gmsh.l" -return tDefineConstant; +#line 147 "Gmsh.l" +return tCpu; YY_BREAK case 72: YY_RULE_SETUP -#line 149 "Gmsh.l" -return tDefineNumber; +#line 148 "Gmsh.l" +return tCurrentDirectory; YY_BREAK case 73: YY_RULE_SETUP -#line 150 "Gmsh.l" -return tDefineString; +#line 149 "Gmsh.l" +return tCurrentDirectory; YY_BREAK case 74: YY_RULE_SETUP #line 151 "Gmsh.l" -return tDelete; +return tDefineConstant; YY_BREAK case 75: YY_RULE_SETUP #line 152 "Gmsh.l" -return tDegenerated; +return tDefineNumber; YY_BREAK case 76: YY_RULE_SETUP #line 153 "Gmsh.l" -return tDilate; +return tDefineString; YY_BREAK case 77: YY_RULE_SETUP #line 154 "Gmsh.l" -return tDirName; +return tDelete; YY_BREAK case 78: YY_RULE_SETUP #line 155 "Gmsh.l" -return tDraw; +return tDegenerated; YY_BREAK case 79: YY_RULE_SETUP #line 156 "Gmsh.l" -return tSetChanged; +return tDilate; YY_BREAK case 80: YY_RULE_SETUP -#line 158 "Gmsh.l" -return tExp; +#line 157 "Gmsh.l" +return tDirName; YY_BREAK case 81: YY_RULE_SETUP -#line 159 "Gmsh.l" -return tEllipse; +#line 158 "Gmsh.l" +return tDraw; YY_BREAK case 82: YY_RULE_SETUP -#line 160 "Gmsh.l" -return tEllipse; +#line 159 "Gmsh.l" +return tSetChanged; YY_BREAK case 83: YY_RULE_SETUP #line 161 "Gmsh.l" -return tElse; +return tExp; YY_BREAK case 84: YY_RULE_SETUP #line 162 "Gmsh.l" -return tElseIf; +return tEllipse; YY_BREAK case 85: YY_RULE_SETUP #line 163 "Gmsh.l" -return tExtrude; +return tEllipse; YY_BREAK case 86: YY_RULE_SETUP #line 164 "Gmsh.l" -return tElliptic; +return tElse; YY_BREAK case 87: YY_RULE_SETUP #line 165 "Gmsh.l" -return tEndFor; +return tElseIf; YY_BREAK case 88: YY_RULE_SETUP #line 166 "Gmsh.l" -return tEndIf; +return tExtrude; YY_BREAK case 89: YY_RULE_SETUP #line 167 "Gmsh.l" -return tEuclidian; +return tElliptic; YY_BREAK case 90: YY_RULE_SETUP #line 168 "Gmsh.l" -return tError; +return tEndFor; YY_BREAK case 91: YY_RULE_SETUP #line 169 "Gmsh.l" -return tExit; +return tEndIf; YY_BREAK case 92: YY_RULE_SETUP #line 170 "Gmsh.l" -return tExists; +return tEuclidian; YY_BREAK case 93: YY_RULE_SETUP -#line 172 "Gmsh.l" -return tFabs; +#line 171 "Gmsh.l" +return tError; YY_BREAK case 94: YY_RULE_SETUP -#line 173 "Gmsh.l" -return tField; +#line 172 "Gmsh.l" +return tExit; YY_BREAK case 95: YY_RULE_SETUP -#line 174 "Gmsh.l" -return tFind; +#line 173 "Gmsh.l" +return tExists; YY_BREAK case 96: YY_RULE_SETUP #line 175 "Gmsh.l" -return tFileExists; +return tFabs; YY_BREAK case 97: YY_RULE_SETUP #line 176 "Gmsh.l" -return tFixRelativePath; +return tField; YY_BREAK case 98: YY_RULE_SETUP #line 177 "Gmsh.l" -return tFloor; +return tFind; YY_BREAK case 99: YY_RULE_SETUP #line 178 "Gmsh.l" -return tFmod; +return tFileExists; YY_BREAK case 100: YY_RULE_SETUP #line 179 "Gmsh.l" -return tFor; +return tFixRelativePath; YY_BREAK case 101: YY_RULE_SETUP #line 180 "Gmsh.l" -return tMacro; +return tFloor; YY_BREAK case 102: YY_RULE_SETUP -#line 182 "Gmsh.l" -return tGetEnv; +#line 181 "Gmsh.l" +return tFmod; YY_BREAK case 103: YY_RULE_SETUP -#line 183 "Gmsh.l" -return tGetString; +#line 182 "Gmsh.l" +return tFor; YY_BREAK case 104: YY_RULE_SETUP -#line 184 "Gmsh.l" -return tGetNumber; +#line 183 "Gmsh.l" +return tMacro; YY_BREAK case 105: YY_RULE_SETUP #line 185 "Gmsh.l" -return tGetValue; +return tGetEnv; YY_BREAK case 106: YY_RULE_SETUP #line 186 "Gmsh.l" -return tGetStringValue; +return tGetString; YY_BREAK case 107: YY_RULE_SETUP #line 187 "Gmsh.l" -return tGMSH_MAJOR_VERSION; +return tGetNumber; YY_BREAK case 108: YY_RULE_SETUP #line 188 "Gmsh.l" -return tGMSH_MINOR_VERSION; +return tGetValue; YY_BREAK case 109: YY_RULE_SETUP #line 189 "Gmsh.l" -return tGMSH_PATCH_VERSION; +return tGetStringValue; YY_BREAK case 110: YY_RULE_SETUP #line 190 "Gmsh.l" -return tGmshExecutableName; +return tGMSH_MAJOR_VERSION; YY_BREAK case 111: YY_RULE_SETUP -#line 192 "Gmsh.l" -return tHide; +#line 191 "Gmsh.l" +return tGMSH_MINOR_VERSION; YY_BREAK case 112: YY_RULE_SETUP -#line 193 "Gmsh.l" -return tHole; +#line 192 "Gmsh.l" +return tGMSH_PATCH_VERSION; YY_BREAK case 113: YY_RULE_SETUP -#line 194 "Gmsh.l" -return tHomology; +#line 193 "Gmsh.l" +return tGmshExecutableName; YY_BREAK case 114: YY_RULE_SETUP #line 195 "Gmsh.l" -return tHypot; +return tHide; YY_BREAK case 115: YY_RULE_SETUP -#line 197 "Gmsh.l" -return tIn; +#line 196 "Gmsh.l" +return tHole; YY_BREAK case 116: YY_RULE_SETUP -#line 198 "Gmsh.l" -return tIf; +#line 197 "Gmsh.l" +return tHomology; YY_BREAK case 117: YY_RULE_SETUP -#line 199 "Gmsh.l" -return tIntersect; +#line 198 "Gmsh.l" +return tHypot; YY_BREAK case 118: YY_RULE_SETUP #line 200 "Gmsh.l" -return tInterpolationScheme; +return tIn; YY_BREAK case 119: YY_RULE_SETUP -#line 202 "Gmsh.l" -return tNurbsKnots; +#line 201 "Gmsh.l" +return tIf; YY_BREAK case 120: YY_RULE_SETUP -#line 204 "Gmsh.l" -return tLength; +#line 202 "Gmsh.l" +return tIntersect; YY_BREAK case 121: YY_RULE_SETUP -#line 205 "Gmsh.l" -return tLine; +#line 203 "Gmsh.l" +return tInterpolationScheme; YY_BREAK case 122: YY_RULE_SETUP -#line 206 "Gmsh.l" -return tList; +#line 205 "Gmsh.l" +return tNurbsKnots; YY_BREAK case 123: YY_RULE_SETUP #line 207 "Gmsh.l" -return tListFromFile; +return tLength; YY_BREAK case 124: YY_RULE_SETUP #line 208 "Gmsh.l" -return tLinSpace; +return tLine; YY_BREAK case 125: YY_RULE_SETUP #line 209 "Gmsh.l" -return tLogSpace; +return tList; YY_BREAK case 126: YY_RULE_SETUP #line 210 "Gmsh.l" -return tLog; +return tListFromFile; YY_BREAK case 127: YY_RULE_SETUP #line 211 "Gmsh.l" -return tLog10; +return tLinSpace; YY_BREAK case 128: YY_RULE_SETUP #line 212 "Gmsh.l" -return tLayers; +return tLogSpace; YY_BREAK case 129: YY_RULE_SETUP #line 213 "Gmsh.l" -return tLevelset; +return tLog; YY_BREAK case 130: YY_RULE_SETUP -#line 215 "Gmsh.l" -return tMacro; +#line 214 "Gmsh.l" +return tLog10; YY_BREAK case 131: YY_RULE_SETUP -#line 216 "Gmsh.l" -return tMeshAlgorithm; +#line 215 "Gmsh.l" +return tLayers; YY_BREAK case 132: YY_RULE_SETUP -#line 217 "Gmsh.l" -return tModulo; +#line 216 "Gmsh.l" +return tLevelset; YY_BREAK case 133: YY_RULE_SETUP #line 218 "Gmsh.l" -return tMPI_Rank; +return tMacro; YY_BREAK case 134: YY_RULE_SETUP #line 219 "Gmsh.l" -return tMPI_Size; +return tMeshAlgorithm; YY_BREAK case 135: YY_RULE_SETUP #line 220 "Gmsh.l" -return tMemory; +return tModulo; YY_BREAK case 136: YY_RULE_SETUP -#line 222 "Gmsh.l" -return tNameToString; +#line 221 "Gmsh.l" +return tMPI_Rank; YY_BREAK case 137: YY_RULE_SETUP -#line 223 "Gmsh.l" -return tNameToString; +#line 222 "Gmsh.l" +return tMPI_Size; YY_BREAK case 138: YY_RULE_SETUP -#line 224 "Gmsh.l" -return tNewModel; +#line 223 "Gmsh.l" +return tMemory; YY_BREAK case 139: YY_RULE_SETUP #line 225 "Gmsh.l" -return tNurbs; +return tNameToString; YY_BREAK case 140: YY_RULE_SETUP -#line 227 "Gmsh.l" -return tOnelabAction; +#line 226 "Gmsh.l" +return tNameToString; YY_BREAK case 141: YY_RULE_SETUP -#line 228 "Gmsh.l" -return tOnelabRun; +#line 227 "Gmsh.l" +return tNewModel; YY_BREAK case 142: YY_RULE_SETUP -#line 229 "Gmsh.l" -return tNurbsOrder; +#line 228 "Gmsh.l" +return tNurbs; YY_BREAK case 143: YY_RULE_SETUP -#line 231 "Gmsh.l" -return tPeriodic; +#line 230 "Gmsh.l" +return tOnelabAction; YY_BREAK case 144: YY_RULE_SETUP -#line 232 "Gmsh.l" -return tPhysical; +#line 231 "Gmsh.l" +return tOnelabRun; YY_BREAK case 145: YY_RULE_SETUP -#line 233 "Gmsh.l" -return tPi; +#line 232 "Gmsh.l" +return tNurbsOrder; YY_BREAK case 146: YY_RULE_SETUP #line 234 "Gmsh.l" -return tPlane; +return tPeriodic; YY_BREAK case 147: YY_RULE_SETUP #line 235 "Gmsh.l" -return tPoint; +return tPhysical; YY_BREAK case 148: YY_RULE_SETUP #line 236 "Gmsh.l" -return tParametric; +return tPi; YY_BREAK case 149: YY_RULE_SETUP #line 237 "Gmsh.l" -return tPolarSphere; +return tPlane; YY_BREAK case 150: YY_RULE_SETUP #line 238 "Gmsh.l" -return tPrintf; +return tPoint; YY_BREAK case 151: YY_RULE_SETUP #line 239 "Gmsh.l" -return tPlugin; +return tParametric; YY_BREAK case 152: YY_RULE_SETUP -#line 241 "Gmsh.l" -return tQuadTriAddVerts; +#line 240 "Gmsh.l" +return tPolarSphere; YY_BREAK case 153: YY_RULE_SETUP -#line 242 "Gmsh.l" -return tQuadTriNoNewVerts; +#line 241 "Gmsh.l" +return tPrintf; YY_BREAK case 154: YY_RULE_SETUP -#line 244 "Gmsh.l" -return tQuadTriDbl; +#line 242 "Gmsh.l" +return tPlugin; YY_BREAK case 155: YY_RULE_SETUP -#line 245 "Gmsh.l" -return tQuadTriSngl; +#line 244 "Gmsh.l" +return tQuadTriAddVerts; YY_BREAK case 156: YY_RULE_SETUP -#line 247 "Gmsh.l" -return tRecombine; +#line 245 "Gmsh.l" +return tQuadTriNoNewVerts; YY_BREAK case 157: YY_RULE_SETUP -#line 248 "Gmsh.l" -return tRecombLaterals; +#line 247 "Gmsh.l" +return tQuadTriDbl; YY_BREAK case 158: YY_RULE_SETUP -#line 249 "Gmsh.l" -return tRecursive; +#line 248 "Gmsh.l" +return tQuadTriSngl; YY_BREAK case 159: YY_RULE_SETUP #line 250 "Gmsh.l" -return tRotate; +return tRecombine; YY_BREAK case 160: YY_RULE_SETUP #line 251 "Gmsh.l" -return tRound; +return tRecombLaterals; YY_BREAK case 161: YY_RULE_SETUP #line 252 "Gmsh.l" -return tRuled; +return tRecursive; YY_BREAK case 162: YY_RULE_SETUP #line 253 "Gmsh.l" -return tRand; +return tRotate; YY_BREAK case 163: YY_RULE_SETUP #line 254 "Gmsh.l" -return tRefineMesh; +return tRound; YY_BREAK case 164: YY_RULE_SETUP #line 255 "Gmsh.l" -return tRelocateMesh; +return tRuled; YY_BREAK case 165: YY_RULE_SETUP #line 256 "Gmsh.l" -return tReturn; +return tRand; YY_BREAK case 166: YY_RULE_SETUP #line 257 "Gmsh.l" -return tReverse; +return tRefineMesh; YY_BREAK case 167: YY_RULE_SETUP -#line 259 "Gmsh.l" -return tScaleLast; +#line 258 "Gmsh.l" +return tRelocateMesh; YY_BREAK case 168: YY_RULE_SETUP -#line 260 "Gmsh.l" -return tSmoother; +#line 259 "Gmsh.l" +return tReturn; YY_BREAK case 169: YY_RULE_SETUP -#line 261 "Gmsh.l" -return tSetNumber; +#line 260 "Gmsh.l" +return tReverse; YY_BREAK case 170: YY_RULE_SETUP #line 262 "Gmsh.l" -return tSetString; +return tScaleLast; YY_BREAK case 171: YY_RULE_SETUP #line 263 "Gmsh.l" -return tSetPartition; +return tSmoother; YY_BREAK case 172: YY_RULE_SETUP #line 264 "Gmsh.l" -return tSqrt; +return tSetFactory; YY_BREAK case 173: YY_RULE_SETUP #line 265 "Gmsh.l" -return tSin; +return tSetNumber; YY_BREAK case 174: YY_RULE_SETUP #line 266 "Gmsh.l" -return tSinh; +return tSetString; YY_BREAK case 175: YY_RULE_SETUP #line 267 "Gmsh.l" -return tSphere; +return tSetPartition; YY_BREAK case 176: YY_RULE_SETUP #line 268 "Gmsh.l" -return tSpline; +return tSqrt; YY_BREAK case 177: YY_RULE_SETUP #line 269 "Gmsh.l" -return tSplit; +return tSin; YY_BREAK case 178: YY_RULE_SETUP #line 270 "Gmsh.l" -return tSurface; +return tSinh; YY_BREAK case 179: YY_RULE_SETUP #line 271 "Gmsh.l" -return tStr; +return tSphere; YY_BREAK case 180: YY_RULE_SETUP #line 272 "Gmsh.l" -return tStringToName; +return tSpline; YY_BREAK case 181: YY_RULE_SETUP #line 273 "Gmsh.l" -return tStringToName; +return tSplit; YY_BREAK case 182: YY_RULE_SETUP #line 274 "Gmsh.l" -return tSprintf; +return tSurface; YY_BREAK case 183: YY_RULE_SETUP #line 275 "Gmsh.l" -return tStrCat; +return tStr; YY_BREAK case 184: YY_RULE_SETUP #line 276 "Gmsh.l" -return tStrReplace; +return tStringToName; YY_BREAK case 185: YY_RULE_SETUP #line 277 "Gmsh.l" -return tStrPrefix; +return tStringToName; YY_BREAK case 186: YY_RULE_SETUP #line 278 "Gmsh.l" -return tStrRelative; +return tSprintf; YY_BREAK case 187: YY_RULE_SETUP #line 279 "Gmsh.l" -return tStrFind; +return tStrCat; YY_BREAK case 188: YY_RULE_SETUP #line 280 "Gmsh.l" -return tStrCmp; +return tStrReplace; YY_BREAK case 189: YY_RULE_SETUP #line 281 "Gmsh.l" -return tStrChoice; +return tStrPrefix; YY_BREAK case 190: YY_RULE_SETUP #line 282 "Gmsh.l" -return tStrLen; +return tStrRelative; YY_BREAK case 191: YY_RULE_SETUP #line 283 "Gmsh.l" -return tStrSub; +return tStrFind; YY_BREAK case 192: YY_RULE_SETUP #line 284 "Gmsh.l" -return tShow; +return tStrCmp; YY_BREAK case 193: YY_RULE_SETUP #line 285 "Gmsh.l" -return tSymmetry; +return tStrChoice; YY_BREAK case 194: YY_RULE_SETUP #line 286 "Gmsh.l" -return tSlide; +return tStrLen; YY_BREAK case 195: YY_RULE_SETUP #line 287 "Gmsh.l" -return tSyncModel; +return tStrSub; YY_BREAK case 196: YY_RULE_SETUP -#line 289 "Gmsh.l" -return tText2D; +#line 288 "Gmsh.l" +return tShow; YY_BREAK case 197: YY_RULE_SETUP -#line 290 "Gmsh.l" -return tText3D; +#line 289 "Gmsh.l" +return tSymmetry; YY_BREAK case 198: YY_RULE_SETUP -#line 291 "Gmsh.l" -return tTestLevel; +#line 290 "Gmsh.l" +return tSlide; YY_BREAK case 199: YY_RULE_SETUP -#line 292 "Gmsh.l" -return tTextAttributes; +#line 291 "Gmsh.l" +return tSyncModel; YY_BREAK case 200: YY_RULE_SETUP #line 293 "Gmsh.l" -return tTime; +return tText2D; YY_BREAK case 201: YY_RULE_SETUP #line 294 "Gmsh.l" -return tTransfinite; +return tText3D; YY_BREAK case 202: YY_RULE_SETUP #line 295 "Gmsh.l" -return tTransfQuadTri; +return tTestLevel; YY_BREAK case 203: YY_RULE_SETUP #line 296 "Gmsh.l" -return tTranslate; +return tTextAttributes; YY_BREAK case 204: YY_RULE_SETUP #line 297 "Gmsh.l" -return tTanh; +return tThruSections; YY_BREAK case 205: YY_RULE_SETUP #line 298 "Gmsh.l" -return tTan; +return tTime; YY_BREAK case 206: YY_RULE_SETUP #line 299 "Gmsh.l" -return tToday; +return tTransfinite; YY_BREAK case 207: YY_RULE_SETUP #line 300 "Gmsh.l" -return tTotalMemory; +return tTransfQuadTri; YY_BREAK case 208: YY_RULE_SETUP -#line 302 "Gmsh.l" -return tUndefineConstant; +#line 301 "Gmsh.l" +return tTranslate; YY_BREAK case 209: YY_RULE_SETUP -#line 303 "Gmsh.l" -return tUpperCase; +#line 302 "Gmsh.l" +return tTanh; YY_BREAK case 210: YY_RULE_SETUP -#line 304 "Gmsh.l" -return tLowerCase; +#line 303 "Gmsh.l" +return tTan; YY_BREAK case 211: YY_RULE_SETUP -#line 305 "Gmsh.l" -return tLowerCaseIn; +#line 304 "Gmsh.l" +return tToday; YY_BREAK case 212: YY_RULE_SETUP -#line 306 "Gmsh.l" -return tUsing; +#line 305 "Gmsh.l" +return tTotalMemory; YY_BREAK case 213: YY_RULE_SETUP -#line 308 "Gmsh.l" -return tVolume; +#line 307 "Gmsh.l" +return tUndefineConstant; YY_BREAK case 214: -#line 311 "Gmsh.l" +YY_RULE_SETUP +#line 308 "Gmsh.l" +return tUpperCase; + YY_BREAK case 215: -#line 312 "Gmsh.l" +YY_RULE_SETUP +#line 309 "Gmsh.l" +return tLowerCase; + YY_BREAK case 216: -#line 313 "Gmsh.l" +YY_RULE_SETUP +#line 310 "Gmsh.l" +return tLowerCaseIn; + YY_BREAK case 217: YY_RULE_SETUP +#line 311 "Gmsh.l" +return tUsing; + YY_BREAK +case 218: +YY_RULE_SETUP #line 313 "Gmsh.l" +return tVolume; + YY_BREAK +case 219: +#line 316 "Gmsh.l" +case 220: +#line 317 "Gmsh.l" +case 221: +#line 318 "Gmsh.l" +case 222: +YY_RULE_SETUP +#line 318 "Gmsh.l" { gmsh_yylval.d = atof((char *)gmsh_yytext); return tDOUBLE; } YY_BREAK -case 218: +case 223: YY_RULE_SETUP -#line 315 "Gmsh.l" +#line 320 "Gmsh.l" { gmsh_yylval.c = strsave((char*)gmsh_yytext); return tSTRING; } YY_BREAK -case 219: +case 224: YY_RULE_SETUP -#line 317 "Gmsh.l" +#line 322 "Gmsh.l" return gmsh_yytext[0]; YY_BREAK -case 220: +case 225: YY_RULE_SETUP -#line 319 "Gmsh.l" +#line 324 "Gmsh.l" ECHO; YY_BREAK -#line 2550 "Gmsh.yy.cpp" +#line 2600 "Gmsh.yy.cpp" case YY_STATE_EOF(INITIAL): yyterminate(); @@ -2838,7 +2888,7 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1107 ) + if ( yy_current_state >= 1158 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; @@ -2866,11 +2916,11 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1107 ) + if ( yy_current_state >= 1158 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; - yy_is_jam = (yy_current_state == 1106); + yy_is_jam = (yy_current_state == 1157); return yy_is_jam ? 0 : yy_current_state; } @@ -3543,7 +3593,7 @@ void gmsh_yyfree (void * ptr ) #define YYTABLES_NAME "yytables" -#line 319 "Gmsh.l" +#line 324 "Gmsh.l" diff --git a/benchmarks/boolean/neuron.geo b/benchmarks/boolean/neuron.geo new file mode 100644 index 0000000000000000000000000000000000000000..44def79c429d2e2342b0e60e4b1c129c475cbade --- /dev/null +++ b/benchmarks/boolean/neuron.geo @@ -0,0 +1,41 @@ +SetFactory("OpenCASCADE"); + +Mesh.Algorithm = 6; +Mesh.CharacteristicLengthMin = 1; +Mesh.CharacteristicLengthMax = 1; + +Macro dendrite + For i In {1:5} + z = -2+7*i; + r = 1 + 0.6*Sin(2*Pi*i/5.); + Point(nump+1) = {x,0,z}; + Point(nump+2) = {x+r,0,z}; + Point(nump+3) = {x,r,z}; + Point(nump+4) = {x-r,0,z}; + Point(nump+5) = {x,-r,z}; + Circle(numc+1) = {nump+2,nump+1,nump+3}; + Circle(numc+2) = {nump+3,nump+1,nump+4}; + Circle(numc+3) = {nump+4,nump+1,nump+5}; + Circle(numc+4) = {nump+5,nump+1,nump+2}; + edges~{i}() = {numc+1:numc+4}; + nump += 5; + numc += 4; + EndFor + numr += 1; + ThruSections(numr) = {edges~{1}(),edges~{2}(),edges~{3}(),edges~{4}(),edges~{5}()}; + reg() += numr; +Return + +Sphere(1) = {0, 0, 0, 8}; +Sphere(2) = {0, 0, 32, 8}; + +reg() = {}; +nump = 0; numc = 0; numr = 2; +For x In{-4:4:4} + Call dendrite; +EndFor + +BooleanUnion{ Volume{1}; Delete; }{ Volume{reg(0)}; Delete; } // creates numr+1 +BooleanUnion{ Volume{numr+1}; Delete; }{ Volume{reg(1)}; Delete; } // creates numr+2 +BooleanUnion{ Volume{numr+2}; Delete; }{ Volume{reg(2)}; Delete; } // creates numr+3 +BooleanUnion{ Volume{numr+3}; Delete; }{ Volume{2}; Delete; }